
:root{
  --bg:#0b0b0d;
  --surface:#121216;
  --surface-soft:#18181d;
  --text:#ebe7df;
  --muted:#b6afa1;
  --line:rgba(255,255,255,.10);
  --accent:#d1b07a;
  --accent-2:#f3dfb8;
  --max:1180px;
  --shadow:0 24px 80px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:radial-gradient(circle at top, rgba(209,176,122,.10), transparent 28%), var(--bg);
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.75;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 32px), var(--max)); margin:0 auto}
.site-header{
  position:sticky; top:0; z-index:100;
  backdrop-filter: blur(14px);
  background:rgba(11,11,13,.72);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:82px; gap:24px;
}
.brand{display:flex; align-items:center; gap:14px}
.site-title{
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  letter-spacing:.04em;
}
.primary-nav{
  display:flex; align-items:center; gap:20px;
}
.primary-nav ul, .menu-fallback{
  display:flex; gap:18px; list-style:none; padding:0; margin:0;
}
.primary-nav a{color:var(--muted); font-size:.95rem}
.primary-nav li.current-menu-item > a,
.primary-nav a:hover{color:var(--text)}
.menu-toggle{
  display:none; border:0; background:none; padding:0; width:42px; height:42px;
}
.menu-toggle span{
  display:block; height:2px; margin:8px 0; background:var(--text); transition:.25s ease;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 22px; border-radius:999px; border:1px solid var(--accent);
  transition:.25s ease; cursor:pointer; font-weight:600;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(180deg, var(--accent-2), var(--accent));
  color:#1a1610;
  border-color:transparent;
}
.btn-outline{
  background:transparent;
  color:var(--text);
}
.nav-cta{margin-left:12px}
.site-main{min-height:60vh}
.hero-section{
  padding:78px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}
