
:root {
  --wine:        #5b1a2b;
  --wine-deep:   #481320;
  --wine-2:      #6d1f2f;
  --cream:       #ece3d3;
  --cream-2:     #f4eee2;
  --cream-3:     #e4d9c5;
  --gold:        #c79a54;
  --gold-light:  #ddbd82;
  
  --gold-ink:    #7d5718;
  --ink:         #2a1a1c;
  --muted:       #6f5c53;
  --line:        rgba(91,26,43,.28);
  --line-light:  rgba(255,255,255,.28);

  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans:  "Golos Text", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: min(2400px, 93vw);
  --gutter: clamp(20px, 4vw, 96px);
  --sec-pad: clamp(64px, 9vw, 140px);
  --radius: 3px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

picture { display: contents; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 800; line-height: 1.04; }
p { margin: 0; }

.bg-linen {
  background-color: var(--cream);
  background-image: url("images/texture-linen.jpg?v=20260904");
  background-image: image-set(url("images/texture-linen.webp?v=20260904") type("image/webp"),
                              url("images/texture-linen.jpg?v=20260904") type("image/jpeg"));
  background-size: 900px;
  background-blend-mode: multiply;
}
.bg-linen-2 { background-color: var(--cream-2); }
.bg-wine {
  position: relative;
  background-color: var(--wine);
  color: var(--cream-2);
}
.bg-wine::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("images/texture-linen.jpg?v=20260904");
  background-image: image-set(url("images/texture-linen.webp?v=20260904") type("image/webp"),
                              url("images/texture-linen.jpg?v=20260904") type("image/jpeg"));
  background-size: 900px;
  mix-blend-mode: soft-light;
  opacity: .10;
  pointer-events: none;
}
.bg-wine-deep { background-color: var(--wine-deep); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--sec-pad); }
.section > .wrap { position: relative; z-index: 1; }

.kicker {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .79rem;
  color: var(--gold);
}
.h-display {
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  letter-spacing: .005em;
}
.h-section {
  font-size: clamp(2rem, 5vw, 4.1rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.serif-italic { font-style: italic; font-weight: 500; }
.gold { color: #ecd39b; }
.wine { color: var(--wine); }

.bg-wine .kicker, .bg-wine-deep .kicker { color: var(--gold-light); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted);
  max-width: 46ch;
}
.bg-wine .lead, .bg-wine-deep .lead { color: rgba(244,238,226,.82); }
.muted { color: var(--muted); }
.bg-wine .muted { color: rgba(244,238,226,.72); }

.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  font-size: .82rem;
  padding: .95em 1.9em;
  border-radius: 100px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--wine-deep); }
.btn-solid { background: var(--wine); border-color: var(--wine); color: var(--cream-2); }
.btn-solid:hover { background: var(--wine-2); color: #fff; transform: translateY(-2px); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px var(--gutter);
  background: rgba(91,26,43,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221,189,130,.22);
  transition: background .3s var(--ease);
}
.site-header .brand { display: flex; align-items: center; gap: 12px; }

.site-header .brand img { height: 46px; width: auto; opacity: 1; }
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a.navlink {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(244,238,226,.82); opacity: 1; transition: color .2s;
}
.site-header nav a.navlink:hover { color: var(--gold-light); }
.site-header nav a.navlink:hover { opacity: 1; }
@media (max-width: 860px) { .site-header nav a.navlink { display: none; } }

@media (max-width: 768px) { .site-header { position: static; } }

