:root{
  /* Earthy soft pink palette */
  --bg:#fffaf8;              /* warm off-white */
  --ink:#2b2a28;             /* soft charcoal */
  --muted:#7a6f6b;           /* warm muted brown-gray */
  --hair:#eadfdb;            /* soft pink-beige divider */
  --card:#f6eeeb;            /* blush-tinted surface */
  --accent:#e6b8b3;          /* earthy soft pink */

  --font-body: "Nunito Sans", sans-serif;
  --font-heading: "Cormorant Garamond", serif;
  --heading-color: var(--ink);
  --body-color: var(--ink);
  --btn-bg: var(--accent);
  --btn-text: var(--ink);

  --max:1120px;
  --pad:24px;
  --r:18px;

  --shadow: 0 10px 30px rgba(43,42,40,.08);
}

/* Contact submission notices */
.notice{border:1px solid var(--hair);background:var(--card);border-radius:16px;padding:16px 16px 14px;margin:0 0 16px;box-shadow:var(--shadow);}
.notice-title{font-weight:650;margin:0 0 6px;letter-spacing:.01em;}
.notice-text{margin:0 0 6px;color:var(--ink);}
.notice-sub{margin:0;color:var(--muted);font-size:14px;}
.notice.success{border-color:rgba(34,197,94,.3);}
.notice.bad{border-color:rgba(239,68,68,.35);}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-body);
  color:var(--body-color, var(--ink));
  background:var(--bg);
  letter-spacing:-0.01em;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4{
  font-family: var(--font-heading, var(--font-body));
  color: var(--heading-color, var(--ink));
}

p{color: var(--body-color, var(--ink));}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline:auto;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,250,248,.85);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--hair);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:650;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:11px;
}

/* Logo sizing */
.logo{
  height:44px;
  width:auto;
  display:block;
}

/* Keep brand-mark styles in case other pages still use it */
.brand-mark{
  width:30px; height:30px;
  border:1px solid var(--hair);
  border-radius:999px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(230,184,179,.35), rgba(230,184,179,0));
}

.brand-mark svg{width:18px; height:18px}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:13px;
  color:var(--muted);
}

.menu a:hover{color:var(--ink)}
.menu .cta{
  color:var(--btn-text, var(--ink));
  border:1px solid var(--btn-bg, var(--accent));
  background: var(--btn-bg, rgba(230,184,179,.25));
  padding:10px 14px;
  border-radius:999px;
}

.menu-btn{
  display:none;
  border:1px solid var(--hair);
  background:#fff;
  border-radius:999px;
  padding:10px 12px;
}

.mobile-panel{
  display:none;
  border-top:1px solid var(--hair);
}
.mobile-panel a{
  display:block;
  padding:14px 0;
  border-bottom:1px solid var(--hair);
  color:var(--muted);
}

.hero{
  padding:72px 0 46px;
}


/* Motion: hero reveal + text hierarchy (homepage-only to avoid admin collisions) */
body:has(#page-builder) .hero.hero-fullbleed{
  opacity:0;
  transform: translateY(10px) scale(1.005);
  transition: opacity .55s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}

body:has(#page-builder) .hero.hero-fullbleed.hero-revealed{
  opacity:1;
  transform:none;
}

