:root {
  --bg: #f5efe7;
  --bg-strong: #eadfce;
  --surface: rgba(255, 249, 241, 0.72);
  --surface-strong: #fff8ef;
  --text: #2f241d;
  --muted: #6a5950;
  --accent: #bb6f46;
  --accent-deep: #924f2b;
  --accent-soft: #e3b893;
  --line: rgba(74, 49, 33, 0.12);
  --shadow: 0 18px 60px rgba(68, 40, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(227, 184, 147, 0.58), transparent 34%),
    radial-gradient(circle at bottom right, rgba(162, 196, 186, 0.24), transparent 30%),
    linear-gradient(180deg, #f8f3ee 0%, #f2e7da 100%);
  color: var(--text);
}

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

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

.page-shell {
  overflow: clip;
}

.hero,
.section-block,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 18px 0 32px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-logo {
  display: block;
  width: min(100%, 560px);
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  object-position: left center;
  background: rgba(255, 248, 239, 0.92);
  padding: 8px 12px;
  box-shadow: var(--shadow);
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .brand-logo,
  .pill-link {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1440px) {
  .topbar {
    justify-content: center;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo {
    margin: 0 auto;
  }
}

.pill-link,
.button {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  flex-shrink: 0;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy,
.hero-media,
.stat-card,
.gallery-card,
.showcase-copy,
.showcase-media,
.cta-banner,
.map-section,
.footer {
  position: relative;
}

.hero-copy {
  padding: 22px 0 8px;
}

.hero-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.4rem, 12vw, 5.9rem);
  letter-spacing: -0.04em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.4rem, 8vw, 4rem);
  letter-spacing: -0.03em;
  max-width: 12ch;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.lead,
.support,
.split-copy p,
.showcase-copy p,
.map-copy p,
.footer p,
.stat-card span,
.service-grid span,
.benefit-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.lead {
  max-width: 34ch;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.support {
  margin: 12px 0 0;
  max-width: 30ch;
}

.hero-actions,
.cta-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: #fffaf6;
  box-shadow: 0 14px 34px rgba(146, 79, 43, 0.24);
}

.button.secondary,
.button.ghost {
  border-color: rgba(47, 36, 29, 0.12);
  background: rgba(255, 250, 244, 0.48);
}

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

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(187, 111, 70, 0.12);
}

.video-card,
.stat-card,
.gallery-card,
.showcase-copy,
.showcase-media,
.cta-banner,
.map-section,
.footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.video-card {
  padding: 14px;
  border-radius: 30px;
  transform: rotate(-2deg);
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 249, 244, 0.2);
  border-radius: 999px;
  background: rgba(37, 26, 22, 0.82);
  color: #fff9f4;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(20, 12, 10, 0.24);
}

.sound-toggle-icon {
  width: 1.2em;
  text-align: center;
  line-height: 1;
}

.sound-toggle-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.intro-video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: 22px;
  background: #d8c9bc;
}

.stats-section,
.split-section,
.showcase,
.map-section {
  display: grid;
  gap: 18px;
}

.section-block {
  margin-bottom: 18px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
}

.stat-card strong,
.service-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.split-section {
  align-items: center;
}

.split-copy {
  padding: 28px 0 12px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 239, 0.78);
  border: 1px solid rgba(74, 49, 33, 0.08);
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-card.large {
  min-height: 320px;
}

.gallery-card.small {
  min-height: 220px;
}

.gallery-card img,
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy,
.showcase-media,
.cta-banner,
.map-section,
.footer {
  border-radius: var(--radius-lg);
}

.showcase-copy,
.cta-banner,
.map-section {
  padding: 24px;
}

.showcase-media {
  overflow: hidden;
  min-height: 360px;
}

.service-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.service-grid article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 239, 0.86);
  border: 1px solid rgba(74, 49, 33, 0.08);
}

.cta-banner {
  display: grid;
  gap: 22px;
  background:
    radial-gradient(circle at top left, rgba(187, 111, 70, 0.12), transparent 32%),
    rgba(255, 248, 239, 0.86);
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.footer {
  display: grid;
  gap: 18px;
  padding: 24px;
  margin-bottom: 26px;
}

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

.footer-meta p,
.footer-brand p {
  margin: 0;
}

.footer-links a {
  color: var(--accent-deep);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

.delay-4 {
  transition-delay: 320ms;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-deep);
}

.button.secondary:hover,
.button.ghost:hover,
.pill-link:hover {
  background: rgba(255, 250, 244, 0.92);
}

@media (min-width: 768px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero-grid,
  .split-section,
  .showcase,
  .map-section {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
  }

  .stats-section {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-stack {
    grid-template-columns: 1fr 0.86fr;
    align-items: end;
  }

  .gallery-card.large {
    min-height: 480px;
  }

  .gallery-card.small {
    min-height: 280px;
  }

  .showcase {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer {
    grid-template-columns: 1.3fr 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .pill-link,
  .button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
