:root {
  --ink: #182327;
  --muted: #5f6766;
  --paper: #f8f3ea;
  --paper-2: #efe2cf;
  --teal: #153f48;
  --teal-2: #0f5d63;
  --clay: #c95e46;
  --gold: #d99b48;
  --line: rgba(24, 35, 39, 0.14);
  --shadow: 0 22px 70px rgba(21, 63, 72, 0.2);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(248, 243, 234, 0.94);
  box-shadow: 0 10px 30px rgba(24, 35, 39, 0.12);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

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

.brand small {
  font-size: 0.76rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.93rem;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.lang-toggle {
  min-width: 44px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 5vw, 72px) 28px;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 25, 31, 0.88), rgba(10, 25, 31, 0.48) 48%, rgba(10, 25, 31, 0.16)),
    linear-gradient(0deg, rgba(10, 25, 31, 0.72), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-bottom: clamp(120px, 17vh, 190px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1,
.section-head h2,
.intro h2,
.experience h2,
.visit h2,
.contact h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--clay);
  color: #fff;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(248, 243, 234, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

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

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin: 4px 0;
  font-size: 1.1rem;
}

.section-band {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-band.light {
  background: #fffaf2;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-col,
.split,
.visit-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.intro h2,
.experience h2,
.visit h2,
.contact h2,
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.copy-block {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-block p {
  margin: 0 0 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-item {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.offer-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--clay);
  font-weight: 900;
}

.offer-item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.offer-item p,
.muted,
.check-list {
  color: var(--muted);
}

.offer-item p {
  margin: 0;
}

.quote-panel {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 63, 72, 0.94), rgba(15, 93, 99, 0.88)),
    var(--teal);
  color: #fff;
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.contact-row:hover,
.offer-item:hover,
.step:hover {
  border-color: rgba(201, 94, 70, 0.55);
}

.contact-row span {
  color: var(--muted);
}

.contact-row strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.contact-row.route {
  background: var(--ink);
  color: #fff;
}

.contact-row.route span {
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  padding: 34px clamp(18px, 5vw, 72px) 92px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.footer span:first-child {
  color: #fff;
  font-weight: 800;
}

.mobile-bar {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(248, 243, 234, 0.94);
  box-shadow: 0 16px 48px rgba(24, 35, 39, 0.2);
  backdrop-filter: blur(14px);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.mobile-bar a:first-child {
  background: var(--clay);
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 94vh;
    display: block;
    padding: 96px 18px 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .two-col,
  .split,
  .visit-layout,
  .contact-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-item {
    min-height: 0;
  }

  .offer-icon {
    margin-bottom: 26px;
  }

  .section-band {
    padding: 64px 18px;
  }

  .contact-row {
    display: grid;
    gap: 6px;
  }

  .contact-row strong {
    text-align: left;
  }

  .footer-inner {
    display: grid;
  }

  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 128px;
  }

  .hero-actions {
    gap: 10px;
  }
}
