/* ===========================================================
   Wonderfully Made by Nina — shared styles
   =========================================================== */

/* ---- Fonts (Google Fonts) ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Nunito+Sans:wght@300;400;600;700&family=Parisienne&display=swap');

/* ---- Design tokens ---- */
:root {
  /* Official brand palette (from the brand board) */
  --cream:       #D3DEC4;   /* page background — soft SAGE      */
  --cream-2:     #C6D3B4;   /* alt sections — deeper sage       */
  --cream-3:     #F4F7EF;   /* card surface — near-white (pops on sage) */
  --brown:       #8B5E3C;   /* Coffee — headings/accents       */
  --brown-deep:  #5C3D26;   /* deep brown — strong headings    */
  --ink:         #4a3c2f;   /* body text (warm dark)           */
  /* Green-forward palette: sage is the theme color for ALL fills/accents.
     Mustard is kept only as a tiny non-background accent. Logo keeps its own colors. */
  --sage:        #A8B89A;   /* Sage — buttons / panels / accents */
  --sage-deep:   #6f815f;   /* sage hover / accent text (deeper for contrast on sage bg) */
  --sage-soft:   #d3dcc8;   /* soft sage tint                    */
  --yellow:      #F4C95D;   /* Mustard — minor accent (not used for backgrounds) */
  --yellow-soft: #f8e0a2;
  --rose:        #DFA3A6;   /* Dusty Rose — accent               */
  --rose-soft:   #efd0d1;

  --white:       #fffdf8;
  --shadow:      0 10px 30px rgba(92, 61, 38, 0.10);
  --shadow-sm:   0 4px 14px rgba(92, 61, 38, 0.08);
  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1150px;

  --serif:  'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:   'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --script: 'Parisienne', cursive;
}

/* ---- Reset-ish ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brown); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sage-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--brown-deep);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p  { margin: 0 0 1.1em; }

.script { font-family: var(--script); font-weight: 400; color: var(--sage-deep); }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.section  { padding: clamp(56px, 8vw, 96px) 0; }
.section--alt { background: var(--cream-2); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--sage-deep);
  margin: 0 0 .8em;
}
.lead { font-size: 1.12rem; max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.muted { color: #7c6b59; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: .85em 1.6em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sage-deep); color: var(--white); }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--cream); }
.btn-yellow { background: var(--cream); color: var(--brown-deep); }
.btn-yellow:hover { background: #ffffff; color: var(--brown-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(211, 222, 196, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 94, 60, 0.12);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.brand-name { line-height: 1; }
.brand-name .wm {
  font-family: var(--serif); font-weight: 600; color: var(--brown-deep);
  font-size: 1.15rem; letter-spacing: .5px; text-transform: uppercase; display: block;
}
.brand-name .by { font-family: var(--script); color: var(--sage-deep); font-size: 1.15rem; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--sans); font-weight: 600; font-size: .97rem; color: var(--ink);
  padding: .5em .85em; border-radius: 999px;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown-deep); background: var(--sage-soft); }
.nav-links .btn { color: var(--white); padding: .55em 1.2em; }
.nav-links .btn:hover { color: var(--white); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 8px; border-radius: 10px;
}
.nav-toggle span { display: block; height: 2.5px; background: var(--brown-deep); border-radius: 3px; margin: 5px 0; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); padding: 14px clamp(20px,5vw,40px) 22px;
    border-bottom: 1px solid rgba(139,94,60,.12);
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8em 1em; }
  .nav-links .btn { text-align: center; margin-top: 6px; }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px);
  align-items: center; padding: clamp(48px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--brown); }
.hero .script-accent { font-family: var(--script); color: var(--sage-deep); font-size: clamp(1.6rem,4vw,2.4rem); display:block; margin-bottom:.1em; }
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art .logo-ring {
  width: min(420px, 82vw); aspect-ratio: 1; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow);
  display: grid; place-items: center; padding: 6%;
  border: 1px solid rgba(139,94,60,.08);
}
.hero-art .logo-ring img { border-radius: 50%; }
.hero-blob { display: none; }  /* removed the decorative colored glows behind the hero logo */
.hero-blob.b1 { width: 220px; height: 220px; background: var(--sage-soft); top: -30px; right: -20px; }
.hero-blob.b2 { width: 160px; height: 160px; background: var(--sage-soft); bottom: -20px; left: -10px; }

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .btn-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art .logo-ring { width: min(300px, 70vw); }
}

/* ===========================================================
   Marquee (scrolling photo strip)
   =========================================================== */
