/* Ardor & Co. Boutique — Drill 017
   Vertical: Retail / Local e-commerce
   Palette: warm blush #f2e8e0 + rich burgundy #6b2737 + cream #faf5f0
*/

:root {
  color-scheme: light;
  --blush: #f2e8e0;
  --blush-dark: #e6d4c6;
  --cream: #faf5f0;
  --burgundy: #6b2737;
  --burgundy-dark: #4e1c28;
  --burgundy-light: #8c3548;
  --burgundy-pale: #f7edf0;
  --ink: #1f1215;
  --muted: #6b5a5f;
  --line: #ddd0c8;
  --panel: #f7f2ee;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(107, 39, 55, 0.08);
  --shadow-lg: 0 12px 48px rgba(107, 39, 55, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Georgia", ui-serif, serif;
  line-height: 1.65;
  font-size: 1rem;
}
p, li, label { font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--burgundy-light); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 1rem; top: 1rem; z-index: 10;
  transform: translateY(-200%);
  background: var(--burgundy); color: var(--white);
  padding: 0.6rem 1.2rem; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }
.noscript-warning {
  background: #fff3cd; color: #664d03;
  padding: 0.75rem 1.5rem; text-align: center; margin: 0;
  border-bottom: 1px solid #ffc107; font-family: Inter, sans-serif;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 4rem); height: 68px;
  background: rgba(250, 245, 240, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--burgundy); color: var(--white);
  display: grid; place-items: center;
  font-family: Georgia, serif; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.brand strong { display: block; font-size: 0.95rem; font-family: Georgia, serif; color: var(--burgundy); }
.brand small { display: block; font-size: 0.72rem; color: var(--muted); font-family: Inter, sans-serif; font-weight: 400; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.4rem 0.8rem; border-radius: 6px;
  color: var(--muted); font-size: 0.88rem; font-family: Inter, sans-serif; font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--burgundy); background: var(--burgundy-pale); text-decoration: none; }
.nav-cta {
  background: var(--burgundy) !important; color: var(--white) !important;
  padding: 0.45rem 1.1rem !important; border-radius: 6px !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--burgundy-dark) !important; }

