/* ===========================================================
   Anelli's Tea Garden — shared stylesheet
   Palette derived from the client's real logo files (SUB_LOGO),
   corrected to pink-forward per direction — no purple, no dark bg.
   =========================================================== */

:root{
  /* ---- color tokens ---- */
  --cream:        #F8F2EB;  /* page background */
  --cream-soft:   #FBF7F2;  /* alt section background, lighter */
  --blush:        #F3DCE3;  /* lightest pink tint */
  --blush-mid:     #E8B8C8;  /* soft accent / dividers */
  --rose:         #C13F79;  /* main accent — headings, links, script */
  --rose-deep:    #9C3568;  /* buttons / CTA fills */
  --plum:         #6B1F54;  /* sparingly only — small accents, never large fills */
  --ink:          #4A3B3F;  /* body text */
  --white:        #FFFFFF;

  /* ---- gradients ---- */
  --gradient-cta:    linear-gradient(135deg, var(--rose), var(--rose-deep));
  --gradient-soft:   linear-gradient(135deg, var(--blush), var(--blush-mid));
  --gradient-banner: linear-gradient(120deg, var(--rose-deep), var(--rose), var(--blush-mid));
  --gradient-wash:   radial-gradient(circle at 30% 20%, var(--blush) 0%, var(--cream) 60%);

  /* ---- type ---- */
  --display: 'Cormorant Garamond', serif;
  --script:  'Parisienne', cursive;
  --body:    'Jost', sans-serif;

  --gap: clamp(1.25rem, 4vw, 2.75rem);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--cream);
  color:var(--ink);
  font-family:var(--body);
  font-weight:300;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img, svg, picture{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{
  outline:2px solid var(--rose-deep);
  outline-offset:3px;
}
ul{ list-style:none; }
.container{
  max-width:1320px;
  margin:0 auto;
  padding-left:var(--gap);
  padding-right:var(--gap);
}
section{ padding-block: clamp(2.5rem, 6vw, 5rem); }

/* ---------- header / nav ---------- */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem var(--gap);
  border-bottom:1px solid rgba(193,63,121,0.14);
  background:var(--cream);
  position:relative;
  z-index:30;
  flex-wrap:wrap;
  gap:.75rem 1.25rem;
}
.brand-mark{ flex-shrink:0; }
.brand-mark img{ height:38px; width:auto; }
.nav-toggle{
  background:none;
  border:1px solid var(--rose);
  color:var(--rose-deep);
  font-family:var(--body);
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:.5rem .9rem;
  border-radius:2px;
  cursor:pointer;
}
a.nav-cta{ display:none; }
.primary-nav{
  display:none;
  background:var(--cream-soft);
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1.6rem;
  font-family:var(--display);
  font-size:1.3rem;
  letter-spacing:.04em;
  color:var(--rose-deep);
  z-index:40;
}
.primary-nav.is-open{
  display:flex;
  position:fixed;
  top:0; right:0; bottom:0; left:0;
}
.primary-nav a{ padding:.25rem; }
.primary-nav a[aria-current="page"]{ color:var(--plum); }
.nav-close{
  position:absolute;
  top:1.1rem; right:var(--gap);
  background:none; border:none;
  font-family:var(--body);
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--rose-deep);
  cursor:pointer;
}
@media (min-width:880px){
  .nav-toggle{ display:none; }
  .primary-nav{
    display:flex;
    position:static;
    flex-direction:row;
    flex-wrap:wrap;
    background:none;
    font-family:var(--body);
    font-size:clamp(.72rem, 1vw, .85rem);
    font-weight:300;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--rose-deep);
    gap:clamp(.9rem, 1.6vw, 2rem);
    flex:1 1 auto;
    justify-content:center;
  }
  .nav-cta{ flex-shrink:0; }
  .nav-close{ display:none; }
  a.nav-cta{ display:inline-block; }
}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;
  text-align:center;
  font-family:var(--body);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.85rem 1.7rem;
  border-radius:999px;
  border:none;
  background:none;
  cursor:pointer;
  transition:opacity .2s ease, transform .2s ease;
}
.btn:hover{ opacity:.9; transform:translateY(-1px); }
.btn-primary{
  background:var(--gradient-cta);
  color:var(--white);
}
.btn-outline{
  border:1px solid var(--rose-deep);
  color:var(--rose-deep);
}
.btn-ghost-light{
  border:1px solid rgba(255,255,255,.8);
  color:var(--white);
}
.btn-whatsapp{
  background:var(--gradient-cta);
  color:var(--white);
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}

