:root {
  --ink: #13272b;
  --muted: #66716f;
  --paper: #f7f3eb;
  --white: #fffdf8;
  --gold: #b9a15f;
  --gold-dark: #7e6b35;
  --sea: #0f6b74;
  --line: rgba(19, 39, 43, 0.14);
  --shadow: 0 24px 70px rgba(16, 35, 38, 0.18);
}

* {
  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: var(--paper);
  line-height: 1.5;
}

body.lang-en [data-lang-toggle] {
  min-width: 48px;
}

a {
  color: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 25px;
  border-radius: 50%;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex: 1;
}

.nav-links a {
  color: rgba(19, 39, 43, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-toggle {
  min-width: 48px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--gold);
  color: #15150f;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(126, 107, 53, 0.2);
}

.button:hover {
  background: #c7b271;
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 14px;
}

.button-quiet {
  background: var(--sea);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(15, 107, 116, 0.2);
}

.button-quiet:hover {
  background: #13818b;
}

.button-ghost {
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.42);
  box-shadow: none;
}

.contact .button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 20, 0.88), rgba(8, 18, 20, 0.42) 52%, rgba(8, 18, 20, 0.12)),
    linear-gradient(0deg, rgba(8, 18, 20, 0.88), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px) clamp(104px, 14vw, 154px);
  color: var(--white);
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.98;
  font-weight: 500;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 19px;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 28px;
  z-index: 2;
  width: min(520px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.hero-card div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-card div:last-child {
  border-right: 0;
}

.hero-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
}

.hero-card strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

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

.quick-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

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

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

.quick-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quick-strip strong {
  margin-top: 5px;
  font-size: 16px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

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

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

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

.intro-grid article,
.contact-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.intro-grid p,
.feature-copy p,
.split-copy p,
.contact-grid p {
  color: var(--muted);
}

.feature,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #edf3f1;
}

.feature.reverse .feature-copy {
  order: 2;
}

.feature-copy,
.split-copy {
  max-width: 650px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--sea);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.text-link {
  color: var(--sea);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: end;
}

.image-mosaic img,
.split-media img,
.image-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-mosaic img:first-child {
  aspect-ratio: 1;
}

.image-mosaic img:last-child {
  aspect-ratio: 0.78;
}

.split {
  background: var(--ink);
  color: var(--white);
}

.split-copy p,
.split-copy span {
  color: rgba(255, 253, 248, 0.76);
}

.split-media img {
  aspect-ratio: 0.88;
}

.schedule-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.schedule-list div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
}

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

.schedule-list strong {
  margin-bottom: 4px;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-stack img:first-child {
  aspect-ratio: 1.65;
}

.image-stack img:last-child {
  width: 58%;
  margin-left: auto;
  aspect-ratio: 1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.stat-row div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-row strong {
  font-size: 26px;
  color: var(--sea);
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
}

.contact {
  background: var(--white);
}

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

.contact-grid a {
  display: block;
  margin-top: 10px;
  color: var(--sea);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-actions {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px) 96px;
  color: rgba(255, 253, 248, 0.82);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.mobile-actions a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
}

.mobile-actions a:last-child {
  color: #15150f;
  background: var(--gold);
  border-right: 0;
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-card,
  .quick-strip,
  .intro-grid,
  .feature,
  .feature.reverse,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    left: 18px;
    right: 18px;
  }

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

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

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

  .feature.reverse .feature-copy {
    order: 0;
  }

  .feature-copy,
  .split-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

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

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-content {
    padding: 80px 18px 340px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-actions .button-quiet,
  .hero-actions .button-ghost {
    display: none;
  }

  .button-ghost {
    color: var(--white);
    background: rgba(255, 253, 248, 0.1);
  }

  .section {
    padding: 64px 18px;
  }

  h2 {
    font-size: 36px;
  }

  .image-mosaic,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
