/* =========================================================================
   Magnum Wrapping — v4 "bold block" design system
   Heavy condensed caps (Anton), cream + charcoal + gold, hard edges.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #141414;
  --ink-2: #1E1E1C;
  --cream: #F4EEDF;
  --cream-2: #EDE6D2;
  --paper: #FFFFFF;

  --gold: #E9B43B;         /* loud block fill */
  --gold-hi: #F3C452;      /* hover */
  --gold-ink: #6A4E0D;     /* gold-as-text on cream/white (~6:1) */

  --text: #1A1A1A;
  --text-dim: #56534A;     /* muted on cream (~6:1) */
  --on-dark: #F3F0E7;
  --on-dark-dim: #A9A597;  /* on --ink (~7:1) */

  --line: #141414;

  --r-img: 22px;
  --r-btn: 8px;
  --shadow-hard: 5px 5px 0 var(--ink);

  --container: 1240px;
  --gutter: clamp(1.15rem, 4.5vw, 3rem);
  --ease: cubic-bezier(.2, .7, .3, 1);

  --f-0: 1.0625rem;
  --f-lead: clamp(1.05rem, .95rem + .5vw, 1.2rem);
  --d-1: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);   /* small display */
  --d-2: clamp(2.1rem, 1.4rem + 3vw, 3.4rem);     /* section head */
  --d-3: clamp(2.6rem, 1.5rem + 5vw, 5rem);       /* big */
  --d-4: clamp(3rem, 1.4rem + 8vw, 7.5rem);       /* hero */
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--f-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, .display {
  font-family: 'Anton', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: var(--d-4); }
h2 { font-size: var(--d-2); }
h3 { font-size: var(--d-1); }
p { margin: 0 0 1rem; }
p:last-child { margin: 0; }
strong { font-weight: 600; }
:focus-visible { outline: 3px solid #1F6FEB; outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--gold { background: var(--gold); color: var(--ink); }
.section--paper { background: var(--paper); }
:where([id]) { scroll-margin-top: 90px; }

/* eyebrow / kicker */
.kicker {
  font-family: 'Inter', sans-serif;
  font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink); margin: 0 0 1rem; display: inline-block;
}
.section--dark .kicker { color: var(--gold); }
.section--gold .kicker { color: var(--ink); }
.lead { font-size: var(--f-lead); color: var(--text-dim); max-width: 46ch; }
.section--dark .lead { color: var(--on-dark-dim); }

/* buttons */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.7rem; background: var(--bg); color: var(--fg);
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .03em;
  font-size: 1rem; text-decoration: none; border: 2px solid var(--ink);
  border-radius: var(--r-btn);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hard); }
.btn:active { transform: translate(0,0); box-shadow: none; }
.btn--gold { --bg: var(--gold); --fg: var(--ink); }
.btn--gold:hover { background: var(--gold-hi); }
.btn--paper { --bg: var(--paper); --fg: var(--ink); }
.btn--ghost { --bg: transparent; --fg: var(--ink); }
.section--dark .btn--ghost { --fg: var(--paper); border-color: var(--paper); }
.section--dark .btn--ghost:hover { box-shadow: 5px 5px 0 var(--paper); }

.arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .03em;
  font-size: .95rem; text-decoration: none; color: var(--ink);
  border-bottom: 3px solid var(--gold); padding-bottom: 3px;
  transition: gap .15s var(--ease);
}
.arrow:hover { gap: .85rem; }
.section--dark .arrow { color: var(--paper); }

