/* ============================================================
   BELOVED — Design Tokens
   Warm ivory / soft sand / champagne / espresso / soft stone / bronze
   Display: "Fraunces"-style editorial serif (fallback stack)
   Body: humanist sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --ivory:#F7F3ED;
  --sand:#E9DFD3;
  --champagne:#D8C5AF;
  --espresso:#2C2521;
  --stone:#BEB4AA;
  --bronze:#A67C52;
  --bronze-dark:#8A6540;
  --white:#FFFFFF;

  --serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(44,37,33,0.06);
  --shadow-md: 0 8px 30px rgba(44,37,33,0.10);
  --shadow-lg: 0 20px 60px rgba(44,37,33,0.16);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--sans);
  color:var(--espresso);
  background:var(--ivory);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}

h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:500;
  color:var(--espresso);
  margin:0 0 0.5em 0;
  letter-spacing:-0.01em;
  line-height:1.12;
}

p{ margin:0 0 1em 0; color:#4a423c; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:var(--sans); cursor:pointer; }

.eyebrow{
  font-family:var(--sans);
  font-size:0.72rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--bronze-dark);
  font-weight:600;
  margin-bottom:0.9em;
  display:block;
}

.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}

section{ padding:96px 0; }

@media (max-width:768px){
  section{ padding:64px 0; }
  .container{ padding:0 20px; }
}

/* Visually hidden but accessible */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 30px;
  font-size:0.95rem;
  font-weight:600;
  letter-spacing:0.01em;
  border-radius:2px;
  border:1px solid transparent;
  transition:all 0.35s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--espresso);
  color:var(--ivory);
}
.btn-primary:hover{ background:var(--bronze-dark); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline{
  background:transparent;
  color:var(--ivory);
  border-color:rgba(247,243,237,0.6);
}
.btn-outline:hover{ background:rgba(247,243,237,0.12); border-color:var(--ivory); transform:translateY(-2px); }
.btn-outline-dark{
  background:transparent;
  color:var(--espresso);
  border-color:var(--espresso);
}
.btn-outline-dark:hover{ background:var(--espresso); color:var(--ivory); }
.btn-bronze{
  background:var(--bronze);
  color:var(--ivory);
}
.btn-bronze:hover{ background:var(--bronze-dark); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-sm{ padding:10px 20px; font-size:0.82rem; }
.btn-full{ width:100%; }
.btn:disabled{ opacity:0.5; cursor:not-allowed; transform:none !important; }

/* ============ Navigation ============ */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;
  padding:22px 0;
  transition: all 0.4s var(--ease);
  background:transparent;
}
.nav.scrolled{
  background:rgba(247,243,237,0.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  padding:14px 0;
  box-shadow:0 1px 0 rgba(44,37,33,0.08);
}
.nav-inner{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family:var(--serif);
  font-size:1.5rem;
  font-weight:600;
  letter-spacing:0.01em;
  color:var(--ivory);
  transition:color 0.4s var(--ease);
}
.nav.scrolled .logo{ color:var(--espresso); }
.logo .dot{ color:var(--bronze); }

.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  font-size:0.92rem;
  font-weight:500;
  color:var(--ivory);
  position:relative;
  padding:4px 0;
  transition:color 0.4s var(--ease);
}
.nav.scrolled .nav-links a{ color:var(--espresso); }
.nav-links a::after{
  content:'';
  position:absolute; left:0; right:0; bottom:-2px;
  height:1px; background:currentColor;
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.3s var(--ease);
}
.nav-links a:hover::after{ transform:scaleX(1); }

.nav-icons{ display:flex; align-items:center; gap:20px; }
.icon-btn{
  background:none; border:none; padding:6px;
  color:var(--ivory);
  display:flex; align-items:center; justify-content:center;
  transition:color 0.4s var(--ease), transform 0.3s var(--ease);
  position:relative;
}
.nav.scrolled .icon-btn{ color:var(--espresso); }
.icon-btn:hover{ transform:translateY(-1px); color:var(--bronze); }
.icon-btn svg{ width:20px; height:20px; flex-shrink:0; }
.plan-label{ font-size:0.86rem; font-weight:600; white-space:nowrap; }
#savedBtn{ gap:8px; padding:7px 10px; }
.saved-badge{
  position:absolute; top:-6px; right:-5px;
  background:var(--bronze); color:var(--ivory);
  font-size:0.62rem; font-weight:700;
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

.menu-toggle{
  display:none;
  background:none; border:none;
  color:var(--ivory);
  padding:6px;
}
.nav.scrolled .menu-toggle{ color:var(--espresso); }
.menu-toggle svg{ width:26px; height:26px; }

@media (max-width:920px){
  .nav-links{ display:none; }
  .menu-toggle{ display:block; }
}

/* Mobile slide-out menu */
.mobile-menu{
  position:fixed; top:0; right:0; bottom:0;
  width:min(360px, 84vw);
  background:var(--ivory);
  z-index:1100;
  transform:translateX(100%);
  transition:transform 0.45s var(--ease);
  box-shadow:var(--shadow-lg);
  padding:32px 28px;
  overflow-y:auto;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu-header{ display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; }
.mobile-menu a.mm-link{
  display:block;
  font-family:var(--serif);
  font-size:1.4rem;
  padding:14px 0;
  border-bottom:1px solid var(--sand);
  color:var(--espresso);
}
.mobile-overlay{
  position:fixed; inset:0; background:rgba(44,37,33,0.4);
  z-index:1050; opacity:0; pointer-events:none;
  transition:opacity 0.4s var(--ease);
}
.mobile-overlay.show{ opacity:1; pointer-events:auto; }

/* ============ Hero ============ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:160px 24px 80px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(180deg, rgba(28,22,18,0.42) 0%, rgba(28,22,18,0.55) 55%, rgba(28,22,18,0.72) 100%),
    url('https://picsum.photos/seed/beloved-hero/1800/1200');
  background-size:cover;
  background-position:center 30%;
  z-index:0;
  animation:heroZoom 22s var(--ease) infinite alternate;
}
@keyframes heroZoom{ from{ transform:scale(1); } to{ transform:scale(1.06); } }
@media (prefers-reduced-motion: reduce){ .hero-bg{ animation:none; } }

.hero-content{ position:relative; z-index:2; max-width:800px; }
.hero .eyebrow{ color:var(--champagne); opacity:0.95; }
.hero h1{
  font-size:clamp(2.4rem, 5.4vw, 4.4rem);
  color:var(--ivory);
  font-weight:500;
  margin-bottom:0.4em;
  opacity:0;
  animation:fadeUp 1s var(--ease) 0.2s forwards;
}
.hero-sub{
  font-size:1.15rem;
  color:rgba(247,243,237,0.88);
  max-width:600px;
  margin:0 auto 2.2em;
  font-weight:300;
  opacity:0;
  animation:fadeUp 1s var(--ease) 0.45s forwards;
}
.hero-buttons{
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 1s var(--ease) 0.65s forwards;
}
@keyframes fadeUp{ from{ opacity:0; transform:translateY(22px); } to{ opacity:1; transform:translateY(0); } }

/* Search panel */
.search-panel{
  position:relative;
  z-index:2;
  margin-top:56px;
  background:rgba(247,243,237,0.97);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  padding:28px;
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:16px;
  align-items:end;
  width:100%;
  max-width:820px;
  opacity:0;
  animation:fadeUp 1s var(--ease) 0.85s forwards;
}
.field-group{ text-align:left; }
.field-group label{
  display:block;
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--bronze-dark);
  margin-bottom:8px;
}
.field-group select, .field-group input{
  width:100%;
  border:1px solid var(--stone);
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:13px 14px;
  font-size:0.95rem;
  color:var(--espresso);
  font-family:var(--sans);
  transition:border-color 0.25s var(--ease);
}
.field-group select:focus, .field-group input:focus{ border-color:var(--bronze); }
.search-panel .btn{ height:48px; padding:0 32px; }

@media (max-width:768px){
  .search-panel{ grid-template-columns:1fr; padding:22px; }
  .search-panel .btn{ width:100%; }
}

/* ============ Section headers ============ */
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p{ font-size:1.05rem; color:#6b625b; }
.section-head-row{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:56px; flex-wrap:wrap; }

/* ============ Reveal on scroll ============ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============ Category editorial section ============ */
.categories-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  grid-template-rows:repeat(2, 280px);
  gap:20px;
}
.cat-card{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  cursor:pointer;
  color:var(--ivory);
  box-shadow:var(--shadow-sm);
}
.cat-card:nth-child(1){ grid-column:1 / 4; grid-row:1 / 3; }
.cat-card:nth-child(2){ grid-column:4 / 7; grid-row:1 / 2; }
.cat-card:nth-child(3){ grid-column:4 / 6; grid-row:2 / 3; }
.cat-card:nth-child(4){ grid-column:6 / 7; grid-row:2 / 3; }
.cat-card:nth-child(5){ grid-column:1 / 3; grid-row:3 / 4; }
.cat-card:nth-child(6){ grid-column:3 / 7; grid-row:3 / 4; }

.cat-card img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.8s var(--ease);
}
.cat-card:hover img{ transform:scale(1.07); }
.cat-card::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(28,22,18,0) 35%, rgba(28,22,18,0.78) 100%);
  z-index:1;
  transition:background 0.4s var(--ease);
}
.cat-card:hover::before{ background:linear-gradient(180deg, rgba(28,22,18,0.15) 25%, rgba(28,22,18,0.85) 100%); }
.cat-content{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:28px;
}
.cat-content h3{ color:var(--ivory); font-size:1.5rem; margin-bottom:6px; }
.cat-content p{ color:rgba(247,243,237,0.85); font-size:0.9rem; margin-bottom:12px; max-width:320px; }
.cat-link{
  font-size:0.8rem; font-weight:600; letter-spacing:0.04em;
  color:var(--champagne);
  display:inline-flex; align-items:center; gap:6px;
  transition:gap 0.3s var(--ease);
}
.cat-card:hover .cat-link{ gap:10px; }

