/* =====================================================================
   MUSE — Fashion & Editorial Model Portfolio Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the entire look by editing the CSS variables in
   :root below. Swap --accent for your signature tone, adjust the
   neutrals, and update --font-head / --font-body plus the Google Fonts
   <link> in each HTML file. The tall gradient "photo" tiles are pure CSS
   (.shot-* classes) — recolor or replace them freely. Everything cascades.
   ===================================================================== */

:root {
  /* --- Editorial palette (edit these to rebrand) --- */
  --bg:       #f6f3ef;   /* warm paper background                    */
  --ink:      #1a1a1a;   /* near-black text / headings               */
  --accent:   #a08763;   /* taupe / gold signature tone              */
  --accent-d: #8a7350;   /* deeper gold for hovers                   */
  --muted:    #8a857e;   /* muted secondary text                     */
  --surface:  #ffffff;   /* cards / surfaces                         */
  --line:     #e6e0d8;   /* hairlines / borders                      */
  --ink-soft: #4a463f;   /* softer body ink                          */

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

  /* --- Shape & motion --- */
  --radius:    4px;
  --radius-sm: 3px;
  --shadow:    0 18px 50px -22px rgba(26, 26, 26, .25);
  --shadow-lg: 0 30px 80px -28px rgba(26, 26, 26, .35);
  --ease:      .5s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw:   1240px;
  --gutter: 26px;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

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

h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
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-d); }

img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: var(--accent); color: #fff; }

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

.section { padding: 110px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 72px 0; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.8; }
.muted { color: var(--muted); }

.rule {
  width: 56px; height: 1px;
  background: var(--accent);
  margin: 22px 0;
}
.section-head .rule { margin: 22px auto; }

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

.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: 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,.55); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-sm { padding: 11px 22px; font-size: .68rem; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 239, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: .04em;
}
.brand:hover { color: var(--ink); }
.brand .dot { color: var(--accent); font-size: 1.8rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 16px;
  position: relative;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 1px;
  background: var(--accent);
}
.nav-cta { margin-left: 14px; }