/* =========================================================================
   Header
   ========================================================================= */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream); border-bottom: 2px solid var(--ink);
}
.hdr__row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 68px; }
.hdr__logo img { height: 23px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(.9rem, 2.4vw, 2rem); }
.nav a {
  text-decoration: none; color: var(--ink);
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .04em;
  font-size: .9rem;
}
.nav a::before { content: "("; color: var(--gold-ink); }
.nav a::after { content: ")"; color: var(--gold-ink); }
.nav a:hover { color: var(--gold-ink); }
.hdr__cta { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.hdr__cta .btn { padding: .55rem 1.1rem; font-size: .85rem; }
.nav > .btn { display: none; }
.navtoggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-btn);
}
.navtoggle svg { width: 20px; height: 20px; stroke: var(--ink); }
@media (max-width: 880px) {
  .hdr__cta > .btn { display: none; }
  .navtoggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 2px solid var(--ink);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-120%); transition: transform .3s var(--ease);
    max-height: calc(100dvh - 68px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 1rem 0; border-bottom: 1px solid var(--ink); font-size: 1.15rem; }
  .nav a::before, .nav a::after { content: none; }
  .nav > .btn { display: inline-flex; justify-content: center; margin-top: 1.1rem; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero { background: linear-gradient(180deg, #F6DDA0 0%, var(--cream) 62%); border-bottom: 2px solid var(--ink); }
.hero__in { padding-block: clamp(2.75rem, 7vw, 5rem) clamp(2rem, 5vw, 3.5rem); text-align: center; }
.hero h1 { max-width: 15ch; margin-inline: auto; }
.hero__sub { margin: 1.25rem auto 1.75rem; max-width: 40ch; color: var(--text-dim); font-size: var(--f-lead); }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.strip { display: flex; align-items: flex-start; gap: clamp(.6rem, 1.6vw, 1.1rem); padding-block: clamp(1.25rem, 3vw, 2rem) clamp(2rem, 5vw, 3.25rem); }
.strip figure { margin: 0; flex: 1 1 0; min-width: 0; border: 2px solid var(--ink); overflow: hidden; background: var(--ink); }
.strip figure img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3/4; }
.strip .r { border-radius: var(--r-img); }
.strip .c { border-radius: 50%; align-self: center; }
.strip .c img { aspect-ratio: 1; }
@media (max-width: 620px) { .strip figure:nth-child(n+4) { display: none; } }

/* =========================================================================
   Stat band
   ========================================================================= */
.statband h2 { max-width: 16ch; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.75rem, 2vw, 1.25rem); margin-top: clamp(2rem, 5vw, 3rem); }
.statcard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-img); padding: clamp(1.25rem, 3vw, 2rem); min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.statcard__ico { width: 34px; height: 34px; stroke: var(--gold-ink); }
.statcard__n { font-family: 'Anton', sans-serif; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: .9; color: var(--ink); }
.statcard__l { font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-top: .5rem; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } .statcard { min-height: 0; flex-direction: row; align-items: center; gap: 1rem; } .statcard__ico { flex-shrink: 0; } .statcard__l { margin-top: .2rem; } }

/* =========================================================================
   Services list
   ========================================================================= */
.svc { display: grid; grid-template-columns: minmax(0, 22rem) 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.svc__head { position: relative; }
.svc__photo { width: clamp(120px, 16vw, 190px); aspect-ratio: 1; border-radius: 50%; border: 2px solid var(--ink); overflow: hidden; margin-top: 1.5rem; }
.svc__photo img { width: 100%; height: 100%; object-fit: cover; }
.svc__list { border-top: 2px solid var(--ink); }
.svc__row { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: baseline; padding-block: clamp(1.25rem, 3vw, 1.9rem); border-bottom: 2px solid var(--ink); }
.svc__row .n { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .8rem; color: var(--gold-ink); letter-spacing: .08em; }
.svc__row h3 { font-size: var(--d-1); transition: color .15s var(--ease); }
.svc__row p { margin: .5rem 0 0; color: var(--text-dim); font-size: .95rem; max-width: 44ch; }
.svc__row:hover h3, .svc__row:focus-within h3 { color: var(--gold-ink); }
@media (max-width: 800px) { .svc { grid-template-columns: 1fr; } .svc__photo { display: none; } }

/* =========================================================================
   Work / cases
   ========================================================================= */
.case { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.case + .case { margin-top: clamp(2.5rem, 6vw, 4.5rem); padding-top: clamp(2.5rem, 6vw, 4.5rem); border-top: 2px solid var(--ink); }
.case:nth-child(even) .case__media { order: 2; }
.case__media { display: grid; grid-template-columns: 1.4fr 1fr; gap: .9rem; align-items: center; }
.case__media .r { border: 2px solid var(--ink); border-radius: var(--r-img); overflow: hidden; aspect-ratio: 4/3; }
.case__media .c { border: 2px solid var(--ink); border-radius: 50%; overflow: hidden; aspect-ratio: 1; }
.case__media img { width: 100%; height: 100%; object-fit: cover; }
.case__n { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .8rem; letter-spacing: .1em; color: var(--gold-ink); }
.case h3 { margin: .4rem 0 1rem; font-size: var(--d-1); }
.case ul { list-style: none; margin: 0; padding: 0; }
.case li { display: flex; gap: .6rem; font-size: .95rem; padding: .35rem 0; }
.case li::before { content: "\2731"; color: var(--gold-ink); flex-shrink: 0; }
@media (max-width: 760px) { .case { grid-template-columns: 1fr; } .case:nth-child(even) .case__media { order: 0; } }

/* mini work grid */
.morework { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .9rem; margin-top: clamp(2.5rem, 6vw, 4rem); }
.morework a { border: 2px solid var(--ink); border-radius: var(--r-img); overflow: hidden; aspect-ratio: 1; display: block; background: var(--ink); }
.morework img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.morework a:hover img { transform: scale(1.06); }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: clamp(2rem, 5vw, 3rem); }
.rev { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-img); padding: clamp(1.5rem, 3.5vw, 2.25rem); display: flex; flex-direction: column; gap: 1rem; }
.rev__stars { display: flex; gap: 3px; color: var(--gold); }
.rev__stars svg { width: 17px; height: 17px; }
.rev blockquote { margin: 0; font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.15rem, 2.6vw, 1.55rem); line-height: 1.08; color: var(--ink); }
.rev cite { font-style: normal; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); margin-top: auto; }