@media (max-width:920px){
  .categories-grid{ grid-template-columns:1fr 1fr; grid-template-rows:repeat(6, 220px); }
  .cat-card:nth-child(1){ grid-column:1/3; grid-row:1/2; }
  .cat-card:nth-child(2){ grid-column:1/3; grid-row:2/3; }
  .cat-card:nth-child(3){ grid-column:1/2; grid-row:3/4; }
  .cat-card:nth-child(4){ grid-column:2/3; grid-row:3/4; }
  .cat-card:nth-child(5){ grid-column:1/2; grid-row:4/5; }
  .cat-card:nth-child(6){ grid-column:2/3; grid-row:4/5; }
}
@media (max-width:600px){
  .categories-grid{ grid-template-columns:1fr; grid-template-rows:none; }
  .cat-card{ grid-column:1 !important; grid-row:auto !important; height:240px; }
}

/* ============ Vendor cards ============ */
.vendor-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:32px;
}
.vendor-card{
  background:var(--white);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display:flex;
  flex-direction:column;
  border:1px solid rgba(190,180,170,0.25);
}
.vendor-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.vendor-media{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--sand); }
.vendor-media img{ width:100%; height:100%; object-fit:cover; transition:transform 0.7s var(--ease); }
.vendor-card:hover .vendor-media img{ transform:scale(1.06); }
.featured-badge{
  position:absolute; top:14px; left:14px;
  background:var(--espresso); color:var(--champagne);
  font-size:0.68rem; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase;
  padding:6px 12px; border-radius:20px;
}
.save-btn{
  position:absolute; top:12px; right:12px;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.92);
  border:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  transition:transform 0.3s var(--ease);
  color:var(--espresso);
}
.save-btn:hover{ transform:scale(1.08); }
.save-btn svg{ width:18px; height:18px; }
.save-btn.saved{ color:var(--bronze); }
.save-btn.saved svg{ fill:var(--bronze); }