.hero { padding-block: clamp(40px, 6vw, 96px) clamp(56px, 8vw, 120px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.hero-title {
  color: var(--wine);
  font-weight: 800;
  text-transform: uppercase;
}
.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(1.22rem, 1.8vw, 1.54rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 40ch;
  line-height: 1.4;
}
.hero-meta {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
}
.hero-meta .stat { display: flex; align-items: baseline; gap: .45em; }
.hero-meta .stat .num {
  font-family: var(--serif); font-weight: 700; color: var(--wine);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1;
}
.hero-meta .stat .lbl { font-size: .76rem; color: var(--muted); line-height: 1.18; max-width: 11ch; }
.hero-meta .divider { width: 1px; height: 40px; background: var(--line); }
.hero-tagline {
  margin-top: 1.6rem; font-size: clamp(.95rem, 1.2vw, 1.05rem);
  font-weight: 600; color: var(--gold); letter-spacing: .01em;
}
.hero-place {
  margin-top: .6rem; font-size: .95rem; color: var(--muted); letter-spacing: .01em;
}
.hero-place b { color: var(--wine); font-weight: 600; }
.hero-photo { position: relative; }
.hero-photo img { filter: drop-shadow(0 26px 40px rgba(58,26,20,.28)); }
.hero-cta { margin-top: 2.2rem; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; margin-inline: auto; }
}

.audience-grid {
  display: grid; grid-template-columns: 1fr minmax(220px, .9fr) .85fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 60px);
}
.audience-figure { display: flex; justify-content: center; }
.audience-figure img { width: auto; max-width: 100%; max-height: 500px; margin-inline: auto; filter: drop-shadow(0 20px 34px rgba(58,26,20,.28)); }
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.checklist li {
  position: relative; padding-left: 34px;
  font-size: 1.02rem; color: var(--ink);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -.1em;
  font-family: var(--serif); font-weight: 700; color: var(--gold);
  font-size: 1.3rem; line-height: 1;
}
.who-card {
  background: var(--wine); color: var(--cream-2);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 42px);
}
.who-card h3 { color: var(--gold-light); font-size: 1.25rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .01em; }
.who-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.who-card li { color: rgba(244,238,226,.88); font-size: 1rem; padding-left: 18px; position: relative; }
.who-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-figure { order: 2; max-width: 320px; margin-inline: auto; }
  .who-card { order: 3; }
}

.quote { text-align: center; }
.quote blockquote {
  margin: 0 auto; max-width: 20ch;
  font-family: var(--serif); font-weight: 500; font-style: italic;
  color: var(--wine);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.18;
}
.quote blockquote b { font-style: normal; font-weight: 800; }

.callout-sec { text-align: center; }
.callout-lead {
  font-family: var(--serif); font-weight: 700; color: var(--wine);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  max-width: 26ch; margin-inline: auto;
}
.callout {
  margin: clamp(24px,3vw,36px) auto 0; max-width: 56ch;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.5;
  color: var(--ink); text-align: left;
  border-left: 3px solid var(--gold);
  padding-left: clamp(20px, 2.4vw, 32px);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, .9fr) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  margin-top: clamp(30px, 5vw, 64px);
}
.feature-col { display: flex; flex-direction: column; gap: clamp(30px, 5vw, 64px); }
.feature-col.right { text-align: right; }
.feature-item h3 {
  font-size: 1.25rem; color: var(--gold-light); font-weight: 700;
  margin-bottom: .5rem; line-height: 1.2;
}
.feature-item p { color: rgba(244,238,226,.82); font-size: 1rem; max-width: 30ch; }
.feature-col.right .feature-item p { margin-left: auto; }
.feature-figure img { margin-inline: auto; filter: drop-shadow(0 20px 34px rgba(0,0,0,.4)); }
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-col, .feature-col.right { text-align: left; order: 2; }
  .feature-col.right .feature-item p, .feature-item p { margin-left: 0; }
  .feature-figure { order: 1; max-width: 320px; margin-inline: auto; }
}

.place-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .4rem; }
.place-head .h-section { color: var(--wine); }

.bg-wine .place-head .h-section, .bg-wine-deep .place-head .h-section { color: #ecd39b; }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 54px);
  margin-top: clamp(34px, 5vw, 60px);
}
.stat-cell { display: flex; gap: 16px; align-items: flex-start; }
.stat-cell .big {
  font-family: var(--serif); font-weight: 700; color: var(--wine);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1; white-space: nowrap;
}
.stat-cell .big small { display: block; font-size: .5em; letter-spacing: .04em; margin-top: .3em; }
.stat-cell p { font-size: 1.14rem; color: var(--muted); border-left: 1px solid var(--line); padding-left: 16px; }
.photo-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-block: clamp(34px, 5vw, 58px);
}
.photo-band img { width: 100%; filter: drop-shadow(0 18px 30px rgba(58,26,20,.22)); }
@media (max-width: 820px) {
  .stat-row { grid-template-columns: 1fr; gap: 22px; }
  .photo-band { grid-template-columns: 1fr; }
}
.place-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: clamp(30px, 4vw, 50px);
}
.pt-label { font-weight: 700; color: var(--wine); font-size: .92rem; margin-right: 4px; }
.pt {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 100px;
  padding: .5em 1.1em; font-size: .98rem; color: var(--muted);
  background: rgba(255,255,255,.35);
}