.hero-copy, .hero-card, .entry-card, .addons-card{
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.hero-copy{
  padding:48px;
}
.hero-copy h1,
.page-banner h1,
.entry-card h1,
.entry-card h2,
.entry-card h3,
.pricing-item strong,
.footer-title{
  font-family:"Cormorant Garamond",serif;
}
.hero-copy h1{
  font-size:clamp(3rem,7vw,5.2rem);
  line-height:.92;
  margin:.1em 0 .25em;
  font-weight:600;
}
.hero-lead{font-size:1.08rem; max-width:52ch; color:var(--muted)}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:28px}
.hero-card{display:grid; place-items:center; padding:20px}
.hero-card-inner{
  min-height:100%;
  width:100%;
  border-radius:22px;
  padding:38px;
  background:
   linear-gradient(160deg, rgba(209,176,122,.16), rgba(255,255,255,.03)),
   url('../images/gallery-2.jpg') center/cover no-repeat;
  position:relative;
  overflow:hidden;
}
.hero-card-inner::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.62));
}
.quote, .quote-author{position:relative; z-index:1}
.quote{font-size:clamp(2rem,4vw,3rem); line-height:1.02; max-width:9ch; margin:0}
.quote-author{margin-top:14px; color:var(--accent-2)}
.eyebrow{
  margin:0 0 6px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.74rem;
  color:var(--accent-2);
}
.section{padding:20px 0 72px}
.entry-card{
  padding:36px;
}
.entry-title, .entry-card h1{
  font-size:clamp(2.6rem,5vw,4rem);
  line-height:1;
  margin-top:0;
}
.entry-card h2{
  font-size:2.2rem;
  margin-bottom:.35em;
}
.entry-card h3{
  font-size:1.6rem;
  margin-bottom:.3em;
}
.entry-content p, .entry-content li{color:var(--text)}
.entry-content strong{color:var(--accent-2)}
.entry-content em{color:var(--accent-2)}
.entry-content ul{padding-left:1.3rem}
.page-banner{
  padding:56px 0 18px;
}
.page-banner .container{
  background:linear-gradient(120deg, rgba(209,176,122,.14), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px 36px;
}
.page-banner h1{
  font-size:clamp(2.7rem,6vw,4.4rem);
  line-height:.95;
  margin:.1em 0 0;
}
.seed-gallery{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.seed-gallery-item img{
  aspect-ratio:4/5;
  width:100%;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.pricing-item{
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.02);
}
.pricing-item span{
  display:block;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--muted);
  margin-bottom:8px;
}
.pricing-item strong{
  display:block;
  font-size:2rem;
  margin-bottom:10px;
}
.pricing-item p{margin:0; color:var(--muted)}
.pricing-item.featured{
  background:linear-gradient(180deg, rgba(209,176,122,.18), rgba(255,255,255,.03));
}
.addons-card{
  margin-top:24px;
  padding:32px;
}
.victoria-form{
  display:grid;
  gap:18px;
  margin-top:24px;
}
.form-row{display:grid; gap:8px}
.form-row label{font-size:.9rem; color:var(--muted)}
.form-row input,
.form-row textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px 18px;
  background:rgba(255,255,255,.02);
  color:var(--text);
  font:inherit;
}
.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:rgba(209,176,122,.65);
  box-shadow:0 0 0 4px rgba(209,176,122,.08);
}
.notice{
  margin-bottom:18px;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid var(--line);
}
.notice.success{
  background:rgba(107,168,118,.12);
}
.notice.error{
  background:rgba(201,91,91,.14);
}
.cta-band{padding:0 0 72px}
.cta-band-inner{
  padding:28px 32px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(100deg, rgba(255,255,255,.02), rgba(209,176,122,.10));
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.cta-band h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1;
  margin:.1em 0 0;
  font-family:"Cormorant Garamond",serif;
}
.site-footer{
  border-top:1px solid var(--line);
  padding:38px 0 54px;
}
.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:24px;
}
.footer-title{font-size:2rem}
.footer-links{
  display:grid;
  gap:8px;
}
.footer-links a, .site-footer p{color:var(--muted)}
@media (max-width: 980px){
  .hero-grid, .pricing-grid{grid-template-columns:1fr}
  .seed-gallery{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .primary-nav{
    position:fixed; inset:82px 16px auto 16px;
    display:none; flex-direction:column; align-items:stretch;
    padding:20px; border:1px solid var(--line);
    background:rgba(11,11,13,.96); border-radius:24px; box-shadow:var(--shadow);
  }
  .primary-nav.is-open{display:flex}
  .primary-nav ul, .menu-fallback{flex-direction:column}
  .menu-toggle{display:block}
  .nav-cta{margin-left:0; margin-top:6px}
}
@media (max-width: 640px){
  .hero-copy, .entry-card, .page-banner .container, .addons-card{padding:24px}
  .seed-gallery{grid-template-columns:1fr}
  .cta-band-inner, .footer-inner{flex-direction:column; align-items:flex-start}
}

/* Premium gallery protection + auto-rotation */
.seed-gallery-item,
.wp-block-gallery .blocks-gallery-item,
.wp-block-gallery .wp-block-image,
.premium-gallery-grid figure{
  position:relative;
  overflow:hidden;
  border-radius:22px;
}

.seed-gallery-item img,
.wp-block-gallery .blocks-gallery-item img,
.wp-block-gallery .wp-block-image img,
.premium-gallery-grid figure img{
  transform:scale(var(--victoria-scale,1.03)) rotate(var(--victoria-rotate,0deg));
  transition:transform .45s ease, filter .35s ease;
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}

.seed-gallery-item:hover img,
.wp-block-gallery .blocks-gallery-item:hover img,
.wp-block-gallery .wp-block-image:hover img,
.premium-gallery-grid figure:hover img{
  transform:scale(calc(var(--victoria-scale,1.03) + .03)) rotate(var(--victoria-rotate,0deg));
}

.victoria-guard{
  position:absolute;
  inset:0;
  z-index:3;
  background:
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.08)),
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 32%);
}