.marquee { padding: 10px 0 6px; overflow: hidden; }
.marquee-track {
  display: flex; width: max-content; gap: 18px;
  animation: scroll-x 55s linear infinite;
  will-change: transform;                 /* keep the moving strip GPU-crisp */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto; width: clamp(220px, 26vw, 320px); height: clamp(220px, 26vw, 320px);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--cream-3);
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scroll-x {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: nowrap; overflow-x: auto; }
}

/* ===========================================================
   Feature cards / grids
   =========================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
@media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream-3); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(139,94,60,.07);
  height: 100%;
}
.card--feature { display: flex; flex-direction: column; }
.card .price { font-family: var(--serif); font-size: 2rem; color: var(--brown); font-weight: 600; }
.card .price small { font-size: .95rem; color: #7c6b59; font-family: var(--sans); font-weight: 600; }
.card ul, .deco-list { padding-left: 0; list-style: none; margin: .6em 0 1.4em; }
.card ul li, .deco-list li { position: relative; padding-left: 1.9em; margin-bottom: .55em; }
.card ul li::before, .deco-list li::before {
  content: "\2766";               /* ❦ decorative fleuron bullet */
  position: absolute; left: .12em; top: .02em;
  color: var(--sage-deep); font-size: 1.15em; line-height: 1.5;
}
.card--feature .btn { margin-top: auto; }

.icon-badge {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sage-soft); margin-bottom: 16px;
  font-size: 2rem; color: var(--brown); line-height: 1;
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--sage); color: var(--white);
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem;
  display: grid; place-items: center; margin-bottom: 14px;
}

/* ===========================================================
   Gallery grid + lightbox
   =========================================================== */
.gallery-grid {
  columns: 3 260px; column-gap: 18px;
}
.gallery-grid .g-item {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in;
  background: var(--cream-3); border: 1px solid rgba(139,94,60,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-grid .g-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-grid .g-item img { width: 100%; height: auto; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(74, 59, 47, .9); align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(252,250,244,.92); color: var(--brown-deep);
  border: 0; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  font-size: 1.6rem; display: grid; place-items: center; box-shadow: var(--shadow);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.lightbox-nav:hover, .lightbox-close:hover { background: #fff; }

/* ===========================================================
   About / bio
   =========================================================== */
.bio { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.bio-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--white); aspect-ratio: 4/5;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo.logo-frame { display: grid; place-items: center; padding: 8%; aspect-ratio: 1; border-radius: 50%; }
.bio-photo.logo-frame img { border-radius: 50%; }
@media (max-width: 780px) { .bio { grid-template-columns: 1fr; text-align: center; } }

/* ===========================================================
   Forms
   =========================================================== */
.form-wrap {
  background: var(--cream-3); border-radius: var(--radius); padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow); border: 1px solid rgba(139,94,60,.07); max-width: 760px; margin: 0 auto;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; color: var(--brown-deep); margin-bottom: .4em; font-size: .97rem; }
.field label .req { color: #c26a4a; }
.field .hint { font-weight: 400; color: #8a7862; font-size: .85rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .8em .95em; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(139,94,60,.22); background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(168,184,154,.4);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input[type="file"] { padding: .6em; background: var(--white); cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .88rem; color: #8a7862; margin-top: 6px; }

/* ===========================================================
   CTA band
   =========================================================== */
.cta-band { background: var(--sage); color: var(--white); border-radius: var(--radius); padding: clamp(32px, 5vw, 56px); text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.92); max-width: 52ch; margin-left:auto; margin-right:auto; }
.cta-band .btn-yellow:hover { transform: translateY(-2px); }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--brown-deep); color: #f3e7d4; padding: clamp(44px, 6vw, 64px) 0 28px; }
.site-footer a { color: #f3e7d4; }
.site-footer a:hover { color: var(--sage); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); }
.footer-brand .wm { font-family: var(--serif); font-size: 1.15rem; text-transform: uppercase; color: #fff; letter-spacing:.5px; }
.footer-brand .by { font-family: var(--script); color: var(--sage-soft); font-size: 1.2rem; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .7em; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .5em; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; margin-bottom: .6em; }
.footer-contact svg { flex: 0 0 auto; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 20px; font-size: .85rem; color: #cdbfa9; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 24px; } }

/* ---- small utilities ---- */
.tag { display:inline-block; background: var(--sage-soft); color: var(--brown-deep); font-weight:700; font-size:.8rem; padding:.35em .9em; border-radius:999px; letter-spacing:.5px; }
.divider-leaf { text-align:center; color: var(--sage); font-size:1.4rem; margin: 6px 0 2px; }
.page-hero { padding: clamp(40px,6vw,72px) 0 clamp(20px,3vw,34px); text-align:center; }
.page-hero .lead { margin-left:auto; margin-right:auto; }