.program-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(36px, 5vw, 70px);
}
.day-card {
  background: rgba(244,238,226,.06);
  border: 1px solid rgba(221,189,130,.28);
  border-radius: var(--radius);
  padding: clamp(22px, 2vw, 34px);
  display: flex; flex-direction: column;
}
.day-card .day-photo { margin: calc(-1 * clamp(22px,2vw,34px)); margin-bottom: 22px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.day-card .day-photo img { width: 100%; height: 210px; object-fit: cover; }
.day-card .idx { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 2.6rem; line-height: 1; }
.day-card h3 { text-transform: uppercase; color: var(--cream-2); font-size: 1.35rem; margin-top: .3rem; }
.day-card .date { color: var(--gold-light); font-weight: 600; letter-spacing: .12em; font-size: .78rem; margin-top: .5rem; text-transform: uppercase; }
.day-card ul { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.day-card li { position: relative; padding-left: 18px; font-size: .95rem; color: rgba(244,238,226,.82); }
.day-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.day-card .subitems { margin: .5rem 0 0; padding: 0; gap: .4rem; }
.day-card .subitems li { font-size: .86rem; color: rgba(244,238,226,.7); padding-left: 16px; }
.day-card .subitems li::before { width: 4px; height: 4px; top: .58em; background: var(--gold-light); }
@media (max-width: 860px) { .program-grid { grid-template-columns: 1fr; } }

.unique-grid {
  display: grid; grid-template-columns: 1fr minmax(220px,.8fr) 1fr;
  gap: clamp(24px,4vw,56px); align-items: center;
  margin-top: clamp(30px,5vw,60px);
}
.unique-figure img { margin-inline: auto; filter: drop-shadow(0 20px 34px rgba(58,26,20,.28)); }
.unique-col { display: flex; flex-direction: column; gap: clamp(40px,6vw,80px); }
.unique-col.right { text-align: right; }
.unique-item h3 { color: var(--wine); font-size: 1.3rem; margin-bottom: .8rem; line-height: 1.2; }
.unique-item p { color: var(--muted); font-size: .95rem; max-width: 30ch; }
.unique-col.right .unique-item p { margin-left: auto; }
@media (max-width: 900px) {
  .unique-grid { grid-template-columns: 1fr; }
  .unique-col, .unique-col.right { text-align: left; }
  .unique-col.right .unique-item p { margin-left: 0; }
  .unique-figure { max-width: 300px; margin-inline: auto; }
}

.culture-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px,5vw,70px); align-items: center; }
.culture-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.6rem; }
.culture-list .ci { padding-left: 20px; border-left: 2px solid var(--gold); }
.culture-list .ci b { color: var(--cream-2); font-weight: 700; }
.culture-list .ci span { color: rgba(244,238,226,.72); }
.map-figure img { width: 100%; filter: drop-shadow(0 24px 40px rgba(0,0,0,.4)); border-radius: var(--radius); }
@media (max-width: 900px) { .culture-grid { grid-template-columns: 1fr; } }

.pricing-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.pricing-head .h-section { color: var(--wine); }
.pricing-head .note { max-width: 30ch; text-align: right; color: var(--muted); font-size: .95rem; }
.tiers {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(30px,4vw,54px);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(58,26,20,.18);
}