/* declared after .btn on purpose — same specificity, must win the tie */

/* ---------- eyebrow / headings ---------- */
.eyebrow{
  font-family:var(--body);
  font-size:.72rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--rose-deep);
  opacity:.85;
}
.eyebrow::before{
  content:'';
  display:inline-block;
  width:24px;
  height:1px;
  background:var(--rose);
  margin-right:.6rem;
  vertical-align:middle;
}
h1,h2,h3{ font-family:var(--display); color:var(--plum); font-weight:500; }
.script{ font-family:var(--script); color:var(--rose); font-weight:400; }

/* ---------- hero (home) ---------- */
.hero{
  display:flex;
  flex-direction:column;
  gap:2.5rem;
  padding:var(--gap);
  padding-top:clamp(2rem,6vw,3.5rem);
  max-width:1320px;
  margin:0 auto;
}
.wordmark-logo{ width:min(320px,70vw); margin-top:.8rem; }
.tagline{
  font-family:var(--display);
  font-weight:500;
  color:var(--plum);
  font-size:clamp(1.7rem,5vw,2.5rem);
  line-height:1.15;
  margin-top:1.4rem;
}
.kicker{
  font-family:var(--display);
  font-style:italic;
  font-size:1.05rem;
  color:var(--ink);
  margin-top:.9rem;
}
.lede{
  color:var(--rose-deep);
  max-width:34ch;
  margin-top:1.1rem;
  font-size:1.02rem;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:.9rem; margin-top:1.6rem; }

.hero-photo{
  width:min(420px,86vw);
  aspect-ratio:1/1;
  margin:0 auto;
}
.hero-photo img{ width:100%; height:100%; object-fit:contain; }
.heart-outline{ fill:none; stroke:var(--rose); stroke-width:.6; }

.est-line{
  display:flex; align-items:center; justify-content:center; gap:1rem;
  font-family:var(--body); font-size:.72rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink); padding:0 var(--gap) clamp(2rem,5vw,3rem);
}
.est-line::before, .est-line::after{
  content:''; height:1px; width:clamp(28px,8vw,60px); background:var(--blush-mid); flex:0 0 auto;
}

.cta-banner{
  display:block; text-align:center;
  background:var(--gradient-banner);
  color:var(--white);
  font-family:var(--body); font-size:.82rem; letter-spacing:.1em; text-transform:uppercase;
  text-decoration:underline; text-decoration-color:rgba(255,255,255,.55);
  padding:1.1rem var(--gap);
}
.cta-banner:hover{ text-decoration-color:var(--white); }

@media (max-width:879px){
  .hero-copy-top, .hero-copy-bottom{ text-align:center; }
  .wordmark-logo{ margin-left:auto; margin-right:auto; }
  .hero-ctas{ justify-content:center; }
  .hero-photo{ margin-top:-1.2rem; }
}

@media (min-width:880px){
  .hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-areas:
      "top photo"
      "bottom photo";
    align-items:center;
    gap:var(--gap);
    padding-top:clamp(3rem,6vw,5rem);
  }
  .hero-copy-top{ grid-area:top; }
  .hero-copy-bottom{ grid-area:bottom; align-self:start; }
  .hero-photo{
    grid-area:photo;
    width:100%;
    max-width:560px;
    aspect-ratio:1/1;
    margin:0;
  }
}

