/* ============================================================
   VIRGINIA CATHEY COLLECTIONS — style.css
   Root stylesheet. Shared by every page on the site.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Cinzel:wght@400;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:          #100a0f;
  --bg2:         #1c1020;
  --bg3:         #251530;
  --surface:     #2a1830;

  --gold:        #d4af60;
  --gold-lt:     #f0d080;
  --purple:      #9b59d0;
  --purple-lt:   #c084f0;
  --purple-dk:   #5a2880;
  --wine:        #8b3060;
  --cream:       #fdf0e0;
  --text:        #e8d8f0;
  --muted:       #9880b0;

  --border:      rgba(155, 89, 208, 0.22);
  --border-gold: rgba(212, 175, 96, 0.22);

  --f-display: 'Cinzel', serif;
  --f-heading: 'Cormorant Garamond', serif;
  --f-body:    'DM Sans', sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}


/* Page load-in */
body { animation: pageIn 0.45s ease forwards; }
@keyframes pageIn { from { opacity:0; } to { opacity:1; } }
/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  padding: 22px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border .4s var(--ease);
}
.nav.scrolled {
  background: rgba(16, 10, 15, 0.96);
  backdrop-filter: blur(16px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  grid-column: 1;
  display: flex; align-items: center; gap: 10px; min-width: 80px;
}
.nav-logo img {
  height: 44px; width: auto;
  filter: drop-shadow(0 0 8px rgba(155,89,208,.35));
  background: rgba(16,10,15,.7);
  border-radius: 4px;
  padding: 3px;
}
.nav-links { display: flex; gap: 34px; align-items: center; justify-content: center; grid-column: 2; padding: 0 20px; }
.nav-links a {
  font-family: var(--f-body);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); position: relative;
  transition: color .3s var(--ease);
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width .3s var(--ease);
}
.nav-links a:hover         { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active        { color: var(--gold); }

/* ── Nav Social Icons ────────────────────────────────────── */
.nav-socials {
  display: flex; align-items: center; gap: 14px; justify-content: flex-end;
  grid-column: 3;
  padding-left: 22px;
  border-left: 1px solid var(--border);
}
.nav-socials a {
  color: var(--cream); transition: color .3s var(--ease);
  display: flex; align-items: center; line-height: 1;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.9));
}
.nav-socials a:hover { color: var(--purple-lt); }
.nav-socials svg { width: 17px; height: 17px; fill: currentColor; }
.nav-socials a { color: var(--text); }

/* hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px; width: 28px;
  grid-column: 4;
}
.burger span {
  display: block; height: 1px; background: var(--gold);
  transition: .35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(16, 10, 15, .97);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--f-heading); font-size: 2.8rem; color: var(--cream);
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--purple-lt); }
.mobile-menu .mm-socials {
  display: flex; gap: 24px; margin-top: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.mobile-menu .mm-socials a {
  font-size: 1rem; color: var(--cream);
}
.mobile-menu .mm-socials svg { width: 26px; height: 26px; fill: currentColor; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 580px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,10,15,.5) 0%,
    rgba(16,10,15,.4)  35%,
    rgba(16,10,15,.68)  75%,
    rgba(16,10,15,.95) 100%
  );
}
.hero-body {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--f-display);
  font-size: clamp(.55rem, 1vw, .72rem); letter-spacing: .38em;
  text-transform: uppercase; color: #e0b0ff; margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.95), 0 0 30px rgba(192,132,240,.5);
}
.hero-title {
  font-family: var(--f-heading);
  font-size: clamp(3.8rem, 10vw, 9rem);
  font-weight: 300; color: var(--cream); line-height: .95; margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.95), 0 4px 48px rgba(0,0,0,.7);
}
.hero-rule {
  width: 72px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple-lt), transparent);
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.8));
}
.hero-sub {
  font-size: clamp(.75rem, 1.4vw, .92rem);
  letter-spacing: .2em; text-transform: uppercase; color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,.9), 0 0 30px rgba(0,0,0,.7);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--f-display); font-size: .5rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--purple-lt);
}
.hero-scroll svg { width: 18px; height: 18px; color: var(--gold); opacity: .7; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Layout Helpers ──────────────────────────────────────── */
.wrap   { max-width: 1280px; margin: 0 auto; }
.sec    { padding: 100px 60px; }
.sec-sm { padding: 60px 60px; }
.label  {
  font-family: var(--f-display);
  font-size: .6rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--purple-lt); margin-bottom: 16px;
}
.rule-gold   { width: 56px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 18px 0; }
.rule-purple { width: 56px; height: 1px; background: linear-gradient(90deg,transparent,var(--purple),transparent); margin: 18px 0; }

