/* Evie's Alterations — website UI kit styles (v2, consumes ../../colors_and_type.css) */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }

/* ---- shared atoms ---- */
.eyebrow { font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--purple); margin: 0; display: inline-flex; align-items: center; gap: 11px; }
.eyebrow.on-dark { color: var(--orchid-light); }
.eyebrow .spark { width: 13px; height: 13px; flex: none; color: var(--orchid); }
.eyebrow.on-dark .spark { color: var(--orchid-light); }

h1,h2,h3 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: var(--lh-heading); font-weight: 300; letter-spacing: var(--track-tight); }
h3 { font-weight: 500; line-height: var(--lh-tight); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; white-space: nowrap; font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--r-pill); padding: 14px 30px; border: 1px solid transparent; transition: all var(--dur) var(--ease); }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-mid); }
.btn-secondary { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-secondary:hover { background: var(--purple); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-mid); }
.btn-light { background: var(--paper); color: var(--purple); }
.btn-light:hover { background: var(--lilac-wash); }
.btn-ghost-dark { background: transparent; color: var(--text-inverse); border-color: var(--border-on-dark); }
.btn-ghost-dark:hover { border-color: var(--orchid-light); color: var(--orchid-light); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.link-arrow .arr { transition: transform var(--dur) var(--ease); }
.link-arrow:hover .arr { transform: translateX(4px); }

.spark { display: inline-block; }

/* placeholder imagery */
.ph { position: relative; overflow: hidden; background:
    repeating-linear-gradient(45deg, var(--lilac) 0 12px, var(--lilac-wash) 12px 24px);
  border: 1px solid var(--border); display: flex; align-items: flex-end; }
.ph .ph-label { font-family: var(--font-mono); font-size: 11px; color: var(--muted); background: rgba(248,247,255,0.82); padding: 6px 10px; margin: 12px; border-radius: var(--r-sm); letter-spacing: 0.02em; }
.ph.on-dark { background: repeating-linear-gradient(45deg, #34123a 0 12px, #401648 12px 24px); border-color: rgba(255,255,255,0.1); }
.ph.on-dark .ph-label { background: rgba(58,18,64,0.7); color: var(--text-on-dark-muted); }

/* hairline divider with center sparkle */
.rule-mark { display: flex; align-items: center; gap: 16px; color: var(--purple); max-width: 220px; margin: 0 auto; }
.rule-mark .line { flex: 1; border-top: 1px solid currentColor; opacity: 0.35; }
.rule-mark .spark { width: 14px; height: 14px; color: var(--orchid); }

/* ---- header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248,247,255,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand-lockup { display: flex; align-items: center; }
.brand-lockup img { height: 46px; width: auto; display: block; }
.brand-lockup .wm { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup .wm .nm { font-family: var(--font-display); font-size: 21px; font-weight: 400; color: var(--purple); letter-spacing: 0.04em; text-transform: uppercase; }
.brand-lockup .wm .sub { font-family: var(--font-display); font-size: 9px; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.34em; text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-family: var(--font-display); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); transition: color var(--dur) var(--ease); position: relative; }
.nav a:hover { color: var(--purple); }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .phone { font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); white-space: nowrap; }
.header-cta .phone:hover { color: var(--purple); }
.header-cta .call-cta { display: none; }

/* ---- hero ---- */
.hero { padding: clamp(40px, 6vw, 80px) 0 0; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: var(--fs-h1); margin: 18px 0 0; max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--purple); }
.hero .lead { font-family: var(--font-body); font-size: var(--fs-lead); font-weight: 300; color: var(--ink-soft); margin: 22px 0 0; max-width: 34ch; line-height: 1.5; }
.hero .actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero .meta { display: flex; gap: 30px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border); }
.hero .meta .stat .n { font-family: var(--font-display); font-size: 34px; font-weight: 300; color: var(--purple); line-height: 1; }
.hero .meta .stat .l { font-size: 13px; color: var(--muted); margin-top: 6px; }
.hero-art { position: relative; }
.hero-art .ph { justify-content: flex-end; }
.hero-img { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.hero-badge img { height: 46px; width: auto; }
.hero-badge .t { font-family: var(--font-display); font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); line-height: 1.4; }

/* ---- generic section ---- */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-head h2 { font-size: var(--fs-h2); margin: 16px 0 0; }
.section-head p { color: var(--ink-soft); margin: 16px auto 0; max-width: 52ch; font-size: var(--fs-body-lg); font-weight: 300; }
.bg-lilac { background: var(--lilac-wash); }
.bg-plum { background: var(--plum-deep); color: var(--text-inverse); }
.bg-green { background: var(--green-deep); color: var(--text-inverse); }
.bg-plum h2, .bg-plum h3, .bg-green h2, .bg-green h3 { color: var(--text-inverse); }

/* ---- services ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .ph { height: 184px; }
.service-card .sc-body { padding: 24px 26px 28px; }
.service-card h3 { font-size: 23px; margin: 0 0 10px; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin: 0 0 16px; }
.service-card .price { font-family: var(--font-mono); font-size: 12px; color: var(--green); letter-spacing: 0.04em; }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-art { position: relative; }
.about-img { aspect-ratio: 5/6; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.about-grid h2 { font-size: var(--fs-h2); margin-bottom: 22px; max-width: 16ch; }
.about-grid p { color: var(--ink-soft); margin: 0 0 18px; }
.signature { font-family: var(--font-display); font-size: 26px; font-weight: 400; letter-spacing: 0.06em; color: var(--purple); margin-top: 26px; }

/* ---- process ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step .num-rule { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step .num { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--orchid-light); line-height: 1; }
.step .num-rule .ln { flex: 1; border-top: 1px solid var(--border-on-dark); }
.step h3 { font-size: 20px; margin: 0 0 9px; font-weight: 500; }
.step p { font-size: 14px; color: var(--text-on-dark-muted); margin: 0; line-height: 1.55; }

/* ---- gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-grid .ph { border-radius: var(--r-md); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---- testimonial ---- */
.quote-wrap { text-align: center; max-width: 760px; margin: 0 auto; }
.quote-wrap .spark { width: 26px; height: 26px; color: var(--orchid); margin-bottom: 22px; }
.quote-wrap blockquote { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 300; color: var(--ink); line-height: 1.4; margin: 0 0 24px; letter-spacing: var(--track-tight); }
.quote-wrap .cite { font-family: var(--font-display); font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---- cta band ---- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: var(--fs-h1); margin-bottom: 18px; }
.cta-band p { color: var(--text-on-dark-muted); max-width: 46ch; margin: 0 auto 34px; font-weight: 300; font-size: var(--fs-body-lg); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- footer ---- */
.site-footer { background: var(--plum-deep); color: var(--text-on-dark-muted); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orchid-light); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col li { font-size: 14px; }
.footer-col a { font-size: 14px; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--text-inverse); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--border-on-dark); font-size: 13px; }