.vendor-body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.vendor-cat-tag{
  font-size:0.7rem; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--bronze-dark); margin-bottom:8px;
}
.vendor-body h3{ font-size:1.25rem; margin-bottom:4px; }
.vendor-loc{
  font-size:0.85rem; color:#8a8078; margin-bottom:12px;
  display:flex; align-items:center; gap:6px;
}
.vendor-loc svg{ width:14px; height:14px; flex-shrink:0; }
.vendor-desc{ font-size:0.9rem; color:#6b625b; margin-bottom:16px; flex:1; }
.vendor-footer{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:8px; border-top:1px solid var(--sand); }
.rating{ display:flex; align-items:center; gap:5px; font-size:0.88rem; font-weight:600; }
.rating svg{ width:15px; height:15px; color:var(--bronze); fill:var(--bronze); }

/* ============ How it works ============ */
.steps-wrap{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.step{ text-align:left; padding-top:24px; border-top:1px solid var(--stone); }
.step-num{ font-family:var(--serif); font-size:2.2rem; color:var(--champagne); display:block; margin-bottom:18px; }
.step h3{ font-size:1.25rem; margin-bottom:10px; }
.step p{ font-size:0.92rem; color:#6b625b; }
@media (max-width:800px){ .steps-wrap{ grid-template-columns:1fr; gap:32px; } }

/* ============ Why Beloved ============ */
.why-section{ background:var(--sand); }
.why-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:64px; align-items:center; }
.why-image{ border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:4/5; }
.why-image img{ width:100%; height:100%; object-fit:cover; }
.why-list{ list-style:none; padding:0; margin:24px 0 0; }
.why-list li{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(44,37,33,0.12); }
.why-list li:last-child{ border-bottom:none; }
.why-icon{ width:42px; height:42px; border-radius:50%; background:var(--espresso); color:var(--champagne); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.why-icon svg{ width:20px; height:20px; }
.why-text h4{ font-size:1.05rem; margin-bottom:4px; font-family:var(--sans); font-weight:600; }
.why-text p{ font-size:0.88rem; margin:0; color:#5c534c; }
@media (max-width:860px){ .why-grid{ grid-template-columns:1fr; gap:36px; } }

/* ============ Featured venue banner ============ */
.venue-banner{
  position:relative;
  min-height:520px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  margin:0 32px;
  max-width:1240px;
  margin-left:auto; margin-right:auto;
  box-shadow:var(--shadow-lg);
}
.venue-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.venue-banner::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(28,22,18,0.82) 10%, rgba(28,22,18,0) 60%);
}
.venue-banner-content{ position:relative; z-index:2; padding:56px; color:var(--ivory); max-width:560px; }
.venue-banner-content .eyebrow{ color:var(--champagne); }
.venue-banner-content h2{ color:var(--ivory); font-size:2.2rem; }
.venue-banner-content p{ color:rgba(247,243,237,0.85); }
@media (max-width:768px){ .venue-banner{ margin:0 20px; } .venue-banner-content{ padding:32px 28px; } }

/* ============ Guides ============ */
.guides-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:28px; }
.guide-card{
  background:var(--white); border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border:1px solid rgba(190,180,170,0.25);
  cursor:pointer;
}
.guide-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.guide-media{ aspect-ratio:3/2; overflow:hidden; }
.guide-media img{ width:100%; height:100%; object-fit:cover; transition:transform 0.6s var(--ease); }
.guide-card:hover .guide-media img{ transform:scale(1.06); }
.guide-body{ padding:22px; }
.guide-tag{ font-size:0.68rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--bronze-dark); margin-bottom:8px; display:block; }
.guide-body h3{ font-size:1.05rem; margin-bottom:8px; }
.guide-body p{ font-size:0.85rem; color:#6b625b; margin-bottom:0; }
@media (max-width:920px){ .guides-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .guides-grid{ grid-template-columns:1fr; } }

/* ============ Testimonial ============ */
.testimonial-section{
  background:var(--espresso);
  color:var(--ivory);
  text-align:center;
}
.testimonial-section .container{ max-width:760px; }
.quote-mark{ font-family:var(--serif); font-size:4rem; color:var(--bronze); line-height:1; margin-bottom:12px; }
.testimonial-text{ font-family:var(--serif); font-size:1.6rem; font-weight:400; font-style:italic; color:var(--ivory); line-height:1.5; margin-bottom:28px; }
.testimonial-author{ font-size:0.9rem; color:var(--champagne); font-weight:600; }
.testimonial-role{ font-size:0.82rem; color:var(--stone); }

/* ============ Newsletter ============ */
.newsletter{ background:var(--champagne); text-align:center; }
.newsletter .container{ max-width:600px; }
.newsletter h2{ font-size:1.9rem; }
.newsletter-form{ display:flex; gap:12px; margin-top:24px; }
.newsletter-form input{
  flex:1; padding:15px 18px; border:1px solid rgba(44,37,33,0.25); border-radius:var(--radius-sm);
  font-size:0.95rem; font-family:var(--sans); background:rgba(255,255,255,0.6);
}
.newsletter-form input:focus{ background:var(--white); }
@media (max-width:560px){ .newsletter-form{ flex-direction:column; } }
.newsletter-success{ display:none; margin-top:18px; font-weight:600; color:var(--espresso); }

/* ============ Footer ============ */
footer{ background:var(--espresso); color:var(--stone); padding:80px 0 32px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer-logo{ font-family:var(--serif); font-size:1.5rem; color:var(--ivory); margin-bottom:16px; }
.footer-desc{ font-size:0.88rem; color:var(--stone); max-width:280px; }
.footer-social{ display:flex; gap:14px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(190,180,170,0.35);
  display:flex; align-items:center; justify-content:center; transition:all 0.3s var(--ease);
}
.footer-social a:hover{ background:var(--bronze); border-color:var(--bronze); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ font-family:var(--sans); font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--champagne); font-weight:600; margin-bottom:18px; }
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col li{ margin-bottom:12px; }
.footer-col a{ font-size:0.9rem; color:var(--stone); transition:color 0.3s var(--ease); }
.footer-col a:hover{ color:var(--ivory); }
.footer-bottom{
  border-top:1px solid rgba(190,180,170,0.2); padding-top:28px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
  font-size:0.82rem; color:var(--stone);
}
.footer-bottom a{ margin-left:20px; color:var(--stone); }
.footer-bottom a:hover{ color:var(--ivory); }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } .footer-bottom{ flex-direction:column; align-items:flex-start; } .footer-bottom .legal-links a{ margin-left:0; margin-right:16px; } }

/* ============ Directory page ============ */
.page{ display:none; }
.page.active{ display:block; }
.directory-hero{
  background:var(--sand);
  padding:180px 0 60px;
  text-align:center;
}
.directory-hero h1{ font-size:clamp(2rem,4vw,3rem); }
.directory-hero p{ max-width:560px; margin:0 auto; color:#6b625b; }

.directory-layout{ display:grid; grid-template-columns:280px 1fr; gap:40px; align-items:start; }
.filters-panel{
  background:var(--white); border-radius:var(--radius-md); padding:28px;
  box-shadow:var(--shadow-sm); position:sticky; top:110px;
  border:1px solid rgba(190,180,170,0.25);
}
.filter-group{ margin-bottom:24px; }
.filter-group:last-child{ margin-bottom:0; }
.filter-group label{ display:block; font-size:0.75rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--bronze-dark); margin-bottom:10px; }
.filter-group select, .filter-group input[type="text"]{
  width:100%; padding:11px 12px; border:1px solid var(--stone); border-radius:var(--radius-sm);
  font-size:0.9rem; font-family:var(--sans); background:var(--ivory);
}
.checkbox-row{ display:flex; align-items:center; gap:10px; }
.checkbox-row input{ width:18px; height:18px; accent-color:var(--bronze); }
.checkbox-row label{ margin:0; text-transform:none; font-size:0.9rem; font-weight:500; color:var(--espresso); }

.results-header{ display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; flex-wrap:wrap; gap:12px; }
.results-count{ font-size:0.92rem; color:#6b625b; }
.no-results{ text-align:center; padding:80px 20px; color:#6b625b; }
.no-results h3{ margin-bottom:8px; }

@media (max-width:920px){
  .directory-layout{ grid-template-columns:1fr; }
  .filters-panel{ position:static; }
}

/* ============ Modal (Vendor Profile) ============ */
.modal-overlay{
  position:fixed; inset:0; background:rgba(28,22,18,0.6);
  z-index:1200; opacity:0; pointer-events:none;
  transition:opacity 0.4s var(--ease);
  overflow-y:auto;
  padding:40px 20px;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  background:var(--ivory); max-width:920px; margin:0 auto;
  border-radius:var(--radius-lg); overflow:hidden;
  transform:translateY(30px); transition:transform 0.45s var(--ease);
  box-shadow:var(--shadow-lg);
}
.modal-overlay.open .modal-box{ transform:translateY(0); }

.modal-hero{ position:relative; height:340px; }
.modal-hero img{ width:100%; height:100%; object-fit:cover; }
.modal-close{
  position:absolute; top:20px; right:20px; z-index:5;
  width:42px; height:42px; border-radius:50%; background:rgba(247,243,237,0.9);
  border:none; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-sm);
}
.modal-hero::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(28,22,18,0.55) 0%, rgba(28,22,18,0) 45%); }
.modal-hero-content{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:32px 40px; color:var(--ivory); }
.modal-hero-content .vendor-cat-tag{ color:var(--champagne); }
.modal-hero-content h2{ color:var(--ivory); font-size:2rem; margin-bottom:6px; }

