:root {
  --bg: #fbf8f4;
  --surface: #ffffff;
  --soft: #f1e9e1;
  --taupe: #ddd1c6;
  --line: #d8cec4;
  --text: #151515;
  --muted: #625b54;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--text);
}

.skip-link:focus {
  top: 12px;
}

.page-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-mark {
  display: inline-flex;
  width: 190px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
}

.site-nav a {
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  opacity: 0.58;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.home-hero,
.page-hero {
  padding: 58px 0 44px;
}

.hero-grid,
.page-hero-grid,
.about-grid,
.two-column,
.contact-grid,
.booking-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero-logo {
  width: min(410px, 100%);
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-photo,
.page-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.hero-photo img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}

.page-photo img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.page-photo-tall img {
  min-height: 600px;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
}

h3 {
  font-size: 2rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.eyebrow,
.package-kicker {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.section-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.button-dark {
  color: var(--surface);
  background: var(--text);
}

.button-light {
  color: var(--text);
  background: transparent;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.response-note,
.small-note,
.form-note,
.package-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: var(--soft);
}

.section-border-top {
  border-top: 1px solid var(--line);
}

.intro-block,
.final-cta,
.faq-shell {
  max-width: 760px;
}

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

.simple-list-grid p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.package-preview-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.two-packages,
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-preview-grid article,
.pricing-card,
.contact-copy,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.package-preview-grid article h3,
.pricing-card h2 {
  margin-bottom: 8px;
}

.pricing-card-featured {
  background: var(--taupe);
}

.package-summary {
  min-height: 52px;
}

.package-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.package-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list {
  display: grid;
}

.detail-list p {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list strong,
.detail-list span {
  color: var(--text);
}

.about-copy p {
  max-width: 640px;
}

.accordion-list {
  display: grid;
}

.accordion-list details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.accordion-list details:first-child {
  border-top: 1px solid var(--line);
}

.accordion-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list details p {
  max-width: 720px;
  margin: 14px 0 0;
}

.contact-grid {
  align-items: start;
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-meta p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 17px;
}

.field-grid,
.two-column-fields {
  display: grid;
  gap: 16px;
}

.two-column-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: var(--surface);
}

textarea {
  resize: vertical;
}

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
}

.thank-you-card {
  max-width: 720px;
  text-align: center;
}

.thank-you-card img {
  width: min(460px, 100%);
  margin: 0 auto 32px;
}

.site-footer {
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  gap: 23px;
}

.footer-brand {
  width: 180px;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-meta p {
  margin: 0;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 83px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--bg);
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .two-column,
  .contact-grid,
  .booking-details,
  .two-packages,
  .pricing-grid,
  .two-column-fields {
    grid-template-columns: 1fr;
  }

  .hero-photo img,
  .page-photo img,
  .page-photo-tall img {
    min-height: 360px;
  }

  .detail-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .simple-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-mark {
    width: 165px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .site-nav {
    top: 75px;
    left: 12px;
    right: 12px;
  }

  .home-hero,
  .page-hero {
    padding: 38px 0 28px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-photo img {
    min-height: 315px;
  }

  .page-photo img,
  .page-photo-tall img {
    min-height: 330px;
  }

  .package-preview-grid article,
  .pricing-card,
  .contact-copy,
  .contact-form {
    padding: 22px;
  }

  .hero-actions,
  .section-intro {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }
}


.form-privacy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