/* ── BUTTONS ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; font-family: Inter, sans-serif;
  cursor: pointer; border: 2px solid transparent; text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.button:hover { transform: translateY(-1px); text-decoration: none; }
.button.primary { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.button.primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.button.secondary { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.button.secondary:hover { background: var(--burgundy-pale); }
.button.outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.button.outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.button.ghost { background: transparent; color: var(--white); border-color: transparent; }
.button.ghost:hover { background: rgba(255,255,255,0.12); }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 3rem; align-items: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: var(--blush);
}
.hero-content { max-width: 600px; }
.eyebrow {
  font-family: Inter, sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--burgundy); margin: 0 0 1rem;
}
.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--burgundy-dark);
}
.hero-copy { font-family: Inter, sans-serif; font-size: 1.05rem; color: var(--muted); margin: 0 0 2rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-editorial { display: grid; grid-template-rows: 1fr 1fr; grid-template-columns: 1fr 1fr; gap: 0.75rem; height: 320px; }
.editorial-block { border-radius: var(--radius-lg); }
.block-a { background: var(--burgundy); grid-row: 1 / 3; }
.block-b { background: var(--blush-dark); }
.block-c { background: var(--burgundy-light); }

/* ── PROOF STRIP ── */
.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--burgundy); color: var(--white);
}
.proof-strip > div { padding: 1.25rem 1.75rem; border-right: 1px solid rgba(255,255,255,0.12); }
.proof-strip > div:last-child { border-right: none; }
.proof-strip strong { display: block; font-size: 1.1rem; font-family: Georgia, serif; margin-bottom: 0.2rem; }
.proof-strip span { font-family: Inter, sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.proof-strip em { font-size: 0.72rem; font-style: italic; }

/* ── SECTIONS ── */
.section-heading { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  margin: 0.4rem 0 0.75rem; line-height: 1.2; color: var(--burgundy-dark);
}
.section-heading p { font-family: Inter, sans-serif; color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ── SERVICES ── */
.services {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--cream);
}
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card.featured { border-color: var(--burgundy); border-width: 2px; }
.service-tag {
  display: inline-block; font-family: Inter, sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--burgundy); background: var(--burgundy-pale);
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.featured-tag { background: var(--burgundy); color: var(--white); }
.service-card h3 { margin: 0 0 0.6rem; color: var(--burgundy-dark); font-size: 1.1rem; }
.service-card p { font-family: Inter, sans-serif; color: var(--muted); margin: 0 0 0.75rem; font-size: 0.88rem; }
.service-card ul { margin: 0; padding-left: 1.1rem; }
.service-card li { font-family: Inter, sans-serif; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.25rem; }

/* ── COLLECTIONS ── */
.collections {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--blush);
}
.collections-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto 1.5rem;
}
.collection-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.collection-swatch { height: 160px; }
.swatch-a { background: linear-gradient(135deg, #d4c4a8 0%, #c9b58d 100%); }
.swatch-b { background: linear-gradient(135deg, #6b7c6e 0%, #8fa08a 100%); }
.swatch-c { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%); }
.collection-card h3 { margin: 1.25rem 1.25rem 0.4rem; color: var(--burgundy-dark); font-size: 1.05rem; }
.collection-card p { font-family: Inter, sans-serif; color: var(--muted); margin: 0 1.25rem 0.75rem; font-size: 0.875rem; }
.collection-meta {
  display: block; font-family: Inter, sans-serif; font-size: 0.78rem;
  color: var(--burgundy); font-weight: 600;
  padding: 0.75rem 1.25rem; border-top: 1px solid var(--line);
  background: var(--burgundy-pale);
}
.inventory-note {
  font-family: Inter, sans-serif; font-size: 0.8rem; color: var(--muted);
  max-width: 700px; margin: 0 auto; text-align: center; font-style: italic;
}

/* ── TRUST ── */
.trust {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--cream);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.trust article {
  padding: 1.75rem; background: var(--blush);
  border-radius: var(--radius-lg); border: 1px solid var(--blush-dark);
}
.trust article h3 { margin: 0 0 0.5rem; color: var(--burgundy-dark); font-size: 1rem; }
.trust article p { font-family: Inter, sans-serif; color: var(--muted); margin: 0; font-size: 0.875rem; }

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--burgundy-dark);
  color: var(--white);
}
.about-text { max-width: 560px; }
.about .eyebrow { color: var(--blush-dark); }
.about h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 0.4rem 0 1rem; color: var(--white); }
.about p { font-family: Inter, sans-serif; color: rgba(255,255,255,0.8); margin: 0 0 0.875rem; font-size: 0.95rem; }
.about-numbers {
  display: flex; flex-direction: column; gap: 2rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem;
}
.about-numbers > div { text-align: center; }
.about-numbers strong { display: block; font-size: 2.4rem; font-family: Georgia, serif; color: var(--white); }
.about-numbers span { font-family: Inter, sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.about-numbers em { font-size: 0.7rem; font-style: italic; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--blush-dark);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  text-align: center;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: var(--burgundy-dark); font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 0.875rem; }
.cta-content > p { font-family: Inter, sans-serif; color: var(--muted); margin: 0 0 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1rem; }
.cta-actions .button.primary { background: var(--burgundy); }
.cta-actions .button.ghost { color: var(--burgundy); }
.cta-actions .button.ghost:hover { background: rgba(107,39,55,0.08); }
.cta-note { font-family: Inter, sans-serif; font-size: 0.78rem; color: var(--muted); margin: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.8); }
.footer-top {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 2rem; padding: 2.5rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-brand strong { color: var(--white); font-family: Georgia, serif; font-size: 1rem; }
.footer-brand span { font-family: Inter, sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; }
.footer-nav a { color: rgba(255,255,255,0.65); font-family: Inter, sans-serif; font-size: 0.85rem; }
.footer-nav a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { padding: 1.25rem clamp(1rem, 4vw, 4rem); font-family: Inter, sans-serif; font-size: 0.77rem; color: rgba(255,255,255,0.4); }
.footer-bottom p { margin: 0 0 0.25rem; }

/* ── CONTACT PAGE ── */
.contact-main { padding: 0 clamp(1rem, 4vw, 4rem) 4rem; max-width: 1200px; margin: 0 auto; }
.contact-header { padding: 3rem 0 2rem; max-width: 640px; }
.contact-header .eyebrow { color: var(--burgundy); }
.contact-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0.4rem 0 0.75rem; color: var(--burgundy-dark); font-weight: 700; }
.contact-lede { font-family: Inter, sans-serif; font-size: 1rem; color: var(--muted); margin: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.intake-notice {
  background: var(--burgundy-pale); border: 1px solid var(--blush-dark);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  margin-bottom: 1.5rem; font-family: Inter, sans-serif; font-size: 0.875rem;
}
.intake-notice strong { color: var(--burgundy-dark); margin-right: 0.25rem; }

/* Form */
.intake-form { display: flex; flex-direction: column; gap: 0; }
.form-section {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem; margin-bottom: 1.25rem; background: var(--white);
}
.form-section legend { font-weight: 700; font-size: 0.95rem; color: var(--burgundy-dark); padding: 0 0.5rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1rem; }
.field:first-of-type { margin-top: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.field label { font-family: Inter, sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field-note { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.required { color: var(--burgundy); margin-left: 2px; }
.field input, .field select, .field textarea {
  padding: 0.6rem 0.875rem;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--cream); color: var(--ink);
  transition: border-color 0.15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--burgundy-light); outline: none;
  box-shadow: 0 0 0 3px rgba(107, 39, 55, 0.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-help { font-family: Inter, sans-serif; font-size: 0.78rem; color: var(--muted); margin: 0.25rem 0 0; }
.consent-block { margin: 1rem 0; }
.consent-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; font-family: Inter, sans-serif; font-size: 0.875rem; color: var(--muted); }
.consent-label input[type="checkbox"] { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; accent-color: var(--burgundy); }
.form-actions .button { width: 100%; padding: 0.9rem; font-size: 1rem; }
.form-result { margin-top: 1rem; font-family: Inter, sans-serif; font-size: 0.9rem; }
.form-result.success { color: #166534; background: #dcfce7; padding: 1rem; border-radius: var(--radius); }
.form-result.error { color: #7f1d1d; background: #fee2e2; padding: 1rem; border-radius: var(--radius); }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 88px; }
.sidebar-card { background: var(--blush); border: 1px solid var(--blush-dark); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-card h2 { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--burgundy-dark); font-weight: 700; }
.sidebar-card p { font-family: Inter, sans-serif; margin: 0 0 0.5rem; font-size: 0.85rem; color: var(--muted); }
.sidebar-card ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.sidebar-card li { font-family: Inter, sans-serif; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.3rem; }
.next-steps { padding-left: 1.25rem; margin: 0; }
.next-steps li { font-family: Inter, sans-serif; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }
.next-steps strong { color: var(--ink); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { font-family: Inter, sans-serif; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.4rem; }
.contact-list strong { color: var(--ink); }
.contact-list a { color: var(--burgundy); }

/* ── PRIVACY ── */
.prose-main { padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem); }
.prose-article { max-width: 760px; margin: 0 auto; }
.prose-article .eyebrow { color: var(--burgundy); }
.prose-article h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--burgundy-dark); margin: 0.4rem 0 0.25rem; font-weight: 700; }
.prose-meta { font-family: Inter, sans-serif; font-size: 0.82rem; color: var(--muted); margin: 0 0 2rem; }
.prose-article h2 { font-size: 1.1rem; color: var(--burgundy-dark); margin: 2rem 0 0.5rem; font-weight: 700; }
.prose-article p { font-family: Inter, sans-serif; color: var(--muted); margin: 0 0 0.75rem; line-height: 1.7; }
.prose-article a { color: var(--burgundy); }
.prose-drill-note {
  margin-top: 2rem; padding: 0.875rem 1rem;
  background: var(--blush); border: 1px solid var(--blush-dark);
  border-radius: var(--radius); font-family: Inter, sans-serif;
  font-size: 0.8rem; color: var(--muted); font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-editorial { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-numbers { flex-direction: row; justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav a:not(.nav-cta) { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
}