.tier:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.tier:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.tier {
  position: relative; overflow: hidden;
  padding: clamp(24px,2vw,36px) clamp(16px,1.6vw,26px);
  display: flex; flex-direction: column; min-height: 560px;
  color: var(--wine);
}
.tier + .tier { border-left: 1px solid rgba(91,26,43,.12); }
.tier.t1 { background: #ece3d3; }
.tier.t2 { background: #e2cec6; }
.tier.t3 { background: #cb9fa2; }
.tier.t4 { background: #9a5560; color: #fbeee0; }
.tier.t5 { background: var(--wine-deep); color: #fbeee0; }
.tier .tier-name { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: 1.28rem; line-height: 1.1; }
.tier .tier-roman {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(4rem, 6vw, 7rem); line-height: 1;
  margin: auto 0; opacity: .16; align-self: center;
}
.tier.t5 .tier-roman, .tier.t4 .tier-roman { color: var(--gold); opacity: .5; }
.tier .price { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; font-size: .95rem; }
.tier .price + .price { margin-top: .35rem; }
.tier .price .amt { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; }
.tier.t5 .price .amt, .tier.t5 .tier-name { color: var(--gold-light); }

.tier { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tier .tier-roman { transition: transform .5s var(--ease), opacity .4s var(--ease); }
@media (hover: hover) {
  .tier:hover { transform: translateY(-12px); box-shadow: 0 26px 55px rgba(58,26,20,.32); z-index: 3; }
  .tier:hover .tier-roman { transform: scale(1.08) translateY(-6px); opacity: .34; }
}
@media (max-width: 1024px) {
  .tiers { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: minmax(230px, 1fr); overflow-x: auto; scroll-snap-type: x mandatory; align-items: stretch; }
  .tier { scroll-snap-align: start; }
  .pricing-head .note { text-align: left; }
}

.fineprint { margin-top: 1rem; font-size: .82rem; color: var(--muted); max-width: 70ch; }

.addon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px,4vw,64px) clamp(24px,3vw,50px);
  margin-top: clamp(34px,5vw,64px);
}
.addon { text-align: center; display: flex; flex-direction: column; align-items: center; }
.addon .ph { height: 200px; display: flex; align-items: flex-end; justify-content: center; }
.addon .ph img { max-height: 200px; width: auto; filter: drop-shadow(0 16px 26px rgba(58,26,20,.24)); }
.addon h3 { text-transform: uppercase; color: var(--wine); font-size: 1.15rem; margin-top: 1.1rem; line-height: 1.2; }
.addon p { color: var(--muted); font-size: 1.09rem; max-width: 32ch; margin-top: .6rem; }
@media (max-width: 820px) { .addon-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

.site-footer { text-align: center; padding: clamp(40px,6vw,70px) var(--gutter); }
.site-footer .crest { height: 82px; width: auto; opacity: 1; margin-inline: auto; }
.site-footer p { color: rgba(244,238,226,.55); font-size: .82rem; margin-top: 1.4rem; letter-spacing: .02em; }

.js [data-reveal] { opacity: 0; transform: translateY(30px); }
.js [data-reveal="left"]  { transform: translateX(-36px); }
.js [data-reveal="right"] { transform: translateX(36px); }
.js [data-reveal="scale"] { transform: scale(.94); }
.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

.section-lead {
  max-width: 52ch; margin: 1.2rem auto 0; text-align: center;
  color: var(--muted); font-size: 1.05rem;
}
.bg-wine .section-lead, .bg-wine-deep .section-lead { color: rgba(244,238,226,.82); }
.quote-inline {
  max-width: 52ch; margin: 1rem auto 0; text-align: center;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  color: var(--wine); font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}
.bg-wine .quote-inline { color: var(--gold-light); }
.section-note {
  margin-top: clamp(24px,3vw,40px); text-align: center;
  font-style: italic; color: var(--muted); font-size: .92rem;
}
.bg-wine .section-note { color: rgba(244,238,226,.7); }

.atmo-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(34px, 5vw, 64px);
}
.atmo-item { position: relative; padding-top: 1.4rem; }
.atmo-item::before {
  content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold);
}
.atmo-item h3 { color: var(--gold-light); font-size: 1.35rem; margin-bottom: .6rem; }
.atmo-item p { color: rgba(244,238,226,.8); font-size: .95rem; }
@media (max-width: 960px) { .atmo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .atmo-grid { grid-template-columns: 1fr; } }

.faq-layout {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
  margin-top: clamp(34px, 5vw, 64px);
}
.faq-figure { position: sticky; top: clamp(70px, 8vh, 110px); }
.faq-figure img { width: 100%; filter: drop-shadow(0 20px 34px rgba(0,0,0,.4)); }
.faq-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
  margin-top: 0;
}
.faq-item { padding-left: 20px; border-left: 2px solid var(--gold); }
.faq-item h3 { color: var(--gold-light); font-size: 1.25rem; margin-bottom: .7rem; line-height: 1.2; }
.faq-item p { color: rgba(244,238,226,.82); font-size: 1.08rem; max-width: 46ch; }
@media (max-width: 820px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-figure { display: none; }
}

.estate-prose { max-width: 70ch; margin: clamp(30px,4vw,54px) auto 0; }
.estate-prose > p { color: var(--ink); font-size: 1.06rem; line-height: 1.7; }
.estate-prose > p + p { margin-top: 1.1rem; }
.estate-owners { list-style: none; margin: 1.3rem 0; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.estate-owners li { position: relative; padding-left: 22px; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.estate-owners li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.estate-owners b { color: var(--wine); font-weight: 700; }
.estate-quote { margin: 1.8rem 0 0; padding-left: 22px; border-left: 3px solid var(--gold); font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.2rem,1.9vw,1.5rem); line-height: 1.35; color: var(--wine); }
.estate-wink { margin-top: 1.7rem; font-size: .95rem; color: var(--muted); line-height: 1.6; }
.estate-wink a { color: var(--wine); font-weight: 600; border-bottom: 1px solid rgba(91,26,43,.4); }
.estate-wink a:hover { color: var(--gold); }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px,4vw,60px); margin-top: clamp(34px,5vw,64px); }
.team-card { display: flex; flex-direction: column; }
.team-photo { aspect-ratio: 4 / 3; border-radius: var(--radius); background: rgba(244,238,226,.06); border: 1px dashed rgba(221,189,130,.4); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; margin-bottom: 1.4rem; }
.team-photo span { color: rgba(244,238,226,.5); font-size: .85rem; letter-spacing: .04em; }
.team-card h3 { font-family: var(--serif); font-weight: 700; text-transform: uppercase; color: var(--gold-light); font-size: 1.35rem; letter-spacing: .01em; line-height: 1.15; }
.team-card > p { margin-top: 1rem; color: rgba(244,238,226,.82); font-size: 1rem; line-height: 1.6; }
.team-card blockquote { margin: 1.4rem 0 0; padding-left: 18px; border-left: 2px solid var(--gold); font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 1.08rem; line-height: 1.4; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }

.site-footer .footer-contact { color: rgba(244,238,226,.75); font-size: .92rem; margin-top: 1.2rem; }
.site-footer .footer-contact a { color: var(--gold-light); border-bottom: 1px solid rgba(221,189,130,.4); }
.site-footer .footer-contact a:hover { color: #fff; }

.estate-hero {
  position: relative;
  background-color: #241016;
  background-image: url("images/estate-bg.jpg?v=20260904");
  background-image: image-set(url("images/estate-bg.webp?v=20260904") type("image/webp"),
                              url("images/estate-bg.jpg?v=20260904") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;        
  color: var(--cream-2);
}
.estate-hero::before {
  content: ""; position: absolute; inset: 0;
  
  background: rgba(58,17,28,.78);
  pointer-events: none;
}
.estate-hero > .wrap { position: relative; z-index: 1; }
.estate-hero .place-head .h-section { color: var(--cream-2); }
.estate-hero .kicker { color: var(--gold-light); }
.estate-hero .estate-prose > p { color: rgba(244,238,226,.92); }
.estate-hero .estate-quote { color: var(--gold-light); border-left-color: var(--gold); }
.estate-hero .estate-wink { color: rgba(244,238,226,.78); }
.estate-hero .estate-wink a { color: var(--gold-light); border-bottom-color: rgba(221,189,130,.5); }
.estate-hero .estate-wink a:hover { color: #fff; }

.estate-hero .estate-owners {
  background: rgba(18,7,11,.5);
  border: 1px solid rgba(221,189,130,.22);
  border-radius: 10px;
  padding: clamp(20px,2.6vw,30px);
}
.estate-hero .estate-owners li { color: rgba(244,238,226,.88); }
.estate-hero .estate-owners b { color: var(--gold-light); }

@media (max-width: 900px) { .estate-hero { background-attachment: scroll; } }

.hero-photo--rect img { width: 100%; height: auto; border-radius: var(--radius); object-fit: cover; box-shadow: 0 26px 50px rgba(58,26,20,.30); filter: none; }

.pregame-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,32px); }
.pg-card { border-radius: var(--radius); overflow: hidden; padding: clamp(22px,2.2vw,32px); display: flex; flex-direction: column; }
.pg-card--wine { background: var(--wine); color: var(--cream-2); }
.pg-card--cream { background: var(--cream-2); color: var(--ink); border: 1px solid rgba(91,26,43,.12); }
.pg-card h3 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem,1.9vw,1.7rem); line-height: 1.1; }
.pg-card--wine h3 { color: var(--gold-light); }
.pg-card--cream h3 { color: var(--wine); }
.pg-photo { margin: 1.3rem 0; border-radius: var(--radius); overflow: hidden; }
.pg-photo img { width: 100%; height: 260px; object-fit: cover; display: block; }
.pg-card p { font-size: 1rem; line-height: 1.6; }
.pg-card--wine p { color: rgba(244,238,226,.85); }
.pg-card--cream p { color: var(--muted); }
@media (max-width: 860px) { .pregame-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.prep-grid { display: grid; grid-template-columns: 1fr minmax(260px,.9fr) 1fr; gap: clamp(24px,4vw,56px); align-items: center; margin-top: clamp(30px,5vw,60px); }
.prep-col { display: flex; flex-direction: column; gap: clamp(30px,5vw,56px); }
.prep-col.right { text-align: right; }
.prep-figure { display: flex; justify-content: center; align-items: flex-end; }
.prep-figure img { width: auto; max-width: 100%; max-height: 540px; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(58,26,20,.32)); }
.prep-item h3 { color: var(--wine); font-size: 1.3rem; margin-bottom: .7rem; }
.prep-item p { color: var(--muted); font-size: 1rem; max-width: 34ch; line-height: 1.6; }
.prep-col.right .prep-item p { margin-left: auto; }
@media (max-width: 900px) {
  .prep-grid { grid-template-columns: 1fr; }
  .prep-col, .prep-col.right { text-align: left; }
  .prep-col.right .prep-item p { margin-left: 0; }
  .prep-figure { order: -1; max-width: 340px; margin-inline: auto; }
}

