/* Velveteen Dreads — handmade synthetic dreadlock extensions.
   Palette: deep aubergine + dusty rose + warm cream. Boho, earthy,
   characterful. Deliberately unlike the sibling sites. */

:root {
  --bg: #faf6f0;           /* warm cream */
  --bg-soft: #f2e8e0;      /* toasted linen */
  --ink: #2a1f2e;          /* deep aubergine-black */
  --muted: #7a6470;        /* dusty mauve-grey */
  --primary: #c98a8a;      /* dusty rose */
  --accent: #3b2b3f;       /* aubergine */
  --line: #e8d8d0;
  --border: #e8d8d0;
  --card: #ffffff;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  line-height: 1.18;
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.01em;
}

a { color: var(--primary); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
}

/* ---- Header ---- */
header {
  background: rgba(250,246,240,.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.38rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.brand-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon ellipse { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: var(--accent); transition: color 0.15s ease; }
.nav-links { display: flex; gap: 26px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }

/* ---- Hero ---- */
.hero {
  background: radial-gradient(110% 70% at 50% 0%, var(--bg-soft), var(--bg) 70%);
  text-align: center;
  padding: 94px 26px 72px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 1px;
  background: var(--primary);
  opacity: 0.55;
}
.hero h1 {
  font-size: 3rem;
  max-width: 18ch;
  margin: 0 auto 22px;
  font-weight: 500;
  color: var(--accent);
}
.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.hero .btn { margin: 0 5px 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  transition: background .15s, transform .15s;
}
.btn:hover { background: #b07070; transform: translateY(-1px); }
.btn-soft {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-soft:hover { background: var(--accent); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ---- Sections ---- */
section { padding: 68px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 46px; }
section h2 { font-size: 2.05rem; margin-bottom: 14px; }
section p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.reverse .ph { order: 2; }
.ph { position: relative; border-radius: 4px; overflow: hidden; box-shadow: 0 24px 48px rgba(42,31,46,.18); }
.ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Card grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .16s, box-shadow .16s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(42,31,46,.12);
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 24px 26px 28px; }
.pill {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
  padding: 4px 13px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 9px; color: var(--accent); }
.card p { font-size: 0.94rem; margin: 0; color: var(--muted); }

/* ---- Prose ---- */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { font-size: 1.8rem; margin: 48px 0 12px; color: var(--accent); }
.prose h3 { font-size: 1.26rem; margin: 34px 0 8px; color: var(--accent); }
.prose p, .prose li { color: #4d404e; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: 3px;
  padding: 20px 24px;
  margin: 30px 0;
}
.note p { margin: 0; color: var(--ink); }
.pull {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 1.48rem;
  line-height: 1.52;
  color: var(--primary);
  text-align: center;
  max-width: 34ch;
  margin: 44px auto;
}

/* ---- Steps/numbered layout ---- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 0 20px 70px;
  border-bottom: 1px solid var(--line);
  color: #4d404e;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.05rem;
  border-radius: 50%;
  font-weight: 500;
}
.steps li strong { color: var(--accent); display: block; margin-bottom: 4px; }

/* ---- CTA ---- */
.cta { background: var(--accent); color: #e8d8f0; text-align: center; padding: 74px 26px; }
.cta h2 { font-size: 2.05rem; margin-bottom: 12px; color: #fff; }
.cta p { color: #c9b8ce; max-width: 52ch; margin: 0 auto 26px; }
.cta .btn { background: var(--primary); color: #fff; }
.cta .btn:hover { background: #b07070; }
.cta .btn-outline { background: transparent; color: #e8d8f0; border-color: rgba(232,216,240,.5); }
.cta .btn-outline:hover { background: rgba(232,216,240,.15); }

/* ---- Footer ---- */
footer {
  background: var(--accent);
  color: #c4b4c8;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(201,138,138,.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: left;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,138,138,.2);
  max-width: var(--maxw);
  margin: 0 auto 28px;
  padding: 0 26px 28px;
}
.footer-grid h4 {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid p,
.footer-grid a {
  font-size: 0.9rem;
  color: #b4a4b8;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.55;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
}
.footer-grid a:hover { color: var(--primary); }
.footer-meta {
  font-size: 0.8rem;
  color: #8a7a90;
  text-align: center;
  margin: 0;
  padding: 0 26px;
  font-family: "Avenir Next", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
}

/* LOGO:start */
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.38rem; font-weight: 500; color: var(--accent); letter-spacing: 0.02em; text-decoration: none; }
.brand-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon ellipse { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: var(--accent); transition: color 0.15s ease; }
/* LOGO:end */

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .ph { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .grid-3 { grid-template-columns: 1fr; }
  nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero h1 { font-size: 1.9rem; }
  .steps li { padding-left: 54px; }
}
