:root {
  --ink: #0d1820;
  --deep: #132330;
  --muted: #62717c;
  --line: #d7e0e4;
  --paper: #f4f7f5;
  --white: #ffffff;
  --aqua: #24a7a1;
  --sun: #f0bf55;
  --coral: #d96b4b;
  --blue: #176a9b;
  --shadow: 0 24px 72px rgba(13, 24, 32, 0.18);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
img, iframe, svg { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.topbar.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(13,24,32,.12);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}
.topbar.is-scrolled .brand,
.topbar.is-scrolled .nav-links,
.topbar.is-scrolled .icon-link { color: var(--ink); }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-weight: 950;
  font-size: 1.35rem;
}
.brand strong, .brand small { display: block; }
.brand small { opacity: .74; font-size: .78rem; }
.nav-links {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-weight: 850;
}
.nav-links a { text-decoration: none; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language {
  display: flex;
  padding: 3px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: var(--radius);
}
.topbar.is-scrolled .language {
  background: #eef4f4;
  border-color: var(--line);
}
.language button {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}
.topbar.is-scrolled .language button { color: var(--ink); }
.language button.is-active { background: var(--aqua); color: var(--white); }
.icon-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,24,32,.93), rgba(13,24,32,.72) 45%, rgba(13,24,32,.18)),
    linear-gradient(0deg, rgba(13,24,32,.88), rgba(13,24,32,.08) 46%);
}
.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 62px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.hero h1 {
  width: min(770px, 100%);
  margin: 0;
  font-size: clamp(2.6rem, 5rem, 5.35rem);
  line-height: .98;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  width: min(690px, 100%);
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 1.12rem;
}
.hero-actions, .form-actions, .location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}
.btn-primary { background: var(--aqua); color: var(--white); border-color: var(--aqua); }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--white); }

.facts {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  overflow: hidden;
}
.facts div { padding: 18px; background: rgba(13,24,32,.70); }
dt { color: rgba(255,255,255,.70); font-size: .8rem; font-weight: 850; }
dd { margin: 4px 0 0; font-size: 1.12rem; font-weight: 950; }

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}
.signal-strip div {
  min-width: 0;
  padding: 20px clamp(16px, 4vw, 42px);
  background: var(--deep);
}
.signal-strip span {
  display: block;
  color: #b8c7cd;
  font-size: .82rem;
  font-weight: 850;
}
.signal-strip strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}
.section-head.compact {
  display: block;
  width: min(690px, 100%);
}
.section h2, .location h2 {
  margin: 0;
  font-size: clamp(2rem, 3.45rem, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.section-head p:not(.eyebrow), .proof-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}
.mood-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.mood-tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}
.mood-tab.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.mood-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 16px;
}
.mood-panel {
  min-height: 440px;
  display: grid;
  align-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.mood-panel.is-hidden { display: none; }
.mood-panel h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.05;
}
.mood-panel p { color: var(--muted); font-size: 1.05rem; }
.mood-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.mood-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 850;
}
.mood-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
}
.mood-photo {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.proof {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  gap: 40px;
  align-items: center;
}
.rating {
  width: min(330px, 100%);
  display: grid;
  gap: 2px;
  margin-top: 26px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}
.rating strong { font-size: 4rem; line-height: .9; }
.rating span { color: var(--sun); }
.rating small { color: #c7d4da; font-weight: 850; }
.proof-images {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 10px;
}
.proof-images img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery {
  display: grid;
  grid-template-columns: 1.15fr .95fr 1fr;
  gap: 6px;
  background: var(--ink);
}
.gallery img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}
.visit {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 42px;
}
.visit-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.visit-form label span, .visit-form legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
}
.visit-form input[type="text"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.visit-form fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  padding: 14px;
}
.visit-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}
.output {
  min-height: 76px;
  border-radius: var(--radius);
  background: #edf6f5;
  border: 1px dashed #9fc7c4;
  padding: 14px;
  color: var(--muted);
}
.location {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: 28px;
  padding: 92px 0;
}
.hours {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  padding: 14px 16px;
}
.map {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 34px max(16px, calc((100vw - 1180px) / 2));
}
.footer p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #c7d4da;
}
.footer a { color: var(--white); font-weight: 950; }
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(140%);
  transition: transform 180ms ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--aqua);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(13,24,32,.28);
}
.mobile-cta a:last-child { background: var(--blue); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .signal-strip, .section-head, .mood-stage, .proof, .visit, .location { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 3rem; }
  .facts { grid-template-columns: 1fr; }
  .mood-panel, .mood-photo { min-height: auto; }
  .proof-images { grid-template-columns: 1fr; }
  .proof-images img { height: 320px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 300px; }
  .footer { flex-direction: column; padding: 30px 16px 88px; }
  .mobile-cta { display: grid; }
}

@media (max-width: 560px) {
  .nav { width: calc(100% - 20px); min-height: 68px; }
  .brand span:last-child { display: none; }
  .brand-mark { width: 44px; height: 44px; }
  .hero-content { width: calc(100% - 24px); padding-bottom: 38px; }
  .hero h1 { font-size: 2.35rem; }
  .hero p:not(.eyebrow) { font-size: 1rem; }
  .section, .location { width: calc(100% - 24px); padding: 64px 0; }
  .section h2, .location h2 { font-size: 2rem; }
  .mood-panel, .visit-form { padding: 20px; }
  .btn { width: 100%; }
}