.seed-gallery::after,
.wp-block-gallery::after,
.premium-gallery-grid::after{
  content:"Private selection";
  display:block;
  width:100%;
  text-align:center;
  color:var(--accent-2);
  opacity:.72;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.72rem;
  margin-top:14px;
}

@media (max-width: 720px){
  .seed-gallery{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}


/* Victoria's Dreams cleanup */
.hero-copy .eyebrow:empty,
.eyebrow:empty {
  display:none !important;
}



/* =========================================================
   Victoria's Dreams - Noir Editorial Redesign
   ========================================================= */

:root{
  --bg:#050506;
  --surface:#0d0b0c;
  --surface-soft:#151113;
  --text:#f4efe8;
  --muted:#b9aaa0;
  --line:rgba(244,239,232,.13);
  --accent:#c69a5b;
  --accent-2:#f1d6a6;
  --rose:#7b3a46;
  --max:1220px;
  --shadow:0 28px 90px rgba(0,0,0,.55);
}

body{
  background:
    radial-gradient(circle at 18% 0%, rgba(123,58,70,.28), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(198,154,91,.14), transparent 35%),
    linear-gradient(180deg,#050506,#090708 50%,#050506);
  color:var(--text);
}

.site-header{
  background:rgba(5,5,6,.62);
  border-bottom:1px solid rgba(244,239,232,.08);
}

.header-inner{
  min-height:74px;
}

.site-title{
  font-size:1.55rem;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.primary-nav a{
  color:rgba(244,239,232,.72);
  letter-spacing:.04em;
}

.primary-nav li.current-menu-item > a,
.primary-nav a:hover{
  color:var(--accent-2);
}

.btn{
  border-radius:4px;
  padding:14px 24px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent-2),var(--accent));
  box-shadow:0 16px 42px rgba(198,154,91,.18);
}

.btn-outline{
  border-color:rgba(241,214,166,.42);
}

.hero-section{
  padding:42px 0 28px;
}

.hero-grid{
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
}

.hero-copy,
.hero-card,
.entry-card,
.addons-card{
  background:
    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(13,11,12,.78);
  border:1px solid rgba(244,239,232,.12);
  border-radius:34px;
  box-shadow:var(--shadow);
}

.hero-copy{
  min-height:640px;
  padding:68px 58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.hero-copy::before{
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(241,214,166,.13);
  border-radius:26px;
  pointer-events:none;
}

.hero-copy::after{
  content:"VICTORIA";
  position:absolute;
  right:-42px;
  bottom:-24px;
  font-family:"Cormorant Garamond",serif;
  font-size:8rem;
  letter-spacing:.08em;
  color:rgba(241,214,166,.045);
  pointer-events:none;
}

.hero-copy h1{
  font-size:clamp(4rem,8.8vw,7.6rem);
  line-height:.82;
  margin:0 0 .28em;
  letter-spacing:-.055em;
  max-width:8.5ch;
}

.hero-lead{
  font-size:1.18rem;
  line-height:1.9;
  max-width:54ch;
  color:rgba(244,239,232,.72);
}

.hero-actions{
  margin-top:34px;
}

.hero-card{
  padding:0;
  overflow:hidden;
  min-height:640px;
}

.hero-card-inner{
  border-radius:34px;
  min-height:640px;
  padding:58px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.72)),
    radial-gradient(circle at 60% 28%,rgba(198,154,91,.26),transparent 28%),
    url('../images/gallery-4.jpg') center/cover no-repeat;
}

.hero-card-inner::before{
  background:linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.20) 45%, rgba(0,0,0,.72));
}

.quote{
  font-size:clamp(2.7rem,5.5vw,5.9rem);
  line-height:.92;
  max-width:9.5ch;
  letter-spacing:-.055em;
}

.quote-author{
  margin-top:28px;
  color:var(--accent-2);
  font-weight:600;
}

.page-banner{
  padding:42px 0 18px;
}

