:root {
  color-scheme: light;
  --ink: #0b1110;
  --ink-2: #111917;
  --cream: #f7f3ec;
  --paper: #fffaf1;
  --line: rgba(14, 25, 22, 0.12);
  --muted: #66716a;
  --gold: #cda566;
  --gold-soft: #ead6b7;
  --jade: #6f9b86;
  --jade-dark: #426b59;
  --shadow: 0 20px 50px rgba(8, 16, 14, 0.16);
  font-family: Inter, Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  min-height: 80px;
  padding: 16px clamp(20px, 6vw, 84px);
  color: #fffaf4;
  background: rgba(8, 13, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.brand strong {
  color: #86b69a;
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold);
}

.brand svg,
.site-footer svg {
  width: 1.25em;
  height: 1.25em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 250, 244, 0.88);
}

.site-nav a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #78a68e, #4d7562);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(12, 20, 17, 0.26);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 765px;
  overflow: hidden;
  color: #fff;
  background: #0a0f0e;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 9, 0.92) 0%, rgba(5, 10, 9, 0.78) 29%, rgba(5, 10, 9, 0.18) 61%, rgba(5, 10, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 10, 9, 0.36), rgba(5, 10, 9, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, calc(100% - 40px));
  padding: 190px 0 120px clamp(22px, 6.4vw, 86px);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: #fffaf4;
  background: #0b1110;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(980px, 100%);
  padding: 154px clamp(24px, 6vw, 84px) 92px;
}

.page-hero-content h1 {
  max-width: 880px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fffaf4;
}

.breadcrumb a + span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 250, 244, 0.4);
}

.breadcrumb span + span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 250, 244, 0.4);
}

.letter-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(50px, 4.9vw, 70px);
  line-height: 0.96;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.75;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button svg {
  width: 18px;
  height: 18px;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #7eab94, #4f7965);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(22, 44, 35, 0.24);
}

.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.34);
}

.wide {
  flex: 1 1 240px;
  width: 100%;
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  color: #f9f4ec;
  background: #0d1413;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-rail div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
  padding: 34px clamp(18px, 4vw, 68px);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-rail svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.trust-rail strong {
  font-size: 16px;
}

.trust-rail span {
  margin-top: 6px;
  color: rgba(249, 244, 236, 0.72);
  font-size: 14px;
}

.services-section,
.steps-section,
.content-band,
.content-section,
.related-section {
  scroll-margin-top: 90px;
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 12% 0%, rgba(205, 165, 102, 0.13), transparent 34%),
    var(--paper);
}

.content-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.content-band.alt,
.related-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(111, 155, 134, 0.16), transparent 36%),
    #f3eee5;
}

.content-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.content-section article {
  max-width: 640px;
}

.content-lede h2,
.content-section h2,
.related-section h2 {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.content-lede p,
.content-copy p,
.content-copy li,
.area-list li,
.area-list span {
  color: #56615b;
  font-size: 17px;
  line-height: 1.75;
}

.content-copy p:first-child {
  margin-top: 0;
}

.content-copy ul,
.area-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.content-copy li,
.area-list li,
.area-list span {
  position: relative;
  padding-left: 28px;
}

.content-copy li::before,
.area-list li::before,
.area-list span::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.price-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 29, 25, 0.1);
}

.price-panel h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 2.4vw, 38px);
  line-height: 1;
}

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

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(14, 25, 22, 0.1);
  font-weight: 800;
}

.price-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list dt {
  color: #2e3833;
}

.price-list dd {
  color: var(--ink);
  white-space: nowrap;
}

.price-panel .button {
  flex: 0 0 auto;
  margin-top: clamp(28px, 4vw, 42px);
  width: 100%;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.area-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.related-card {
  min-height: 138px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 29, 25, 0.07);
}

.related-card strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.related-card span {
  display: block;
  margin-top: 12px;
  color: #5e6963;
  font-size: 14px;
  line-height: 1.5;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.booking-intro h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.section-heading p:not(.letter-label),
.booking-intro p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px);
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 29, 25, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(111, 155, 134, 0.5);
  box-shadow: 0 24px 54px rgba(21, 29, 25, 0.15);
  outline: none;
}

.service-card-link {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.service-card picture {
  display: block;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
}

.service-card-body svg {
  width: 32px;
  height: 32px;
  color: var(--jade-dark);
}

.service-card h3 {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(32px, 2.4vw, 42px);
  line-height: 0.98;
}

.service-card p {
  margin: 16px 0 28px;
  color: #59645e;
  font-size: 16px;
  line-height: 1.55;
}

dl,
dt,
dd {
  margin: 0;
}

.service-card dl {
  display: grid;
  gap: 11px;
  margin-top: auto;
}

.service-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
}

.service-card dt {
  color: #2e3833;
}

