@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  font-family: 'Manrope', sans-serif;
  color: #10231d;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 89, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(52, 179, 150, 0.22), transparent 30%),
    linear-gradient(180deg, #f8f4ed 0%, #f2eee6 100%);
  --page-bg: #f8f4ed;
  --surface: rgba(255, 252, 247, 0.7);
  --surface-strong: #fffaf2;
  --ink: #10231d;
  --muted: rgba(16, 35, 29, 0.68);
  --line: rgba(16, 35, 29, 0.1);
  --accent: #34b396;
  --accent-strong: #10231d;
  --coral: #ff7a59;
  --shadow: 0 20px 60px rgba(20, 37, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--page-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#root {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 29, 0.02) 1px, transparent 1px);
  background-size: 14px 14px, 14px 14px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
}

.site-header,
.hero,
.feature-strip,
.section,
.cta-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-strong);
  color: #f6f1e7;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--muted);
}

.brand-copy strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(16, 35, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.78);
}

.language-pill {
  min-width: 48px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-pill:hover {
  transform: translateY(-1px);
  color: var(--ink);
}

.language-pill.active {
  background: var(--accent-strong);
  color: #f8f3ea;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 42px 0 28px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(16, 35, 29, 0.56);
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 8vw, 7rem);
}

.hero h1 span {
  color: var(--coral);
}

.hero-text,
.section-heading,
.timeline-card p,
.service-card p,
.project-card p,
.cta-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent-strong);
  color: #f7f1e7;
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.6);
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(16, 35, 29, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(244, 237, 226, 0.92));
  box-shadow: var(--shadow);
}

.signal-card {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 35, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.signal-card span,
.metric-card span,
.project-type,
.card-index {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 35, 29, 0.56);
}

.signal-card strong {
  max-width: 16ch;
  font-size: 1.05rem;
  line-height: 1.4;
}

.hero-orbit {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  margin: 24px 0;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 35, 29, 0.14);
  animation: spin 22s linear infinite;
}

.orbit::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 78%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 12px rgba(255, 122, 89, 0.1);
}

.orbit-one {
  inset: 2%;
}

.orbit-two {
  inset: 14%;
  animation-direction: reverse;
  animation-duration: 18s;
}

.orbit-three {
  inset: 28%;
  animation-duration: 14s;
}

.center-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  padding: 28px;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle, #fffaf2 0%, #efe5d8 100%);
  box-shadow: 0 16px 40px rgba(16, 35, 29, 0.12);
}

.center-node span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 35, 29, 0.56);
}

.center-node strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 600;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.service-card,
.timeline-card,
.project-card {
  border: 1px solid rgba(16, 35, 29, 0.08);
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(16, 35, 29, 0.06);
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 132px;
  padding: 18px;
  border-radius: 22px;
}

.metric-card strong {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.feature-strip p {
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid rgba(16, 35, 29, 0.2);
  color: rgba(16, 35, 29, 0.7);
}

.section {
  padding: 112px 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.service-grid,
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.project-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card p,
.project-card p,
.timeline-card p {
  margin: 0;
  line-height: 1.8;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-card {
  padding: 24px;
  border-radius: 28px;
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline-card h3,
.project-card h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 44px;
}

.cta-section {
  padding-bottom: 56px;
}

.cta-panel {
  padding: 34px;
  border: 1px solid rgba(16, 35, 29, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(52, 179, 150, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(16, 35, 29, 0.94), rgba(21, 43, 36, 0.96));
  color: #f8f3ea;
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(248, 243, 234, 0.72);
}

.cta-panel h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.cta-panel p {
  max-width: 640px;
  margin: 20px 0 0;
  line-height: 1.8;
}

.cta-panel .button-primary {
  background: #f7f1e7;
  color: var(--accent-strong);
}

.cta-panel .button-secondary {
  border-color: rgba(248, 243, 234, 0.16);
  color: #f8f3ea;
  background: rgba(255, 255, 255, 0.04);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero,
  .section-heading,
  .service-grid,
  .timeline,
  .project-list,
  .feature-strip,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1,
  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
  }

  .section-heading {
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .page-shell {
    padding: 14px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .language-switch {
    align-self: flex-start;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .hero-panel,
  .service-card,
  .timeline-card,
  .project-card,
  .cta-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .center-node {
    max-width: 180px;
    padding: 20px;
  }

  .center-node strong {
    font-size: 1.6rem;
  }

  .metric-card {
    min-height: 120px;
  }

  .metric-card strong {
    font-size: 1.2rem;
  }

  .section {
    padding-top: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