.tier .tier-incl { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid currentColor; }
.tier .incl-h { display: block; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .74rem; opacity: .7; margin-bottom: .5rem; }
.tier .tier-incl ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .34rem; }
.tier .tier-incl li { position: relative; padding-left: 15px; font-size: .86rem; opacity: .82; line-height: 1.35; }
.tier .tier-incl li::before { content: ""; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .6; }
@media (max-width: 1024px) { .tier .tier-incl { min-height: 0; } }

.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.8vw,22px); margin-top: clamp(34px,5vw,60px); }
.room { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 26px rgba(0,0,0,.28); }
.room img { width: 100%; height: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .5s var(--ease); }
@media (hover: hover) { .room:hover img { transform: scale(1.05); } }
@media (max-width: 760px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }

.team-photo { border: none; padding: 0; background: transparent; display: flex; align-items: flex-end; justify-content: center; }
.team-cutout img { width: auto; max-width: 100%; max-height: 440px; height: auto; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(0,0,0,.4)); }

.pg-card, .day-card, .who-card, .team-card, .stat-cell,
.feature-item, .unique-item, .prep-item, .atmo-item,
.faq-item, .culture-list .ci, .estate-owners li {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.pg-photo img, .day-photo img, .photo-band img, .map-figure img,
.hero-photo--rect img, .prep-figure img, .team-cutout img, .feature-figure img, .unique-figure img {
  transition: transform .5s var(--ease), filter .4s var(--ease);
}
.feature-item h3, .unique-item h3, .prep-item h3, .atmo-item h3, .faq-item h3, .pg-card h3 {
  transition: color .25s var(--ease);
}

@media (hover: hover) {
  
  .pg-card:hover { transform: translateY(-8px); box-shadow: 0 24px 46px rgba(58,26,20,.28); }
  .day-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 24px 46px rgba(0,0,0,.35); }
  .who-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(58,26,20,.3); }
  .team-card:hover { transform: translateY(-6px); }
  .stat-cell:hover { transform: translateY(-3px); }
  .stat-cell:hover .big { color: var(--wine-2); }

  
  .feature-item:hover h3, .unique-item:hover h3, .prep-item:hover h3, .atmo-item:hover h3 { color: var(--gold); }
  .feature-item:hover, .unique-item:hover, .prep-item:hover, .atmo-item:hover { transform: translateY(-3px); }

  
  .faq-item:hover { transform: translateX(5px); }
  .faq-item:hover h3 { color: #f0d9a3; }
  .culture-list .ci:hover { transform: translateX(5px); }
  .estate-owners li:hover { color: #fff; }

  
  .pg-photo img, .day-photo img { transform-origin: center; }
  .pg-card:hover .pg-photo img, .day-card:hover .day-photo img { transform: scale(1.06); }

  
  .photo-band img:hover, .map-figure img:hover { transform: scale(1.03); }
  .hero-photo--rect:hover img { transform: scale(1.02); }
  .prep-figure:hover img, .team-cutout:hover img { transform: scale(1.03) translateY(-4px); filter: drop-shadow(0 26px 40px rgba(0,0,0,.45)); }
  .feature-figure:hover img, .unique-figure:hover img { transform: scale(1.03); }

  
  .quote blockquote, .callout { transition: transform .4s var(--ease); }
  .quote:hover blockquote, .callout-sec:hover .callout { transform: scale(1.01); }
}

main section img { transition: transform .5s var(--ease), filter .45s var(--ease); }
@media (hover: hover) {
  main section img:hover { transform: scale(1.035); }
  
  .prep-figure img:hover, .team-cutout img:hover, .audience-figure img:hover { transform: scale(1.04) translateY(-4px); filter: drop-shadow(0 26px 40px rgba(0,0,0,.42)); }
}

.tier .tier-rooms {
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: .82rem; letter-spacing: .02em; opacity: .72;
}
.tier.t4 .tier-rooms, .tier.t5 .tier-rooms { color: var(--gold-light); opacity: .85; }
.pricing-cta { margin-top: clamp(26px, 3.5vw, 44px); display: flex; justify-content: center; }

.care-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--line);
}
.care-item h3 {
  color: var(--wine); font-size: 1.2rem; text-transform: uppercase;
  letter-spacing: .02em; margin-bottom: .6rem;
}
.care-item p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
@media (max-width: 820px) { .care-grid { grid-template-columns: 1fr; } }