.gallery-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; padding:8px; }
.gallery-row img{ aspect-ratio:1; object-fit:cover; border-radius:6px; }

.modal-body{ padding:40px; display:grid; grid-template-columns:1.5fr 1fr; gap:48px; }
.modal-main h3{ font-size:1.3rem; margin-top:0; }
.modal-main h3:not(:first-child){ margin-top:36px; }
.services-list{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.services-list li{ display:flex; align-items:center; gap:8px; font-size:0.92rem; color:#4a423c; }
.services-list svg{ width:16px; height:16px; color:var(--bronze); flex-shrink:0; }

.map-placeholder{
  background:var(--sand); border-radius:var(--radius-md); height:180px;
  display:flex; align-items:center; justify-content:center; color:#8a8078; font-size:0.85rem;
  gap:8px; margin-top:12px;
}
.testimonial-mini{ background:var(--white); border-radius:var(--radius-md); padding:20px; margin-bottom:14px; border:1px solid var(--sand); }
.testimonial-mini p{ font-size:0.9rem; font-style:italic; margin-bottom:8px; }
.testimonial-mini span{ font-size:0.8rem; font-weight:600; color:var(--bronze-dark); }

.modal-side{ }
.contact-card{ background:var(--white); border:1px solid var(--sand); border-radius:var(--radius-md); padding:24px; margin-bottom:24px; }
.contact-row{ display:flex; align-items:center; gap:12px; font-size:0.9rem; margin-bottom:14px; }
.contact-row:last-child{ margin-bottom:0; }
.contact-row svg{ width:18px; height:18px; color:var(--bronze); flex-shrink:0; }
.hours-row{ display:flex; justify-content:space-between; font-size:0.85rem; padding:6px 0; border-bottom:1px solid var(--sand); }
.hours-row:last-child{ border-bottom:none; }

.enquiry-form{ display:flex; flex-direction:column; gap:14px; }
.enquiry-form input, .enquiry-form textarea{
  width:100%; padding:12px 14px; border:1px solid var(--stone); border-radius:var(--radius-sm);
  font-family:var(--sans); font-size:0.9rem; background:var(--ivory);
}
.enquiry-form textarea{ min-height:90px; resize:vertical; }
.form-success{ display:none; background:var(--sand); padding:14px; border-radius:var(--radius-sm); font-size:0.88rem; text-align:center; }

.related-section{ padding:0 40px 40px; }
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

@media (max-width:768px){
  .modal-body{ grid-template-columns:1fr; padding:28px; gap:32px; }
  .gallery-row{ grid-template-columns:repeat(2,1fr); }
  .related-section{ padding:0 28px 28px; }
  .related-grid{ grid-template-columns:1fr; }
  .services-list{ grid-template-columns:1fr; }
}

/* ============ Admin Editor ============ */
.admin-shell{ padding:150px 0 80px; }
.admin-login{ max-width:400px; margin:0 auto; background:var(--white); border-radius:var(--radius-md); padding:40px; box-shadow:var(--shadow-md); text-align:center; }
.admin-login input{ width:100%; padding:13px 14px; border:1px solid var(--stone); border-radius:var(--radius-sm); margin:16px 0; font-family:var(--sans); }
.admin-header{ display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; flex-wrap:wrap; gap:16px; }
.admin-tab-btn{
  background:none; border:none; padding:12px 20px; font-size:0.9rem; font-weight:600;
  color:#8a8078; border-bottom:2px solid transparent; margin-bottom:-1px;
  transition:color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.admin-tab-btn:hover{ color:var(--espresso); }
.admin-tab-btn.active{ color:var(--bronze-dark); border-bottom-color:var(--bronze); }
.admin-toolbar{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:32px; }
.admin-table-wrap{ background:var(--white); border-radius:var(--radius-md); overflow-x:auto; box-shadow:var(--shadow-sm); border:1px solid rgba(190,180,170,0.25); }
table.admin-table{ width:100%; border-collapse:collapse; min-width:820px; }
table.admin-table th{
  text-align:left; font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--bronze-dark); padding:16px 18px; background:var(--sand); font-weight:600;
}
table.admin-table td{ padding:14px 18px; border-bottom:1px solid var(--sand); font-size:0.9rem; vertical-align:middle; }
table.admin-table tr:last-child td{ border-bottom:none; }
.admin-thumb{ width:56px; height:42px; object-fit:cover; border-radius:6px; }
.admin-actions{ display:flex; gap:8px; }
.admin-actions button{ background:none; border:none; padding:6px; color:var(--espresso); border-radius:4px; }
.admin-actions button:hover{ background:var(--sand); }
.admin-actions svg{ width:17px; height:17px; }
.pill{ font-size:0.72rem; padding:4px 10px; border-radius:20px; background:var(--sand); font-weight:600; }
.pill.featured{ background:var(--espresso); color:var(--champagne); }
.reorder-btns{ display:flex; flex-direction:column; gap:2px; }
.reorder-btns button svg{ width:14px; height:14px; }

/* Admin form modal */
.admin-form-body{ display:grid; grid-template-columns:1fr 1fr; gap:20px; padding:32px 40px; }
.admin-form-body .full{ grid-column:1 / -1; }
.form-field label{ display:block; font-size:0.78rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; color:var(--bronze-dark); margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--stone); border-radius:var(--radius-sm);
  font-family:var(--sans); font-size:0.92rem; background:var(--ivory);
}
.form-field textarea{ min-height:80px; resize:vertical; }
.admin-form-actions{ display:flex; justify-content:flex-end; gap:12px; padding:0 40px 32px; }
@media (max-width:700px){ .admin-form-body{ grid-template-columns:1fr; padding:24px; } .admin-form-actions{ padding:0 24px 24px; } }

.toast{
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--espresso); color:var(--ivory); padding:14px 26px; border-radius:8px;
  font-size:0.9rem; box-shadow:var(--shadow-lg); z-index:1500; opacity:0; pointer-events:none;
  transition:all 0.4s var(--ease); display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.toast svg{ width:18px; height:18px; color:var(--champagne); }

.admin-link-footer{ background:none; border:none; color:var(--stone); font-size:0.82rem; opacity:0.7; }
.admin-link-footer:hover{ color:var(--ivory); opacity:1; }

/* image fallback */
.img-fallback{
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--sand), var(--champagne));
  color:var(--bronze-dark); font-family:var(--serif); font-size:0.95rem; text-align:center; padding:20px;
  width:100%; height:100%;
}

