/* =====================================================================
   ATELIER MODE — Fashion Design House Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the house look by editing the CSS variables in
   :root below. Swap --accent for your signature color, adjust --ink /
   --bg / --surface to match, and update --font-head / --font-body plus
   the Google Fonts <link> in each HTML file. Everything else cascades.
   Visuals are pure CSS gradients, inline SVG, and Unicode — no images.
   ===================================================================== */

:root {
  /* --- House palette (edit these to rebrand) --- */
  --bg:        #ffffff;   /* clean white page background               */
  --ink:       #111111;   /* near-black for headings & text            */
  --accent:    #b08d57;   /* gold accent for highlights & links        */
  --accent-2:  #8f6f3e;   /* deeper gold for hovers                    */
  --muted:     #8a8a8a;   /* muted secondary text                      */
  --surface:   #f6f5f3;   /* soft card / panel surface                 */
  --line:      #e8e6e2;   /* hairline borders / dividers               */

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

  /* --- Shape & motion --- */
  --radius:    4px;
  --radius-sm: 3px;
  --shadow:    0 14px 40px rgba(17, 17, 17, .06);
  --shadow-lg: 0 30px 70px rgba(17, 17, 17, .12);
  --ease:      .45s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1220px;
  --gutter: 28px;
}

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

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1rem; }

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

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

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

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

.section { padding: 108px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 76px 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: 10px;
  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.16rem; color: var(--muted); line-height: 1.7; }

.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 34px;
  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-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--accent); color: #fff; }

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

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

