:root {
  color-scheme: light;
  --ink: #173037;
  --muted: #66777a;
  --line: #d8dedb;
  --paper: #f3f2ed;
  --white: #fff;
  --sea: #176d72;
  --leaf: #3f6f5e;
  --sun: #e8b85b;
  --night: #122e34;
  --soft: #f7f6f1;
}

* { 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: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--night);
}

.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 a:not(.nav-action) {
  color: rgba(255,255,255,.82);
  transition: color .16s ease;
}

nav a:not(.nav-action):hover,
nav a:not(.nav-action):focus-visible { color: var(--white); }

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

.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: 14px clamp(18px, 5vw, 72px);
  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: clamp(440px, 58vw, 600px);
  display: grid;
  align-items: end;
  padding: 72px clamp(18px, 5vw, 72px) 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 31, 35, .84) 0%, rgba(8, 31, 35, .48) 48%, rgba(8, 31, 35, .16) 78%),
    linear-gradient(rgba(77, 86, 77, .18), rgba(23, 48, 55, .24)),
    var(--hero) center/cover;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.4vw, 78px);
  font-weight: 650;
  line-height: .98;
  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: 999px;
  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-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 650;
  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);
  box-shadow: 0 10px 28px rgba(22, 49, 54, .055);
}

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(23, 109, 114, .38);
  box-shadow: 0 18px 38px rgba(18, 45, 57, .11);
}

.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(.74) contrast(.94) brightness(.97) sepia(.025);
}

.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: 999px;
  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(18, 46, 52, .95), rgba(18, 46, 52, .80)),
    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;
}

footer a {
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 1fr) auto;
  gap: 14px 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.company-strip strong { font-size: 18px; }
.company-strip span { color: var(--muted); }
.company-strip a {
  color: var(--sea);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-documents-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 72px);
  border: 0;
  background: #f8faf9;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.legal-documents-row span {
  color: var(--ink);
  font-weight: 900;
}

.legal-documents-row a,
nav.legal-documents-row a:not(.nav-action) {
  padding: 0;
  color: var(--sea) !important;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@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; }
  .company-strip { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .topbar { padding: 14px 18px; background: var(--night); }
  nav { width: 100%; justify-content: flex-start; }
  nav a { padding: 4px 0; }
  .nav-action { padding: 9px 11px; }
  .breadcrumb-bar { padding: 12px 18px; }
  .hero {
    min-height: 64vh;
    padding: 72px 18px 42px;
    background-image:
      linear-gradient(90deg, rgba(8, 31, 35, .82), rgba(8, 31, 35, .30)),
      linear-gradient(rgba(77, 86, 77, .16), rgba(23, 48, 55, .24)),
      var(--hero);
  }
  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; }
}
