/* ==========================================================================
   Kate's Kuts — Design System
   Warm ivory + espresso + dusty rose. DM Serif Display / Outfit.
   Edit the tokens below to re-theme the whole site.
   ========================================================================== */

:root {
  /* Color tokens */
  --bg:         #FAF6F1;   /* warm ivory page background */
  --bg-alt:     #F3EAE2;   /* warm sand band */
  --surface:    #FFFFFF;   /* cards */
  --ink:        #3A2E2B;   /* espresso text */
  --ink-soft:   #6E5D57;   /* muted warm brown */
  --rose:       #A05964;   /* dusty rose — primary accent */
  --rose-deep:  #874852;   /* hover / pressed */
  --rose-soft:  #E9CDD1;   /* tint borders / chips */
  --rose-wash:  #F7ECED;   /* pale wash backgrounds */
  --sage:       #7C8B7D;   /* sparing supporting green */
  --line:       #E7DCD2;   /* hairline borders */
  --star:       #D9A441;   /* review stars only */

  /* Type */
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;

  /* Shape + depth */
  --radius: 16px;
  --radius-sm: 10px;
  --arch: 200px 200px 16px 16px;  /* signature arched photo frame */
  --shadow-sm: 0 1px 3px rgba(58, 46, 43, .07), 0 4px 14px rgba(58, 46, 43, .05);
  --shadow-md: 0 6px 24px rgba(58, 46, 43, .10);
  --shadow-lg: 0 18px 48px rgba(58, 46, 43, .14);

  /* Rhythm */
  --space: 8px;
  --wrap: 1180px;
  --head-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-deep); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: var(--ink-soft); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.alt { background: var(--bg-alt); }
.section.wash { background: var(--rose-wash); }

