@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --ink: #17251f;
  --cream: #f8f5ee;
  --sand: #ece5d6;
  --lime: #d7ec58;
  --muted: #5d6760;
  --line: #d1cbc0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px 'DM Sans', sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.1rem);
  max-width: 750px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

header {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.1em;
  text-decoration: none;
}

.brand span {
  color: #ba6243;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .9rem;
}

.dark {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: .9rem 1.2rem;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.plain {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 6vw;
  color: #fff;
  background:
    linear-gradient(90deg, #17251fdf, #17251f20),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.hero i,
.eyebrow {
  color: var(--lime);
}

.hero > div > p {
  max-width: 560px;
  line-height: 1.65;
  font-size: 1.15rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 600;
}

.green {
  color: #74882e;
}

.section {
  padding: 7rem 5vw;
}

.filters {
  margin: 2rem 0 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  background: var(--sand);
  padding: 1.2rem;
}

.filters input,
.filters select,
input,
textarea {
  padding: .8rem;
  width: 100%;
  border: 1px solid #cfc8ba;
  background: #fff;
  font: inherit;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card,
.package {
  background: #fff;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
}

.card > div,
.package {
  padding: 1.3rem;
}

.card p,
.card small,
.package > p:first-child {
  font-size: .78rem;
  color: var(--muted);
}

.card small {
  float: right;
}

.card button,
.package button {
  margin-top: 1.2rem;
  background: none;
  border: 0;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}

.pale {
  background: #eee9dd;
}

.package h3 {
  margin-bottom: .4rem;
}

.package b {
  font: 1.4rem 'Playfair Display', serif;
}

.package p {
  font-size: .88rem;
  line-height: 1.6;
}

.menu {
  color: #405047;
}

.steps {
  background: var(--ink);
  color: #fff;
  padding: 7rem 5vw;
}

.steps p {
  color: #d4dad4;
  line-height: 1.6;
}

.steps b {
  color: var(--lime);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #17251fbe;
  z-index: 4;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.dialog {
  background: var(--cream);
  width: min(580px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
  position: relative;
}

.wide {
  width: min(850px, 100%);
}

.x {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
}

.dialog label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin: 1rem 0;
}

.dialog textarea {
  height: 90px;
}

.gallery {
  height: 280px;
  margin: -2rem -2rem 2rem;
  background: var(--ink);
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery button {
  position: absolute;
  top: 45%;
  border: 0;
  background: #17251fba;
  color: #fff;
  padding: .7rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.left {
  left: 1rem;
}

.right {
  right: 1rem;
}

.gallery span {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  background: #17251fa0;
  padding: .3rem;
}

.detail {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.package-detail {
  align-items: flex-start;
}

.detail h3 {
  margin: .2rem 0;
}

.policy-note {
  background: #f4eddd;
  border-left: 4px solid #ba6243;
  color: #405047;
  font-size: .86rem;
  line-height: 1.5;
  padding: .75rem .9rem;
}

.package-estimator {
  min-width: 250px;
}

.stepper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: .35rem;
  margin-top: .45rem;
}

.stepper button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.estimate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
  margin: 1rem 0;
}

.small-estimate {
  font-size: .9rem;
}

.estimate span {
  color: var(--muted);
  font-size: .84rem;
}

.estimate strong {
  text-align: right;
}

.deposit {
  background: var(--sand);
  padding: 1rem;
  font-size: .85rem;
}

.success {
  padding: 1.5rem;
  background: #e4efbb;
}

footer {
  padding: 4rem 5vw 1.5rem;
  background: var(--ink);
  color: #fff;
}

footer p {
  margin: .5rem 0 2rem;
}

footer strong {
  font-size: 1.7rem;
  letter-spacing: -.1em;
}

footer strong span {
  color: var(--lime);
}

footer a {
  color: #d4dad4;
  display: block;
  margin: .65rem 0;
  text-decoration: none;
}

.footer-brand {
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: #d4dad4;
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 2.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #d4dad4;
  font-size: .85rem;
}

.public-page {
  max-width: 1120px;
  margin: auto;
  padding: 6rem 5vw;
}

.public-page h1 {
  max-width: 850px;
}

.story-panel,
.info-grid article,
.process-grid article,
.faq-grid section,
.contact-card,
.public-form {
  background: #fff;
  padding: 2rem;
}

.story-panel {
  margin: 3rem 0;
}

.story-panel p,
.info-grid p,
.process-grid p,
.faq-item p,
.public-page p {
  line-height: 1.65;
}

.info-grid,
.process-grid,
.faq-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.process-grid ol {
  padding-left: 1.2rem;
}

.process-grid li {
  margin: .8rem 0;
  font-weight: 600;
}

.faq-item {
  border-top: 1px solid #ded6ca;
  padding-top: 1rem;
  margin-top: 1rem;
}

.public-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.map-placeholder {
  margin-top: 1.5rem;
  background: var(--sand);
  border: 1px dashed #b9af9f;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #405047;
}

@media (max-width: 800px) {
  header {
    padding: 0 1.25rem;
  }

  nav a,
  .plain {
    display: none;
  }

  .hero,
  .section,
  .steps {
    padding: 4rem 1.25rem;
  }

  .hero {
    min-height: 560px;
  }

  .filters,
  .grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 220px;
  }

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

  .package-estimator {
    width: 100%;
  }

  .gallery {
    height: 220px;
  }

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

  .estimate strong {
    text-align: left;
  }

  .footer-grid,
  .info-grid,
  .process-grid,
  .faq-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .public-page {
    padding: 4rem 1.25rem;
  }
}
.flow-note{margin:1rem 0;background:#fff;padding:1rem;border-left:4px solid var(--lime);color:#4d5851}.flow-note.compact{font-size:.84rem}.flow-note ol{padding-left:1.1rem;line-height:1.55}.booking-progress{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:1rem}.booking-progress span{border:1px solid #d6d0c5;color:#6d766f;font-size:.72rem;padding:.4rem .55rem}.booking-progress span.active{background:var(--ink);border-color:var(--ink);color:white}