.stat-row--light .stat-cell .big { color: var(--gold-light); }
.stat-row--light .stat-cell p { color: rgba(244,238,226,.78); border-left-color: var(--line-light); }

.contacts { scroll-margin-top: 90px; }
.contacts-card {
  margin: clamp(34px, 5vw, 60px) auto 0;
  max-width: 720px; text-align: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(221,189,130,.35);
  border-radius: var(--radius);
  background: rgba(0,0,0,.14);
}
.contacts-name {
  font-family: var(--serif); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--gold-light);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}
.contacts-role { margin-top: .5rem; color: rgba(244,238,226,.72); font-size: .95rem; }
.contacts-actions {
  margin-top: clamp(20px, 3vw, 32px);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.contacts-tg { border-color: var(--gold); background: var(--gold); color: var(--wine-deep); }
.contacts-tg:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--wine-deep); }
.contacts-tel { white-space: nowrap; }

.book-fab {
  position: fixed; right: clamp(14px, 2.2vw, 34px); bottom: clamp(14px, 2.2vw, 34px);
  z-index: 60;
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; font-size: .8rem;
  padding: 1em 1.9em; border-radius: 100px;
  background: var(--wine); color: var(--cream-2);
  border: 1px solid var(--gold);
  box-shadow: 0 14px 30px rgba(58,26,20,.38);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s var(--ease);
}
.book-fab[hidden] { display: none; }
.book-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.book-fab:hover { background: var(--gold); color: var(--wine-deep); }
.book-fab:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
@media (max-width: 520px) { .book-fab { left: 14px; right: 14px; justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .book-fab { transition: opacity .2s linear; transform: none; } }

.cookie-bar {
  position: fixed; z-index: 70;
  left: clamp(14px, 2.2vw, 34px); bottom: clamp(14px, 2.2vw, 34px);
  max-width: 520px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 26px);
  background: var(--wine-deep); color: rgba(244,238,226,.88);
  border: 1px solid rgba(221,189,130,.35); border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { font-size: .86rem; line-height: 1.5; flex: 1 1 260px; margin: 0; }
.cookie-accept { flex: 0 0 auto; cursor: pointer; border-color: var(--gold); background: var(--gold); color: var(--wine-deep); }
.cookie-accept:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--wine-deep); }
.cookie-accept:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
@media (max-width: 640px) {
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  
  body.has-cookie-bar .book-fab { bottom: 150px; }
}