.btn-gold {
  background: var(--accent);
  color: #fff;
}
.btn-gold:hover { background: var(--accent-2); color: #fff; }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 0;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  display: block;
  width: 16px; height: 1px;
  background: var(--accent);
  margin: 4px auto 0;
}

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 13px 26px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  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) — editorial, full-width with lookbook tiles
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { max-width: 500px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* Hero lookbook tiles — pure CSS gradient panels (no image files) */
.hero-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lookbook-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 22px;
  color: #fff;
}
.lookbook-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.lookbook-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.4));
}
.tile-tall { grid-row: span 2; aspect-ratio: 3 / 5; }
.tile-short { aspect-ratio: 4 / 4; }
.lg-1 { background: linear-gradient(150deg, #d9cbb6, #b08d57 70%, #8f6f3e); }
.lg-2 { background: linear-gradient(150deg, #2b2b2b, #111); }
.lg-3 { background: linear-gradient(150deg, #efece6, #cdbfa6); }
.lg-4 { background: linear-gradient(150deg, #3a342b, #1c1814); }
.lg-5 { background: linear-gradient(150deg, #c9b489, #9a7c4c); }

/* ---------------------------------------------------------------------
   HOUSE / CLIENT STRIP (press logos)
   --------------------------------------------------------------------- */
.trusted { padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trusted p { text-align: center; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 56px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--ink);
  opacity: .45;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.card .icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.card .num-mark {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.card-link:hover { color: var(--accent); }
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(5px); }

/* Feature list */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 5px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section (visual block + content) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius);
  min-height: 480px;
  background: linear-gradient(155deg, #d9cbb6, #b08d57 65%, #8f6f3e);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 40px;
}
.split-media::after {
  content: "";
  position: absolute;
  width: 64%; aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  top: -18%; right: -14%;
}
.split-media--dark { background: linear-gradient(155deg, #2b2b2b, #111); }

/* ---------------------------------------------------------------------
   LATEST COLLECTION FEATURE
   --------------------------------------------------------------------- */
.feature-collection {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.feature-collection .fc-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #1c1814, #3a342b 50%, #b08d57);
  display: grid;
  place-items: center;
  color: #fff;
}
.feature-collection .fc-visual .fc-glyph {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: -.02em;
}
.feature-collection .fc-visual .fc-tag {
  position: absolute;
  top: 22px; left: 22px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 16px;
}

/* ---------------------------------------------------------------------
   COLLECTIONS GRID
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-bar button {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  padding: 11px 22px;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: var(--ink); }
.filter-bar button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.collection-card {
  cursor: pointer;
  position: relative;
  transition: transform var(--ease);
}
.collection-card:hover { transform: translateY(-6px); }
.coll-thumb {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
}
.coll-thumb .coll-glyph {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 3rem;
  color: rgba(255,255,255,.95);
}
.coll-thumb .season {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 13px;
}
.coll-thumb .overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,.32);
  opacity: 0;
  transition: opacity var(--ease);
}
.collection-card:hover .overlay { opacity: 1; }
.coll-thumb .overlay .view {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 24px;
}
.coll-g1 { background: linear-gradient(155deg, #d9cbb6, #b08d57); }
.coll-g2 { background: linear-gradient(155deg, #2b2b2b, #111); }
.coll-g3 { background: linear-gradient(155deg, #efece6, #cdbfa6); }
.coll-g4 { background: linear-gradient(155deg, #3a342b, #1c1814); }
.coll-g5 { background: linear-gradient(155deg, #c9b489, #9a7c4c); }
.coll-g6 { background: linear-gradient(155deg, #cbb9a0, #8a745a); }
.coll-g7 { background: linear-gradient(155deg, #45403a, #1c1916); }
.coll-g8 { background: linear-gradient(155deg, #e6dcc9, #b08d57); }
.coll-g9 { background: linear-gradient(155deg, #1c1814, #4a4036); }
.coll-meta {
  padding: 20px 4px 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.coll-meta h3 { font-size: 1.5rem; margin: 0; }
.coll-meta .cat {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------------------------------------------------------------------
   STATS BAND (dark)
   --------------------------------------------------------------------- */
.stats-band {
  background: var(--ink);
  color: var(--bg);
}
.stats-band .section-head h2 { color: #fff; }
.stats-band .eyebrow { color: var(--accent); }
.stats-band .section-head .lead { color: rgba(255,255,255,.66); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
}
.stat strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  display: block;
  line-height: 1;
  color: var(--accent);
}
.stat span {
  color: rgba(255,255,255,.7);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}

/* ---------------------------------------------------------------------
   PRESS STRIP / QUOTES
   --------------------------------------------------------------------- */
.press-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.press-item {
  padding: 0 40px;
  border-left: 1px solid var(--line);
}
.press-item:first-child { padding-left: 0; border-left: none; }
.press-item blockquote {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
}
.press-item cite {
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
}
.quote-card .stars { color: var(--accent); margin-bottom: 16px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: 1.3rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  background: linear-gradient(135deg, #c9b489, var(--accent));
}
.quote-author b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.quote-author span { font-size: .82rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   NEWSLETTER
   --------------------------------------------------------------------- */
.newsletter {
  background: var(--surface);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  transition: border-color var(--ease);
}
.newsletter-form input:focus { outline: none; border-color: var(--ink); }
.newsletter-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.newsletter-status {
  display: none;
  margin-top: 16px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: .92rem;
}
.newsletter-status.show { display: block; }

/* ---------------------------------------------------------------------
   CTA BAND (dark)
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 14%, rgba(176,141,87,.4), transparent 60%),
    var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 84px 56px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background: var(--surface);
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 16px; }
.page-banner p { max-width: 600px; color: var(--muted); font-size: 1.12rem; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 10px; }

/* ---------------------------------------------------------------------
   SERVICES / ATELIER PAGE — detailed blocks
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 30px;
  padding: 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-block .s-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.8rem;
}
.service-block h3 { font-size: 1.7rem; margin-bottom: 10px; }
.service-block p { color: var(--muted); }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.deliverables li {
  font-size: .76rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.step .num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   ABOUT — designer bio + values
   --------------------------------------------------------------------- */
.bio-card { text-align: center; }
.bio-card .bio-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
}
.bio-card .bp1 { background: linear-gradient(135deg, #c9b489, var(--accent)); }
.bio-card .bp2 { background: linear-gradient(135deg, #56504a, #2a2722); }
.bio-card .bp3 { background: linear-gradient(135deg, #d9cbb6, #9a7c4c); }
.bio-card .bp4 { background: linear-gradient(135deg, #3a342b, #1c1814); }
.bio-card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.bio-card .role { color: var(--accent); font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.bio-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: start; }
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .08em;
  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: 0;
  background: var(--surface);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176,141,87,.16);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .error-msg { color: #b3261e; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-status {
  display: none;
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  background: #f4efe6;
  border: 1px solid var(--accent);
  color: var(--accent-2);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%; background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.2rem;
}
.info-row b { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }
.info-row a { color: var(--accent); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 260px;
  background:
    linear-gradient(rgba(176,141,87,.05), rgba(176,141,87,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 46px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 84px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 54px;
}
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand .logo-mark { border-color: rgba(255,255,255,.5); background: transparent; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600;
  margin-bottom: 20px;
}
.footer-col a { display: block; color: rgba(255,255,255,.6); padding: 6px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.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;
}
.social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.66); }

/* ---------------------------------------------------------------------
   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: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-tiles { max-width: 480px; }
  .feature-collection { grid-template-columns: 1fr; gap: 44px; }
  .feature-collection .fc-visual { max-width: 460px; }
  .press-strip { grid-template-columns: 1fr; gap: 32px; }
  .press-item { padding: 0 0 28px; border-left: none; border-bottom: 1px solid var(--line); }
  .press-item:last-child { border-bottom: none; padding-bottom: 0; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 82px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    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 16px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 60px 30px; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
