:root {
  --ink: #102027;
  --muted: #5d6a6d;
  --teal: #0b6f73;
  --deep: #062f35;
  --aqua: #37b8b1;
  --paper: #fbf8f2;
  --white: #ffffff;
  --coral: #d9654f;
  --gold: #d6ae58;
  --line: rgba(16, 32, 39, 0.14);
  --shadow: 0 24px 70px rgba(6, 47, 53, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 54px);
  color: var(--white);
  background: rgba(6, 47, 53, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.brand img {
  width: 132px;
  height: auto;
  background: var(--white);
  border-radius: 4px;
  padding: 4px 8px;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--aqua);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lang-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 74px;
  min-height: 38px;
  padding: 3px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
}

.lang-toggle span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

body:not(.lang-en) .lang-toggle span:first-child,
body.lang-en .lang-toggle span:last-child {
  background: var(--white);
  color: var(--deep);
}

.header-call {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: var(--deep);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/images/hero-green-gold.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 47, 53, 0.93), rgba(6, 47, 53, 0.58) 48%, rgba(6, 47, 53, 0.2)),
    linear-gradient(0deg, rgba(6, 47, 53, 0.96), rgba(6, 47, 53, 0.12) 50%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 72px;
}

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

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.quick-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip div {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 18px;
  background: var(--white);
}

.quick-strip span,
.trust-panel span,
dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-strip strong,
.trust-panel strong,
dd {
  font-size: 18px;
}

.section-pad {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.intro,
.location,
.reviews,
.final-cta {
  display: grid;
  gap: 24px;
}

.section-text p:not(.eyebrow),
.gallery-copy p:not(.eyebrow),
.reviews p,
.final-cta p:not(.eyebrow),
.treatment-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.trust-panel,
.location-card,
.hours-card,
.review-metrics {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  overflow: hidden;
}

.trust-panel div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--white);
}

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

.treatment-grid {
  display: grid;
  gap: 14px;
}

.treatment-grid article {
  display: grid;
  gap: 14px;
  padding: 22px;
  min-height: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.treatment-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.treatment-grid a {
  align-self: end;
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.gallery {
  display: grid;
  gap: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.location-card,
.hours-card {
  padding: 24px;
}

dl {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

dl div {
  display: grid;
  gap: 4px;
}

dd {
  margin: 0;
  font-weight: 800;
}

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

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

.hours-card .button-secondary,
.final-cta .button-secondary {
  color: var(--deep);
  border-color: var(--line);
  background: var(--white);
}

.reviews {
  align-items: center;
  background: var(--deep);
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  padding-right: max(16px, calc((100vw - 1120px) / 2));
}

.reviews p {
  color: rgba(255, 255, 255, 0.76);
}

.review-metrics {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 28px;
  color: var(--deep);
}

.review-metrics strong {
  color: var(--teal);
  font-size: 70px;
  line-height: 1;
}

.review-metrics span {
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 80px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.final-cta img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.final-cta div {
  padding: 28px;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 34px 16px 86px;
  color: rgba(255, 255, 255, 0.82);
  background: #071d21;
}

.site-footer div,
.site-footer nav {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

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

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

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.mobile-bar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--deep);
  text-decoration: none;
  font-weight: 900;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

@media (min-width: 620px) {
  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 60px;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }

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

  h1 {
    font-size: 74px;
  }

  .quick-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro,
  .location,
  .reviews,
  .final-cta {
    grid-template-columns: 1.08fr 0.92fr;
  }

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

  .gallery {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .mobile-bar {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 108px;
  }

  .brand span {
    display: none;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 26px;
  }

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