/* 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: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; 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); }

/* ---------------------------------------------------------------------
   EDITORIAL "PHOTO" TILES (pure CSS gradients — no image files)
   --------------------------------------------------------------------- */
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #cdbfa9, #8a7350);
  box-shadow: var(--shadow);
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(26,26,26,.35) 100%);
}
.shot-1 { background: linear-gradient(155deg, #d8c9b4 0%, #a08763 55%, #6f5a3c 100%); }
.shot-2 { background: linear-gradient(155deg, #e7ded3 0%, #b9a98f 50%, #7d6c52 100%); }
.shot-3 { background: linear-gradient(160deg, #c2b6a6 0%, #6e6354 60%, #2f2a22 100%); }
.shot-4 { background: linear-gradient(150deg, #efe7da 0%, #c9b393 55%, #8a7350 100%); }
.shot-5 { background: linear-gradient(165deg, #b7a589 0%, #7a6a4f 55%, #36301f 100%); }
.shot-6 { background: linear-gradient(150deg, #ded2c0 0%, #9c8c74 55%, #59503e 100%); }
.shot-7 { background: linear-gradient(160deg, #c8b9a3 0%, #8f7c5e 50%, #4d4231 100%); }
.shot-8 { background: linear-gradient(150deg, #e3d8c8 0%, #a89071 55%, #6b563a 100%); }
.shot-9 { background: linear-gradient(165deg, #cbbfac 0%, #7f7159 55%, #322c20 100%); }
.shot-10 { background: linear-gradient(155deg, #ece2d4 0%, #c0aa8a 50%, #8a7350 100%); }
.shot-11 { background: linear-gradient(160deg, #bcae96 0%, #756647 55%, #2c281d 100%); }
.shot-12 { background: linear-gradient(150deg, #d6c8b3 0%, #9a8767 55%, #5c4d34 100%); }

/* Caption that floats over a shot */
.shot-cap {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 2;
  color: #fff;
}
.shot-cap .cat {
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  display: block;
  margin-bottom: 4px;
}
.shot-cap .ttl {
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1.05;
}

/* ---------------------------------------------------------------------
   HERO (home) — editorial split
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 0; }
.hero h1 .ital { font-style: italic; color: var(--accent); }
.hero .role {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 26px 0 22px;
}
.hero .lead { max-width: 480px; margin-bottom: 34px; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-shot {
  aspect-ratio: 3 / 4;
  width: 100%;
}
.hero-tag {
  position: absolute;
  left: -22px; bottom: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-tag strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--ink);
  line-height: 1;
}
.hero-tag span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------------
   BRAND / AGENCY STRIP
   --------------------------------------------------------------------- */
.brands { padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands p {
  text-align: center; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 26px;
}
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 52px;
}
.brand-strip span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .08em;
  color: var(--ink);
  opacity: .55;
  transition: opacity var(--ease), color var(--ease);
}
.brand-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   PORTFOLIO GALLERY GRID
   --------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery--home { grid-template-columns: repeat(3, 1fr); }
.gallery .shot {
  aspect-ratio: 3 / 4;
  display: block;
  transition: transform var(--ease);
}
.gallery .shot:hover { transform: translateY(-6px); }
.gallery .shot:hover .shot-cap .ttl { color: #fff; }
/* Editorial rhythm — make some tiles taller */
.gallery .shot.tall { grid-row: span 1; aspect-ratio: 3 / 4.6; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 48px;
}
.filter-chip {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------------------------------------------------------------------
   ABOUT / SPLIT SECTIONS
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
}
.split-media .shot { aspect-ratio: 3 / 4; }

.about-shot { aspect-ratio: 3 / 4; max-width: 460px; }

/* Measurements / stats card */
.spec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.spec-card h3 {
  padding: 26px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  letter-spacing: .02em;
}
.spec-list { display: grid; grid-template-columns: 1fr 1fr; }
.spec-list div {
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.spec-list div:nth-child(2n) { border-right: none; }
.spec-list span {
  display: block;
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.spec-list strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
}

/* Skills bars */
.skills { display: grid; gap: 26px; margin-top: 30px; }
.skill .skill-top { display: flex; justify-content: space-between; margin-bottom: 10px; }
.skill .skill-top b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); font-weight: 500; }
.skill .skill-top span { font-size: .78rem; color: var(--muted); letter-spacing: .1em; }
.skill .track { height: 2px; background: var(--line); position: relative; }
.skill .track i {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent);
  display: block;
}

/* ---------------------------------------------------------------------
   STATS ROW
   --------------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}
.stats-row .stat {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid var(--line);
}
.stats-row .stat:last-child { border-right: none; }
.stats-row .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stats-row .stat span {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}

/* ---------------------------------------------------------------------
   CTA BAND (dark editorial)
   --------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 10%, rgba(160,135,99,.35), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--accent); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-banner .eyebrow { margin-bottom: 18px; }
.page-banner h1 { margin-bottom: 18px; }
.page-banner p { max-width: 620px; margin: 0 auto; color: var(--ink-soft); }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ---------------------------------------------------------------------
   EXPERIENCE — timeline + lists
   --------------------------------------------------------------------- */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 44px 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute; left: 3px; top: 7px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}
.tl-item .yr { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.tl-item h3 { font-size: 1.5rem; margin: 6px 0 4px; }
.tl-item .place { font-size: .82rem; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; }
.tl-item p { margin-bottom: 0; }

/* Logo tiles (brands worked with) */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.logo-grid div {
  padding: 38px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--ink);
  opacity: .7;
  background: var(--surface);
  transition: opacity var(--ease), color var(--ease);
}
.logo-grid div:hover { opacity: 1; color: var(--accent); }
.logo-grid div:nth-child(4n) { border-right: none; }

/* Publications list */
.pub-list { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 860px; margin: 0 auto; }
.pub-list div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.pub-list .pub-name { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); }
.pub-list .pub-meta { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-align: right; flex: 0 0 auto; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .18em;
  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);
  box-shadow: 0 0 0 3px rgba(160,135,99,.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #b4471f; font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4471f; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #f0ece3;
  border: 1px solid var(--accent);
  color: var(--ink);
  font-size: .92rem;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 22px;
}
.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: 44px; height: 44px; flex: 0 0 auto;
  border-radius: var(--radius-sm); background: var(--bg);
  display: grid; place-items: center; font-size: 1.2rem;
  border: 1px solid var(--line);
}
.info-row b { font-family: var(--font-head); font-size: 1.25rem; font-weight: 500; color: var(--ink); display: block; }
.info-row span { font-size: .92rem; color: var(--ink-soft); }
.info-row a { color: var(--accent); }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--ink);
  font-size: .92rem;
  transition: all var(--ease);
}
.social-row a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .94rem; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col a { display: block; color: rgba(255,255,255,.62); padding: 6px 0; font-size: .92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.footer-social a:hover { background: var(--accent); color: #fff; border-color: 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,.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; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .gallery, .gallery--home { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid div:nth-child(4n) { border-right: 1px solid var(--line); }
  .logo-grid div:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 24px;
    transform: translateY(-14px);
    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: 14px 8px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; }

  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; }
  .hero-tag { left: auto; right: 20px; }

  .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .about-shot, .split-media .shot { max-width: 460px; margin: 0 auto; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat:nth-child(2n) { border-right: none; }
  .stats-row .stat:nth-child(1), .stats-row .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .cta-band { padding: 56px 28px; }
  .pub-list div { flex-direction: column; gap: 4px; }
  .pub-list .pub-meta { text-align: left; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .gallery, .gallery--home { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .spec-list div { border-right: none; }
  .logo-grid { grid-template-columns: 1fr; }
  .logo-grid div { border-right: none; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stats-row .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}
