@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Nunito:wght@400;500;600;700;800&family=Caveat:wght@500;600;700&display=swap');

:root{
  --ivory:#F8F3EE;
  --card:#FFFFFF;
  --taupe:#E3D6C9;
  --taupe-line: rgba(62,51,44,0.14);
  --mauve-text:#8C7A70;
  --espresso:#3E332C;
  --blush:#F3D9DA;
  --blush-soft:#FAEAEA;
  --rosewood:#C97C87;
  --rosewood-deep:#AD5F6C;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--ivory);
  color:var(--espresso);
  font-family:'Nunito', sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Playfair Display', serif;
  font-weight:600;
  margin:0;
  color:var(--espresso);
  letter-spacing:-0.01em;
}
a{color:inherit;}
p{ line-height:1.6; }

.eyebrow{
  font-family:'Nunito', sans-serif;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--rosewood-deep);
  display:flex;
  align-items:center;
  gap:9px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background:var(--rosewood);
  display:inline-block;
  flex-shrink:0;
}
.wrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 32px;
}
:focus-visible{
  outline:2px solid var(--rosewood);
  outline-offset:3px;
}

/* doodle underline (signature accent) */
.doodle{ position:relative; white-space:nowrap; font-style:italic; color:var(--rosewood-deep); }
.doodle svg{
  position:absolute; left:0; bottom:-10px; width:100%; height:14px;
}

/* handwritten note */
.handnote{
  font-family:'Caveat', cursive;
  font-weight:600;
  font-size:1.4rem;
  color:var(--rosewood-deep);
  display:inline-block;
}

