:root {
  --bg: #f2eadc;
  --bg-soft: #f8f3ea;
  --paper: rgba(255, 251, 245, 0.78);
  --paper-strong: #fffaf2;
  --text: #17231f;
  --muted: #57635e;
  --line: rgba(23, 35, 31, 0.12);
  --brand: #0f5b4e;
  --brand-strong: #08372f;
  --accent: #c86942;
  --accent-soft: #f2c5ac;
  --shadow: 0 24px 60px rgba(18, 32, 28, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 105, 66, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 91, 78, 0.18), transparent 34%),
    linear-gradient(180deg, #efe3d2 0%, #f7f0e6 48%, #f0e6d7 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(23, 35, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 31, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08));
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(255, 249, 240, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(17, 31, 27, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4px;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong,
.hero h1,
.section-heading h2,
.panel h2,
.panel h3,
.card h3,
.project-card h3,
.team-card h3,
.timeline-item h3,
.hero-card h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-strong);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--brand-strong);
  color: #fff;
  font: inherit;
}

.section {
  padding: 52px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  min-height: calc(100vh - 140px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 11ch;
}

.lead,
.hero-points,
.panel p,
.card p,
.project-card p,
.timeline-item p,
.team-card p,
.result-list {
  color: var(--muted);
}

.lead {
  max-width: 64ch;
  font-size: 1.08rem;
  margin: 24px 0 0;
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--brand-strong);
  color: #fffdf8;
  box-shadow: 0 18px 36px rgba(8, 55, 47, 0.22);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(23, 35, 31, 0.12);
  color: var(--brand-strong);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-card,
.panel,
.card,
.project-card,
.team-card,
.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card-main {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 197, 172, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(246, 236, 224, 0.82));
}

.hero-card-main h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.hero-card-side {
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(15, 91, 78, 0.2), rgba(255, 250, 242, 0.88));
}

.hero-card-side img {
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(8, 55, 47, 0.18));
}

.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 55, 47, 0.09);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.intro-grid,
.results-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.panel,
.team-card,
.project-card,
.card,
.timeline-item {
  padding: 26px;
}

.panel h2,
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.facts ul,
.result-list {
  margin: 0;
  padding-left: 18px;
}

.booking-list {
  display: grid;
  gap: 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.card-grid,
.project-grid,
.team-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card h3,
.project-card h3,
.team-card h3,
.timeline-item h3,
.panel h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.team-card a:hover,
.team-card a:focus-visible {
  color: var(--brand-strong);
}

.cta-panel {
  background:
    radial-gradient(circle at top right, rgba(200, 105, 66, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(244, 232, 220, 0.92));
}

.booking-panel {
  min-height: 100%;
}

.booking-panel-accent {
  background:
    radial-gradient(circle at top left, rgba(15, 91, 78, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(239, 245, 241, 0.88));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero,
  .intro-grid,
  .results-layout,
  .booking-layout,
  .card-grid,
  .project-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 30px;
    padding: 14px;
  }

  .brand {
    width: calc(100% - 90px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 2px 2px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero,
  .intro-grid,
  .results-layout,
  .booking-layout,
  .card-grid,
  .project-grid,
  .team-grid,
  .timeline,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 36px 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .site-footer {
    display: grid;
  }
}