/* headings */
.h1 { font-family: var(--f-heading); font-weight: 300; line-height: 1.1; color: var(--cream); }
.h2 { font-family: var(--f-heading); font-weight: 300; line-height: 1.15; color: var(--cream); }
.italic { font-style: italic; }
p.body  { font-size: .94rem; color: var(--text); line-height: 1.85; font-weight: 300; }
p.body em { font-style: italic; color: var(--cream); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 34px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  transform: translateX(-100%); transition: transform .35s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover         { transform: translateY(-2px); }
.btn span          { position: relative; z-index: 1; }

.btn-gold         { background: var(--gold); color: #100a0f; font-weight: 500; }
.btn-gold::before { background: var(--gold-lt); }
.btn-gold:hover   { box-shadow: 0 0 30px rgba(212,175,96,.45); }

.btn-purple         { background: var(--purple); color: var(--cream); }
.btn-purple::before { background: var(--purple-lt); }
.btn-purple:hover   { box-shadow: 0 0 30px rgba(155,89,208,.5); }

.btn-outline {
  border: 1px solid var(--purple); color: var(--purple-lt); background: transparent;
}
.btn-outline::before { background: rgba(155,89,208,.15); }
.btn-outline:hover   { border-color: var(--purple-lt); color: var(--cream); }

/* ── Stats Row ───────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--border);  gap: 1px;
}
.stat {
  background: var(--bg2); padding: 52px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.stat::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-dk), var(--purple), transparent);
  opacity: 0; transition: opacity .4s;
}
.stat:hover::after { opacity: 1; }
.stat-num {
  font-family: var(--f-heading); font-size: clamp(2.6rem,4vw,4.2rem);
  color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-lbl { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* ── Two-col grid ────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.wide { grid-template-columns: 1.25fr 0.75fr; }
.two-col.wider { grid-template-columns: 1.5fr 0.5fr; }

/* ── Photo frame ─────────────────────────────────────────── */
.photo-frame { position: relative; }
.photo-frame img {
  width: 100%; height: 520px;
  object-fit: cover; object-position: center top;
  border: 1px solid var(--border);
}
.photo-corner { display: none; }

/* ── Brand Cards ─────────────────────────────────────────── */
.brand-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); margin-top: 52px;
}
.brand-card {
  background: var(--surface); padding: 44px 30px;
  position: relative; overflow: hidden;
  transition: background .35s var(--ease);
}
.brand-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; transition: height .5s var(--ease);
}
.brand-card:hover { background: var(--bg2); }
.brand-card:hover::before { height: 100%; }
.bc-fashion::before { background: linear-gradient(to bottom, var(--purple), var(--wine)); }
.bc-shea::before    { background: linear-gradient(to bottom, var(--gold), #a06020); }
.bc-finance::before { background: linear-gradient(to bottom, #50a090, #306060); }
.bc-more::before    { background: #4a2858; }
.bc-tag {
  font-family: var(--f-display); font-size: .56rem; letter-spacing: .3em;
  text-transform: uppercase; margin-bottom: 16px;
}
.bc-fashion  .bc-tag { color: var(--purple-lt); }
.bc-shea     .bc-tag { color: var(--gold); }
.bc-finance  .bc-tag { color: #70d0b0; }
.bc-more     .bc-tag { color: var(--muted); }
.bc-title {
  font-family: var(--f-display); font-size: .82rem; letter-spacing: .1em;
  color: var(--cream); margin-bottom: 14px; line-height: 1.5;
}
.bc-desc { font-size: .82rem; color: var(--muted); line-height: 1.78; margin-bottom: 26px; }
.badge {
  display: inline-block; padding: 5px 14px;
  border: 1px solid var(--border); font-size: .6rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--muted);
}

/* ── Services Grid ───────────────────────────────────────── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.svc-grid-4 {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
}
.svc {
  background: var(--surface); padding: 38px 28px;
  transition: background .35s var(--ease); position: relative;
}
.svc:hover { background: var(--bg2); }
.svc-num {
  font-family: var(--f-heading); font-size: 2rem; color: var(--border);
  line-height: 1; margin-bottom: 12px; display: block;
}
.svc-title {
  font-family: var(--f-display); font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 10px;
}
.svc-desc { font-size: .8rem; color: var(--muted); line-height: 1.7; }

/* ── Gallery / Marquee ───────────────────────────────────── */
.gallery { overflow: hidden; padding: 60px 0; background: var(--bg); }
.gallery-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; margin-bottom: 32px;
}
.gallery-hint { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.row { overflow: hidden; margin-bottom: 12px; }
.track { display: flex; gap: 12px; will-change: transform; }
.go-left  { animation: go-left  44s linear infinite; }
.go-right { animation: go-right 36s linear infinite; }
.go-slow  { animation: go-left  58s linear infinite; }
@keyframes go-left  { 0%{transform:translateX(0)}   100%{transform:translateX(-50%)} }
@keyframes go-right { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}   }
.row:hover .track { animation-play-state: paused; }
.gp {
  height: 370px; width: auto; min-width: 210px;
  object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: zoom-in;
}
.gp:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(155,89,208,.4);
  position: relative; z-index: 1;
}

/* ── Lightbox ────────────────────────────────────────────── */
.lb {
  position: fixed; inset: 0; background: rgba(0,0,0,.94);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.lb.open { opacity: 1; pointer-events: all; }
.lb img  { max-width: 92vw; max-height: 92vh; object-fit: contain; border: 1px solid var(--border); }
.lb-x {
  position: absolute; top: 22px; right: 32px;
  font-size: 2rem; color: var(--gold); line-height: 1;
  transition: color .25s; cursor: pointer;
}
.lb-x:hover { color: var(--purple-lt); }

/* ── Press Ticker ────────────────────────────────────────── */
.ticker { overflow: hidden; white-space: nowrap; padding: 15px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ticker-inner { display: inline-flex; animation: tick 30s linear infinite; }
.ticker-inner span { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); padding: 0 24px; }
.ticker-inner .dot { color: var(--purple-lt); padding: 0 4px; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Press Feature Block ─────────────────────────────────── */
.press-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-bottom: 32px;
}
.press-box {
  background: var(--surface); padding: 44px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.press-box-b {
  background: var(--bg2); padding: 44px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.press-name { font-family: var(--f-heading); font-size: clamp(1.3rem,2.2vw,1.9rem); color: var(--cream); font-style: italic; }
.press-badge { font-family: var(--f-display); font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 5px 12px; white-space: nowrap; }
.press-sub { font-family: var(--f-display); font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.press-venue { font-family: var(--f-heading); font-size: clamp(1.1rem,2vw,1.7rem); color: var(--cream); }
.press-list { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.press-list span { font-size: .82rem; color: var(--muted); }
.press-list .dot { color: var(--purple-lt); }

/* ── Shea label frame ────────────────────────────────────── */
.shea-frame {
  background: #f5ead8; border: 1px solid var(--border-gold);
  padding: 30px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.shea-frame img {
  width: 100%; max-width: 400px; height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.shea-city {
  font-family: var(--f-heading); font-style: italic;
  font-size: 1.3rem; color: #c07030; line-height: 1.3; text-align: center;
}



/* ── Benefits ────────────────────────────────────────────── */
.benefit-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.benefit {
  background: var(--surface); padding: 46px 34px;
  position: relative; overflow: hidden;
  transition: background .35s var(--ease);
}
.benefit::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; transition: height .55s var(--ease);
}
.benefit:hover { background: var(--bg2); }
.benefit:hover::before { height: 100%; }
.b-hair::before  { background: #c07030; }
.b-body::before  { background: var(--purple); }
.b-scent::before { background: var(--gold); }
.benefit-icon { color: var(--gold); margin-bottom: 20px; width: 36px; height: 36px; }
.benefit-title { font-family: var(--f-display); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.benefit ul { display: flex; flex-direction: column; gap: 9px; }
.benefit li { font-size: .84rem; color: var(--muted); line-height: 1.6; padding-left: 14px; position: relative; }
.benefit li::before { content: '◆'; position: absolute; left: 0; color: var(--purple-lt); font-size: .38rem; top: 6px; }
.benefit-txt { font-size: .87rem; color: var(--muted); line-height: 1.78; font-style: italic; }

/* ── Order Steps ─────────────────────────────────────────── */
.order-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 44px; max-width: 680px;
  display: flex; flex-direction: column; gap: 26px; margin: 32px 0;
}
.order-step { display: flex; gap: 20px; align-items: flex-start; }
.order-n { font-family: var(--f-heading); font-size: 2.3rem; color: var(--purple-lt); line-height: 1; flex-shrink: 0; width: 28px; }
.order-step p { font-size: .92rem; color: var(--text); line-height: 1.7; padding-top: 5px; }
.order-step p strong { color: var(--cream); font-weight: 500; }
.order-note { font-family: var(--f-heading); font-style: italic; font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* ── Contact Bar ─────────────────────────────────────────── */
.contact-bar { background: var(--surface); border-top: 1px solid var(--border); padding: 80px 60px; text-align: center; }
.contact-bar-q { font-family: var(--f-heading); font-style: italic; font-size: clamp(1.5rem,2.8vw,2.3rem); color: var(--cream); margin-bottom: 30px; line-height: 1.4; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 42px 60px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
}
.footer-copy { font-size: .7rem; letter-spacing: .12em; color: var(--muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.footer-links a:hover { color: var(--purple-lt); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--muted); transition: color .3s; line-height: 1; }
.footer-socials a:hover { color: var(--purple-lt); }
.footer-socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer-socials a { color: var(--text); }

/* ── Photo Grid (3-col break) ────────────────────────────── */
.photo-trio {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: var(--border);
}
.photo-trio div { overflow: hidden; height: 380px; }
.photo-trio img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transition: transform .6s ease;
}
/* Per-image tuned positions based on visual inspection */
.photo-trio .pt-1 img { object-position: center 50%; } /* IMG_1620 */
.photo-trio .pt-2 img { object-position: center 65%; } /* IMG_3753 — more wall cut, show feet */
.photo-trio .pt-3 img { object-position: center 5%; }  /* IMG_3494 — show full duo from top */
.photo-trio div:hover img { transform: scale(1.03); }

/* ── Affiliate logo row ──────────────────────────────────── */
.affiliate-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-bottom: 32px;
}
.affiliate-box {
  background: var(--surface); padding: 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.affiliate-box-light {
  background: #f5ead8; padding: 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.affiliate-box-light p { color: #3a2510; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
  .sec, .sec-sm { padding-left: 40px; padding-right: 40px; }
  .nav, .nav.scrolled { padding-left: 40px; padding-right: 40px; gap: 0; grid-template-columns: auto 1fr auto auto; }
  .stats, .brand-grid { grid-template-columns: repeat(2,1fr); }
  .two-col, .two-col.wide, .two-col.wider { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid-4 { grid-template-columns: repeat(2,1fr); }
  .press-block, .affiliate-row { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .gallery-header { padding: 0 40px; }
  .photo-trio div { height: 320px; }
}
@media (max-width: 767px) {
  .sec { padding: 60px 24px; }
  .sec-sm { padding: 48px 24px; }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .burger { display: flex; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat { padding: 40px 18px; }
  .brand-grid, .svc-grid, .svc-grid-4 { grid-template-columns: 1fr; }
  .gp { height: 250px; min-width: 160px; }
  .gallery-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .photo-trio { grid-template-columns: 1fr; }
  .photo-trio div { height: 300px; }
  .contact-bar { padding: 60px 24px; }
  .footer { padding: 36px 24px; flex-direction: column; text-align: center; }
  .order-card { padding: 28px 20px; }
  .press-box, .press-box-b, .affiliate-box, .affiliate-box-light { padding: 30px 24px; }
  .photo-frame img { height: 400px; }
  .go-left  { animation-duration: 32s; }
  .go-right { animation-duration: 26s; }
  .go-slow  { animation-duration: 42s; }
}