/* ---------- full-bleed story / intro banner ---------- */
.story-banner{
  position:relative;
  min-height:clamp(320px, 70vw, 480px);
  padding-block:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.story-banner--compact{ min-height:clamp(140px,18vw,170px); }
.story-banner--compact .story-banner-content{ padding:clamp(1rem,3vw,1.6rem) var(--gap); }
.story-banner::before{
  content:'';
  position:absolute; top:0; right:0; bottom:0; left:0;
  background:linear-gradient(180deg, rgba(107,31,84,.35), rgba(193,63,121,.55));
}
.story-banner-content{ position:relative; z-index:2; padding:var(--gap); max-width:760px; width:100%; box-sizing:border-box; }
.story-banner .eyebrow{ color:var(--white); opacity:.95; }
.story-banner .eyebrow::before{ background:var(--white); }
.story-banner h2{
  font-family:var(--script);
  color:var(--white);
  font-size:clamp(2.6rem,8vw,4.2rem);
  line-height:1;
  margin:.6rem 0 1rem;
}
.story-banner p{ font-size:1.02rem; max-width:56ch; margin:0 auto 1.6rem; }
.story-banner--compact h2{ font-size:clamp(2rem,5vw,2.8rem); margin:.4rem 0 0; }

/* Light variant — for pale, watercolor-style backgrounds (e.g. the
   flower-fade asset) where dark plum/rose text reads better than
   white-on-overlay. Swaps text color, drops the dark overlay, adds
   a soft cream wash instead so text stays legible over busy florals. */
.story-banner--light::before{
  background:radial-gradient(circle at 50% 35%, rgba(248,242,235,.55) 0%, rgba(248,242,235,.85) 100%);
}
.story-banner--light, .story-banner--light .eyebrow, .story-banner--light h2{ color:var(--plum); }
.story-banner--light .eyebrow{ opacity:.9; }
.story-banner--light .eyebrow::before{ background:var(--rose); }
.story-banner--light h2{ color:var(--rose); }
.story-banner--light p{ color:var(--ink); }
.story-banner--light .btn-ghost-light{ border-color:var(--rose-deep); color:var(--rose-deep); }

/* ---------- section helpers ---------- */
.section-soft{ background:var(--gradient-wash); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 2.5rem; }
.section-head h2{ font-size:clamp(1.8rem,4vw,2.6rem); margin-top:.5rem; }

/* ---------- card grid ---------- */
.card-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media (min-width:640px){ .card-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px){ .card-grid{ grid-template-columns:repeat(3,1fr); } }

.card{
  background:var(--white);
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 10px 30px -18px rgba(107,31,84,.35);
  display:flex;
  flex-direction:column;
}
.card > img{ aspect-ratio:4/3; object-fit:cover; width:100%; height:auto; }
.card-body{ padding:1.3rem 1.4rem 1.6rem; }
.card-body .tag{
  font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--rose);
}
.card-body h3{ font-size:1.3rem; margin:.3rem 0 .6rem; }
.card-body p{ font-size:.92rem; color:var(--ink); opacity:.85; }
.card-link{
  margin-top:.8rem; display:inline-block; font-size:.78rem; letter-spacing:.06em;
  text-transform:uppercase; color:var(--rose-deep); text-decoration:underline;
  text-decoration-color:var(--blush-mid);
}

/* ---------- quote block ---------- */
.quote-block{
  background:var(--gradient-soft);
  border-radius:8px;
  padding:2rem;
  text-align:center;
}
.quote-block p{ font-family:var(--display); font-style:italic; font-size:1.3rem; color:var(--plum); }

/* ---------- subtle floral wash (decorative section background) ---------- */
.floral-soft{
  position:relative;
  background-image:url('../images/story-bg-floral.webp?v=1');
  background-size:cover;
  background-position:center;
  padding-block:clamp(1.6rem,3vw,2.4rem);
}
.floral-soft::before{
  content:'';
  position:absolute; inset:0;
  background:rgba(248,242,235,.86);
}
.floral-soft > *{ position:relative; z-index:1; }

/* ---------- stat cards (about page) ---------- */
.stat-card{
  background:var(--gradient-soft);
  border-radius:10px;
  padding:2.3rem 1.5rem 1.9rem;
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(156,53,104,.1);
}
.stat-card::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--gradient-cta);
}
.stat-icon{ width:28px; height:28px; color:var(--rose-deep); margin:0 auto .5rem; }
.stat-number{ font-family:var(--display); font-style:italic; font-size:2.3rem; color:var(--plum); line-height:1; }
.stat-label{
  font-family:var(--body); font-style:normal; font-size:.78rem; letter-spacing:.12em;
  text-transform:uppercase; color:var(--ink); margin-top:.5rem;
}
.stat-sub{
  font-family:var(--body); font-style:normal; font-size:.7rem; letter-spacing:.03em;
  color:var(--rose-deep); opacity:.85; margin-top:.35rem;
}

/* ---------- testimonials ---------- */
.testimonial-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media (min-width:640px){ .testimonial-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1100px){ .testimonial-grid{ grid-template-columns:repeat(4,1fr); } }

