:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #667085;
  --paper: #fffaf2;
  --paper-strong: #f3e7d2;
  --blue: #14213d;
  --sea: #0f6f7a;
  --terra: #b85f2f;
  --gold: #e8b44f;
  --line: rgba(23, 32, 51, 0.14);
  --shadow: 0 24px 80px rgba(20, 33, 61, 0.18);
  --radius: 8px;
}

* {
  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(--ink);
  background: #fffdf8;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
}

.nav-links,
.header-actions,
.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 6px;
}

.nav-links a:hover {
  color: var(--blue);
}

.lang-toggle,
.header-call,
.primary-btn,
.secondary-btn,
.mode-tab {
  min-height: 44px;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
}

.lang-toggle {
  width: 52px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.header-call,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid transparent;
}

.header-call,
.primary-btn {
  color: #fff;
  background: var(--blue);
  padding: 0 18px;
}

.secondary-btn {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
  padding: 0 18px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.80)),
    url("images/image_01.jpg") center / cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terra);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  color: #344054;
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn,
.visit-actions .primary-btn,
.visit-actions .secondary-btn {
  min-width: 176px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 154px));
  gap: 10px;
  max-width: 520px;
}

.hero-proof div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.6rem;
  color: var(--blue);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 660px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

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

.main-photo {
  top: 30px;
  right: 8%;
  width: min(58%, 360px);
  aspect-ratio: 3 / 4;
  z-index: 3;
}

.side-photo {
  top: 0;
  left: 0;
  width: 58%;
  aspect-ratio: 16 / 10;
  z-index: 2;
}

.street-photo {
  right: 0;
  bottom: 28px;
  width: 44%;
  aspect-ratio: 4 / 5;
  z-index: 1;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blue);
  color: #fff;
}

.quick-strip div {
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.06);
}

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

.quick-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.quick-strip strong {
  font-size: 1.12rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.rhythm-section {
  background: var(--paper);
}

.mode-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1060px;
  margin-bottom: 28px;
}

.mode-tabs {
  display: grid;
  gap: 10px;
}

.mode-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
}

.mode-tab.active {
  color: #fff;
  background: var(--sea);
  border-color: var(--sea);
}

.mode-panel {
  display: grid;
  align-content: center;
  min-height: 248px;
  padding: clamp(24px, 4vw, 44px);
  color: #fff;
  background:
    linear-gradient(rgba(20, 33, 61, 0.74), rgba(20, 33, 61, 0.72)),
    url("images/image_03.jpg") center / cover;
  border-radius: var(--radius);
}

.mode-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.mode-panel [data-mode-kicker] {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
}

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

.signal-grid article {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.signal-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--terra);
  font-weight: 900;
}

.signal-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: #fffdf8;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(240px, 0.34fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin: 0;
  background: var(--blue);
  border-radius: var(--radius);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.gallery-main figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(90%, 560px);
  padding: 10px 12px;
  color: #fff;
  background: rgba(20, 33, 61, 0.76);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.gallery-thumb {
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--terra);
}

.gallery-thumb img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: #fff;
  background: var(--blue);
}

.proof-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  margin-bottom: 7px;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.visit-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px) 120px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.94)),
    url("images/image_04.jpg") center / cover;
}

.visit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1120px;
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-card p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

.visit-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: 230px;
}

.source-note {
  max-width: 1120px;
  margin-top: 18px;
  color: #344054;
  line-height: 1.6;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  color: #fff;
  background: var(--sea);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(15, 111, 122, 0.35);
  text-decoration: none;
  font-weight: 900;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .proof-section,
  .visit-card,
  .gallery-layout,
  .mode-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

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

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

  .gallery-thumb img {
    height: 96px;
  }

  .visit-actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

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

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

  .section-band,
  .gallery-section,
  .visit-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: 2.45rem;
  }

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

  .hero-media {
    min-height: 430px;
  }

  .main-photo {
    width: 68%;
    right: 0;
  }

  .side-photo {
    width: 66%;
  }

  .street-photo {
    width: 48%;
    bottom: 0;
  }

  .quick-strip div {
    min-height: 108px;
  }

  .gallery-main,
  .gallery-main img {
    min-height: 420px;
  }

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

  .visit-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .mobile-sticky {
    display: flex;
  }

  .mobile-sticky.is-hidden {
    display: none;
  }
}
