:root {
  --bg: #f4f0e4;
  --bg-soft: #ece5d2;
  --paper: rgba(255, 252, 245, 0.82);
  --paper-strong: #fffaf0;
  --text: #24301e;
  --muted: #6d6657;
  --line: rgba(36, 66, 33, 0.14);
  --brand: #244221;
  --brand-2: #d7b94a;
  --shadow: 0 20px 50px rgba(36, 48, 30, 0.10);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1240px;
  --side: 260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 185, 74, 0.20), transparent 26%),
    linear-gradient(180deg, #f7f2e7 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-shell {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 1fr);
  min-height: 100vh;
}

.side-nav {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  background: rgba(244, 240, 228, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.side-nav nav {
  display: grid;
  gap: 10px;
}
.side-nav nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}
.side-nav nav a:hover,
.side-nav nav a:focus-visible {
  color: var(--brand);
  background: rgba(36, 66, 33, 0.08);
}
.side-contact {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.side-contact p,
.section-heading p,
.footer-copy,
.hero-text,
.cta-copy p,
.about-copy p,
.text-card p,
.subpage-hero p,
.rules-list,
.document-list a {
  color: var(--muted);
}
.side-contact a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
}

.content {
  width: min(100%, calc(var(--max) + 80px));
  margin: 0 auto;
  padding: 28px 40px 80px;
}
.topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.phone-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.phone-pill,
.btn-primary {
  background: var(--brand);
  color: #fffef8;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(36, 66, 33, 0.18);
}
.phone-pill:hover,
.btn:hover {
  transform: translateY(-2px);
}

.section {
  margin-bottom: 36px;
}
.hero {
  position: relative;
  min-height: 82vh;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow);
}
.hero-backdrop,
.hero-backdrop img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-backdrop img { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(180deg, rgba(28, 35, 23, 0.08) 0%, rgba(28, 35, 23, 0.68) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 52px;
  color: #fffef8;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-2);
}
.hero h1,
.section-heading h2,
.cta-copy h2,
.footer h2,
.subpage-hero h1,
.text-card h2,
.about-copy h3,
.offer-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero h1 { font-size: clamp(3.4rem, 8vw, 6.4rem); }
.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 250, 240, 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}
.section-heading h2,
.cta-copy h2,
.footer h2,
.subpage-hero h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.section-heading h2 + p,
.section-heading p:last-child,
.cta-copy p,
.footer-copy,
.text-card p,
.rules-list,
.document-list {
  font-size: 1rem;
  line-height: 1.8;
}
.offer-grid,
.gallery-grid,
.subpage-content {
  display: grid;
  gap: 22px;
}
.offer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.offer-card {
  padding: 28px;
}
.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(36, 66, 33, 0.08);
}
.icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--brand);
}
.offer-card h3 { font-size: 2rem; margin-bottom: 12px; }
.offer-card p,
.about-copy p { line-height: 1.8; }

.cta-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.cta-media,
.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 380px;
  box-shadow: var(--shadow);
}
.cta-media img,
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.cta-copy {
  padding: 34px;
  background: linear-gradient(180deg, rgba(36, 66, 33, 0.94) 0%, rgba(22, 38, 21, 0.98) 100%);
  color: #fffef8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-copy p { color: rgba(255, 250, 240, 0.8); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.about-copy {
  padding: 16px 6px;
}
.about-copy h3 { font-size: clamp(2rem, 3vw, 3.2rem); margin-bottom: 14px; }
.reverse .about-copy { order: 1; }
.reverse .about-media { order: 2; }

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.rules-section,
.footer,
.subpage-hero,
.text-card {
  padding: 34px;
}
.rules-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.75) 0%, rgba(237, 233, 219, 0.94) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-card {
  padding: 28px;
}
.contact-card a {
  display: block;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.contact-card p { margin: 18px 0 0; line-height: 1.8; color: var(--muted); }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(18, 24, 15, 0.86);
  z-index: 999;
}
.lightbox.is-open { display: flex; }
.lightbox figure {
  margin: 0;
  max-width: min(1100px, 92vw);
}
.lightbox img {
  max-height: 78vh;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.lightbox figcaption {
  margin-top: 12px;
  color: #fffaf0;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.16);
  color: #fffaf0;
  font-size: 2rem;
  cursor: pointer;
}

.subpage-body { min-height: 100vh; }
.subpage-wrap {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 32px 24px 72px;
}
.subpage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.subpage-content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.text-card a { color: var(--brand); font-weight: 600; }
.rules-list {
  padding-left: 20px;
  margin: 0;
}
.document-list {
  display: grid;
  gap: 10px;
}
.document-list a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(36, 66, 33, 0.05);
}

@media (max-width: 1180px) {
  :root { --side: 220px; }
  .offer-grid,
  .subpage-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .page-shell { grid-template-columns: 1fr; }
  .side-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    top: auto;
    z-index: 50;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
  }
  .side-nav .brand,
  .side-contact { display: none; }
  .side-nav nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
  .side-nav nav a {
    padding: 10px 6px;
    text-align: center;
    font-size: .84rem;
  }
  .content {
    width: min(100%, calc(var(--max) + 80px));
    padding: 20px 20px 124px;
  }
  .topbar { display: flex; }
  .cta-banner,
  .about-split,
  .footer,
  .subpage-content { grid-template-columns: 1fr; }
  .hero-content { padding: 32px; }
  .offer-grid,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subpage-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand span { display: none; }
  .topbar .brand span { display: inline; }
  .phone-pill { min-height: 44px; padding: 0 16px; font-size: .92rem; }
  .hero { min-height: 74vh; border-radius: 26px; }
  .hero-content { padding: 24px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .section-heading h2,
  .cta-copy h2,
  .footer h2,
  .subpage-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .offer-grid,
  .gallery-grid,
  .side-nav nav { grid-template-columns: 1fr; }
  .rules-section,
  .footer,
  .subpage-hero,
  .text-card,
  .offer-card,
  .cta-copy { padding: 24px; }
  .cta-media,
  .media-card { min-height: 280px; }
  .side-nav { left: 12px; right: 12px; bottom: 12px; }
}
