/* =====================================================================
   DRAPE — Fashion Stylist / Creative Director Portfolio Template
   Plain HTML5 + CSS3. No frameworks. No build step.
   ---------------------------------------------------------------------
   Warm editorial, magazine-grade aesthetic: cream/beige surfaces,
   near-black type, restrained elegance, tall editorial image tiles.
   Headings in Cormorant (elegant serif), body in Inter.

   REBRAND TIP: edit the CSS variables in :root below. Swap --accent,
   --bg, --surface for your palette, and update --font-head / --font-body
   plus the Google Fonts <link> in each HTML file. Everything cascades.
   ===================================================================== */

:root {
  /* --- Palette (edit these to rebrand) --- */
  --bg:        #efe9e1;   /* warm cream page background    */
  --surface:   #f7f3ec;   /* lighter cream cards / panels  */
  --ink:       #16130f;   /* near-black text / headings    */
  --accent:    #9a6a4b;   /* warm terracotta / clay accent */
  --accent-dark: #7c5239; /* darker accent for hovers      */
  --muted:     #7a7066;   /* secondary warm-grey text      */
  --line:      #ddd3c5;   /* borders / dividers            */

  /* --- Fonts --- */
  --font-head: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    4px;
  --radius-sm: 3px;
  --shadow:    0 1px 2px rgba(22,19,15,.04), 0 12px 36px rgba(22,19,15,.08);
  --shadow-lg: 0 30px 70px rgba(22,19,15,.18);
  --ease:      .5s cubic-bezier(.16,.84,.44,1);

  /* --- Layout --- */
  --maxw: 1240px;
  --gutter: 30px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.02;
  margin: 0 0 .4em;
  font-weight: 500;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
h3 { font-size: 1.55rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-dark); }

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

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

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--ink); color: var(--bg); }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: 1480px; }

.section { padding: 120px 0; }
.section--soft { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding: 80px 0; }

