/* Goduco Group temporary landing page */

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --rule: #d9d9d9;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: 64px 28px 40px;
}

.hero-inner {
  width: min(100%, var(--max-width));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(760px, 88vw);
  height: auto;
}

.divisions {
  margin: 42px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dot {
  color: var(--muted);
  font-size: 0.7em;
}

.rule {
  width: min(520px, 70vw);
  height: 1px;
  background: var(--rule);
  margin: 34px 0 28px;
}

.coming-soon {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.02em;
}

.site-footer {
  padding: 0 24px 24px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #8a8a8a;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .hero {
    min-height: 78vh;
    padding-top: 48px;
  }

  .brand-logo {
    width: min(560px, 92vw);
  }

  .divisions {
    margin-top: 32px;
    gap: 9px;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }

  .rule {
    margin: 28px 0 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}


/* Interactive links added without changing the original visual layout */
.divisions a {
  color: inherit;
  text-decoration: none;
}

.divisions a:hover,
.divisions a:focus-visible {
  opacity: 0.6;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: #111111;
  text-decoration: none;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  opacity: 0.6;
}

.instagram-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-dot {
  fill: currentColor;
  stroke: none;
}
