  :root {
    --ivory: #F7F3EC;
    --ivory-2: #FBF7F1;
    --champagne: #D9C7A7;
    --gold: #B39B6E;
    --sage: #8E9B84;
    --sage-deep: #6E7A64;
    --charcoal: #2E2A26;
    --blush: #E8D5CD;
    --muted: #6B6459;
    --line: rgba(46,42,38,0.12);
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Jost', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); font-weight: 300; color: var(--charcoal); background: var(--ivory); line-height: 1.7; -webkit-font-smoothing: antialiased; }
  h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }

  /* NAV */
  nav { position: fixed; top: 38px; width: 100%; background: rgba(247,243,236,0.94); backdrop-filter: blur(8px); z-index: 100; padding: 12px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .brand img { height: 46px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { text-decoration: none; font-size: 0.82rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--charcoal); }
  .nav-links a:hover { color: var(--sage-deep); }
  .cta-btn { background: var(--charcoal); color: var(--ivory) !important; padding: 11px 22px; }
  .cta-btn:hover { background: var(--sage-deep); }
  .menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--charcoal); }

  /* HERO */
  .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 170px 40px 70px; background: linear-gradient(160deg, var(--ivory) 0%, #EFE6D8 60%, #E9DECD 100%); position: relative; overflow: hidden; }
  .hero.has-photo { background: linear-gradient(rgba(46,42,38,0.28), rgba(46,42,38,0.42)), url('/assets/hero.jpg') center/cover no-repeat, linear-gradient(160deg, var(--ivory), #EFE6D8); }
  .hero.has-photo h1, .hero.has-photo .tagline, .hero.has-photo .eyebrow { color: #fff; }
  .hero.has-photo h1 em { color: var(--champagne); }
  .eyebrow { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .hero h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); letter-spacing: 1px; max-width: 900px; }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero .tagline { margin-top: 24px; font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2.4vw, 1.35rem); color: #4F483F; max-width: 640px; }
  .hero .btn-row { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .btn { display: inline-block; padding: 15px 36px; text-decoration: none; letter-spacing: 1.6px; font-size: 0.8rem; text-transform: uppercase; border: 1px solid var(--charcoal); transition: .2s; }
  .btn-dark { background: var(--charcoal); color: var(--ivory); }
  .btn-dark:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
  .btn-light { background: #fff; color: var(--charcoal); border-color: #fff; }
  .hero.has-photo .btn-outline { color: #fff; border-color: rgba(255,255,255,0.75); }
  .hero.has-photo .btn-outline:hover { background: rgba(255,255,255,0.15); }

  /* TRUST STRIP */
  .strip { background: var(--charcoal); color: var(--ivory); padding: 22px 40px; }
  .strip-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 48px; text-align: center; }
  .strip span { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: #E4DCCB; }

  section { padding: 90px 40px; max-width: 1140px; margin: 0 auto; }
  .section-title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: 0.5px; }
  .section-sub { text-align: center; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.08rem; margin: 12px auto 52px; max-width: 640px; }
  .rule { width: 54px; height: 1px; background: var(--gold); margin: 18px auto 0; border: 0; }

  /* COLLECTIONS */
  .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
  .gallery figure { position: relative; overflow: hidden; height: 420px; background: linear-gradient(150deg, #F1E9DC 0%, #E4D8C4 55%, #D8C9B0 100%); display: flex; align-items: center; justify-content: center; }
  .gallery .ph { font-family: var(--serif); font-size: 2.6rem; color: rgba(142,155,132,0.5); }
  .gallery figure.has-img .ph { display: none; }
  .gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: transform .6s, opacity .5s; }
  .gallery figure.has-img img { opacity: 1; }
  .gallery figure:hover img { transform: scale(1.04); }
  .gallery figcaption { position: absolute; left: 0; bottom: 0; width: 100%; padding: 18px; background: linear-gradient(transparent, rgba(46,42,38,0.78)); color: #fff; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; }

  /* WHY */
  .why { background: var(--ivory-2); max-width: none; }
  .why-inner { max-width: 1140px; margin: 0 auto; }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
  .why-card { background: #fff; padding: 34px 28px; border-top: 3px solid var(--champagne); }
  .why-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
  .why-card p { font-size: 0.92rem; color: var(--muted); }

  /* PRICING */
  .pricing { background: #fff; max-width: none; }
  .pricing-inner { max-width: 1140px; margin: 0 auto; }
  .price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; align-items: start; }
  .price-card { border: 1px solid var(--line); padding: 40px 32px; position: relative; background: var(--ivory); display: flex; flex-direction: column; }
  .price-card.featured { border: 2px solid var(--sage); background: var(--ivory-2); }
  .price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--sage); color: #fff; font-size: 0.66rem; letter-spacing: 2px; padding: 6px 16px; white-space: nowrap; }
  .price-card h3 { font-size: 1.35rem; letter-spacing: 1px; }
  .price-card .price { font-family: var(--serif); font-size: 3rem; margin: 12px 0 2px; line-height: 1; }
  .price-card .per { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.5px; }
  .price-card ul { list-style: none; margin: 24px 0 28px; font-size: 0.9rem; flex: 1; }
  .price-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); }
  .price-card li::before { content: "✦ "; color: var(--sage); }
  .price-card .btn { width: 100%; text-align: center; }
  .addons { text-align: center; margin-top: 34px; font-size: 0.9rem; color: var(--muted); }
  .addons strong { color: var(--charcoal); font-weight: 500; }

  /* PROCESS */
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; text-align: center; }
  .step .num { font-family: var(--serif); font-size: 2rem; color: var(--champagne); }
  .step h4 { margin: 10px 0 8px; font-size: 1.15rem; }
  .step p { font-size: 0.88rem; color: var(--muted); }

  /* FAQ */
  .faq { background: var(--ivory-2); max-width: none; }
  .faq-inner { max-width: 800px; margin: 0 auto; }
  details { border-bottom: 1px solid var(--line); padding: 20px 0; }
  summary { cursor: pointer; font-family: var(--serif); font-size: 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; }
  details[open] summary::after { content: "–"; }
  details p { margin-top: 12px; color: var(--muted); font-size: 0.94rem; }

  /* INQUIRY */
  .inquiry { background: var(--charcoal); color: var(--ivory); max-width: none; }
  .inquiry .section-title { color: var(--ivory); }
  .inquiry .section-sub { color: #CFC6B4; }
  form { max-width: 600px; margin: 0 auto; display: grid; gap: 14px; }
  .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  label { font-size: 0.72rem; letter-spacing: 1.6px; text-transform: uppercase; color: #CFC6B4; display: block; margin-bottom: 6px; }
  input, select, textarea { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(247,243,236,0.28); color: var(--ivory); font-size: 0.95rem; font-family: var(--sans); font-weight: 300; }
  input::placeholder, textarea::placeholder { color: rgba(247,243,236,0.45); }
  input:focus, select:focus, textarea:focus { outline: none; border-color: var(--champagne); background: rgba(255,255,255,0.11); }
  select option { color: #2E2A26; }
  button[type=submit] { background: var(--champagne); border: none; color: var(--charcoal); padding: 17px; font-size: 0.85rem; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: .2s; }
  button[type=submit]:hover { background: var(--gold); color: #fff; }
  .fineprint { text-align: center; font-size: 0.75rem; color: rgba(247,243,236,0.5); }
  .honeypot { position: absolute; left: -5000px; }

  /* FOOTER */
  footer { text-align: center; padding: 54px 40px 44px; font-size: 0.84rem; color: var(--muted); background: var(--ivory); }
  footer .brand { justify-content: center; margin-bottom: 16px; }
  footer .brand img { height: 74px; }
  footer .areas { margin-bottom: 12px; letter-spacing: 1px; }
  footer a { text-decoration: none; color: var(--sage-deep); }
  footer .copy { font-size: 0.76rem; color: #9A9188; }

  .gallery figure:nth-child(2) { background: linear-gradient(150deg, #F3ECE1 0%, #E7DCCB 60%, #DACBB4 100%); }
  .gallery figure:nth-child(3) { background: linear-gradient(150deg, #EFEAE0 0%, #DED5C6 60%, #D2C6B2 100%); }

  @media (max-width: 820px) {
    nav { padding: 10px 20px; }
    .brand img { height: 38px; }
    .menu-toggle { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--ivory); flex-direction: column; align-items: flex-start; gap: 0; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s; border-bottom: 1px solid transparent; }
    .nav-links.open { max-height: 380px; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); }
    .nav-links a { padding: 12px 0; width: 100%; }
    .cta-btn { width: 100%; text-align: center; margin-top: 8px; }
    section { padding: 64px 22px; }
    .row2 { grid-template-columns: 1fr; }
    .gallery figure { height: 320px; }
  }

/* ---------- SUBPAGE HEAD ---------- */
.page-head { min-height: 42vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 190px 40px 56px; background: linear-gradient(160deg, var(--ivory) 0%, #EFE6D8 60%, #E9DECD 100%); }
.page-head h1 { font-size: clamp(2.1rem, 5.5vw, 3.3rem); max-width: 860px; }
.page-head .tagline { margin-top: 18px; font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.25rem); color: #4F483F; max-width: 640px; }
.crumbs { font-size: .78rem; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 26px; }
.crumbs a { text-decoration: none; color: var(--sage-deep); }

/* ---------- RENTAL MENU ---------- */
.alt-bg { background: var(--ivory-2); max-width: none; }
.alt-inner { max-width: 1140px; margin: 0 auto; }
.menu-cat { margin-bottom: 54px; }
.menu-cat-head { display: flex; align-items: baseline; gap: 14px; border-bottom: 2px solid var(--champagne); padding-bottom: 10px; }
.menu-cat-head h3 { font-size: 1.5rem; letter-spacing: .3px; }
.menu-cat-head .cat-tag { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.cat-note { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: .92rem; margin: 12px 0 14px; }
.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 0 46px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px dotted var(--line); }
.mi-name { font-size: .97rem; }
.mi-desc { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.mi-price { font-family: var(--serif); font-size: 1.08rem; white-space: nowrap; color: var(--sage-deep); }
.mi-price .opt { font-size: .72rem; font-family: var(--sans); color: var(--muted); letter-spacing: 1px; }

.note-box { background: #fff; border-left: 3px solid var(--sage); padding: 20px 24px; font-size: .88rem; color: var(--muted); }
.note-box strong { color: var(--charcoal); font-weight: 500; }

.backdrop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 8px; }
.backdrop-card { background: #fff; border: 1px solid var(--line); padding: 24px 22px; display: flex; flex-direction: column; }
.backdrop-card .bd-name { font-family: var(--serif); font-size: 1.15rem; }
.backdrop-card .bd-desc { font-size: .84rem; color: var(--muted); margin: 8px 0 14px; flex: 1; }
.backdrop-card .bd-price { font-family: var(--serif); font-size: 1.35rem; color: var(--sage-deep); }
.backdrop-card .bd-price small { font-family: var(--sans); font-size: .72rem; color: var(--muted); letter-spacing: 1px; }

.cta-band { background: var(--charcoal); color: var(--ivory); text-align: center; max-width: none; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: #CFC6B4; font-family: var(--serif); font-style: italic; margin-bottom: 28px; }
.btn-champ { background: var(--champagne); color: var(--charcoal); border-color: var(--champagne); }
.btn-champ:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

@media (max-width: 820px) {
  .page-head { padding: 120px 22px 44px; }
  .menu-list { grid-template-columns: 1fr; }
}

/* ---------- GRAND OPENING PROMO BAR ---------- */
.promo-bar { position: fixed; top: 0; left: 0; width: 100%; height: 38px; z-index: 101; background: linear-gradient(90deg, var(--sage-deep) 0%, var(--sage) 60%, var(--gold) 130%); color: #fff; display: flex; align-items: center; justify-content: center; padding: 0 16px; overflow: hidden; }
.promo-bar a { color: #fff; text-decoration: none; font-size: 0.72rem; letter-spacing: 2.2px; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.promo-bar a:hover { color: var(--champagne); }
.promo-bar .pb-accent { color: var(--champagne); }
.promo-bar .pb-short { display: none; }

/* ---------- PRICING / PROMO ELEMENTS ---------- */
.tier-tag { font-size: 0.68rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sage-deep); margin-top: 8px; }
.promo-flag { display: inline-block; align-self: flex-start; background: var(--champagne); color: var(--charcoal); font-size: 0.6rem; letter-spacing: 1.8px; text-transform: uppercase; padding: 4px 12px; margin-bottom: 14px; }
.price-card .price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 14px 0 2px; }
.price-was { font-family: var(--serif); font-size: 1.55rem; color: #A79E92; text-decoration: line-through; text-decoration-thickness: 1px; line-height: 1; }
.price-now { font-family: var(--serif); font-size: 2.9rem; line-height: 1; color: var(--charcoal); }
.price-card .per { font-size: 0.76rem; color: var(--muted); line-height: 1.5; }
.tier-note { font-size: 0.78rem; color: var(--muted); font-style: italic; font-family: var(--serif); margin: -4px 0 18px; }
.promo-note { max-width: 820px; margin: 0 auto 48px; background: var(--ivory); border: 1px solid var(--champagne); border-left: 4px solid var(--gold); padding: 24px 28px; text-align: center; }
.promo-note strong { display: block; color: var(--charcoal); font-size: 0.76rem; letter-spacing: 2.6px; text-transform: uppercase; margin-bottom: 10px; }
.promo-note p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.promo-note p + p { margin-top: 8px; font-size: 0.82rem; }
.concept-note { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 18px; letter-spacing: 0.4px; }
.cta-promo { display: inline-block; margin-top: 20px; font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--champagne); }

@media (max-width: 820px) {
  .promo-bar a { font-size: 0.6rem; letter-spacing: 1.2px; }
  .promo-bar a:hover { color: #fff; }
  .promo-bar .pb-full { display: none; }
  .promo-bar .pb-short { display: inline; }
  .promo-note { padding: 20px 18px; }
}

/* ---------- RENTAL PAGE PACKAGE CARDS ---------- */
.backdrop-card .bd-tag { font-size: 0.66rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--sage-deep); margin-top: 4px; }
.backdrop-card .bd-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