.section-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; line-height: 1.65; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-light { background: var(--bg); color: var(--ink); border-color: transparent; }
.btn-light:hover { background: #fff; color: var(--ink); }

.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 233, 225, .85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: .02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 14px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home) — full-bleed editorial
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,19,15,.28) 0%, rgba(22,19,15,.05) 32%, rgba(22,19,15,.72) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding: 0 0 70px; }
.hero-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.hero-name .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(154,106,75,.4); }
.hero h1 { color: #fff; margin-bottom: 22px; font-weight: 500; max-width: 14ch; }
.hero h1 .it { font-style: italic; color: #fff; }
.hero .lead { color: rgba(255,255,255,.88); margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary { background: #fff; color: var(--ink); }
.hero-actions .btn-primary:hover { background: var(--accent); color: #fff; }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 70px; z-index: 1;
  font-family: var(--font-body); font-size: .68rem; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  writing-mode: vertical-rl;
}

/* ---------------------------------------------------------------------
   MARQUEE / CLIENT STRIP (text)
   --------------------------------------------------------------------- */
.clients { padding: 50px 0; border-bottom: 1px solid var(--line); }
.clients p {
  text-align: center; font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 56px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  opacity: .5;
  letter-spacing: .02em;
  transition: opacity var(--ease);
}
.logo-strip span:hover { opacity: 1; }

/* ---------------------------------------------------------------------
   SECTION HEADER ROW (title + link)
   --------------------------------------------------------------------- */
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 52px; flex-wrap: wrap;
}
.head-row .lead { margin: 0; }
.text-link {
  font-family: var(--font-body); font-weight: 600; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
}
.text-link span { transition: transform var(--ease); }
.text-link:hover { color: var(--accent); }
.text-link:hover span { transform: translateX(6px); }

/* ---------------------------------------------------------------------
   WORK / LOOKBOOK GRID + CARDS (tall editorial image tiles)
   --------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  display: block;
  color: var(--ink);
  transition: transform var(--ease);
}
.work-card:hover { color: var(--ink); }
.work-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--line);
}
.work-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.16,.84,.44,1);
}
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-num {
  position: absolute; top: 16px; left: 18px; z-index: 1;
  font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  letter-spacing: .14em; color: rgba(255,255,255,.92);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.work-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.work-info h3 { font-size: 1.7rem; margin-bottom: 2px; }
.work-cat {
  font-family: var(--font-body); font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0;
}
.work-arrow {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem; color: var(--ink);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.work-card:hover .work-arrow { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: rotate(-45deg); }

/* Featured editorial grid (home) — staggered heights */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.featured-grid .work-card:nth-child(odd) .work-thumb { aspect-ratio: 4 / 5; }
.featured-grid .work-card:nth-child(even) .work-thumb { aspect-ratio: 3 / 4; }

/* Work filters (work.html) */
.work-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px;
}
.filter-chip {
  font-family: var(--font-body); font-weight: 500; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 999px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.work-card.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   SPLIT (image + text)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-lg);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-tag {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--font-body); font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: rgba(22,19,15,.55);
  padding: 8px 14px; backdrop-filter: blur(4px);
}
.about-list { margin-top: 28px; display: grid; gap: 15px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.about-list li .tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(154,106,75,.14); color: var(--accent);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700; margin-top: 4px;
}

/* ---------------------------------------------------------------------
   SERVICE TEASER / GRID
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.skill-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.skill-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.skill-card .skill-icon { font-size: 1.7rem; display: block; margin-bottom: 20px; }
.skill-card h3 { margin-bottom: 10px; }
.skill-card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }

/* Tool tags */
.tool-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-tags li {
  font-family: var(--font-body); font-weight: 500; font-size: .8rem;
  letter-spacing: .06em;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); padding: 9px 18px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band { background: var(--ink); color: #fff; }
.stats-band .eyebrow { color: #fff; }
.stats-band .eyebrow::before { background: var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 500;
  display: block; line-height: 1; letter-spacing: -.01em;
  color: #fff;
}
.stat span { color: rgba(255,255,255,.62); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; }
.stat .accent { color: var(--accent); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card .mark { font-family: var(--font-head); font-size: 4rem; line-height: .5; color: var(--accent); display: block; margin-bottom: 18px; }
.quote-card blockquote {
  margin: 0 0 26px;
  font-family: var(--font-head);
  font-size: 1.4rem; color: var(--ink);
  font-weight: 500; line-height: 1.4;
}
.quote-author { display: flex; align-items: center; gap: 15px; }
.quote-author .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.quote-author b { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: .95rem; }
.quote-author span { font-size: .82rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 84px 56px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; top: -40%; right: -8%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(154,106,75,.5), transparent 68%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.74); max-width: 580px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  padding: 96px 0 78px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 26px;
}
.breadcrumb a { color: var(--ink); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 10px; color: var(--line); }
.page-banner h1 { margin-bottom: 20px; }
.page-banner .lead { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   ABOUT PAGE — timeline + values
   --------------------------------------------------------------------- */
.timeline { position: relative; margin-top: 10px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.timeline-item {
  position: relative; padding-left: 46px; padding-bottom: 44px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent);
}
.timeline-period {
  font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.timeline-item h3 { font-size: 1.5rem; margin-bottom: 2px; }
.timeline-org { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .9rem; margin-bottom: 10px; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform var(--ease), border-color var(--ease);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.value-card .v-num {
  font-family: var(--font-head); font-weight: 600; font-size: 1.6rem;
  color: var(--accent); display: block; margin-bottom: 14px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }

/* ---------------------------------------------------------------------
   SERVICES PAGE
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 1px solid var(--line); }
.service-block .s-num {
  font-family: var(--font-head); font-weight: 500; font-size: 2rem;
  color: var(--accent);
}
.service-block h3 { font-size: 2rem; margin-bottom: 12px; }
.service-block p { color: var(--muted); margin-bottom: 18px; max-width: 640px; }
.deliverables { display: flex; flex-wrap: wrap; gap: 10px; }
.deliverables li {
  font-size: .76rem; font-family: var(--font-body); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); padding: 7px 15px; border-radius: 999px;
}
.service-block .s-price { font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 1.5rem; white-space: nowrap; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.step .num {
  font-family: var(--font-head); font-weight: 500; font-size: 3rem;
  color: var(--accent); letter-spacing: -.02em; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: .96rem; color: var(--muted); }

/* Packages */
.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 38px;
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.pkg.featured h3, .pkg.featured .pkg-price { color: #fff; }
.pkg.featured .pkg-feat li { color: rgba(255,255,255,.82); }
.pkg.featured .pkg-feat li::before { color: var(--accent); }
.pkg .pkg-tag {
  font-family: var(--font-body); font-weight: 600; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block;
}
.pkg h3 { font-size: 1.7rem; margin-bottom: 6px; }
.pkg-price { font-family: var(--font-head); font-weight: 500; font-size: 3rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 4px; }
.pkg-price span { font-size: .9rem; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.pkg-sub { color: var(--muted); font-size: .96rem; margin-bottom: 24px; }
.pkg-feat { display: grid; gap: 13px; margin-bottom: 30px; }
.pkg-feat li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink); }
.pkg-feat li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.pkg .btn { width: 100%; justify-content: center; margin-top: auto; }

/* FAQ */
.faq { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 500; font-size: 1.45rem; color: var(--ink);
  padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-q .ic { flex: 0 0 auto; font-size: 1.6rem; color: var(--accent); transition: transform var(--ease); line-height: 1; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-a p { color: var(--muted); padding: 0 0 28px; margin: 0; max-width: 700px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { display: grid; gap: 20px; margin-top: 30px; }
.contact-details li { display: flex; gap: 15px; align-items: flex-start; }
.contact-details .ic {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.1rem;
}
.contact-details b { font-family: var(--font-body); font-weight: 600; color: var(--ink); display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-details span { font-size: .98rem; color: var(--muted); }
.contact-details a { color: var(--muted); }
.contact-details a:hover { color: var(--accent); }
.contact-socials { display: flex; gap: 12px; margin-top: 32px; }
.contact-socials a {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--ink); font-size: 1rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.contact-socials a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(154,106,75,.14);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .error-msg { color: #b23a3a; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b23a3a; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 8px; }
.form-status {
  display: none; margin-top: 18px; padding: 15px 18px; border-radius: var(--radius-sm);
  background: rgba(154,106,75,.1); border: 1px solid rgba(154,106,75,.32);
  color: var(--accent-dark); font-weight: 500;
}
.form-status.show { display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 88px 0 30px; }
.footer-cta { text-align: center; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 48px; }
.footer-cta h2 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 26px; }
.footer-cta .btn { font-size: .8rem; padding: 18px 38px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand .logo-mark { background: var(--accent); }
.footer-about p { font-size: .96rem; color: rgba(255,255,255,.6); max-width: 320px; }
.footer-col h4 { font-family: var(--font-body); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,.62); padding: 6px 0; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1rem; color: #fff;
  transition: background var(--ease);
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .84rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .work-thumb img, .work-card:hover .work-thumb img { transition: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 84px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 84px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 16px var(--gutter) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: .85rem; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid, .featured-grid { grid-template-columns: 1fr; gap: 36px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .service-block .s-price { white-space: normal; }
  .cta-band { padding: 60px 30px; }
  .form-card { padding: 32px 24px; }
  .hero { min-height: 80vh; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .head-row { align-items: flex-start; }
}
