/* ==========================================================================
   BRUSHES OF DEE — DESIGN SYSTEM
   Palette:  Warm Cream #FFF9F5 (70%) · Soft Blush Pink #E8C7C8 (15%) · Soft Charcoal #252222 (15%)
   Display:  Cormorant Garamond (luxury serif)
   Body:     Jost (clean modern sans)
   Signature: hand-drawn brushstroke divider, echoing the logo's flourish
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root{
  /* ---- brand palette (do not introduce new hues) ---- */
  --cream:        #FFF9F5;
  --cream-deep:   #F7EEE7;   /* tint of cream, for subtle section separation */
  --blush:        #E8C7C8;
  --blush-soft:   #F3E1E2;   /* lighter tint of blush */
  --blush-line:   #DCA9AB;   /* slightly deeper blush for hairlines/hover */
  --charcoal:     #252222;
  --charcoal-70:  #4c4746;
  --charcoal-45:  #756f6e;
  --white:        #FFFFFF;

  /* ---- type ---- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- rhythm ---- */
  --container: 1180px;
  --radius-soft: 6px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  overflow-x: hidden; /* clips off-canvas fixed elements (mobile nav) that body's
                          overflow-x:hidden alone can't reach, since position:fixed
                          escapes body's clipping context */
}

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

body{
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

::selection{ background: var(--blush); color: var(--charcoal); }

/* Focus states — accessible everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1{ font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; font-weight: 500; }
h2{ font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.1; }
h3{ font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.3; }

p{ margin: 0 0 1em; color: var(--charcoal-70); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- eyebrow / small-caps label, echoes logo's engraved caps ---- */
.eyebrow{
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--charcoal-45);
  display: inline-block;
  margin-bottom: 14px;
}

.eyebrow.on-dark{ color: var(--blush); }