/* Local admin security controls */
.admin-login #adminConfirmWrap input{ margin-top:0; }
.admin-login input:invalid{ box-shadow:none; }

/* ============================================================
   BELOVED V2 — premium editorial direction
   ============================================================ */
:root{
  --ivory:#f5f0e8;
  --sand:#e7ddd1;
  --champagne:#d4bfa6;
  --espresso:#241f1b;
  --bronze:#9b7048;
  --bronze-dark:#755033;
  --shadow-xl:0 34px 90px rgba(25,20,17,.20);
}
body{letter-spacing:-.005em;background:#f8f5ef}
.container{max-width:1320px}
section{padding:118px 0}
.nav{padding:28px 0}
.nav-inner{max-width:1320px}
.logo{font-size:1.85rem;letter-spacing:-.035em}
.nav-links{gap:42px}
.nav-links a{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase}
.nav.scrolled{background:rgba(248,245,239,.9);padding:17px 0}

.hero{min-height:98vh;text-align:left;align-items:stretch;padding:170px max(32px,calc((100vw - 1320px)/2)) 72px;justify-content:flex-end}
.hero-bg{background-position:center 45%;filter:saturate(.72) contrast(.98)}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(22,17,14,.76) 0%,rgba(22,17,14,.42) 43%,rgba(22,17,14,.07) 78%),linear-gradient(0deg,rgba(22,17,14,.52),transparent 48%)}
.hero-content{max-width:790px;margin:0}
.hero h1{font-size:clamp(3.2rem,6.6vw,6.8rem);line-height:.97;letter-spacing:-.055em;margin-bottom:.34em;text-wrap:balance}
.hero-sub{font-size:1.1rem;line-height:1.75;max-width:590px;margin:0 0 2.2em;color:rgba(255,255,255,.84)}
.hero-buttons{justify-content:flex-start}
.hero .btn{padding:16px 28px}
.search-panel{margin:58px 0 0;max-width:900px;padding:14px;background:rgba(248,245,239,.92);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.48);border-radius:4px;box-shadow:var(--shadow-xl);gap:0}
.search-panel .field-group{padding:7px 22px;border-right:1px solid rgba(44,37,33,.12)}
.search-panel .field-group label{margin-bottom:3px;font-size:.62rem}
.search-panel .field-group select,.search-panel .field-group input{border:0;background:transparent;padding:5px 0;font-size:.95rem;outline:none}
.search-panel .btn{height:58px;border-radius:2px;padding:0 38px}
.hero-assurance{position:relative;z-index:2;display:flex;align-items:center;gap:16px;color:rgba(255,255,255,.72);font-size:.69rem;text-transform:uppercase;letter-spacing:.13em;margin-top:28px}
.hero-assurance i{display:block;width:26px;height:1px;background:rgba(255,255,255,.34)}

.section-head{max-width:760px;margin-bottom:70px}
.section-head h2,.section-head-row h2{font-size:clamp(2.5rem,4.4vw,4.4rem);line-height:1.02;letter-spacing:-.045em}
.section-head p{max-width:590px;font-size:1rem;line-height:1.8}
.eyebrow{font-size:.64rem;letter-spacing:.2em}

.categories-grid{grid-template-rows:repeat(2,330px);gap:14px}
.cat-card{border-radius:2px;box-shadow:none}
.cat-card::before{background:linear-gradient(180deg,rgba(18,14,12,.02) 28%,rgba(18,14,12,.82) 100%)}
.cat-content{padding:34px}
.cat-content h3{font-size:1.85rem;letter-spacing:-.03em}
.cat-content p{font-size:.82rem;max-width:300px}
.cat-link{font-size:.69rem;letter-spacing:.13em;text-transform:uppercase}

.vendor-grid{gap:26px}
.vendor-card{border-radius:2px;border:0;box-shadow:0 1px 0 rgba(44,37,33,.12);background:transparent}
.vendor-card:hover{transform:translateY(-8px);box-shadow:none}
.vendor-media{aspect-ratio:4/4.7;border-radius:2px}
.vendor-media::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(21,17,14,.12),transparent 42%);pointer-events:none}
.vendor-body{padding:24px 2px 8px}
.vendor-cat-tag{font-size:.62rem;letter-spacing:.16em}
.vendor-body h3{font-size:1.55rem;letter-spacing:-.035em}
.vendor-desc{font-size:.84rem;line-height:1.75}
.vendor-footer{border-top:1px solid rgba(44,37,33,.14);padding-top:14px}
.featured-badge{border-radius:2px;padding:8px 12px;font-size:.59rem;letter-spacing:.13em}
.save-btn{border-radius:2px;background:rgba(248,245,239,.94)}