.kicker { color: var(--gold-ink); }
.bg-wine .kicker, .bg-wine-deep .kicker, .estate-hero .kicker { color: var(--gold-light); }
.hero-tagline { color: var(--gold-ink); }

.hero .btn, .bg-linen .btn, .bg-linen-2 .btn {
  color: var(--gold-ink); border-color: var(--gold-ink);
}
.hero .btn:hover, .bg-linen .btn:hover, .bg-linen-2 .btn:hover {
  background: var(--gold-ink); color: var(--cream-2);
}

.hero .btn-solid, .bg-linen .btn-solid, .bg-linen-2 .btn-solid {
  color: var(--cream-2); border-color: var(--wine);
}
.hero .btn-solid:hover, .bg-linen .btn-solid:hover, .bg-linen-2 .btn-solid:hover {
  background: var(--wine-2); color: #fff;
}
.estate-wink a:hover { color: var(--gold-ink); }
.checklist li::before { color: var(--gold-ink); }

.tier.t4 { background: #8e4a55; }
.tier .incl-h { opacity: .85; }
.tier .tier-incl li { opacity: .95; }
.tier .tier-rooms { opacity: .85; }
.tier.t3 { color: var(--wine-deep); }
.tier.t4 .tier-rooms, .tier.t5 .tier-rooms { color: var(--cream-2); opacity: .85; }

.site-footer p { color: rgba(244,238,226,.75); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}
.bg-linen a:focus-visible, .bg-linen-2 a:focus-visible, .hero a:focus-visible {
  outline-color: var(--gold-ink);
}

.tier .tier-roman { margin: .6rem 0; align-self: flex-start; }

.tier .tier-prices { margin-top: .4rem; }

@supports (grid-template-rows: subgrid) {
  .tiers { grid-template-rows: repeat(5, auto); }
  .tier {
    display: grid;
    grid-template-rows: subgrid;   
    grid-row: span 5;
    align-content: start;
  }
  .tier .tier-name,
  .tier .tier-prices,
  .tier .tier-incl,
  .tier .tier-rooms { align-self: start; }
}

.site-header .brand .bj-logo { height: 26px; width: auto; }
.site-header .brand-sep {
  width: 1px; height: 30px;
  background: rgba(244,238,226,.28);
}
@media (max-width: 359px) {          
  .site-header .brand-sep, .site-header .brand .bj-logo { display: none; }
}

.site-footer .footer-logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(18px, 4vw, 36px); flex-wrap: wrap;
}
.site-footer .footer-logos .crest { margin-inline: 0; }
.site-footer .footer-logos .bj-logo { height: 66px; width: auto; }
.site-footer .footer-logo-sep {
  width: 1px; height: 52px;
  background: rgba(244,238,226,.24);
}
@media (max-width: 460px) {
  .site-footer .footer-logo-sep { display: none; }
}