/* ---- booking modal ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(58,18,64,0.5); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 100; opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease); }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--paper); border-radius: var(--r-xl); max-width: 520px; width: 100%; padding: 40px; box-shadow: var(--shadow-lg); transform: translateY(12px); transition: transform var(--dur-slow) var(--ease-out); max-height: 90vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal h3 { font-size: 28px; margin-bottom: 6px; font-weight: 400; }
.modal .sub { color: var(--ink-soft); font-size: 15px; margin: 0 0 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 11px 13px; outline: none; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(112,36,113,0.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-close { position: absolute; top: 20px; right: 22px; background: none; border: 0; font-size: 26px; color: var(--muted); line-height: 1; }
.modal-success { text-align: center; padding: 20px 0; }
.modal-success img { height: 78px; width: auto; margin: 0 auto 16px; }

/* ---- services interior page ---- */
.svc-hero { background: var(--plum-deep); color: var(--text-inverse); padding: clamp(56px, 8vw, 100px) 0 clamp(56px, 8vw, 92px); }
.svc-hero h1 { color: var(--text-inverse); font-size: var(--fs-h1); margin: 18px 0 0; max-width: 16ch; }
.svc-hero p { color: var(--text-on-dark-muted); max-width: 52ch; margin: 20px 0 0; font-size: var(--fs-body-lg); font-weight: 300; }
.price-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 30px 32px; box-shadow: var(--shadow-sm); }
.price-card h3 { font-size: 23px; margin: 0; font-weight: 500; }
.price-note { font-family: var(--font-body); font-weight: 300; font-size: 15px; color: var(--green); margin: 6px 0 0; }
.price-card hr { border: 0; border-top: 1px solid var(--border); margin: 18px 0; }
.price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.price-list li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; font-size: 15px; color: var(--ink-soft); }
.price-list .amt { font-family: var(--font-mono); font-size: 13px; color: var(--purple); font-weight: 500; flex: none; }
.faq { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 22px 0; font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--ink); }
.faq-icon { font-family: var(--font-body); font-size: 24px; color: var(--purple); flex: none; line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { margin: 0 0 22px; color: var(--ink-soft); font-size: 16px; max-width: 60ch; }

/* responsive */
@media (max-width: 920px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-img, .about-img { aspect-ratio: 16/10; }
  .services-grid, .price-cols { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .price-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .header-cta .phone { display: none; }
  .header-cta .book-cta { display: none; }
  .header-cta .call-cta { display: inline-flex; padding: 12px 22px; font-size: 13px; letter-spacing: 0.04em; }
  .header-inner { height: 70px; gap: 14px; }
  .brand-lockup img { height: 36px; }
}