.why-section{background:#e9dfd2}
.why-grid{grid-template-columns:1.05fr .95fr;gap:96px}
.why-image{border-radius:2px;aspect-ratio:4/5.5;box-shadow:none}
.why-grid h2{font-size:clamp(2.6rem,4.3vw,4.5rem);line-height:1.01;letter-spacing:-.045em}
.why-list li{padding:22px 0}
.why-icon{background:transparent;border:1px solid rgba(44,37,33,.3);color:var(--bronze);width:46px;height:46px}

.venue-banner{max-width:1320px;min-height:680px;border-radius:2px;margin-inline:auto}
.venue-banner::before{background:linear-gradient(90deg,rgba(21,17,14,.76),rgba(21,17,14,.1) 68%),linear-gradient(0deg,rgba(21,17,14,.38),transparent 55%)}
.venue-banner-content{align-self:center;padding:76px;max-width:620px}
.venue-banner-content h2{font-size:clamp(2.8rem,4.8vw,5.1rem);line-height:1;letter-spacing:-.05em}

.guide-card{border:0;border-radius:2px;background:transparent;box-shadow:none}
.guide-card:hover{box-shadow:none;transform:translateY(-7px)}
.guide-media{aspect-ratio:4/5;border-radius:2px}
.guide-body{padding:20px 0}
.guide-body h3{font-size:1.28rem;line-height:1.25}

.testimonial-section{padding:140px 0;background:#211c18}
.testimonial-text{font-size:clamp(1.8rem,3.2vw,3.2rem);line-height:1.32;letter-spacing:-.03em}
.newsletter{padding:100px 0;background:#d9c3aa}
footer{padding-top:100px}

.directory-hero{padding:210px 0 84px;background:#e9dfd2}
.directory-hero h1{font-size:clamp(3rem,5vw,5rem);letter-spacing:-.05em}
.filters-panel{border-radius:2px;box-shadow:none;border:1px solid rgba(44,37,33,.13);background:rgba(255,255,255,.66);backdrop-filter:blur(14px)}
.modal-box{border-radius:2px}
.modal-hero{height:470px}
.contact-card,.testimonial-mini{border-radius:2px}

@media(max-width:768px){
  section{padding:78px 0}
  .hero{min-height:100svh;padding:140px 20px 36px;justify-content:flex-end}
  .hero h1{font-size:clamp(3rem,15vw,4.8rem)}
  .search-panel{grid-template-columns:1fr;margin-top:34px;padding:12px}
  .search-panel .field-group{border-right:0;border-bottom:1px solid rgba(44,37,33,.12);padding:10px 12px}
  .hero-assurance{font-size:.57rem;gap:9px;flex-wrap:wrap}
  .hero-assurance i{width:12px}
  .categories-grid{grid-template-rows:none}
  .vendor-grid{grid-template-columns:1fr}
  .why-grid{gap:48px}
  .venue-banner{min-height:620px;margin:0 20px}
  .venue-banner-content{padding:34px 26px;align-self:flex-end}
}

/* ============================================================
   V2.1 — Rounded, mixed-format featured collections
   Restores the softer bento-card character from the earlier design.
   ============================================================ */

/* Service collection: retain the editorial mosaic, but soften its geometry. */
.categories-grid{
  gap:22px;
}
.cat-card{
  border-radius:22px;
  box-shadow:0 16px 44px rgba(44,37,33,.10);
}
.cat-card:nth-child(2),
.cat-card:nth-child(5){
  border-radius:80px 22px 22px 22px;
}
.cat-card:nth-child(3){
  border-radius:22px 22px 80px 22px;
}
.cat-card:nth-child(4){
  border-radius:999px 999px 22px 22px;
}
.cat-card:nth-child(6){
  border-radius:22px 80px 22px 22px;
}

/* Featured vendors: a true curated bento composition rather than one row. */
#featuredVendorGrid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:26px;
  align-items:stretch;
}
#featuredVendorGrid .vendor-card{
  grid-column:span 4;
  border-radius:22px;
  overflow:hidden;
  background:var(--white);
  border:1px solid rgba(190,180,170,.28);
  box-shadow:0 14px 42px rgba(44,37,33,.08);
}
#featuredVendorGrid .vendor-card:nth-child(1){
  grid-column:span 7;
}
#featuredVendorGrid .vendor-card:nth-child(2){
  grid-column:span 5;
  border-radius:90px 22px 22px 22px;
}
#featuredVendorGrid .vendor-card:nth-child(3){
  border-radius:22px 22px 80px 22px;
}
#featuredVendorGrid .vendor-card:nth-child(4){
  border-radius:22px 80px 22px 22px;
}
#featuredVendorGrid .vendor-card:nth-child(5){
  border-radius:80px 22px 80px 22px;
}
#featuredVendorGrid .vendor-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 62px rgba(44,37,33,.14);
}
#featuredVendorGrid .vendor-media{
  aspect-ratio:16/10;
  border-radius:0;
}
#featuredVendorGrid .vendor-card:nth-child(2) .vendor-media{
  aspect-ratio:4/3;
}
#featuredVendorGrid .vendor-body{
  padding:26px 28px 24px;
}
#featuredVendorGrid .save-btn{
  border-radius:50%;
}
#featuredVendorGrid .featured-badge{
  border-radius:999px;
}

/* Directory listings remain regular and easy to scan, but regain a soft finish. */
#directoryGrid .vendor-card,
#savedGrid .vendor-card,
.related-grid .vendor-card{
  border-radius:16px;
  overflow:hidden;
  background:var(--white);
  border:1px solid rgba(190,180,170,.25);
  box-shadow:var(--shadow-sm);
}
#directoryGrid .vendor-media,
#savedGrid .vendor-media,
.related-grid .vendor-media{
  border-radius:0;
}

@media (max-width:920px){
  #featuredVendorGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  #featuredVendorGrid .vendor-card,
  #featuredVendorGrid .vendor-card:nth-child(1),
  #featuredVendorGrid .vendor-card:nth-child(2){
    grid-column:span 1;
  }
  #featuredVendorGrid .vendor-card:nth-child(5){
    grid-column:1 / -1;
  }
}

@media (max-width:600px){
  .cat-card,
  .cat-card:nth-child(n){
    border-radius:18px;
  }
  #featuredVendorGrid{
    grid-template-columns:1fr;
  }
  #featuredVendorGrid .vendor-card,
  #featuredVendorGrid .vendor-card:nth-child(n){
    grid-column:1;
    border-radius:18px;
  }
  #featuredVendorGrid .vendor-media,
  #featuredVendorGrid .vendor-card:nth-child(2) .vendor-media{
    aspect-ratio:4/3;
  }
}