/* wax seal badge */
.seal{
  width:74px; height:74px; border-radius:50%;
  background:radial-gradient(circle at 32% 30%, #E39BA5, var(--rosewood-deep) 72%);
  display:flex; align-items:center; justify-content:center; flex-direction:column;
  color:#fff; box-shadow:0 10px 24px -8px rgba(173,95,108,0.55);
  transform:rotate(-6deg);
  flex-shrink:0;
}
.seal span{ font-family:'Playfair Display', serif; font-style:italic; font-size:0.95rem; line-height:1.1; }
.seal small{ font-size:0.55rem; letter-spacing:0.12em; text-transform:uppercase; opacity:0.9; }

/* NAV / TABS */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(248,243,238,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--taupe-line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:82px;
  gap:24px;
}
.brand{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-size:1.35rem;
  font-weight:600;
  color:var(--espresso);
  letter-spacing:-0.01em;
  text-decoration:none;
  flex-shrink:0;
}
.brand span{color:var(--rosewood-deep); font-style:normal; font-weight:700;}

.tabs{
  display:flex;
  gap:4px;
  background:var(--blush-soft);
  border:1px solid var(--taupe-line);
  border-radius:100px;
  padding:5px;
  list-style:none;
  margin:0;
}
.tabs a{
  display:inline-block;
  padding:9px 18px;
  border-radius:100px;
  font-size:0.86rem;
  font-weight:700;
  text-decoration:none;
  color:var(--mauve-text);
  transition:background .15s ease, color .15s ease;
}
.tabs a:hover{ color:var(--rosewood-deep); }
.tabs a.active{
  background:var(--rosewood);
  color:#fff;
}

.nav-cta{
  font-size:0.85rem; font-weight:800;
  background:var(--espresso); color:var(--ivory);
  padding:11px 20px; border-radius:100px; text-decoration:none;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--rosewood-deep); color:#fff; }

.tabs-toggle{
  display:none;
  background:none; border:1px solid var(--taupe-line); border-radius:10px;
  padding:8px 10px; cursor:pointer;
}
.tabs-toggle span, .tabs-toggle span::before, .tabs-toggle span::after{
  display:block; width:20px; height:2px; background:var(--espresso); position:relative;
}
.tabs-toggle span::before, .tabs-toggle span::after{ content:""; position:absolute; }
.tabs-toggle span::before{ top:-6px; }
.tabs-toggle span::after{ top:6px; }

/* PAGE HERO / HEADER BAND */
.page-head{ padding:64px 0 48px; }
.page-head h1{ font-size:clamp(2.2rem, 4.2vw, 3.2rem); line-height:1.1; }
.page-head p.lede{
  font-size:1.08rem; color:var(--mauve-text); max-width:56ch; margin:20px 0 0; line-height:1.6;
}

/* HERO (home) */
.hero{ padding:56px 0 60px; position:relative; overflow:hidden; }
.hero::before{
  content:"";
  position:absolute; top:-120px; right:-140px; width:420px; height:420px;
  background:var(--blush); border-radius:44% 56% 62% 38% / 55% 40% 60% 45%;
  opacity:0.6; z-index:0;
}
.hero .wrap{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;
  position:relative; z-index:1;
}
.hero h1{ font-size:clamp(2.6rem, 5vw, 4rem); line-height:1.12; }
.hero p.lede{
  font-size:1.15rem; color:var(--mauve-text); max-width:46ch; margin:22px 0 34px; line-height:1.6;
}
.cta-row{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.btn-primary, .btn-ghost{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px; border-radius:100px;
  font-weight:800; font-size:0.95rem;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease;
}
.btn-primary{ background:var(--rosewood); color:#fff; }
.btn-primary:hover{ background:var(--rosewood-deep); transform:translateY(-2px); }
.btn-ghost{ border:1.5px solid var(--espresso); color:var(--espresso); }
.btn-ghost:hover{ background:var(--espresso); color:var(--ivory); }

/* SCALLOP CARD (signature element) */
.scallop-card{
  background:var(--card);
  border-radius:20px;
  position:relative;
  box-shadow:0 30px 60px -30px rgba(62,51,44,0.35);
  padding-top:20px;
}
.scallop-card::before{
  content:"";
  position:absolute; top:-9px; left:14px; right:14px; height:18px;
  background-image: radial-gradient(circle at 9px 9px, var(--ivory) 9px, transparent 9.5px);
  background-size:18px 18px;
  background-position:0 0;
}
.hero-card-inner{ padding:8px 30px 30px; }
.hero-card-inner .cap{
  display:flex; align-items:center; gap:16px; margin-bottom:18px;
}
.hero-card-inner h3{ font-size:1.3rem; font-style:italic; }
.hero-card-inner p{ color:var(--mauve-text); font-size:0.98rem; margin:6px 0 0; }
.divider-dots{
  display:flex; gap:6px; margin:20px 0; align-items:center;
}
.divider-dots span{ width:5px; height:5px; border-radius:50%; background:var(--taupe); }
.detail-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px 20px; }
.detail-grid div label{
  display:block; font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--mauve-text); font-weight:700; margin-bottom:4px;
}
.detail-grid div span{ font-size:0.98rem; color:var(--espresso); font-weight:700; font-family:'Playfair Display', serif; font-style:italic; }

/* SECTION SHELL */
section{ padding:80px 0; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(1.9rem,3vw,2.6rem); margin-top:14px; line-height:1.15; }
.section-head p{ color:var(--mauve-text); font-size:1.05rem; margin-top:16px; line-height:1.6; }

/* SERVICE CARDS */
.tags{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tag{
  background:var(--card); border:1px solid var(--taupe-line); border-radius:20px;
  padding:32px 26px; position:relative;
}
.tag .num{ font-family:'Playfair Display', serif; font-style:italic; font-size:1.1rem; color:var(--rosewood); }
.tag h3{ font-size:1.2rem; margin:12px 0 10px; }
.tag p{ color:var(--mauve-text); font-size:0.95rem; line-height:1.6; margin:0; }

/* REVIEWS — POSTCARDS */
.reviews-band{ background:var(--espresso); }
.reviews-band .section-head h2, .reviews-band .page-head h1{ color:var(--ivory); }
.reviews-band .eyebrow{ color:var(--blush); }
.reviews-band .eyebrow::before{ background:var(--blush); }
.reviews-band .section-head p, .reviews-band .page-head p.lede{ color:rgba(248,243,238,0.7); }
.postcards{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px 24px; margin-top:6px; }
.postcard{
  background:var(--ivory); border-radius:16px; padding:32px 24px 26px;
  position:relative; transform:rotate(var(--r,0deg));
  box-shadow:0 22px 44px -22px rgba(0,0,0,0.5);
}
.postcard::before{
  content:"";
  position:absolute; top:-9px; left:14px; right:14px; height:18px;
  background-image: radial-gradient(circle at 9px 9px, var(--espresso) 9px, transparent 9.5px);
  background-size:18px 18px;
}
.postcard:nth-child(1){ --r:-1.3deg; }
.postcard:nth-child(2){ --r:0.9deg; }
.postcard:nth-child(3){ --r:-0.4deg; }
.postcard:nth-child(4){ --r:0.6deg; }
.postcard:nth-child(5){ --r:-0.8deg; }
.postcard:nth-child(6){ --r:1.1deg; }
.postcard .quote{ font-family:'Playfair Display', serif; font-size:1.05rem; line-height:1.55; color:var(--espresso); font-style:italic; }
.postcard .who{ margin-top:18px; display:flex; justify-content:space-between; align-items:center; }
.postcard .who strong{ font-size:0.9rem; color:var(--espresso); font-family:'Nunito'; font-weight:800; }
.postcard .who small{ font-family:'Nunito',sans-serif; font-size:0.7rem; color:var(--rosewood-deep); font-weight:700; letter-spacing:0.04em; }

/* ABOUT PAGE */
.about-grid{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center;
}
.about-photo{
  aspect-ratio:4/5; border-radius:20px; background:var(--blush-soft);
  border:1px solid var(--taupe-line); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.about-photo .placeholder-txt{
  color:var(--mauve-text); font-family:'Playfair Display'; font-style:italic; font-size:1rem; text-align:center; padding:20px;
}
.about-photo::before{
  content:"";
  position:absolute; top:-9px; left:14px; right:14px; height:18px;
  background-image: radial-gradient(circle at 9px 9px, var(--ivory) 9px, transparent 9.5px);
  background-size:18px 18px;
}
.about-copy p{ color:var(--espresso); font-size:1.05rem; margin:0 0 18px; }
.about-copy p:last-child{ margin-bottom:0; }
.credentials{ display:flex; gap:28px; flex-wrap:wrap; margin-top:28px; }
.credential{ display:flex; align-items:center; gap:10px; }
.credential .dot{ width:8px; height:8px; border-radius:50%; background:var(--rosewood); flex-shrink:0; }
.credential span{ font-weight:700; font-size:0.92rem; }

/* CONTACT */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.contact-card{
  background:var(--card); border:1px solid var(--taupe-line); border-radius:20px;
  padding:36px;
}
.contact-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 0; border-bottom:1px solid var(--taupe-line);
}
.contact-row:last-child{ border-bottom:none; }
.contact-row label{ font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--mauve-text); font-weight:700; }
.contact-row .val{ font-weight:800; color:var(--espresso); }
.inquiry-box{
  background:var(--espresso); color:var(--ivory); border-radius:20px; padding:40px;
}
.inquiry-box h3{ color:var(--ivory); font-size:1.4rem; font-style:italic; }
.inquiry-box p{ color:rgba(248,243,238,0.75); margin:14px 0 26px; line-height:1.6; }
.inquiry-box .eyebrow{ color:var(--blush); }
.inquiry-box .eyebrow::before{ background:var(--blush); }

footer{ padding:40px 0; border-top:1px solid var(--taupe-line); }
footer .wrap{
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.85rem; color:var(--mauve-text);
}

@media (max-width:860px){
  .tabs{ display:none; }
  .tabs.open{
    display:flex; flex-direction:column;
    position:absolute; top:82px; left:16px; right:16px;
    background:var(--card); border-radius:16px; padding:10px;
    box-shadow:0 20px 40px -20px rgba(62,51,44,0.4);
  }
  .tabs.open a{ text-align:center; }
  .tabs-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .hero .wrap{ grid-template-columns:1fr; }
  .tags{ grid-template-columns:1fr; }
  .postcards{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .detail-grid{ grid-template-columns:1fr 1fr; }
}

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