/* =============================================================================
   ANDERSON'S ADVERTISEMENT — Delaware Advertising & Media
   Brand palette sampled directly from the official logo:
   red #AE312B · black #2B2B2B · white #FFFFFF
   ========================================================================== */

:root {
  --red: #ae312b;
  --red-dark: #8b231e;
  --red-tint: #fbf1f0;
  --ink: #141414;
  --ink-soft: #3d3d3d;
  --ink-mute: #6c6c6c;
  --line: #e4e2e0;
  --line-soft: #f0eeec;
  --white: #fff;
  --paper: #f8f7f6;

  --font-head: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --wrap: 1200px;
  --gut: 24px;
  --hdr: 92px;
  --sec-y: clamp(68px, 8vw, 116px);
  --r: 4px;
  --shadow: 0 18px 44px rgba(20, 20, 20, 0.09);
  --shadow-sm: 0 6px 18px rgba(20, 20, 20, 0.06);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr) + 8px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.section { padding: var(--sec-y) 0; }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section--tight { padding: clamp(52px, 6vw, 80px) 0; }

.sec-head { max-width: 760px; margin-bottom: clamp(38px, 4.4vw, 58px); }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--red);
}
.sec-head--center .eyebrow::after {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--red);
}

.sec-title {
  font-size: clamp(30px, 4.4vw, 52px);
  text-transform: uppercase;
}
.sec-sub {
  margin-top: 18px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-mute);
  max-width: 58ch;
}
.sec-head--center .sec-sub { margin-inline: auto; }
.red { color: var(--red); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: var(--r);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
  will-change: transform;
}
.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 22px rgba(174, 49, 43, 0.22);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(174, 49, 43, 0.3);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 12px 22px; font-size: 12px; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =============================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.hdr.is-stuck { box-shadow: 0 6px 20px rgba(20, 20, 20, 0.07); }

.hdr__in {
  height: var(--hdr);
  display: flex;
  align-items: center;
  gap: 26px;
}

/* ---------------------------------------------------------------------------
   THE OFFICIAL LOGO
   The supplied logo file is used exactly as provided — never recoloured,
   redrawn, cropped or distorted. The whole file is shown, including the
   "ANDERSON'S ADVERTISEMENT" wordmark under the symbol.
   Source file is 1179 x 1044 px, so the aspect ratio is 1179:1044 = 1.12931.
     frame width = --h * 1.12931   (matches the file exactly — no clipping)
   Set --h to the height the complete logo should appear at.
   ------------------------------------------------------------------------ */
.logomark {
  --h: 56px;
  flex: 0 0 auto;
  width: calc(var(--h) * 1.12931);
  height: var(--h);
  display: grid;
  place-items: center;
}
.logomark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}
.logo { --h: 80px; }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 32px);
}
.nav__link {
  position: relative;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.26s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--red); }

.hdr__cta { flex: 0 0 auto; }

.burger {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  position: relative;
}
.burger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translate(-50%, 7px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translate(-50%, -7px) rotate(-45deg); }

.mnav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mnav.is-open { display: block; }
.mnav ul { padding: 8px var(--gut) 22px; }
.mnav a {
  display: block;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.mnav a:last-child { border-bottom: 0; }
.mnav .btn { margin-top: 16px; }

/* =============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(64px, 8vw, 118px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -140px;
  width: 460px;
  height: 460px;
  background: var(--red);
  opacity: 0.05;
  transform: rotate(18deg);
  border-radius: 40px;
  pointer-events: none;
}
.hero__in { position: relative; max-width: 940px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero__tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(42px, 8.4vw, 104px);
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.hero h1 span { display: block; }

.hero__sub {
  margin-top: 26px;
  max-width: 60ch;
  font-size: clamp(16.5px, 1.5vw, 20px);
  color: var(--ink-mute);
}
.hero .btn-row { margin-top: 36px; }

.hero__note {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__note::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--ink);
}

/* ---------- strip ---------- */
.strip {
  background: var(--ink);
  color: #fff;
  padding: 20px 0;
}
.strip__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(20px, 3vw, 46px);
}
.strip span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.strip span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

/* ---------- intro ---------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.intro h2 { font-size: clamp(27px, 3.6vw, 44px); text-transform: uppercase; }
.intro__body p { color: var(--ink-mute); font-size: 17.5px; }
.intro__rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-top: 26px;
}

/* =============================================================================
   SERVICES
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 26px 30px;
  overflow: hidden;
  transition: transform 0.26s var(--ease), border-color 0.26s var(--ease),
    box-shadow 0.26s var(--ease);
}
.svc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.svc:hover {
  transform: translateY(-5px);
  border-color: #d3d0cd;
  box-shadow: var(--shadow-sm);
}
.svc:hover::before { transform: scaleX(1); }
.svc__ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--red);
  margin-bottom: 22px;
  transition: background 0.26s var(--ease), color 0.26s var(--ease),
    border-color 0.26s var(--ease);
}
.svc:hover .svc__ico { background: var(--red); border-color: var(--red); color: #fff; }
.svc__ico svg { width: 25px; height: 25px; }
.svc h3 {
  font-size: 16.5px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.svc p { font-size: 15.3px; color: var(--ink-mute); line-height: 1.6; }

/* =============================================================================
   PORTFOLIO
   ========================================================================== */
