:root {
  --cream: #f1ece4;
  --white: #ffffff;
  --sky: #d7e4ef;
  --sage: #a1a57a;
  --sage-dark: #788039;
  --charcoal: #2a2327;
  --stone: #c9bbab;
  --wood: #9f8d81;
  --shadow: 0 18px 45px rgba(42, 35, 39, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(241, 236, 228, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 35, 39, 0.08);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 62px;
  height: auto;
  border-radius: 0;
  border: 0;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}
.brand strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 25px; line-height: 1; }
.brand small { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #5e5458; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: linear-gradient(160deg, var(--cream), #ede8de 56%, #e7e4dc);
}
.hero-image {
  min-height: 620px;
  background: linear-gradient(rgba(42,35,39,.08), rgba(42,35,39,.08)), url('images/20260501_110209.jpg') center/cover;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(28px, 6vw, 82px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.04;
  margin: 0;
}
h1 { font-size: clamp(48px, 6vw, 78px); }
h2 { font-size: clamp(36px, 4vw, 56px); }
h3 { font-size: 30px; }
.hero-content p:not(.eyebrow) { font-size: 18px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--sage-dark);
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--sage-dark); color: var(--white); }
.button.secondary { background: transparent; color: var(--sage-dark); }

.section { max-width: 1180px; margin: 0 auto; padding: 86px 22px; }
.featured-photo {
  padding-top: 46px;
  padding-bottom: 30px;
}
.featured-photo figure {
  margin: 0;
}
.featured-photo-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  cursor: zoom-in;
}
.featured-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.featured-photo figcaption {
  margin-top: 10px;
}
.lightbox {
  width: min(94vw, 1280px);
  max-height: 92vh;
  border: 0;
  padding: 16px;
  border-radius: 18px;
  background: #111;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
.lightbox img {
  width: 100%;
  max-height: calc(92vh - 54px);
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  display: block;
  margin-left: auto;
  margin-bottom: 8px;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.highlights article {
  background: var(--white);
  border: 1px solid rgba(120, 128, 57, 0.2);
  border-radius: 18px;
  padding: 18px 20px;
}
.highlights h3 {
  font-size: 24px;
  color: var(--sage-dark);
  margin-bottom: 8px;
}
.highlights p { margin: 0; font-size: 15px; }
.intro { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.intro-text p { font-size: 18px; margin-top: 0; }
.note { color: var(--sage-dark); font-weight: 700; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 0; }
.features article {
  background: var(--white);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.features span { color: var(--wood); font-weight: 900; letter-spacing: .12em; }
.features p { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-image {
  min-height: 540px;
  border-radius: 34px;
  background: url('images/IMG-20260430-WA0008.jpg') center/cover;
  box-shadow: var(--shadow);
}
.split-content { background: var(--sage-dark); color: var(--white); padding: 48px; border-radius: 34px; }
.split-content .eyebrow { color: var(--cream); }
.check-list { padding: 0; list-style: none; margin: 24px 0 0; }
.check-list li { padding: 13px 0 13px 34px; position: relative; border-bottom: 1px solid rgba(255,255,255,.16); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--stone); font-weight: 900; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { width: 100%; height: 270px; object-fit: cover; border-radius: 22px; box-shadow: 0 10px 24px rgba(38,48,36,.08); }
.gallery-grid img { cursor: zoom-in; }
.gallery-grid img.gallery-span-2 { grid-column: span 2; }

.faq.section { padding-top: 70px; }
.faq-intro { max-width: 640px; margin-bottom: 28px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(120, 128, 57, 0.22);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  padding: 18px 22px;
  padding-right: 42px;
  position: relative;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 22px 18px;
  margin: 0;
  font-size: 16px;
  color: #3f3a3d;
  border-top: 1px solid rgba(42, 35, 39, 0.08);
}
.faq-item .faq-body p { margin: 16px 0 0; }
.faq-item .faq-body p:first-child { margin-top: 14px; }

.testimonials { padding-top: 26px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testimonial-grid blockquote {
  margin: 0;
  background: var(--white);
  border-left: 4px solid var(--sage-dark);
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: var(--shadow);
}
.testimonial-grid p {
  margin: 0 0 12px;
  font-size: 17px;
}
.testimonial-grid cite {
  font-style: normal;
  color: #5e5458;
  font-weight: 600;
}

.cta-band {
  margin: 20px auto;
  max-width: 1180px;
  padding: 56px 28px;
  border-radius: 34px;
  text-align: center;
  background: linear-gradient(rgba(120,128,57,.88), rgba(120,128,57,.88)), url('images/IMG-20260430-WA0007.jpg') center/cover;
  color: var(--white);
}
.cta-band p { max-width: 620px; margin: 14px auto 24px; }
.cta-band .button { background: var(--cream); color: var(--sage-dark); border-color: var(--cream); }

.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; align-items: start; }
.contact-card, .form {
  background: linear-gradient(180deg, var(--white), #fcfaf6);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 700;
}
.facebook-button svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 999px;
  background: #1877f2;
  fill: #fff;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}
.facebook-button span {
  color: #1877f2;
}
.form { display: grid; gap: 16px; }
label { font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 13px;
  border: 1px solid #d2c8b9;
  border-radius: 14px;
  font: inherit;
  background: #fffdfa;
}
textarea { resize: vertical; }
.form small { color: #6f746b; }
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(38,48,36,.12);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 76px; padding: 20px; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hero, .highlights, .intro, .features, .split, .contact, .testimonial-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 420px; order: 1; }
  .hero-content { order: 2; padding: 42px 22px; }
  .section { padding: 58px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img, .gallery-grid img.gallery-span-2 { grid-column: span 1; height: 220px; }
  .footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand strong { font-size: 21px; }
  .brand small { font-size: 10px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 250px; }
  .split-content, .contact-card, .form, .features article { padding: 26px; }
  .featured-photo img { aspect-ratio: 4 / 3; }
}