.testimonial-card{
  background:var(--white);
  border-radius:8px;
  padding:1.6rem 1.4rem;
  box-shadow:0 10px 30px -18px rgba(107,31,84,.3);
  display:flex;
  flex-direction:column;
}
.testimonial-stars{
  color:var(--rose);
  font-size:.85rem;
  letter-spacing:.15em;
  margin-bottom:.9rem;
}
.testimonial-quote{
  font-family:var(--display);
  font-style:italic;
  font-size:1.05rem;
  color:var(--ink);
  line-height:1.55;
  flex-grow:1;
  margin-bottom:1.3rem;
}
.testimonial-person{
  display:flex;
  align-items:center;
  gap:.8rem;
  padding-top:1rem;
  border-top:1px solid var(--blush);
}
.testimonial-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--gradient-cta);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--display);
  font-weight:500;
  font-size:1.05rem;
  flex-shrink:0;
}
.testimonial-name{ font-size:.92rem; color:var(--plum); font-weight:500; }
.testimonial-location{ font-size:.78rem; color:var(--ink); opacity:.7; }
.site-footer{
  background:var(--blush);
  padding:100px var(--gap) 2rem;
  position:relative;
  overflow:visible;
  text-align:center;
}

.footer-seal{
  position:absolute;
  top:-40px;
  left:50%;
  transform:translateX(-50%);
  width:116px;
  z-index:2;
}
.footer-seal img{
  width:116px; height:116px; display:block; margin:0 auto;
  filter:drop-shadow(0 8px 18px rgba(107,31,84,.3));
}

.footer-nav-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.7rem 0;
  max-width:940px;
  margin:0 auto 2.25rem;
  padding-bottom:1.6rem;
  border-bottom:1px solid var(--blush-mid);
}
.footer-nav-row a{
  font-size:.74rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--plum);
  padding:0 .85rem;
  position:relative;
}
.footer-nav-row a:hover{ color:var(--rose-deep); }
.footer-nav-row a:not(:last-child)::after{
  content:'';
  position:absolute;
  right:-1px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:12px;
  background:var(--blush-mid);
}

.footer-info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  max-width:880px;
  margin:0 auto 2.25rem;
}
@media (min-width:680px){
  .footer-info-grid{ grid-template-columns:repeat(3,1fr); text-align:left; }
}
.footer-info-col h4{
  font-family:var(--body);
  font-size:.72rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--rose-deep);
  margin-bottom:.9rem;
}
.footer-info-col p{ font-size:.92rem; color:var(--ink); margin-bottom:.5rem; line-height:1.6; }
.footer-info-col > a{
  font-size:.88rem;
  color:var(--rose-deep);
  display:inline-block;
  text-decoration:underline;
  text-decoration-color:var(--blush-mid);
}
.footer-contact-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  font-size:.92rem;
  color:var(--ink) !important;
  text-decoration:none !important;
  margin-bottom:.5rem;
}
@media (min-width:680px){ .footer-contact-line{ justify-content:flex-start; } }
.footer-contact-line .icon{ color:var(--rose-deep); flex-shrink:0; display:inline-block; }

.footer-connect-row{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.6rem;
  max-width:880px;
  margin:0 auto;
  padding-top:1.75rem;
  border-top:1px solid var(--blush-mid);
}
@media (min-width:680px){
  .footer-connect-row{ flex-direction:row; justify-content:space-between; align-items:center; }
}
.footer-connect-left{ display:flex; flex-direction:column; align-items:center; gap:.8rem; }
@media (min-width:680px){ .footer-connect-left{ align-items:flex-start; } }
.footer-signature{ font-family:var(--script); color:var(--rose); font-size:1.6rem; line-height:1; }
.footer-social{ display:flex; gap:.7rem; }
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--blush-mid);
  background:var(--white);
  color:var(--rose-deep);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover{
  background:var(--gradient-cta);
  color:var(--white);
  transform:translateY(-2px);
}
.icon{ width:18px; height:18px; }
.icon-whatsapp{ width:16px; height:16px; }

.footer-connect-right{ display:flex; flex-direction:column; align-items:center; gap:.7rem; }
@media (min-width:680px){ .footer-connect-right{ align-items:flex-end; } }
.footer-connect-right p{ font-size:.78rem; letter-spacing:.07em; text-transform:uppercase; color:var(--plum); }
.footer-whatsapp-btn{ font-size:.76rem; padding:.7rem 1.4rem; }

.back-to-top{
  display:block;
  text-align:center;
  font-family:var(--body);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--rose-deep);
  margin-top:2.25rem;
}
.back-to-top:hover{ color:var(--plum); }

