:root {
  color-scheme: light;
  --ink: #132033;
  --muted: #607086;
  --line: #d9e1e7;
  --paper: #f4f0e8;
  --white: #fff;
  --sea: #057c8f;
  --leaf: #26724f;
  --sun: #f0b44d;
  --night: #102c36;
  --soft: #f8fbf9;
}

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

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 22, 28, .78), rgba(8, 22, 28, 0));
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
}

.nav-action {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 6px;
}

.phone-action {
  background: rgba(240, 180, 77, .96);
  border-color: transparent;
  color: #221708;
}

.breadcrumb-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 92px clamp(18px, 5vw, 72px) 14px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumb-bar a { color: var(--sea); }
.breadcrumb-bar span:last-child { color: var(--ink); }

.hero {
  min-height: 70vh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 5vw, 72px) 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 19, 27, .72), rgba(4, 19, 27, .36) 54%, rgba(4, 19, 27, .06)),
    var(--hero) center/cover;
}

.hero-inner { max-width: 920px; }
.eyebrow {
  margin: 0 0 14px;
  color: #ffd17a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.48;
}

.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 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary { background: var(--sun); color: #221708; }
.button.secondary { border-color: rgba(255,255,255,.72); color: var(--white); }
.button.dark { background: var(--night); color: var(--white); }

section { padding: 68px clamp(18px, 5vw, 72px); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 560px);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.16;
}

.lead,
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

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

.product-grid .card {
  width: 100%;
  max-width: none;
}

.card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

a.card {
  color: inherit;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

a.card:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 124, 143, .42);
  box-shadow: 0 18px 34px rgba(18, 45, 57, .12);
}

.card-photo {
  aspect-ratio: 3 / 2;
  min-height: unset;
  background-image:
    linear-gradient(180deg, rgba(7, 29, 38, 0), rgba(7, 29, 38, .08)),
    var(--image);
  background-position: var(--img-pos, center);
  background-size: var(--img-fit, cover);
  background-repeat: no-repeat;
  filter: saturate(1.22) contrast(1.04) brightness(1.06);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.card-body p {
  color: var(--muted);
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.chips span {
  padding: 7px 9px;
  border-radius: 6px;
  background: #e9f1ef;
  color: #315b50;
  font-size: 13px;
  font-weight: 800;
}

.meta {
  margin-top: auto;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.meta strong { color: var(--ink); }

.detail-section { background: var(--white); }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: start;
}

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

.fact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.fact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sea);
  font-size: 13px;
  text-transform: uppercase;
}

.fact-card span,
.fact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.schedule-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(140px, .9fr) minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.schedule-row:last-child { border-bottom: 0; }
.schedule-row strong { color: var(--ink); }

.booking-note {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--sun);
  background: #fff7e6;
  color: #5f5134;
  line-height: 1.55;
}

.booking-note a {
  color: #315b50;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-panel {
  background: #f8fbf9;
}

.price-head {
  align-items: start;
}

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

.price-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card h3 {
  margin-bottom: 0;
}

.price-category {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 6px;
  background: #e9f1ef;
  color: #315b50;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-value {
  margin: 0;
  color: var(--sea);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.price-meta {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.price-meta strong {
  color: var(--ink);
}

.price-action {
  width: fit-content;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.next-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--sea);
  font-weight: 850;
}

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

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.location-map {
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
  background: #dfe8e7;
}

.location-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.location-body h3 { margin-bottom: 0; }

.location-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-lines {
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-lines strong {
  color: var(--ink);
}

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

.contact-actions a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
}

.contact-actions a.primary-link {
  border-color: transparent;
  background: var(--sun);
  color: #221708;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 52, 64, .94), rgba(12, 52, 64, .76)),
    var(--band) center/cover;
}

.band p { color: rgba(255,255,255,.78); }

.request-box {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.request-box ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #edf1f1;
  font-size: 14px;
}

@media (max-width: 980px) {
  .topbar { align-items: flex-start; gap: 10px 18px; }
  nav { justify-content: flex-end; gap: 8px 12px; font-size: 13px; }
  .section-head,
  .detail-grid,
  .band { grid-template-columns: 1fr; }
  .card-grid,
  .price-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .topbar { padding: 12px 18px; background: rgba(8, 22, 28, .9); }
  nav { width: 100%; justify-content: flex-start; }
  nav a { padding: 4px 0; }
  .nav-action { padding: 9px 11px; }
  .breadcrumb-bar { padding: 126px 18px 12px; }
  .hero { min-height: 82vh; padding: 104px 18px 44px; }
  section { padding: 52px 18px; }
  .fact-grid,
  .schedule-row { grid-template-columns: 1fr; }
  .card-grid,
  .price-grid,
  footer,
  .product-grid { grid-template-columns: 1fr; }
  footer { display: grid; }
}