.service-card dd {
  color: var(--ink);
  white-space: nowrap;
}

.booking-section {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 104px);
  color: #f8f4ec;
  background:
    linear-gradient(135deg, rgba(12, 18, 16, 0.94), rgba(14, 23, 20, 0.96)),
    #0d1413;
}

.booking-intro h2 {
  color: #fffaf1;
}

.booking-intro p {
  max-width: 420px;
  margin-left: 0;
  color: rgba(248, 244, 236, 0.74);
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 390px;
  margin-top: 62px;
  color: rgba(248, 244, 236, 0.8);
  line-height: 1.6;
}

.privacy-note svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex: 0 0 auto;
}

.booking-form {
  display: grid;
  gap: 22px;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: grid;
  gap: 9px;
  color: rgba(248, 244, 236, 0.92);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  padding: 0 16px;
  outline: none;
}

select {
  color-scheme: dark;
}

select option,
select optgroup {
  color: #f8f4ec;
  background: #111917;
}

select option:checked {
  color: #0b1110;
  background: #cda566;
}

textarea {
  min-height: 126px;
  padding-top: 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(126, 171, 148, 0.88);
  box-shadow: 0 0 0 3px rgba(126, 171, 148, 0.16);
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.booking-summary strong {
  color: #fff;
}

.booking-summary span {
  color: var(--gold-soft);
  font-weight: 900;
  white-space: nowrap;
}

.booking-summary small {
  color: rgba(248, 244, 236, 0.58);
}

.form-actions {
  margin-top: 0;
}

.form-actions .wide {
  flex: 1 1 220px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 18px;
  color: rgba(248, 244, 236, 0.82);
  background: rgba(126, 171, 148, 0.1);
  border: 1px solid rgba(126, 171, 148, 0.24);
  border-radius: 8px;
  line-height: 1.65;
}

.form-status.is-visible {
  display: grid;
  gap: 10px;
}

.form-status.is-success {
  border-color: rgba(126, 171, 148, 0.56);
  background: rgba(126, 171, 148, 0.12);
}

.form-status.is-error {
  border-color: rgba(205, 116, 96, 0.58);
  background: rgba(205, 116, 96, 0.13);
}

.form-status strong,
.form-status a {
  color: #fff;
}

.form-status small {
  color: rgba(248, 244, 236, 0.62);
}

.steps-section {
  padding-bottom: clamp(80px, 9vw, 130px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.steps-grid article {
  text-align: center;
  padding: 12px 50px;
  border-right: 1px solid var(--line);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid svg {
  width: 68px;
  height: 68px;
  padding: 18px;
  color: var(--jade-dark);
  border: 1px solid rgba(66, 107, 89, 0.35);
  border-radius: 50%;
}

.steps-grid h3 {
  margin-top: 26px;
  font-size: 32px;
}

.steps-grid h3 span {
  margin-right: 8px;
  color: var(--ink);
  font-size: 40px;
}

.steps-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(32px, 6vw, 80px);
  padding: 62px clamp(22px, 6vw, 84px) 34px;
  color: rgba(255, 250, 244, 0.82);
  background: #0d1413;
}

.footer-brand {
  color: #fffaf4;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font: 800 12px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 390px;
  line-height: 1.7;
}

.site-footer a:not(.brand):not(.button),
.site-footer p {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(255, 250, 244, 0.82);
}

.footer-call {
  width: fit-content;
  min-height: 48px;
  margin-top: 24px;
}

.copyright {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 34px !important;
  color: rgba(255, 250, 244, 0.5) !important;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 70px;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(8, 13, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-call {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: 730px;
  }

  .hero-media img,
  .page-hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 10, 9, 0.9), rgba(5, 10, 9, 0.6) 48%, rgba(5, 10, 9, 0.22));
  }

  .hero-content,
  .page-hero-content {
    width: auto;
    padding: 138px 22px 88px;
  }

  h1 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .trust-rail,
  .booking-section,
  .steps-grid,
  .content-band,
  .content-section,
  .split-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-rail div,
  .steps-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

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

  .related-grid,
  .area-list {
    grid-template-columns: 1fr 1fr;
  }

  .booking-section {
    padding-top: 76px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    font-size: 22px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .page-hero {
    min-height: 700px;
  }

  .hero-content,
  .page-hero-content {
    max-width: 100vw;
    padding: 132px 18px 74px;
  }

  .breadcrumb {
    max-width: 100%;
    overflow: hidden;
    font-size: 13px;
  }

  .breadcrumb span {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 10.5vw, 54px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .form-actions .wide {
    flex: 0 0 auto;
  }

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

  .services-section,
  .steps-section,
  .content-band,
  .content-section,
  .related-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .related-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

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

  .hero-content,
  .page-hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