/* =========================================================================
   Process strip
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--paper); border-radius: var(--r-img); overflow: hidden; margin-top: clamp(2rem, 5vw, 3rem); }
.step { padding: clamp(1.25rem, 3vw, 2rem); border-right: 2px solid var(--paper); }
.step:last-child { border-right: 0; }
.step .n { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.step h3 { color: var(--paper); font-size: 1.15rem; margin: .6rem 0 .35rem; }
.step p { color: var(--on-dark-dim); font-size: .88rem; margin: 0; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(2) { border-right: 0; } .step:nth-child(1), .step:nth-child(2) { border-bottom: 2px solid var(--paper); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } .step { border-right: 0; border-bottom: 2px solid var(--paper); } .step:last-child { border-bottom: 0; } }

/* =========================================================================
   Contact
   ========================================================================= */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } }
.cbig { display: grid; gap: 1.1rem; }
.cbig a { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.3rem, 3vw, 1.9rem); text-decoration: none; color: var(--paper); }
.cbig a:hover { color: var(--gold); }
.cbig .small { font-family: 'Inter', sans-serif; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .8rem .9rem;
  background: var(--paper); color: var(--text); border: 2px solid var(--ink); border-radius: 6px; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--gold); outline-offset: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form__note { font-size: .82rem; color: var(--on-dark-dim); margin: 0; }
.form__status { display: none; padding: .9rem 1rem; border-radius: 6px; font-size: .95rem; }
.form__status[data-state="ok"] { display: block; background: #23301F; color: #CDE8C4; border: 2px solid #3C5A34; }
.form__status[data-state="err"] { display: block; background: #331F1F; color: #E8C4C4; border: 2px solid #5A3434; }

/* =========================================================================
   Footer
   ========================================================================= */
.ftr { background: var(--ink); color: var(--on-dark-dim); border-top: 2px solid var(--gold); padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; }
.ftr__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.ftr__brand img { height: 22px; margin-bottom: .9rem; }
.ftr__brand p { font-size: .88rem; max-width: 32ch; }
.ftr__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.ftr__nav a { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; color: var(--on-dark); text-decoration: none; }
.ftr__nav a:hover { color: var(--gold); }
.ftr__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.5rem; font-size: .82rem; }
.ftr__social { display: flex; gap: .6rem; }
.ftr__social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.25); border-radius: 50%; }
.ftr__social svg { width: 17px; height: 17px; stroke: var(--on-dark); fill: none; }
.ftr__social a:hover { border-color: var(--gold); }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .06s; }
.reveal[data-d="2"] { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn:hover, .morework a:hover img { transform: none; } }

.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: .75rem 1rem; font-weight: 600; z-index: 200; }
.skip:focus { left: 0; }