/* ============ Admin image uploader ============ */
.image-upload-tools{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.image-upload-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border:1px solid var(--espresso);
  border-radius:4px;
  background:var(--ivory);
  color:var(--espresso);
  font-size:.82rem;
  font-weight:600;
  cursor:pointer;
  transition:all .25s var(--ease);
}
.image-upload-btn:hover{background:var(--espresso);color:var(--ivory);}
.image-upload-note{font-size:.78rem;color:#7b7169;}
.image-upload-preview{
  margin-top:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.image-upload-preview img{
  width:92px;
  height:68px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid var(--sand);
  box-shadow:var(--shadow-sm);
}
.image-upload-preview .hero-preview{width:180px;height:92px;}


/* ============ Guided start ============ */
.journey-section{background:var(--ivory);padding:88px 0 80px;}
.journey-intro{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:64px;align-items:end;margin-bottom:32px;}
.journey-intro h2{font-size:clamp(2rem,4vw,3.25rem);max-width:520px;margin-bottom:16px;}
.journey-intro p{max-width:560px;color:#6b625b;}
.journey-choices{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.journey-choice{appearance:none;text-align:left;border:1px solid rgba(44,37,33,.14);background:rgba(255,255,255,.55);padding:24px;border-radius:18px;color:var(--espresso);transition:transform .3s var(--ease),background .3s var(--ease),border-color .3s var(--ease),box-shadow .3s var(--ease);}
.journey-choice:hover,.journey-choice.active{transform:translateY(-3px);background:var(--white);border-color:var(--champagne);box-shadow:var(--shadow-md);}
.journey-choice-number{display:block;font-family:var(--serif);font-size:1rem;color:var(--bronze);margin-bottom:28px;}
.journey-choice strong{display:block;font-family:var(--serif);font-size:1.25rem;font-weight:500;margin-bottom:8px;}
.journey-choice small{display:block;color:#746a63;line-height:1.5;font-size:.84rem;}
.journey-panel{background:var(--white);border:1px solid rgba(44,37,33,.09);border-radius:24px;padding:34px;box-shadow:var(--shadow-sm);}
.journey-panel-head{display:flex;justify-content:space-between;align-items:end;gap:24px;padding-bottom:24px;border-bottom:1px solid var(--sand);}
.journey-panel-head h3{font-size:1.6rem;margin-bottom:0;}
.journey-panel-head p{font-size:.88rem;color:#7d736c;margin:0;}
.journey-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:0;}
.journey-step{padding:28px 22px 14px;border-right:1px solid var(--sand);min-height:190px;display:flex;flex-direction:column;}
.journey-step:last-child{border-right:none;}
.journey-step label{display:flex;gap:10px;align-items:flex-start;font-family:var(--serif);font-size:1.05rem;line-height:1.25;cursor:pointer;}
.journey-step input{margin-top:3px;width:18px;height:18px;accent-color:var(--bronze);flex:0 0 auto;}
.journey-step p{font-size:.82rem;color:#7a7069;margin:12px 0 18px;}
.journey-step.completed{opacity:.62;}
.journey-step.completed label span{text-decoration:line-through;text-decoration-thickness:1px;}
.text-link{border:0;background:none;padding:0;margin-top:auto;text-align:left;color:var(--bronze-dark);font-size:.78rem;font-weight:600;}
.text-link:hover{text-decoration:underline;}
.journey-note{position:relative;margin-top:20px;padding:22px 48px 22px 22px;border-radius:14px;background:var(--sand);}
.journey-note strong{font-family:var(--serif);font-size:1.05rem;}
.journey-note p{font-size:.86rem;margin:6px 0 0;max-width:780px;}
.journey-note-close{position:absolute;right:16px;top:13px;border:0;background:none;font-size:1.5rem;color:var(--espresso);}
@media(max-width:980px){.journey-intro{grid-template-columns:1fr;gap:28px}.journey-steps{grid-template-columns:1fr 1fr}.journey-step{border-right:1px solid var(--sand);border-bottom:1px solid var(--sand)}.journey-step:nth-child(even){border-right:none}}
@media(max-width:620px){.journey-section{padding:64px 0}.journey-choices{grid-template-columns:1fr}.journey-panel{padding:22px}.journey-panel-head{display:block}.journey-panel-head p{margin-top:10px}.journey-steps{grid-template-columns:1fr}.journey-step{border-right:none!important;padding:22px 4px;min-height:0}.journey-choice-number{margin-bottom:14px}}


/* V2.5 — quiet optional guidance */
.hero-buttons{align-items:center;}
.hero-help-link{border:0;background:transparent;color:rgba(247,243,237,.9);font:500 .94rem var(--sans);padding:12px 4px;display:inline-flex;align-items:center;gap:8px;cursor:pointer;position:relative;}
.hero-help-link::after{content:"";position:absolute;left:4px;right:4px;bottom:7px;height:1px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .3s var(--ease);}
.hero-help-link:hover::after,.hero-help-link:focus-visible::after{transform:scaleX(1);}
.hero-help-link span{transition:transform .3s var(--ease);}
.hero-help-link:hover span{transform:translateX(4px);}
.first-steps-wrap{padding:0;background:var(--ivory);}
.first-steps-panel{margin:42px 0 82px;background:var(--white);border:1px solid rgba(44,37,33,.1);border-radius:24px;box-shadow:var(--shadow-md);padding:38px;}
.first-steps-panel[hidden]{display:none;}
.first-steps-head{display:flex;justify-content:space-between;gap:32px;padding-bottom:26px;border-bottom:1px solid var(--sand);}
.first-steps-head h2{font-size:clamp(1.75rem,3vw,2.35rem);margin-bottom:.35em;}
.first-steps-head p{max-width:620px;margin:0;color:#756b64;}
.first-steps-close{border:0;background:transparent;font-size:2rem;line-height:1;color:var(--espresso);padding:0 4px;align-self:flex-start;}
.first-steps-list{display:grid;grid-template-columns:repeat(5,1fr);}
.first-steps-list article{display:grid;grid-template-columns:auto 1fr;gap:14px;padding:28px 20px 8px;border-right:1px solid var(--sand);}
.first-steps-list article:first-child{padding-left:0;}
.first-steps-list article:last-child{border-right:0;padding-right:0;}
.first-steps-list article>span{font-family:var(--serif);color:var(--bronze);font-size:.92rem;padding-top:3px;}
.first-steps-list h3{font-size:1.05rem;margin-bottom:8px;}
.first-steps-list p{font-size:.82rem;color:#766c65;margin-bottom:14px;}
.first-steps-note{position:relative;margin-top:24px;background:var(--sand);border-radius:14px;padding:20px 48px 20px 20px;}
.first-steps-note strong{font-family:var(--serif);}
.first-steps-note p{font-size:.86rem;margin:5px 0 0;max-width:780px;}
@media(max-width:980px){.first-steps-list{grid-template-columns:1fr 1fr}.first-steps-list article{border-bottom:1px solid var(--sand)}.first-steps-list article:nth-child(even){border-right:0}}
@media(max-width:620px){.hero-buttons{flex-direction:column;gap:4px}.first-steps-panel{margin:24px 0 56px;padding:24px}.first-steps-head{gap:14px}.first-steps-list{grid-template-columns:1fr}.first-steps-list article{border-right:0!important;padding:22px 0}.first-steps-list article:first-child{padding-top:22px}}


/* V2.6 — single hero action; First Steps lives in navigation */
.hero-buttons{justify-content:flex-start;align-items:center;}
@media(max-width:620px){.hero-buttons{flex-direction:row;gap:0;}}


/* V2.7 — visible, compact First Steps and tighter service spacing */
#first-steps{scroll-margin-top:88px;}
.first-steps-wrap{padding:56px 0 28px;background:var(--ivory);}
.first-steps-panel{margin:0;background:rgba(255,255,255,.72);border:1px solid rgba(44,37,33,.10);border-radius:22px;box-shadow:0 10px 35px rgba(44,37,33,.06);padding:32px 34px;}
.first-steps-panel[hidden]{display:block;}
.first-steps-head{padding-bottom:22px;align-items:flex-start;}
.first-steps-list article{padding-top:22px;padding-bottom:4px;}
#services{padding-top:54px;}
#services .section-head{margin-bottom:34px;}
@media(max-width:620px){
  .first-steps-wrap{padding:36px 0 18px;}
  .first-steps-panel{padding:24px 22px;border-radius:18px;}
  #services{padding-top:42px;}
  #services .section-head{margin-bottom:26px;}
}


/* V2.8 — service collection rendering fix */
#services .categories-grid{margin-top:0;min-height:0;opacity:1;transform:none;}

/* ============================================================
   V2.9 — verified service-section spacing and static fallback
   ============================================================ */
#services {
  padding-top: 44px !important;
  padding-bottom: 84px !important;
}
#services .section-head {
  margin-bottom: 20px !important;
}
#services .section-head p {
  margin-bottom: 0 !important;
}
#services .categories-grid {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  grid-template-rows: 300px 260px !important;
  grid-auto-rows: 260px !important;
  gap: 18px !important;
  opacity: 1 !important;
  transform: none !important;
}
#services .cat-card { min-height: 0 !important; }
#services .cat-card:nth-child(1){grid-column:1/7 !important;grid-row:1/3 !important;}
#services .cat-card:nth-child(2){grid-column:7/13 !important;grid-row:1/2 !important;}
#services .cat-card:nth-child(3){grid-column:7/10 !important;grid-row:2/3 !important;}
#services .cat-card:nth-child(4){grid-column:10/13 !important;grid-row:2/3 !important;}
#services .cat-card:nth-child(5){grid-column:1/5 !important;grid-row:3/4 !important;}
#services .cat-card:nth-child(6){grid-column:5/13 !important;grid-row:3/4 !important;}
@media (max-width: 920px){
  #services .categories-grid{grid-template-columns:1fr 1fr !important;grid-template-rows:none !important;grid-auto-rows:230px !important;}
  #services .cat-card{grid-column:auto !important;grid-row:auto !important;}
  #services .cat-card:nth-child(1),#services .cat-card:nth-child(2){grid-column:1/3 !important;}
}
@media (max-width: 600px){
  #services{padding-top:34px !important;padding-bottom:60px !important;}
  #services .section-head{margin-bottom:16px !important;}
  #services .categories-grid{grid-template-columns:1fr !important;grid-auto-rows:230px !important;gap:14px !important;}
  #services .cat-card,#services .cat-card:nth-child(1),#services .cat-card:nth-child(2){grid-column:1 !important;grid-row:auto !important;height:auto !important;}
}


/* ============ BUILD 3.0: HELP & INFORMATION PAGE ============ */
.help-hero{
  padding:176px 0 82px;
  background:linear-gradient(135deg,var(--sand),var(--ivory) 70%);
  border-bottom:1px solid rgba(44,37,33,.08);
}
.help-hero-inner{max-width:820px;text-align:center;}
.help-hero h1{font-size:clamp(2.4rem,5vw,4.25rem);margin-bottom:.35em;}
.help-hero p{font-size:1.08rem;max-width:690px;margin:0 auto 28px;color:#675d56;}
.help-hero-actions{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;}
.help-context{padding:54px 0;background:var(--espresso);}
.help-context-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;}
.help-context-grid article{padding:8px 34px;border-right:1px solid rgba(247,243,237,.18);}
.help-context-grid article:first-child{padding-left:0;}
.help-context-grid article:last-child{border-right:0;padding-right:0;}
.help-context-grid h2{font-size:1.25rem;color:var(--ivory);margin:.45em 0;}
.help-context-grid p{font-size:.88rem;color:rgba(247,243,237,.72);margin:0;}
.help-kicker{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--champagne);font-weight:600;}
.help-steps-section{padding:92px 0;background:var(--ivory);}
.help-section-head{margin-bottom:42px;}
.help-timeline{max-width:940px;margin:0 auto;position:relative;}
.help-timeline:before{content:'';position:absolute;top:34px;bottom:34px;left:34px;width:1px;background:var(--champagne);}
.help-step-card{position:relative;display:grid;grid-template-columns:68px 1fr;gap:28px;padding:0 0 44px;}
.help-step-number{position:relative;z-index:1;width:68px;height:68px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--white);border:1px solid var(--champagne);font-family:var(--serif);font-size:1.1rem;color:var(--bronze-dark);box-shadow:var(--shadow-sm);}
.help-step-copy{background:var(--white);border:1px solid rgba(190,180,170,.28);border-radius:18px;padding:28px 30px;box-shadow:var(--shadow-sm);}
.help-step-copy h3{font-size:1.45rem;margin:.2em 0 .55em;}
.help-step-copy p{color:#685f58;margin-bottom:16px;}
.help-step-label{display:block;font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--bronze-dark);font-weight:600;}
.help-step-service .help-step-copy{background:linear-gradient(135deg,#fff,var(--sand));}
.help-service-links{display:flex;gap:18px;flex-wrap:wrap;}
.help-note{max-width:940px;margin:6px auto 0;background:var(--sand);border-radius:14px;padding:22px 26px;}
.help-note strong{font-family:var(--serif);font-size:1.05rem;}
.help-note p{font-size:.86rem;margin:6px 0 0;color:#665d56;}
@media(max-width:820px){
  .help-context-grid{grid-template-columns:1fr;}
  .help-context-grid article,.help-context-grid article:first-child,.help-context-grid article:last-child{padding:24px 0;border-right:0;border-bottom:1px solid rgba(247,243,237,.18);}
  .help-context-grid article:last-child{border-bottom:0;}
}
@media(max-width:620px){
  .help-hero{padding:142px 0 64px;}
  .help-hero-actions{flex-direction:column;gap:16px;}
  .help-hero-actions .btn{width:100%;}
  .help-steps-section{padding:64px 0;}
  .help-timeline:before{left:23px;}
  .help-step-card{grid-template-columns:46px 1fr;gap:14px;padding-bottom:28px;}
  .help-step-number{width:46px;height:46px;font-size:.88rem;}
  .help-step-copy{padding:22px 20px;border-radius:14px;}
  .help-step-copy h3{font-size:1.22rem;}
}

/* Visible verification badge for build 3.1 */
.build-badge{position:fixed;right:14px;bottom:14px;z-index:2000;background:var(--espresso);color:var(--ivory);padding:7px 10px;border-radius:999px;font-size:.68rem;letter-spacing:.04em;box-shadow:var(--shadow-md);opacity:.82;}

/* Launch-ready functional additions */
.consent-row,.newsletter-consent{display:flex;align-items:flex-start;gap:10px;font-size:.8rem;line-height:1.45;color:#655b54;text-align:left}.consent-row input,.newsletter-consent input{width:17px;height:17px;flex:0 0 auto;margin-top:2px;accent-color:var(--bronze)}.newsletter-consent{max-width:560px;margin:14px auto 0}.contact-row a{text-decoration:underline;text-underline-offset:3px}.contact-page-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:32px;align-items:start}.contact-page-card{background:var(--white);border:1px solid rgba(190,180,170,.35);border-radius:var(--radius-md);padding:32px;box-shadow:var(--shadow-sm);display:grid;gap:18px}.contact-page-card textarea{min-height:150px}.small-print{font-size:.82rem;color:#766c65}.legal-copy{max-width:820px}.legal-copy h2{margin-top:36px;font-size:1.45rem}.legal-copy a{text-decoration:underline}.legal-warning{margin-top:38px;padding:18px 20px;background:var(--sand);border-left:3px solid var(--bronze);border-radius:4px}.form-success{margin-top:12px}.build-label{display:none}@media(max-width:760px){.contact-page-grid{grid-template-columns:1fr}.contact-page-card{padding:24px}}

.contact-settings-actions{display:flex;align-items:center;gap:14px;margin-top:22px;flex-wrap:wrap}.inline-save-status{font-size:.88rem;font-weight:600;color:var(--bronze-dark);min-height:1.3em}

@media (max-width:1040px){ .plan-label{ display:none; } #savedBtn{ padding:6px; } }
