:root {
  --ink: #14211f;
  --muted: #62706c;
  --paper: #f8f7f2;
  --surface: #ffffff;
  --sage: #d9e8dd;
  --mint: #a6d7ca;
  --rose: #d9818f;
  --clay: #b7664c;
  --green: #18342f;
  --line: rgba(20, 33, 31, 0.13);
  --shadow: 0 24px 70px rgba(20, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(248, 247, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(20, 33, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.75;
}

.nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.lang-toggle {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-weight: 800;
}

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

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

.button.small {
  min-height: 42px;
}

.button.primary {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.button.dark,
.button.ghost.dark-text {
  color: var(--ink);
}

.button.dark {
  background: #fff;
  border-color: #fff;
}

.site-header.scrolled .button.small {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.hero {
  position: relative;
  min-height: min(760px, 94vh);
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 78px) 80px;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--green);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 29, 27, 0.82), rgba(16, 29, 27, 0.38) 54%, rgba(16, 29, 27, 0.12)),
    linear-gradient(0deg, rgba(16, 29, 27, 0.52), rgba(16, 29, 27, 0.12) 42%);
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker,
.category {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  width: min(680px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-ctas,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  width: min(540px, 100%);
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 440px;
}

.hero-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.quick-book a {
  min-height: 110px;
  padding: 26px clamp(18px, 4vw, 42px);
  background: var(--surface);
}

.quick-book span,
.quick-book strong {
  display: block;
}

.quick-book span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-book strong {
  margin-top: 5px;
  font-size: clamp(18px, 2.2vw, 25px);
}

.section-pad {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
  background: #fff;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 19px;
}

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

.section-head h2 {
  max-width: 760px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--rose);
}

.services {
  background: linear-gradient(180deg, var(--paper), #edf5f1);
}

.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.service-tabs button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.service-tabs button.active {
  background: var(--green);
  color: #fff;
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20, 33, 31, 0.08);
  overflow: hidden;
}

.service-card.is-hidden {
  display: none;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

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

.service-card p:not(.category) {
  color: var(--muted);
}

.service-card span {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 78px);
  background: var(--green);
  color: #fff;
}

.booking-band .section-kicker {
  color: var(--mint);
}

.booking-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.reviews {
  background: #fff;
}

.score {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.score strong {
  color: var(--green);
  font-size: 42px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

blockquote p {
  font-size: 20px;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.team {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  background: var(--sage);
}

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

.team-list span {
  display: grid;
  min-height: 130px;
  place-items: center;
  background: #fff;
  color: var(--green);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 6vw, 82px);
  background: #fff;
}

.contact-main p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
}

.hours {
  padding: 28px;
  background: var(--green);
  color: #fff;
}

.hours h3 {
  margin-bottom: 22px;
}

.hours dl {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 78px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.mobile-sticky {
  display: none;
}

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

  .nav {
    display: none;
  }

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

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

  .site-header {
    padding: 12px 14px;
  }

  .brand small,
  .header-actions .button.small {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 18px 88px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(16, 29, 27, 0.82), rgba(16, 29, 27, 0.26));
  }

  .lead {
    font-size: 18px;
  }

  .hero-ctas .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .hero-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
  }

  .hero-strip {
    right: 18px;
    left: 18px;
    bottom: 18px;
  }

  .quick-book,
  .intro,
  .booking-band,
  .review-grid,
  .team,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-book a {
    min-height: 88px;
  }

  .section-head {
    display: block;
  }

  .text-link {
    display: inline-flex;
    margin-top: 8px;
  }

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

  .service-card img {
    height: 240px;
  }

  .booking-band .button {
    width: 100%;
  }

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

  .team-list span {
    min-height: 86px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .gallery-grid .wide {
    grid-column: span 2;
  }

  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    box-shadow: 0 -10px 32px rgba(20, 33, 31, 0.18);
  }

  .mobile-sticky a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: #fff;
    font-weight: 900;
  }

  .mobile-sticky a + a {
    background: var(--rose);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 29px;
  }

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

  .hero-strip {
    display: none;
  }
}