.footer-bottom{
  text-align:center;
  font-size:.75rem;
  opacity:.7;
  margin-top:.85rem;
  padding-top:1.25rem;
  border-top:1px solid var(--blush-mid);
}

/* ---------- placeholder notice (visible only in this draft) ---------- */
.draft-flag{
  background:var(--blush);
  color:var(--plum);
  font-size:.72rem;
  letter-spacing:.06em;
  text-align:center;
  padding:.5rem;
}

@media (min-width:880px){
  .story-grid{ grid-template-columns:1fr 1fr !important; align-items:center; }
}

/* ---------- card hover lift (scoped, opt-in via extra class) ---------- */
.card-hover-lift{ transition:transform .35s ease, box-shadow .35s ease; }
.card-hover-lift:hover, .card-hover-lift:focus-within{
  transform:translateY(-8px);
  box-shadow:0 24px 44px -18px rgba(107,31,84,.5);
}

/* ---------- generic image pop effect (standalone images, not wrapped in a card) ---------- */
.img-hover-pop{
  transition:transform .35s ease, box-shadow .35s ease;
  box-shadow:0 10px 24px -14px rgba(0,0,0,.35);
}
.img-hover-pop:hover, .img-hover-pop:focus, .img-hover-pop:active{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 26px 46px -16px rgba(107,31,84,.55);
}

/* ---------- full-bleed faded background showcase section ---------- */
.wedding-showcase{
  position:relative;
  background-image:url('../images/gallery-wedding-tablescape.webp?v=1');
  background-size:cover;
  background-position:center;
  padding-block:clamp(2.4rem,5vw,4rem);
}
.wedding-showcase::before{
  content:'';
  position:absolute; inset:0;
  background:rgba(248,242,235,.87);
}
.wedding-showcase > .container{ position:relative; z-index:1; }

/* ---------- image strip / slider ---------- */
.image-strip-wrap{
  position:relative;
  margin-top:2rem;
  padding:0 clamp(46px, 8vw, 52px);
}
.image-strip{
  display:flex;
  gap:1.1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:.5rem .2rem 1.2rem;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.image-strip::-webkit-scrollbar{ display:none; }
.strip-item{
  flex:0 0 auto;
  width:180px;
  scroll-snap-align:start;
  text-align:center;
}
@media (min-width:640px){ .strip-item{ width:200px; } }
.strip-item img{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:8px;
  display:block;
  transition:transform .35s ease, box-shadow .35s ease;
  box-shadow:0 10px 24px -14px rgba(0,0,0,.35);
}
.strip-item:hover img, .strip-item:focus-within img, .strip-item:active img{
  transform:translateY(-10px) scale(1.04);
  box-shadow:0 26px 46px -16px rgba(107,31,84,.55);
}
.strip-caption{
  margin-top:.6rem;
  font-size:.82rem;
  letter-spacing:.02em;
  color:var(--ink);
  opacity:0;
  transition:opacity .3s ease;
}
.strip-item:hover .strip-caption, .strip-item:focus-within .strip-caption, .strip-item:active .strip-caption{
  opacity:1;
}
@media (max-width:640px){
  /* touch devices have no real hover state, so keep captions visible rather than hidden */
  .strip-caption{ opacity:1; }
}
.strip-nav{
  position:absolute;
  top:calc(50% - .6rem);
  transform:translateY(-50%);
  z-index:2;
  width:42px; height:42px;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--blush-mid);
  color:var(--rose-deep);
  font-size:1.3rem;
  line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.strip-nav:hover{ background:var(--rose-deep); color:var(--white); transform:translateY(-50%) scale(1.06); }
.strip-nav-prev{ left:0; }
.strip-nav-next{ right:0; }

@media (prefers-reduced-motion: reduce){ *{ transition:none !important; } }

/* ---------- Info Hub — PDF cards ---------- */
.pdf-card{
  position:relative;
}
.pdf-card .card-body{
  display:flex;
  flex-direction:column;
  flex:1;
}
.pdf-card .card-body p{ flex:1; }
.pdf-card-actions{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
  margin-top:1.1rem;
}
.pdf-card-actions .btn{ padding:.75rem 1.3rem; font-size:.68rem; }
.pdf-card.is-soon{ opacity:.72; }
.badge-soon{
  display:inline-block;
  background:var(--blush);
  color:var(--rose-deep);
  font-family:var(--body);
  font-size:.66rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.35rem .8rem;
  border-radius:999px;
  margin-top:.3rem;
}

/* ---------- Info Hub — booking/order modal ---------- */
.hub-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(74,59,63,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1.2rem;
  z-index:100;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}
.hub-modal-overlay.is-open{
  opacity:1;
  visibility:visible;
}
.hub-modal{
  background:var(--white);
  border-radius:10px;
  max-width:480px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  padding:2rem 1.8rem 1.8rem;
  position:relative;
  transform:translateY(12px) scale(.98);
  transition:transform .25s ease;
  box-shadow:0 20px 50px -20px rgba(107,31,84,.5);
}
.hub-modal-overlay.is-open .hub-modal{
  transform:translateY(0) scale(1);
}
.hub-modal-close{
  position:absolute;
  top:1rem;
  right:1rem;
  background:none;
  border:none;
  font-family:var(--body);
  font-size:.8rem;
  color:var(--ink);
  opacity:.6;
  cursor:pointer;
  padding:.3rem;
}
.hub-modal-close:hover{ opacity:1; }
.hub-modal .eyebrow{ padding:0; text-align:left; justify-content:flex-start; display:flex; }
.hub-modal h3{ font-size:1.5rem; margin:.5rem 0 .3rem; }
.hub-modal-item{ font-size:.9rem; opacity:.8; margin-bottom:1.3rem; }
.hub-modal-form{
  display:flex;
  flex-direction:column;
  gap:.9rem;
}
.hub-modal-form input,
.hub-modal-form textarea{
  padding:.8rem 1rem;
  border:1px solid var(--blush-mid);
  border-radius:4px;
  font-family:var(--body);
  font-size:.9rem;
  background:var(--white);
  color:var(--ink);
  width:100%;
  box-sizing:border-box;
}
.hub-modal-form textarea{ resize:vertical; }
.hub-modal-form button[type="submit"]{
  border:none;
  cursor:pointer;
  margin-top:.3rem;
}
.hub-modal-note{
  font-size:.78rem;
  opacity:.65;
  margin-top:.9rem;
}

/* ---------- Info Hub — checkbox/radio field groups in modal ---------- */
.hub-field-group{
  border:1px solid var(--blush-mid);
  border-radius:6px;
  padding:.8rem 1rem .6rem;
  margin:0;
}
.hub-field-group legend{
  font-family:var(--body);
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--rose-deep);
  padding:0 .3rem;
}
.hub-checkbox-label{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.85rem;
  color:var(--ink);
  margin:.3rem .9rem .3rem 0;
  cursor:pointer;
}
.hub-checkbox-label input{ width:auto; margin:0; }

