:root {
  --mint: #bfdccf;
  --mint-strong: #8dbda8;
  --ink: #18342f;
  --text: #243936;
  --muted: #667773;
  --paper: #fbfbf6;
  --white: #ffffff;
  --clay: #bb6d58;
  --rose: #f1b7aa;
  --line: rgba(24, 52, 47, 0.14);
  --shadow: 0 22px 60px rgba(24, 52, 47, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 251, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.desktop-nav,
.header-actions,
.hero-actions,
.visit-links,
.final-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--mint);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name,
.brand-sub {
  display: block;
  line-height: 1.05;
}

.brand-name {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
}

.desktop-nav {
  justify-content: center;
  gap: 6px;
}

.desktop-nav a,
.footer-links a,
.text-link {
  color: var(--ink);
  text-decoration: none;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(141, 189, 168, 0.18);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.lang-toggle,
.call-link,
.button {
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.lang-toggle {
  width: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 251, 246, 0.98), rgba(251, 251, 246, 0.86) 46%, rgba(191, 220, 207, 0.52)),
    var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-lede {
  max-width: 670px;
  margin: 22px 0 0;
  color: #3e514d;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions,
.visit-links,
.final-actions {
  flex-wrap: wrap;
  gap: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  text-align: center;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(187, 109, 88, 0.26);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.button.light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 38px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.hero-media {
  min-width: 0;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: var(--mint);
}

.hero-media img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-band div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
}

.trust-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
}

.intro-grid,
.visit,
.team-layout,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-copy {
  max-width: 680px;
  color: #40514e;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
  border-bottom: 2px solid var(--clay);
}

.services {
  background: #eef5f0;
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.service-card p {
  color: #4d5f5b;
}

.service-card span {
  margin-top: auto;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 900;
}

.note {
  max-width: 840px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
}

.booking-panel h2,
.booking-panel .eyebrow {
  color: var(--white);
}

.booking-panel p {
  max-width: 740px;
  margin-bottom: 0;
}

.booking-actions {
  display: grid;
  gap: 12px;
  min-width: min(320px, 100%);
}

.visit-card,
.hours-card {
  min-width: 0;
}

.visit-card p:not(.eyebrow),
.hours-card p {
  color: #4d5f5b;
}

.hours-card {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(24, 52, 47, 0.08);
}

.hours-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-card strong {
  color: var(--ink);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-lines a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: #eef5f0;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.team {
  background: #f7ebe8;
  border-block: 1px solid rgba(187, 109, 88, 0.18);
}

.team-layout img {
  width: min(390px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.team-list span {
  padding: 12px 14px;
  border: 1px solid rgba(187, 109, 88, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.final-cta {
  align-items: center;
  background: var(--mint);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: #142a27;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.mobile-sticky {
  display: none;
}

.lightbox {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #101b19;
}

.lightbox::backdrop {
  background: rgba(9, 20, 18, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-media {
    min-height: auto;
    padding-top: 0;
  }

  .hero-media img {
    height: auto;
    max-height: none;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-sub {
    font-size: 0.74rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .call-link {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 42px 18px 28px;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.35rem);
  }

  h2 {
    font-size: clamp(1.86rem, 9vw, 3rem);
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .hero-actions .button,
  .booking-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-facts,
  .trust-band,
  .intro-grid,
  .visit,
  .team-layout,
  .final-cta,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 8px;
  }

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

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 54px 18px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    padding: 44px 18px;
  }

  .hours-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .team-layout img {
    width: 100%;
    aspect-ratio: 16 / 11;
  }

  .site-footer {
    flex-direction: column;
    padding: 30px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 62px;
    background: var(--ink);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.18);
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-sticky a:last-child {
    border-right: 0;
  }
}

@media (max-width: 380px) {
  .brand-sub {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-toggle {
    width: 44px;
  }
}
