:root {
  --teal: #0aa8a0;
  --teal-dark: #04736f;
  --ink: #1d2527;
  --muted: #617174;
  --paper: #fbfaf7;
  --sand: #ede7dc;
  --clay: #b56f5a;
  --line: rgba(29, 37, 39, 0.13);
  --shadow: 0 22px 60px rgba(25, 39, 43, 0.16);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 247, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 132px;
  height: auto;
}

.brand span {
  color: var(--teal-dark);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
}

.main-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

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

.lang-switch,
.btn,
.mobile-cta a,
.mobile-cta button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.lang-switch {
  width: 46px;
  height: 42px;
  color: var(--teal-dark);
  background: #e4f5f3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  color: white;
  background: var(--teal-dark);
  box-shadow: 0 12px 24px rgba(4, 115, 111, 0.2);
}

.btn:hover {
  background: #035f5b;
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
}

.btn-secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-secondary:hover {
  background: #f0fbfa;
}

.btn-ghost {
  color: var(--teal-dark);
  background: transparent;
  border: 1px solid rgba(10, 168, 160, 0.38);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 7vw, 88px) clamp(18px, 5vw, 78px) 44px;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.82) 55%, rgba(237, 231, 220, 0.72) 100%);
}

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

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

h1,
h2 {
  margin: 0;
  line-height: 1.03;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.65rem, 7.6vw, 6.6rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.lead,
.section p,
.service p,
.timeline p,
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.mobile-hero-photo {
  display: none;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.facts div,
.contact-card {
  min-width: 0;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts dt,
.quick-panel span,
.contact-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 8px 0 0;
  font-weight: 850;
}

.hero-media {
  position: relative;
  display: grid;
  justify-items: end;
  min-height: 540px;
}

.hero-img {
  width: min(68%, 430px);
  aspect-ratio: 333 / 500;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card-img {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: min(68%, 520px);
  aspect-ratio: 648 / 432;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: -26px auto 0;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-panel a {
  min-width: 0;
  padding: 24px;
  color: white;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

.quick-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
}

.section {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 78px);
}

.split,
.visit,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service.active {
  border-color: rgba(10, 168, 160, 0.7);
  box-shadow: 0 16px 36px rgba(10, 168, 160, 0.13);
}

.service button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.service span {
  font-size: 1.28rem;
  font-weight: 900;
}

.service small {
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 850;
}

.service a,
.text-button {
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.visual-band > img {
  width: 100%;
  aspect-ratio: 648 / 432;
  object-fit: cover;
  border-radius: 8px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.mini-grid span {
  padding: 14px;
  color: var(--ink);
  background: #f3eeea;
  border-radius: 8px;
  font-weight: 850;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.timeline div {
  padding-left: 18px;
  border-left: 4px solid var(--teal);
}

.timeline strong {
  font-size: 1.14rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

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

.gallery img:first-child {
  aspect-ratio: 648 / 432;
}

.gallery img:last-child {
  aspect-ratio: 375 / 500;
}

.contact {
  background: #e8f7f5;
}

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

.contact-card {
  min-height: 145px;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 78px) 96px;
  background: var(--ink);
  color: white;
}

.site-footer p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
}

.site-footer a {
  color: white;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(29, 37, 39, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.mobile-cta a,
.mobile-cta button {
  min-height: 44px;
  color: white;
  background: var(--teal-dark);
  text-align: center;
}

.mobile-cta button {
  padding: 0;
}

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

  .main-nav {
    display: none;
  }

  .hero,
  .split,
  .visit,
  .contact,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

  .hero-card-img {
    width: min(76%, 520px);
  }

  .facts,
  .quick-panel,
  .mini-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin: 0 18px;
  }

  .quick-panel a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick-panel a:last-child {
    border-bottom: 0;
  }

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

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

  .brand img {
    width: 106px;
  }

  .brand span {
    display: none;
  }

  .btn-small {
    display: none;
  }

  .hero {
    padding: 28px 16px 36px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.08rem;
  }

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

  .mobile-hero-photo {
    display: block;
    width: 100%;
    margin-top: 22px;
    aspect-ratio: 648 / 432;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero-media {
    display: none;
  }

  .hero-img {
    width: 76%;
  }

  .hero-card-img {
    bottom: 8px;
    left: 0;
    width: 76%;
    border-width: 7px;
  }

  .section {
    padding: 58px 16px;
  }

  .service {
    padding: 18px;
  }

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

  .mobile-cta {
    display: grid;
  }
}