/* ---------- Info Hub — featured PDF (image-size rule broken by request,
   this page only, to mirror the client's reference layout) ---------- */
.hub-pairs{
  display:grid;
  grid-template-columns:1fr;
  gap:3rem 2.5rem;
}
@media (min-width:860px){
  .hub-pairs{ grid-template-columns:1fr 1fr; }
}
.pdf-feature{
  display:flex;
  gap:1.5rem;
  align-items:flex-start;
  flex-wrap:wrap;
}
.pdf-feature img{
  width:200px;
  height:267px;
  object-fit:cover;
  object-position:top center;
  flex:0 0 auto;
  border-radius:8px;
  box-shadow:0 20px 40px -20px rgba(107,31,84,.4);
}
.pdf-feature-text{ max-width:36ch; flex:1 1 220px; min-width:220px; }
.pdf-feature-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:1rem;
  margin-top:.4rem;
}

.pdf-feature.is-soon{ opacity:.72; }

/* ---------- Info Hub — thank-you confirmation popup ---------- */
.hub-thanks-overlay{
  position:fixed;
  inset:0;
  background:rgba(74,59,63,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1.2rem;
  z-index:110;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}
.hub-thanks-overlay.is-open{ opacity:1; visibility:visible; }
.hub-thanks{
  background:var(--white);
  border-radius:10px;
  max-width:400px;
  width:100%;
  padding:2.2rem 1.8rem;
  text-align:center;
  transform:translateY(12px) scale(.98);
  transition:transform .25s ease;
  box-shadow:0 20px 50px -20px rgba(107,31,84,.5);
}
.hub-thanks-overlay.is-open .hub-thanks{ transform:translateY(0) scale(1); }
.hub-thanks h3{ font-family:var(--script); font-size:2rem; color:var(--rose); margin-bottom:.6rem; }
.hub-thanks p{ font-size:.92rem; opacity:.85; margin-bottom:1.4rem; }