.page-banner .container{
  padding:54px 48px;
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(123,58,70,.25),rgba(198,154,91,.08)),
    rgba(13,11,12,.72);
}

.page-banner h1{
  font-size:clamp(3.4rem,7vw,6rem);
  letter-spacing:-.045em;
}

.entry-card{
  padding:52px;
}

.entry-card p{
  font-size:1.03rem;
}

.entry-card h2{
  font-size:2.7rem;
}

.entry-card h3{
  color:var(--accent-2);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-family:"Inter",system-ui,sans-serif;
  font-size:.86rem;
}

.seed-gallery,
.wp-block-gallery{
  gap:14px !important;
}

.seed-gallery{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.seed-gallery-item img,
.wp-block-gallery img{
  border-radius:28px !important;
  aspect-ratio:3/4;
  object-fit:cover;
  border:1px solid rgba(244,239,232,.12);
  filter:saturate(.92) contrast(1.04);
}

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

.pricing-item{
  border-radius:26px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
  padding:28px;
}

.pricing-item strong{
  color:var(--accent-2);
  font-size:1.8rem;
}

.site-footer{
  background:#050506;
  border-top:1px solid rgba(244,239,232,.1);
}

.footer-title{
  font-size:2.5rem;
}

.victoria-form,
.victoria-form{
  display:grid;
  gap:18px;
}

.form-row input,
.form-row textarea,
input,
textarea{
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(244,239,232,.13) !important;
  color:var(--text) !important;
  border-radius:14px !important;
}

.notice.success{
  border-color:rgba(198,154,91,.42);
  background:rgba(198,154,91,.10);
}

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

  .hero-copy,
  .hero-card,
  .hero-card-inner{
    min-height:auto;
  }

  .hero-copy{
    padding:44px 28px;
  }

  .hero-copy h1{
    max-width:100%;
  }

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

@media (max-width: 560px){
  .hero-copy{
    padding:36px 22px;
  }

  .hero-copy::before{
    inset:12px;
  }

  .hero-copy h1{
    font-size:3.2rem;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .entry-card{
    padding:28px;
  }

  .seed-gallery,
  .pricing-grid{
    grid-template-columns:1fr;
  }
}



/* =========================================================
   FINAL CLEAN OVERRIDES - remove all legacy decorative text
   ========================================================= */

.hero-copy::after,
.hero-card-inner::after,
.hero-card::after,
.seed-gallery-item::before,
.seed-gallery-item::after,
.wp-block-gallery figure::before,
.wp-block-gallery figure::after {
  content: none !important;
  display: none !important;
}

.hero-card-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.72)),
    radial-gradient(circle at 68% 20%, rgba(198,154,91,.26), transparent 28%),
    radial-gradient(circle at 30% 65%, rgba(123,58,70,.16), transparent 34%),
    url('../images/gallery-8.jpg') center/cover no-repeat !important;
}

.hero-copy {
  background:
    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    radial-gradient(circle at 70% 30%, rgba(198,154,91,.08), transparent 40%),
    rgba(13,11,12,.86) !important;
}

.hero-copy .eyebrow,
.eyebrow:empty {
  display:none !important;
}

.seed-gallery-item figcaption,
.wp-block-gallery figcaption {
  display:none !important;
}

.quote-author::before {
  content:"";
}

.site-title,
.footer-title,
.hero-copy h1,
.quote-author {
  text-transform:none;
}

.hero-copy h1 {
  max-width: 9ch;
}

.quote {
  font-size: clamp(2.2rem, 4.8vw, 4.9rem) !important;
  max-width: 10ch !important;
}

@media (max-width: 900px) {
  .hero-copy h1 {
    max-width: 100%;
  }
}


/* Remove Inquire CTA button */
a.nav-cta,.nav-cta{display:none!important;visibility:hidden!important;pointer-events:none!important;}


/* Final cleanup */
.nav-cta{display:none!important;visibility:hidden!important;pointer-events:none!important;}
.hero-copy .eyebrow:empty,.eyebrow:empty{display:none!important;}
