:root {
  --brand-size: 1.05rem;
  --nav-size: .92rem;
  --eyebrow-size: .74rem;
  --headline-max: 3.8rem;
  --section-headline-size: 4.5rem;
  --lead-size: 1.05rem;
  --body-size: .95rem;
  --package-title-size: 1.6rem;
  --price-size: 1rem;
  --fine-print-size: .9rem;
  --form-label-size: .86rem;
  --form-button-size: .95rem;
  --bg: #f7f6f2;
  --text: #151515;
  --muted: #6f6c65;
  --line: #d8d4cb;
  --card: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, sans-serif; }
a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; padding: 20px 4vw; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.06); }
.brand { font-family: "Playfair Display", serif; font-size: var(--brand-size); letter-spacing: .02em; }
nav { display: flex; gap: 24px; font-size: var(--nav-size); }
nav a:hover { opacity: .55; }
main { width: min(1500px, 94vw); margin: auto; }
.intro { padding: 9vh 0 5vh; max-width: 850px; }
.eyebrow { margin: 0 0 14px; font-size: var(--eyebrow-size); font-weight: 600; letter-spacing: .18em; color: var(--muted); }
h1, h2, h3 { font-family: "Playfair Display", serif; font-weight: 500; }
.intro h1 { margin: 0 0 18px; font-size: clamp(2.5rem, 7vw, var(--headline-max)); line-height: .98; }
.content-section h1 { margin: 0 0 18px; font-size: clamp(2.5rem, 7vw, var(--section-headline-size)); line-height: .98; }
.intro > p:last-child, .lead { color: var(--muted); font-size: var(--lead-size); line-height: 1.65; }
.masonry { columns: 4 260px; column-gap: 12px; padding-bottom: 70px; }
.gallery-link { display: block; break-inside: avoid; margin-bottom: 12px; overflow: hidden; background: #e8e5dd; }
.gallery-link img { width: 100%; display: block; transition: transform .35s ease, opacity .35s ease; }
.gallery-link:hover img { transform: scale(1.015); opacity: .88; }
.info-page { max-width: 1050px; }
.content-section { padding: 110px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 70px; }
.content-section h2 { font-size: clamp(2.2rem, 5vw, var(--section-headline-size)); margin: 0 0 30px; }
.content-section > p { max-width: 720px; line-height: 1.75; font-size: var(--body-size); white-space: pre-line; }
.price-card { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card h3 { font-size: var(--package-title-size); margin: 0 0 8px; }
.price-card p { color: var(--muted); max-width: 590px; line-height: 1.6; font-size: var(--body-size); }
.price { color: var(--text) !important; font-weight: 600; white-space: nowrap; font-size: var(--price-size) !important; }
.fine-print { color: var(--muted); font-size: var(--fine-print-size) !important; }
.contact-form { display: grid; gap: 18px; max-width: 720px; }
.contact-form label { display: grid; gap: 8px; font-size: var(--form-label-size); font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: var(--card); color: var(--text); padding: 14px; font: inherit; border-radius: 0; }
.contact-form button { width: max-content; border: 0; padding: 14px 22px; background: var(--text); color: #fff; font-family: inherit; font-size: var(--form-button-size); cursor: pointer; }
.contact-form button:hover { opacity: .78; }
footer { padding: 35px 4vw 50px; color: var(--muted); font-size: .8rem; }
@media (max-width: 700px) {
  .site-header { padding: 16px 5vw; }
  nav { gap: 13px; }

  main { width: 90vw; }
  .intro { padding-top: 70px; }
  .masonry { columns: 2 145px; column-gap: 8px; }
  .gallery-link { margin-bottom: 8px; }
  .content-section { padding: 75px 0; }
  .price-card { display: block; }
}