/* Eyebrow label — letterspaced, replaces script accents */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--rose-soft); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 13px 28px;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--rose-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--rose-deep); }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- Header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--head-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-head.scrolled { background: rgba(250, 246, 241, .92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.site-head .wrap { width: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.brand em { font-style: normal; color: var(--rose); }
.nav-main { display: flex; gap: 26px; margin-left: auto; }
.nav-main a { color: var(--ink); font-weight: 500; font-size: .98rem; position: relative; padding: 6px 0; }
.nav-main a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--rose); transition: right .22s ease;
}
.nav-main a:hover::after, .nav-main a[aria-current="page"]::after { right: 0; }
.nav-main a[aria-current="page"] { color: var(--rose-deep); }
.head-cta { display: flex; align-items: center; gap: 12px; }
.head-cta .btn { min-height: 44px; padding: 10px 22px; font-size: .94rem; }
.call-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.call-link svg { width: 17px; height: 17px; color: var(--rose); }
.call-link:hover { color: var(--rose-deep); }

.burger {
  display: none; margin-left: auto;
  width: 48px; height: 48px; border: 0; border-radius: 12px;
  background: var(--surface); box-shadow: var(--shadow-sm);
  align-items: center; justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(58, 46, 43, .4); opacity: 0; transition: opacity .25s ease; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(330px, 86vw);
  background: var(--bg); box-shadow: var(--shadow-lg);
  transform: translateX(102%); transition: transform .28s ease;
  display: flex; flex-direction: column; padding: 22px;
  overflow-y: auto;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer.open .drawer-panel { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-close { width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--rose-wash); color: var(--ink); font-size: 1.3rem; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a.dl { padding: 13px 6px; font-size: 1.12rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.drawer nav a.dl[aria-current="page"] { color: var(--rose-deep); }
.drawer .btn { margin-top: 20px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--head-h) + clamp(48px, 8vw, 96px)) 0 clamp(44px, 7vw, 80px);
  background:
    radial-gradient(720px 360px at 88% -10%, var(--rose-wash) 0%, transparent 65%),
    var(--bg-alt);
}
.page-hero .crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 16px; }
.page-hero .crumbs a { color: var(--ink-soft); }
.page-hero .crumbs a:hover { color: var(--rose-deep); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 62ch; }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---------- Cards & frames ---------- */
.card {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(231, 220, 210, .6);
  padding: clamp(22px, 3vw, 32px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.arch-frame { border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-md); }
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.round-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.round-frame img { width: 100%; height: 100%; object-fit: cover; }

.grid { display: grid; gap: clamp(18px, 2.6vw, 30px); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Pricing menu ---------- */
.menu-block h3 { display: flex; align-items: center; gap: 12px; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .item { font-weight: 500; }
.menu-list .dots { flex: 1; border-bottom: 2px dotted var(--rose-soft); transform: translateY(-4px); min-width: 24px; }
.menu-list .price { font-weight: 600; color: var(--rose-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-note { font-size: .9rem; color: var(--ink-soft); }
.tier-hint { font-size: .85rem; color: var(--ink-soft); background: var(--rose-wash); border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; }

/* ---------- Quick answer (AEO) ---------- */
.quick-answer {
  background: var(--rose-wash); border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 0 0 28px;
}
.quick-answer strong { color: var(--rose-deep); }
.key-facts { width: 100%; border-collapse: collapse; font-size: .96rem; }
.key-facts th, .key-facts td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.key-facts th { width: 38%; color: var(--ink-soft); font-weight: 600; }

/* ---------- Reviews ---------- */
.stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }
.review-card { display: flex; flex-direction: column; gap: 12px; }
.review-card blockquote { margin: 0; font-size: 1.02rem; }
.review-card .who { font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.trust-bar { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px); align-items: center; justify-content: center; }
.trust-stat { text-align: center; }
.trust-stat .num { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--rose-deep); display: block; }
.trust-stat .lbl { font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; background: none; border: 0; text-align: left;
  font-weight: 600; font-size: 1.04rem; color: var(--ink);
}
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--rose); transition: transform .2s ease; flex: none; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; min-height: 50px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
  font: inherit; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-wash);
}
.field .hint { font-size: .85rem; color: var(--ink-soft); margin-top: 5px; }
.form-note {
  display: none; align-items: flex-start; gap: 10px;
  background: #EFF5EE; border: 1px solid #C8D8C6; color: #3D5240;
  border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 16px; font-weight: 500;
}

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: #E9DFD8; padding: clamp(52px, 7vw, 84px) 0 30px; }
.site-foot a { color: #E9DFD8; }
.site-foot a:hover { color: #fff; }
.foot-grid { display: grid; gap: 36px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; margin-bottom: 44px; }
.foot-brand { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.foot-brand em { font-style: normal; color: var(--rose-soft); }
.site-foot h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .92rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .96rem; }
.foot-meta { border-top: 1px solid rgba(233, 223, 216, .18); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .86rem; color: #C9BBB2; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(233, 223, 216, .12); transition: background .18s ease;
}
.socials a:hover { background: var(--rose); }
.socials svg { width: 18px; height: 18px; }
.hours-mini { font-size: .94rem; display: grid; gap: 5px; }
.hours-mini span { color: #C9BBB2; }

/* ---------- People (team cards, monogram avatars until real photos arrive) ---------- */
.person { display: flex; flex-direction: column; }
.person .avatar {
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.9rem; color: var(--rose-deep);
  background: linear-gradient(135deg, var(--rose-wash), var(--rose-soft));
  border: 2px solid var(--surface); box-shadow: var(--shadow-sm);
  margin-bottom: 16px; flex: none;
}
.person h3 { margin-bottom: 2px; font-size: 1.3rem; }
.person .role { font-weight: 600; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.person p { font-size: .97rem; color: var(--ink-soft); }
.person .ig { margin-top: auto; padding-top: 12px; font-weight: 600; font-size: .92rem; }

/* ---------- Table of contents (AEO) ---------- */
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 8px; padding: 0; list-style: none; }
.toc a {
  display: inline-block; padding: 9px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 600; font-size: .9rem; color: var(--ink);
}
.toc a:hover { border-color: var(--rose); color: var(--rose-deep); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal].in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
.qa-static [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav-main { display: none; }
  .head-cta .call-link span { display: none; }
  .burger { display: inline-flex; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .head-cta .btn { display: none; }
  .page-hero .hero-actions .btn { width: 100%; }
}