body:has(#page-builder) .hero-content > .hero-brand,
body:has(#page-builder) .hero-content > .hero-headline,
body:has(#page-builder) .hero-content > .hero-subtitle,
body:has(#page-builder) .hero-content > .actions{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}

body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .hero-brand{transition-delay:.08s}
body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .hero-headline{transition-delay:.2s}
body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .hero-subtitle{transition-delay:.28s}
body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .actions{transition-delay:.34s}

body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .hero-brand,
body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .hero-headline,
body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .hero-subtitle,
body:has(#page-builder) .hero.hero-fullbleed.hero-revealed .hero-content > .actions{
  opacity:1;
  transform:none;
}

/* CTA hover motion: subtle lift and directional nudge */
body:has(#page-builder) .menu .cta,
body:has(#page-builder) .actions .btn{
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

body:has(#page-builder) .menu .cta:hover,
body:has(#page-builder) .actions .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(43,42,40,.14);
}

body:has(#page-builder) .menu .cta:active,
body:has(#page-builder) .actions .btn:active{
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  body:has(#page-builder) .hero.hero-fullbleed,
  body:has(#page-builder) .hero-content > .hero-brand,
  body:has(#page-builder) .hero-content > .hero-headline,
  body:has(#page-builder) .hero-content > .hero-subtitle,
  body:has(#page-builder) .hero-content > .actions,
  body:has(#page-builder) .menu .cta,
  body:has(#page-builder) .actions .btn{
    animation:none !important;
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}

.hero.hero-fullbleed{
  position:relative;
  min-height:calc(100vh - 74px);
  padding:0;
  border-bottom:1px solid var(--hair);
  overflow:hidden;
  background:#221f1e;
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero-shell{
  position:relative;
  min-height:inherit;
  width:100%;
  display:flex;
  align-items:flex-end;
}

.hero-media-plane{
  position:absolute;
  inset:0;
}

.hero-media-plane img,
.hero-media-fallback{
  width:100%;
  height:100%;
}

.hero-media-plane img{
  object-fit:cover;
  object-position:center;
}

.hero-media-fallback{
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.6);
  letter-spacing:0.18em;
  font-size:12px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  opacity:var(--hero-overlay-strength, .45);
  background:
    radial-gradient(120% 90% at 14% 18%, rgba(238,188,173,.22) 0%, rgba(238,188,173,0) 58%),
    linear-gradient(110deg, rgba(17,15,15,.78) 0%, rgba(17,15,15,.52) 42%, rgba(17,15,15,.18) 100%),
    linear-gradient(0deg, rgba(17,15,15,.62) 0%, rgba(17,15,15,.24) 36%, rgba(17,15,15,.08) 100%);
}

.hero-texture{
  position:absolute;
  inset:0;
  opacity:var(--hero-texture-strength, .2);
  mix-blend-mode:soft-light;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.16) 0 1px, transparent 1.2px),
    radial-gradient(circle at 72% 66%, rgba(0,0,0,.2) 0 1px, transparent 1.3px),
    radial-gradient(circle at 40% 48%, rgba(255,255,255,.14) 0 1px, transparent 1.1px);
  background-size: 3px 3px, 4px 4px, 5px 5px;
  pointer-events:none;
}

.hero.hero-fullbleed .hero-shell .container{
  position:relative;
  z-index:2;
  width:min(var(--max), calc(100% - (var(--pad) * 2)));
}

.hero-content{
  max-width:58ch;
  padding:96px 0 82px;
}

.hero.hero-fullbleed .hero-brand,
.hero.hero-fullbleed .hero-headline,
.hero.hero-fullbleed .hero-subtitle{
  color:#fff;
}

.hero-brand{
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.hero-headline{
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width:20ch;
}

.hero-subtitle{
  max-width:36ch;
  color:rgba(255,255,255,.9);
  margin:0;
}

.kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--muted);
}

.h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.02;
  letter-spacing:-0.03em;
}

.lede{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:var(--body-color, var(--muted));
  max-width:62ch;
}

.actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--hair);
  color:var(--btn-text, var(--ink));
  background:var(--btn-bg, #fff);
  font-size:13px;
  cursor:pointer;
  transition: transform .14s ease, filter .14s ease;
}

.btn.primary{
  border-color:var(--btn-bg, var(--accent));
  background: var(--btn-bg, var(--accent));
  color: var(--btn-text, var(--ink));
}

.btn.neutral{
  border-color:var(--btn-bg, rgba(230,184,179,.6));
  background:var(--btn-bg, rgba(230,184,179,.18));
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(0.97);
}
.btn:active{transform: translateY(0px)}

/* --- Sleek radio choices (Contact form) --- */
.choice-group{display:grid;gap:10px;margin-top:6px}
.choice{
  /* Block-level card so internal grid can align content precisely */
  display:block;
  padding:12px 14px;
  border:1px solid var(--hair);
  border-radius:16px;
  background:#fff;
  cursor:pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.choice:hover{background: rgba(200,191,180,.12);border-color: rgba(200,191,180,.55)}

/* Two-column layout: radio + text, perfectly left-aligned */
.choice .left{
  display:grid;
  grid-template-columns: 18px 1fr;
  column-gap:12px;
  align-items:start;
}
.choice .left > span{display:flex;flex-direction:column;gap:2px;min-width:0}
.choice .title,.choice .desc{display:block;text-align:left}
.choice input{margin:3px 0 0;accent-color: var(--accent)}
.choice .title{font-size:14px;color:var(--ink);font-weight:650;line-height:1.2}
.choice .desc{font-size:12px;color:var(--muted);line-height:1.35;margin-top:0}
.choice .meta{font-size:12px;color:var(--muted);white-space:nowrap}
/* highlight checked (modern browsers); JS will also add a class as a fallback */
.choice:has(input:checked), .choice.is-checked{
  border-color: rgba(200,191,180,.95);
  background: rgba(200,191,180,.10);
  box-shadow: 0 0 0 4px rgba(200,191,180,.18);
}

.section{
  padding:54px 0;
  border-top:1px solid var(--hair);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}

.h2{
  margin:0;
  font-size:22px;
  letter-spacing:-0.02em;
}

.sub{
  margin:0;
  color:var(--muted);
  font-size:13px;
  max-width:66ch;
  line-height:1.6;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.card{
  border:1px solid var(--hair);
  border-radius:var(--r);
  background: var(--card);
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card .thumb{
  aspect-ratio: 4/3;
  background: var(--card);
  overflow:hidden;
}

.card .thumb .ph{
  height:100%;
  display:grid;
  place-items:center;
  color:rgba(43,42,40,.42);
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
}

.card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card .meta{
  padding:14px 14px 16px;
}

.card .title{
  margin:0 0 6px;
  font-size:14px;
  font-weight:650;
}

.card .price{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.panel{
  border:1px solid var(--hair);
  border-radius:var(--r);
  background: var(--card);
  padding:18px;
}

.panel.accent{
  border-color: rgba(230,184,179,.65);
  background: rgba(230,184,179,.22);
}

.steps{
  display:grid;
  gap:12px;
  margin-top:10px;
}
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.badge{
  width:28px; height:28px;
  border-radius:999px;
  border:1px solid var(--hair);
  display:grid;
  place-items:center;
  font-size:12px;
  color:var(--muted);
  background: linear-gradient(180deg, rgba(230,184,179,.25), rgba(230,184,179,0));
}
.step p{
  margin:2px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}

.form{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{
  font-size:12px;
  color:var(--muted);
}
input, select, textarea{
  width:100%;
  border:1px solid var(--hair);
  border-radius:12px;
  padding:12px 12px;
  font: inherit;
  background:#fff;
  color: var(--ink);
}
textarea{min-height:110px; resize:vertical}

.note{
  border-left:3px solid var(--accent);
  padding:10px 12px;
  background: rgba(230,184,179,.18);
  border-radius:12px;
  color: var(--muted);
  font-size:13px;
  line-height:1.55;
}

.footer{
  padding:34px 0;
  border-top:1px solid var(--hair);
  color:var(--muted);
  font-size:12px;
}

.footer a{color:var(--muted)}
.footer a:hover{color:var(--ink)}

@media (max-width: 880px){
  .hero-content{padding:78px 0 64px}
  .grid{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .hero.hero-fullbleed{min-height:calc(100vh - 64px)}
  .hero-content{padding:70px 0 56px}
  .menu{display:none}
  .menu-btn{display:inline-flex}
  .mobile-panel.open{display:block}
  .grid{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
}

/* Footer layout (consistent across pages) */
.footer .footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}
.footer .footer-left{display:flex;flex-direction:column;gap:6px;}
.footer .footer-note{color:var(--muted);font-size:13px;line-height:1.35;max-width:48ch;}
.footer .footer-right{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-end;}
.footer .footer-links{display:flex;gap:14px;align-items:center;}
.footer .social-links{display:flex;gap:12px;align-items:center;}
/* Footer typography consistency */
.footer .footer-inner{font-size:13px;}
.footer .footer-inner a{font-size:inherit;}
.footer .footer-left{font-size:inherit;}