.section{
  padding: 96px 0;
}
.section--tight{ padding: 64px 0; }
.section--cream-deep{ background: var(--cream-deep); }
.section--dark{ background: var(--charcoal); color: var(--cream); }
.section--dark p{ color: #cfc7c5; }
.section--dark h2, .section--dark h3{ color: var(--cream); }

.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ==========================================================================
   SIGNATURE ELEMENT — brushstroke divider (SVG, stroke-draw on reveal)
   ========================================================================== */
.stroke-divider{
  display: block;
  width: 132px;
  height: 28px;
  margin: 18px auto 0;
}
.stroke-divider.left{ margin-left: 0; }
.stroke-divider path{
  fill: none;
  stroke: var(--blush-line);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.stroke-divider.on-dark path{ stroke: var(--blush); }
.is-visible .stroke-divider path{ stroke-dashoffset: 0; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 245, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(37,34,34,0.07);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img{
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}
.nav-logo-word{
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  display: none;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal-70);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s var(--ease);
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--blush-line);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active{ color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.is-active::after{ transform: scaleX(1); transform-origin: left; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary{
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover{
  background: #3a3534;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37,34,34,0.18);
}
.btn-secondary{
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover{
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-blush{
  background: var(--blush);
  color: var(--charcoal);
}
.btn-blush:hover{
  background: var(--blush-line);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(220,169,171,0.35);
}
.btn-ghost-dark{
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,249,245,0.4);
}
.btn-ghost-dark:hover{
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.btn-sm{ padding: 11px 22px; font-size: 0.72rem; }
.btn-block{ width: 100%; }

.nav-cta .btn{ padding: 11px 24px; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before{ position: absolute; top: -8px; }
.nav-toggle span::after{ position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
@media (max-width: 900px){
  .nav-links{
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -12px 0 40px rgba(37,34,34,0.12);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.05rem; }
  .nav-cta{ margin-top: 6px; }
  .nav-toggle{ display: inline-flex; }
  .nav-cta.desktop-only{ display: none; }
}
@media (min-width: 901px){
  .nav-cta.mobile-only{ display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,199,200,0.55), rgba(232,199,200,0));
  z-index: 0;
}
.hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-logo{
  width: 108px;
  height: auto;
  margin-bottom: 28px;
  mix-blend-mode: multiply;
}
.hero-copy h1{ margin-bottom: 18px; }
.hero-copy .lede{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--charcoal-70);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* organic brush-edge photo frame — signature shape, echoed across the site */
.brush-frame{
  position: relative;
  border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(37,34,34,0.35);
  isolation: isolate;
}
.brush-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.brush-frame::after{
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,249,245,0.55);
  border-radius: inherit;
  pointer-events: none;
}
.hero-photo-wrap{
  position: relative;
}
.hero-photo-tag{
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--cream);
  border: 1px solid rgba(37,34,34,0.08);
  padding: 16px 22px;
  border-radius: var(--radius-soft);
  box-shadow: 0 18px 40px rgba(37,34,34,0.14);
  max-width: 230px;
}
.hero-photo-tag .eyebrow{ margin-bottom: 4px; }
.hero-photo-tag p{ margin: 0; font-size: 0.85rem; color: var(--charcoal-70); }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; gap: 60px; }
  .hero-photo-wrap{ order: -1; max-width: 380px; margin: 0 auto; }
  .hero-photo-tag{ left: 50%; transform: translateX(-50%); bottom: -18px; text-align: center; }
  .hero-copy{ text-align: center; }
  .hero-logo{ margin-left: auto; margin-right: auto; }
  .hero-copy .lede{ margin-left: auto; margin-right: auto; }
  .hero-actions{ justify-content: center; }
}

/* ==========================================================================
   INTRO STRIP
   ========================================================================== */
.intro-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.intro-strip .stat-num{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--charcoal);
  display: block;
  margin-bottom: 6px;
}
.intro-strip .stat-label{
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-45);
}
@media (max-width: 640px){
  .intro-strip{ grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   CARDS — services
   ========================================================================== */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card{
  background: var(--white);
  border: 1px solid rgba(37,34,34,0.07);
  border-radius: var(--radius-soft);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(37,34,34,0.22);
  border-color: var(--blush);
}
.service-card .icon-ring{
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: flex; align-items: center; justify-content: center;
}
.service-card .icon-ring svg{ width: 24px; height: 24px; stroke: var(--charcoal); }
.service-card h3{ margin-bottom: 10px; }
.service-card p{ font-size: 0.92rem; margin-bottom: 0; }

@media (max-width: 900px){
  .card-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .card-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-groups{
  display: grid;
  gap: 28px;
}
.pricing-groups--2col{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px){
  .pricing-groups--2col{ grid-template-columns: 1fr; }
}
.pricing-card{
  background: var(--white);
  border: 1px solid rgba(37,34,34,0.08);
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.pricing-card-head{
  padding: 30px 34px 22px;
  border-bottom: 1px solid rgba(37,34,34,0.06);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-card-head h3{ margin: 0; }
.pricing-rows{
  padding: 10px 34px 30px;
}
.price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(37,34,34,0.12);
}
.price-row:last-child{ border-bottom: none; }
.price-row .price-name{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.price-row .price-name small{
  display: block;
  font-weight: 300;
  color: var(--charcoal-45);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.price-row .price-value{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}
.price-tag{
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-45);
  background: var(--cream-deep);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ==========================================================================
   CTA BANDS
   ========================================================================== */
.cta-band{
  text-align: center;
  padding: 100px 0;
  position: relative;
}
.cta-band h2{ margin-bottom: 12px; }
.cta-band p{ max-width: 46ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-row{
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   GALLERY / PORTFOLIO
   ========================================================================== */
.filter-row{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-chip{
  border: 1px solid rgba(37,34,34,0.18);
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--charcoal-70);
}
.filter-chip:hover{ border-color: var(--charcoal); color: var(--charcoal); }
.filter-chip.is-active{ background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item{
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
}
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item .tag{
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(37,34,34,0.72);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s var(--ease);
}
.gallery-item:hover .tag{ opacity: 1; transform: translateY(0); }

.gallery-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 20px;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(150deg, var(--blush-soft) 0%, var(--cream-deep) 78%);
  border: 1px solid rgba(37,34,34,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery-placeholder:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(37,34,34,0.28);
}
.gallery-placeholder .ph-icon{
  width: 42px; height: 42px;
  opacity: 0.55;
}
.gallery-placeholder .ph-icon path{
  fill: none;
  stroke: var(--charcoal);
  stroke-width: 1.4;
  stroke-linecap: round;
}
.gallery-placeholder .ph-caption{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.gallery-placeholder span.eyebrow{
  margin: 0;
  color: var(--charcoal-45);
}

/* Instagram-follow tile — a real, useful action rather than an empty state */
.gallery-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
  background: var(--charcoal);
  color: var(--cream);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.gallery-cta:hover{ transform: translateY(-4px); background: #3a3534; }
.gallery-cta .icon-ring{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,249,245,0.12);
  display: flex; align-items: center; justify-content: center;
}
.gallery-cta .icon-ring svg{ width: 22px; height: 22px; stroke: var(--blush); }
.gallery-cta .ph-caption{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0;
}
.gallery-cta span.eyebrow{ color: var(--blush); margin: 0; }

@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr 1fr; gap: 12px; }
}

.gallery-grid--teaser{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px){
  .gallery-grid--teaser{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-copy p{ font-size: 1.02rem; }
.about-signature{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 28px;
  color: var(--charcoal);
}
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 48px; }
  .about-grid .brush-frame{ max-width: 380px; margin: 0 auto; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-card{
  background: var(--white);
  border: 1px solid rgba(37,34,34,0.08);
  border-radius: var(--radius-soft);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card .icon-ring{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon-ring svg{ width: 22px; height: 22px; stroke: var(--charcoal); }
.contact-card h3{ margin-bottom: 0; }
.contact-card p{ margin-bottom: 6px; font-size: 0.94rem; }
.contact-full{ grid-column: 1 / -1; }

@media (max-width: 720px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.map-embed-wrap{
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid rgba(37,34,34,0.08);
}

/* ==========================================================================
   TERMS PAGE
   ========================================================================== */
.terms-list{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.terms-list li{
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(37,34,34,0.09);
  font-size: 0.98rem;
  color: var(--charcoal-70);
}
.terms-list li::before{
  content: '';
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blush-line);
  margin-top: 10px;
}
.terms-list li strong{ color: var(--charcoal); font-weight: 500; }
.terms-note{
  margin-top: 40px;
  padding: 26px 30px;
  background: var(--blush-soft);
  border-radius: var(--radius-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.terms-accept{
  margin-top: 44px;
  padding: 28px 30px;
  border: 1px solid rgba(37,34,34,0.12);
  border-radius: var(--radius-soft);
  background: var(--white);
}
.terms-accept label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal-70);
  cursor: pointer;
}
.terms-accept input[type="checkbox"]{
  width: 20px; height: 20px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--charcoal);
  cursor: pointer;
}
.terms-accept .btn{ margin-top: 20px; }
.terms-accept .btn[disabled]{
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.terms-accept small{
  display: block;
  margin-top: 14px;
  color: var(--charcoal-45);
  font-size: 0.78rem;
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background: var(--charcoal);
  color: var(--cream);
  padding: 72px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,249,245,0.12);
}
.footer-brand img{
  height: 56px;
  margin-bottom: 14px;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius-soft);
}
.footer-brand p{ color: #cfc7c5; font-size: 0.9rem; max-width: 32ch; }
.footer-tagline{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blush);
  font-size: 1rem;
  margin-top: 2px;
}
.footer-col h4{
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ color: #cfc7c5; font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-col a:hover{ color: var(--cream); }
.footer-col p{ color: #cfc7c5; font-size: 0.9rem; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #a89f9d;
}
.footer-credit{
  font-size: 0.68rem;
  color: #6b6564;
  letter-spacing: 0.04em;
}
.footer-credit a{ color: #6b6564; }
.footer-credit a:hover{ color: #a89f9d; }

@media (max-width: 900px){
  .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; }
}

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero{
  padding: 64px 0 30px;
  text-align: center;
}
.page-hero .eyebrow{ margin-bottom: 10px; }
.page-hero p.subtitle{
  max-width: 56ch;
  margin: 18px auto 0;
  font-size: 1.02rem;
}

/* ==========================================================================
   RESPONSIVE — global
   ========================================================================== */
@media (max-width: 720px){
  .section{ padding: 68px 0; }
  h1{ letter-spacing: 0; }
}

/* fine-tune tap targets */
@media (max-width: 480px){
  .btn{ width: 100%; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .cta-band .btn-row{ flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   NEW HOMEPAGE SECTIONS (v2 rebuild)
   ========================================================================== */

/* Standalone brand heading above the hero */
.brand-mark{
  text-align: center;
  padding: 44px 0 8px;
}
.brand-mark h1{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.14em;
  margin: 0;
}

/* Full designed hero graphic + a real, working booking button beneath it
   (the button drawn inside the image itself isn't clickable) */
.hero-graphic-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-graphic{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(37,34,34,0.3);
}
.hero-graphic img{ width: 100%; display: block; }
.hero-graphic-cta{
  text-align: center;
  margin-top: 28px;
}

/* Meet the Artist v2 */
.artist-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.artist-photo{
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(37,34,34,0.3);
}
.artist-photo img{ width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.artist-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 4.6rem);
  letter-spacing: 0.02em;
  margin: 4px 0 18px;
}
@media (max-width: 900px){
  .artist-grid{ grid-template-columns: 1fr; gap: 40px; }
  .artist-photo{ max-width: 380px; margin: 0 auto; }
}

/* Policy / guide 4-up card grids (Booking Policies, Pre-Appointment Guide) */
.policy-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.policy-card{
  background: var(--white);
  border: 1px solid rgba(37,34,34,0.08);
  border-radius: var(--radius-soft);
  padding: 30px 24px;
  text-align: center;
}
.policy-card .icon-ring{
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
}
.policy-card .icon-ring svg{ width: 22px; height: 22px; stroke: var(--cream); }
.policy-card h3{ font-size: 1.05rem; margin-bottom: 8px; }
.policy-card p{ font-size: 0.86rem; margin: 0; color: var(--charcoal-70); }

.guide-section{
  background: linear-gradient(180deg, var(--charcoal-45), var(--charcoal-70));
  padding: 88px 0;
}
.guide-section .eyebrow{ color: var(--blush-soft); }
.guide-section h2{ color: var(--cream); }
.guide-card{
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: 28px 26px;
  text-align: left;
}
.guide-card h3{ font-size: 1.05rem; margin-bottom: 8px; }
.guide-card p{ font-size: 0.86rem; margin: 0; color: var(--charcoal-70); }

@media (max-width: 900px){
  .policy-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .policy-grid{ grid-template-columns: 1fr; }
}

/* All About Our Services — plain informational boxes (not links) */
.service-box-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-box{
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-soft);
  padding: 30px 26px;
  text-align: center;
}
.service-box h3{
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-box p{
  color: #cfc7c5;
  font-size: 0.86rem;
  margin: 0;
}
@media (max-width: 560px){
  .service-box-grid{ grid-template-columns: 1fr; }
}

/* Select Service — real bookable price list */
.select-service-list{
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.select-service-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(37,34,34,0.1);
  flex-wrap: wrap;
}
.select-service-row:last-child{ border-bottom: none; }
.select-service-info h3{ margin: 0 0 4px; font-size: 1.2rem; }
.select-service-info .ssr-price{
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--charcoal-45);
  margin-bottom: 6px;
}
.select-service-info p{ margin: 0; font-size: 0.88rem; max-width: 46ch; }

/* Stay Connected + Tag Us combined section */
.connect-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.connect-card{
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-soft);
  padding: 34px;
}
.connect-card h3{ color: var(--blush); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.connect-row{ display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; }
.connect-row:last-child{ margin-bottom: 0; }
.connect-row strong{ color: var(--cream); flex: none; width: 80px; font-weight: 500; }
.connect-row a{ color: #cfc7c5; text-decoration: underline; text-underline-offset: 3px; }
.connect-row a:hover{ color: var(--cream); }
.connect-row span{ color: #cfc7c5; }

.connect-photo{
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.connect-photo img{ width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

.tag-band{
  margin-top: 22px;
  background: var(--blush-soft);
  border-radius: var(--radius-soft);
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.tag-polaroid{
  width: 92px;
  background: var(--white);
  padding: 8px 8px 16px;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(37,34,34,0.15);
  transform: rotate(-4deg);
}
.tag-polaroid img{ width: 100%; aspect-ratio: 1/1; object-fit: contain; background: var(--white); }
.tag-copy h3{
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0;
  line-height: 1.2;
}
.tag-copy h3 em{ font-style: italic; font-weight: 400; color: var(--blush-line); }
.tag-copy p{ margin: 6px 0 0; font-size: 0.86rem; color: var(--charcoal-70); }

@media (max-width: 800px){
  .connect-grid{ grid-template-columns: 1fr; }
  .tag-band{ grid-template-columns: auto 1fr; padding: 24px; gap: 18px; }
  .tag-polaroid{ width: 66px; }
}

/* ==========================================================================
   V2 ADDITIONS — Brushes of Dee homepage rebuild
   ========================================================================== */

/* ---- standalone brand heading above hero ---- */
.brand-mark{
  text-align: center;
  padding: 40px 24px 8px;
}
.brand-mark h1{
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  margin: 0;
  color: var(--charcoal);
}

/* ---- hero graphic ---- */
.hero-v2{
  padding: 16px 0 56px;
}
.hero-graphic-wrap{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.hero-graphic-wrap img{ width: 100%; height: auto; display: block; }
.hero-v2-cta{
  text-align: center;
  margin-top: 30px;
}

/* ---- Meet Your Artist ---- */
.artist-grid{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.artist-photo-frame{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(37,34,34,0.35);
}
.artist-photo-frame img{
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.artist-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  letter-spacing: 0.02em;
  margin: 4px 0 18px;
  color: var(--charcoal);
}
@media (max-width: 900px){
  .artist-grid{ grid-template-columns: 1fr; gap: 36px; }
  .artist-photo-frame{ max-width: 340px; margin: 0 auto; }
}

/* ---- Booking Policies (icon cards) ---- */
.policy-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.policy-card{
  text-align: center;
  padding: 8px 12px;
}
.policy-icon{
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.policy-icon svg{ width: 28px; height: 28px; stroke: var(--cream); }
.policy-card h3{ font-size: 1.15rem; margin-bottom: 8px; }
.policy-card p{ font-size: 0.9rem; }
@media (max-width: 900px){
  .policy-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .policy-grid{ grid-template-columns: 1fr; }
}

/* ---- Pre-Appointment Guide (on gradient) ---- */
.guide-section{
  background: linear-gradient(160deg, var(--charcoal) 0%, #55504e 100%);
  padding: 88px 0;
}
.guide-section .eyebrow{ color: var(--blush); }
.guide-section h2{ color: var(--cream); text-align: center; }
.guide-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.guide-card{
  background: var(--cream);
  border-radius: 12px;
  padding: 30px 28px;
}
.guide-card h3{ font-size: 1.05rem; margin-bottom: 10px; }
.guide-card p{ font-size: 0.9rem; margin-bottom: 0; color: var(--charcoal-70); }
@media (max-width: 720px){
  .guide-grid{ grid-template-columns: 1fr; }
}

/* ---- Select Service (combined list) ---- */
.service-list{
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.service-list-item{
  padding: 34px 0;
  border-bottom: 1px solid rgba(37,34,34,0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.service-list-item:first-child{ padding-top: 0; }
.service-list-item h3{ margin-bottom: 6px; }
.service-list-item .convince{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal-70);
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.service-list-item .price-line{
  font-size: 0.92rem;
  color: var(--charcoal-45);
  font-weight: 500;
}
.service-list-item .price-line b{ color: var(--charcoal); font-weight: 600; }
@media (max-width: 600px){
  .service-list-item{ grid-template-columns: 1fr; text-align: left; }
  .service-list-item .btn{ width: 100%; margin-top: 6px; }
}

/* ---- All About Our Services (plain boxes) ---- */
.plain-box-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}
.plain-box{
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 22px 14px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}
@media (max-width: 720px){
  .plain-box-grid{ grid-template-columns: 1fr 1fr; }
}

/* ---- Stay Connected + Tag Us combined ---- */
.connect-section{
  background: var(--cream-deep);
}
.connect-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(37,34,34,0.3);
}
.connect-info{
  background: var(--white);
  padding: 48px 44px;
}
.connect-info h2{ margin-bottom: 26px; }
.connect-row{
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37,34,34,0.08);
}
.connect-row:last-of-type{ border-bottom: none; }
.connect-row .icon-ring{ width: 38px; height: 38px; flex: none; }
.connect-row .icon-ring svg{ width: 18px; height: 18px; }
.connect-row a, .connect-row span.val{ font-size: 0.94rem; color: var(--charcoal-70); }
.connect-row .lbl{
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-45);
  margin-bottom: 2px;
}
.connect-photo{
  position: relative;
  min-height: 340px;
}
.connect-photo img{ width: 100%; height: 100%; object-fit: cover; }

.tagus-band{
  background: var(--charcoal);
  padding: 60px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.tagus-polaroid{
  width: 130px;
  background: var(--white);
  padding: 10px 10px 26px;
  border-radius: 4px;
  transform: rotate(-6deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.tagus-polaroid img{ width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 2px; }
.tagus-copy{ color: var(--cream); }
.tagus-copy .script{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blush);
  font-size: 1.6rem;
  display: block;
  margin: 2px 0;
}
.tagus-copy h3{ color: var(--cream); font-size: 1.6rem; margin: 0; letter-spacing: 0.03em; }
.tagus-copy p{ color: #cfc7c5; margin-top: 10px; font-size: 0.9rem; }

@media (max-width: 860px){
  .connect-grid{ grid-template-columns: 1fr; }
  .connect-photo{ min-height: 260px; order: -1; }
  .tagus-band{ grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ==========================================================================
   LOYALTY REWARD — standalone card visual, page, and booking popup
   ========================================================================== */

.loyalty-card-visual{
  max-width: 340px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px 26px;
  box-shadow: 0 26px 55px -20px rgba(37,34,34,0.35);
  transform: rotate(-4deg);
  position: relative;
}
.loyalty-card-visual .lc-badge{
  width: 42px; height: 42px;
  border: 1px solid var(--blush-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.loyalty-card-visual .lc-title{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  display: block;
}
.loyalty-dots{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 210px;
  margin-bottom: 30px;
}
.loyalty-dots span{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blush);
}
.loyalty-card-visual .lc-conditions{
  position: absolute;
  bottom: 16px; right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--charcoal-45);
}

.loyalty-list{
  max-width: 560px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
}
.loyalty-row{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(37,34,34,0.08);
}
.loyalty-row:last-child{ border-bottom: none; }
.loyalty-row .icon-ring{ flex: none; width: 44px; height: 44px; }
.loyalty-row .icon-ring svg{ width: 20px; height: 20px; }
.loyalty-row p{ margin: 0; font-size: 0.98rem; color: var(--charcoal-70); }
.loyalty-row b{ color: var(--blush-line); font-weight: 600; }

/* ---- Booking popup ---- */
.loyalty-overlay{
  position: fixed;
  inset: 0;
  background: rgba(37,34,34,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.loyalty-overlay.is-open{ opacity: 1; visibility: visible; }
.loyalty-modal{
  background: var(--cream);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 30px 30px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
  text-align: center;
}
.loyalty-overlay.is-open .loyalty-modal{ transform: translateY(0) scale(1); }
.loyalty-modal-close{
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(37,34,34,0.06);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal-70);
}
.loyalty-modal-close:hover{ background: rgba(37,34,34,0.12); }
.loyalty-modal h3{ font-size: 1.5rem; margin: 4px 0 2px; }
.loyalty-modal .loyalty-list{ margin: 22px 0 6px; text-align: left; }
.loyalty-modal .loyalty-row{ padding: 12px 0; }
.loyalty-modal .loyalty-row p{ font-size: 0.9rem; }
.loyalty-modal-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.loyalty-modal-link{
  font-size: 0.8rem;
  color: var(--charcoal-45);
  text-decoration: underline;
}

@media (max-width: 480px){
  .loyalty-card-visual{ max-width: 280px; padding: 24px 20px 20px; }
  .loyalty-dots{ max-width: 180px; }
  .loyalty-dots span{ width: 26px; height: 26px; }
}
