:root {
  --ink: #142426;
  --muted: #657172;
  --paper: #f5f1ea;
  --paper-strong: #fffdf8;
  --teal: #102a2d;
  --aqua: #1f7a78;
  --copper: #c1744d;
  --gold: #d0aa62;
  --line: rgba(20, 36, 38, 0.16);
  --shadow: 0 24px 70px rgba(18, 33, 34, 0.18);
  --white: #ffffff;
}

* {
  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;
}

body,
button,
input {
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 14px 18px;
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 34px rgba(16, 42, 45, 0.1);
  backdrop-filter: blur(16px);
  padding-block: 10px;
}

.nav {
  max-width: 1180px;
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.topbar.is-scrolled .brand,
.topbar.is-scrolled .nav-links,
.topbar.is-scrolled .icon-link {
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--aqua), var(--copper));
  color: var(--white);
  font-weight: 800;
}

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

.brand strong {
  font-size: 15px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
}

.nav-links a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.topbar.is-scrolled .nav-links a:hover {
  background: rgba(31, 122, 120, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language {
  min-width: 92px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.topbar.is-scrolled .language {
  background: rgba(20, 36, 38, 0.06);
  border-color: var(--line);
}

.language button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.topbar.is-scrolled .language button {
  color: var(--ink);
}

.language button.is-active {
  background: var(--white);
  color: var(--teal);
}

.topbar.is-scrolled .language button.is-active {
  background: var(--teal);
  color: var(--white);
}

.icon-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.topbar.is-scrolled .icon-link {
  background: rgba(31, 122, 120, 0.1);
  border-color: var(--line);
}

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

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 30, 32, 0.9), rgba(14, 48, 49, 0.62) 45%, rgba(12, 30, 30, 0.28)),
    linear-gradient(0deg, rgba(14, 30, 29, 0.72), rgba(14, 30, 29, 0) 44%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 34px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2bd83;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.12;
}

.hero-copy > p:not(.eyebrow),
.section-head > p:not(.eyebrow),
.proof-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.section-head > p:not(.eyebrow),
.proof-copy > p:not(.eyebrow) {
  color: var(--muted);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(193, 116, 77, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.42);
}

.section .btn-secondary,
.location .btn-secondary,
.inquiry .btn-secondary {
  background: var(--paper-strong);
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.13);
  backdrop-filter: blur(16px);
}

.hero-panel div,
.signal-strip div,
.hours div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-panel div {
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel span,
.signal-strip span,
.hours span {
  color: inherit;
  opacity: 0.7;
  font-size: 13px;
}

.hero-panel strong {
  text-align: right;
}

.signal-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.signal-strip div {
  min-height: 96px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  text-align: right;
  color: var(--aqua);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: end;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
}

.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.tabs {
  margin-top: 34px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab {
  min-height: 42px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 9px 15px;
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.stage {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 18px;
}

.panel {
  min-height: 370px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 32px;
  border-radius: 8px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(20, 36, 38, 0.08);
}

.panel.is-hidden {
  display: none;
}

.panel p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.panel ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.panel li {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(31, 122, 120, 0.1);
  color: var(--aqua);
  font-weight: 800;
}

.stage-photo-wrap {
  min-height: 370px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal);
}

.stage-photo {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
}

.stage-photo-wrap figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(16, 42, 45, 0.78);
  color: var(--white);
  font-size: 13px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.58fr);
  gap: 28px;
  align-items: center;
}

.rating {
  margin-top: 24px;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.rating strong {
  font-size: 38px;
  line-height: 1;
}

.rating span {
  color: var(--gold);
}

.rating small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.75);
}

.proof-images {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
  align-items: end;
}

.proof-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-images img:last-child {
  height: 310px;
}

.gallery {
  width: min(1180px, calc(100% - 36px));
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: 1fr 0.86fr 1fr;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:nth-child(2) {
  height: 390px;
  margin-top: 38px;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(330px, 0.64fr);
  gap: 30px;
  align-items: start;
}

.visit-form {
  padding: 24px;
  border-radius: 8px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visit-form fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  display: grid;
  gap: 9px;
}

.visit-form legend,
.visit-form label > span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.visit-form fieldset label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.visit-form input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--aqua);
}

.visit-form input[type="text"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
}

.output {
  min-height: 96px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(31, 122, 120, 0.09);
  color: var(--teal);
  font-weight: 700;
}

.location {
  width: min(1180px, calc(100% - 36px));
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.location .eyebrow {
  color: #f2bd83;
}

.hours {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.hours div {
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hours strong {
  text-align: right;
}

.map {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d2c6;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.9);
}

.map-link {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--teal);
  font-weight: 800;
}

.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 44px auto 86px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer p {
  max-width: 700px;
  margin: 6px 0 0;
}

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

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 40px rgba(20, 36, 38, 0.24);
  transform: translateY(140%);
  transition: transform 0.22s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .stage,
  .proof,
  .inquiry,
  .location {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 126px;
  }

  .hero-panel {
    max-width: 480px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

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

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .proof-images img,
  .proof-images img:last-child {
    height: 320px;
  }

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

  .gallery img,
  .gallery img:nth-child(2) {
    height: 310px;
    margin-top: 0;
  }

  .location {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 126px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .language {
    min-width: 78px;
  }

  .icon-link {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-grid,
  .section,
  .signal-strip,
  .gallery,
  .location,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid {
    padding: 112px 0 36px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-copy > p:not(.eyebrow),
  .section-head > p:not(.eyebrow),
  .proof-copy > p:not(.eyebrow),
  .panel p {
    font-size: 16px;
  }

  .hero-actions,
  .form-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding-top: 72px;
  }

  .panel {
    min-height: 330px;
    padding: 22px;
  }

  .stage-photo-wrap,
  .stage-photo {
    min-height: 300px;
  }

  .proof-images {
    grid-template-columns: 1fr;
  }

  .map,
  .map iframe {
    min-height: 340px;
  }

  .footer {
    flex-direction: column;
    margin-bottom: 102px;
  }

  .mobile-cta {
    display: grid;
  }
}