@media (max-width: 480px) {
  .site-header { padding-inline: 16px; gap: 12px; }
  .site-header .brand { gap: 8px; flex-shrink: 0; }
  .site-header .brand img { flex-shrink: 0; }          
  .site-header .brand > picture > img { height: 38px; }
  .site-header .brand .bj-logo { height: 20px; }
  .site-header .brand-sep { height: 22px; }
  .site-header nav .btn {
    padding: 10px 16px; font-size: .72rem; white-space: nowrap;
  }
}

body { overflow-x: clip; }
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
@media (max-width: 768px) {
  
  .js [data-reveal="left"],
  .js [data-reveal="right"] { transform: translateY(30px); }
}

.h-section, .h-display, .hero-title { overflow-wrap: break-word; hyphens: auto; }

.map-figure--wide { max-width: 900px; margin-inline: auto; margin-top: clamp(24px,3vw,40px); }

.site-footer .footer-requisites {
  color: rgba(244,238,226,.6); font-size: .78rem; line-height: 1.5;
  max-width: 60ch; margin-inline: auto; margin-top: .9rem;
}
.site-footer .footer-pay {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px 22px;                       
  list-style: none; padding: 0; margin: 1.3rem auto 0;
}
.site-footer .footer-pay li { display: flex; align-items: center; }

.site-footer .footer-pay img { display: block; width: auto; height: 20px; }
.site-footer .footer-pay .is-tall img { height: 28px; }
@media (max-width: 460px) {
  .site-footer .footer-pay img { height: 17px; }
  .site-footer .footer-pay .is-tall img { height: 24px; }
}

.notice {
  background: var(--wine-deep);
  color: var(--cream-2);
  border-bottom: 3px solid var(--gold);
  padding: clamp(20px, 3vw, 30px) var(--gutter);
}
.notice-in { max-width: 900px; margin-inline: auto; }
.notice p { margin: 0 0 .7rem; font-size: clamp(.94rem, 1.05vw, 1.02rem); line-height: 1.6; color: rgba(244,238,226,.92); }
.notice p:last-child { margin-bottom: 0; }
.notice-kicker {
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: .9rem !important;
}
.notice-dates { color: var(--cream-2) !important; }
.notice-dates b { color: var(--gold-light); white-space: nowrap; }
.notice a { color: var(--gold-light); border-bottom: 1px solid rgba(221,189,130,.45); }
.notice a:hover { color: #fff; border-color: #fff; }