.pf-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.chip {
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pf {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.pf:hover {
  transform: translateY(-6px);
  border-color: #d3d0cd;
  box-shadow: var(--shadow);
}
.pf__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.pf__media img,
.pf__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pf:hover .pf__media img { transform: scale(1.045); }
.pf__body { display: block; padding: 22px 22px 24px; }
.pf__cat {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.pf__title {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 10px 0 9px;
  font-size: 18px;
  text-transform: uppercase;
}
.pf__desc { display: block; font-size: 14.8px; color: var(--ink-mute); line-height: 1.58; }
.pf__view {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.pf__view svg { width: 14px; height: 14px; transition: transform 0.24s var(--ease); }
.pf:hover .pf__view { color: var(--red); }
.pf:hover .pf__view svg { transform: translateX(4px); }

/* branded placeholder tile — no image weight at all */
.ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #fbfafa 0%, #f2f0ef 100%);
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(43, 43, 43, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(43, 43, 43, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}
.ph::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 34px;
  background: var(--red);
  opacity: 0.09;
  transform: rotate(-24deg);
}
.ph--b::after { transform: rotate(24deg); height: 22px; opacity: 0.12; }
.ph--c::after { transform: rotate(-58deg); height: 60px; opacity: 0.07; }
.ph--d::after { transform: rotate(10deg); height: 14px; opacity: 0.14; }
.ph__mark {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--red);
  text-align: center;
  padding: 16px;
}
.ph__mark svg { width: 40px; height: 40px; opacity: 0.85; }
.ph__mark b {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pf__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(20, 20, 20, 0.86);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pf__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}
.pf__play i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(174, 49, 43, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.pf__play i::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.pf-foot {
  margin-top: 46px;
  text-align: center;
}
.pf-foot .btn { margin-bottom: 16px; }
.pf-note {
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---------- featured ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feat__media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.feat__media img,
.feat__media video { width: 100%; height: 100%; object-fit: cover; }
.feat__body { padding: 28px 26px 30px; }
.feat__kick {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.feat h3 { margin: 12px 0 12px; font-size: 21px; text-transform: uppercase; }
.feat p { font-size: 15.4px; color: var(--ink-mute); }

/* =============================================================================
   SOCIAL MEDIA / PACKAGES
   ========================================================================== */
.social__head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(38px, 4.4vw, 58px);
}
.social__head h2 {
  font-size: clamp(26px, 3.5vw, 43px);
  text-transform: uppercase;
}
.social__head p { color: var(--ink-mute); font-size: 17.5px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease),
    border-color 0.26s var(--ease);
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #d3d0cd; }
.pkg--feature {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  position: relative;
}
.pkg--feature:hover { border-color: var(--ink); }
.pkg__flag {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 6px 15px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pkg h3 { font-size: 19px; text-transform: uppercase; }
.pkg__price {
  margin: 16px 0 4px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pkg__price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.pkg__from {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.pkg ul {
  margin: 24px 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.pkg li {
  display: flex;
  gap: 12px;
  font-size: 15.4px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pkg li svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; color: var(--red); }
.pkg .btn { margin-top: auto; }
.pkg-note {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
}

/* =============================================================================
   WHY US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
}
.why {
  padding: 36px 28px 34px;
  border-right: 1px solid var(--line);
  transition: background 0.26s var(--ease);
}
.why:last-child { border-right: 0; }
.why:hover { background: var(--red-tint); }
.why__ico { color: var(--red); margin-bottom: 20px; }
.why__ico svg { width: 30px; height: 30px; }
.why h3 { font-size: 16px; text-transform: uppercase; margin-bottom: 12px; }
.why p { font-size: 15.2px; color: var(--ink-mute); line-height: 1.6; }

/* =============================================================================
   PROCESS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: s;
}
.step {
  position: relative;
  padding-top: 30px;
  border-top: 3px solid var(--line);
  transition: border-color 0.26s var(--ease);
}
.step:hover { border-top-color: var(--red); }
.step__n {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 18px;
}
.step:hover .step__n { -webkit-text-stroke-color: var(--red); }
.step h3 { font-size: 16px; text-transform: uppercase; margin-bottom: 12px; }
.step p { font-size: 15.3px; color: var(--ink-mute); line-height: 1.6; }

/* =============================================================================
   ABOUT
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.about__logo {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.about__logo .logomark { --h: clamp(150px, 19vw, 230px); }
.about h2 { font-size: clamp(26px, 3.5vw, 43px); text-transform: uppercase; }
.about__copy { display: grid; gap: 18px; margin-top: 24px; }
.about__copy p { color: var(--ink-mute); font-size: 17px; }
.about__facts {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.fact svg { width: 15px; height: 15px; color: var(--red); }

/* =============================================================================
   CTA
   ========================================================================== */
.cta {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(58px, 7vw, 96px) 0;
  overflow: hidden;
}
.cta::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 340px;
  height: 340px;
  background: var(--red);
  opacity: 0.18;
  transform: rotate(22deg);
  border-radius: 40px;
}
.cta__in { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.cta h2 {
  color: #fff;
  font-size: clamp(28px, 4.4vw, 52px);
  text-transform: uppercase;
}
.cta p { margin-top: 20px; color: rgba(255, 255, 255, 0.72); font-size: 18px; }
.cta .btn-row { margin-top: 34px; justify-content: center; }
.cta .btn--outline { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.cta .btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =============================================================================
   CONTACT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(34px, 4.6vw, 64px);
  align-items: start;
}
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; }
.field select { appearance: none; background-image: none; cursor: pointer; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(174, 49, 43, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #a6a3a1; }
.sel-wrap { position: relative; }
.sel-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 22px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  pointer-events: none;
}
.hp { position: absolute; left: -9999px; }
.form__foot { margin-top: 26px; display: grid; gap: 14px; }
.form__fine { font-size: 13.5px; color: var(--ink-mute); }
.form__msg {
  display: none;
  padding: 16px 18px;
  border-radius: var(--r);
  font-size: 15px;
  border-left: 3px solid var(--red);
  background: var(--red-tint);
  color: var(--ink);
}
.form__msg.is-on { display: block; }

.cinfo {
  display: grid;
  gap: 14px;
}
.cinfo__logo {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: 26px;
  display: grid;
  place-items: center;
}
.cinfo__logo .logomark { --h: 120px; }
.crow {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
a.crow:hover { border-color: var(--red); transform: translateY(-2px); }
.crow__ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--red-tint);
  color: var(--red);
}
.crow__ico svg { width: 19px; height: 19px; }
.crow b {
  display: block;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.crow span { font-size: 16.5px; color: var(--ink); font-weight: 500; word-break: break-word; }

/* =============================================================================
   FOOTER
   ========================================================================== */
.ftr {
  background: #fff;
  border-top: 3px solid var(--ink);
  padding: clamp(46px, 5.5vw, 72px) 0 0;
}
.ftr__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(30px, 4vw, 64px);
  padding-bottom: 42px;
}
.ftr__logo .logomark { --h: 96px; margin-bottom: 22px; }
.ftr__name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ftr__slog {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--red);
  font-weight: 600;
}
.ftr h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.ftr__links { display: grid; gap: 11px; }
.ftr__links a {
  font-size: 15.5px;
  color: var(--ink-mute);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.ftr__links a:hover { color: var(--red); padding-left: 5px; }
.ftr__bar {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
.ftr__bar p { font-size: 13.8px; color: var(--ink-mute); }
.ftr__bar strong { color: var(--ink); font-weight: 600; }

/* =============================================================================
   LIGHTBOX
   ========================================================================== */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 24px;
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.lb.is-open { display: grid; place-items: center; }
.lb__box {
  position: relative;
  width: 100%;
  max-width: 940px;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
  animation: pop 0.28s var(--ease);
}
@keyframes pop {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.lb__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}
.lb__close:hover { background: var(--red); }
.lb__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.lb__media img,
.lb__media video { width: 100%; height: 100%; object-fit: contain; background: #111; }
.lb__media .ph { position: absolute; inset: 0; }
.lb__body { padding: clamp(24px, 3vw, 36px); }
.lb__cat {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.lb__body h3 { margin: 12px 0 14px; font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; }
.lb__body p { color: var(--ink-mute); font-size: 16.5px; max-width: 62ch; }
.lb__foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.lb__hint { font-size: 13.5px; color: var(--ink-mute); }
body.no-scroll { overflow: hidden; }

/* =============================================================================
   REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why:nth-child(2) { border-right: 0; }
  .why:nth-child(1),
  .why:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why:nth-child(3) { border-right: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .feat { flex-direction: row; }
  .feat__media { flex: 0 0 42%; border-bottom: 0; border-right: 1px solid var(--line); aspect-ratio: auto; }
  .feat__body { flex: 1; }
}

@media (max-width: 960px) {
  :root { --hdr: 72px; }
  .logo { --h: 60px; }
  .nav,
  .hdr__cta { display: none; }
  .burger { display: block; }
  .intro__grid,
  .social__head,
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .about__grid { gap: 34px; }
  .about__logo { order: -1; max-width: 380px; }
  .social__head { align-items: start; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .ftr__logo { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc { padding: 26px 20px 24px; }
  .feat { flex-direction: column; }
  .feat__media { flex: none; border-right: 0; border-bottom: 1px solid var(--line); aspect-ratio: 16 / 11; }
  .f-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .strip__in { justify-content: flex-start; }
  .hero__note { align-items: flex-start; }
}

@media (max-width: 560px) {
  :root { --gut: 18px; }
  .pf-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .why:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .ftr__bar { justify-content: flex-start; }
  .chip { padding: 9px 15px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .hdr, .lb, .burger, .mnav { display: none !important; }
}
