/* ==========================================================================
   Barrett Studio — stylesheet
   Style reference: "Getharvest" (Refero Styles) — golden-hour workbench.
   Warm cream canvas, white floating cards, one vivid orange accent,
   editorial serif for hero-grade headlines, 16–20px radii, warm shadows.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------ */
:root {
  /* Brand */
  --flame:        #fa5d00;   /* Harvest Flame — the single chromatic accent */
  --flame-deep:   #d94f00;   /* hover / pressed */
  --marigold:     #fee3b5;   /* soft warm highlight wash */
  --parchment:    #e3d6c5;   /* warm-tinted shadow colour */

  /* Neutrals (warm) */
  --ink:          #1d1e1c;
  --ironwood:     #4a4a47;
  --stone:        #615f5c;
  --ash:          #777571;
  --driftwood:    #8e8b87;
  --smoke:        #a5a19c;
  --bone:         #c0bbb6;
  --mist:         #d9d9d9;
  --graphite:     #999999;

  /* Surfaces */
  --cream:        #fff8f1;
  --cream-deep:   #fdf1e4;
  --paper:        #ffffff;

  /* Type */
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --tracking: 0.015em;

  /* Shape */
  --r-btn:  16px;
  --r-card: 20px;
  --r-pill: 999px;

  /* Shadow — warm-tinted only */
  --shadow-card: 0 1px 2px rgba(29, 30, 28, 0.04), 0 14px 36px -12px rgba(250, 166, 0, 0.22);
  --shadow-card-hover: 0 2px 4px rgba(29, 30, 28, 0.05), 0 22px 48px -14px rgba(250, 166, 0, 0.3);
  --shadow-btn: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-float: 0 24px 60px -16px rgba(120, 60, 0, 0.28), 0 2px 6px rgba(29, 30, 28, 0.06);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --section-y: 96px;
}

/* ---------- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: var(--tracking);
  font-feature-settings: "ss01" on, "cv11" on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--flame); text-decoration: none; }
a:hover { color: var(--flame-deep); }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; letter-spacing: var(--tracking); }
h3 { font-size: 24px; font-weight: 600; line-height: 1.26; }
h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ash); }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }
button { font: inherit; letter-spacing: inherit; }
:focus-visible { outline: 3px solid var(--flame); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 12px;
}
.skip-link:focus { top: 16px; }

/* ---------- Type scale --------------------------------------------------- */
.display-lg {
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--flame); margin-bottom: 18px;
}
.lead { font-size: 20px; line-height: 1.5; color: var(--stone); max-width: 36em; }
.section-intro { font-size: 18px; color: var(--stone); max-width: 40em; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-btn); border: 1px solid transparent;
  font-weight: 600; font-size: 16px; line-height: 1.2; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--flame); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--flame-deep); color: #fff; box-shadow: 0 6px 16px -6px rgba(250, 93, 0, .55); }
.btn-secondary { background: var(--paper); color: var(--ink); border-color: var(--bone); }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 15px; border-radius: 12px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }

.text-link { font-weight: 600; color: var(--flame); display: inline-flex; align-items: center; gap: 4px; }
.text-link:hover { color: var(--flame-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 241, .86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(29, 30, 28, .06);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; font-size: 18px; }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--flame); color: #fff;
  display: inline-grid; place-items: center; font-family: var(--font-serif); font-weight: 600; font-size: 20px;
  font-variation-settings: "opsz" 48;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a { color: var(--ironwood); font-weight: 500; font-size: 16px; padding: 6px 0; position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: var(--flame); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--bone);
  background: var(--paper); cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero --------------------------------------------------------- */
.hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 24px; color: var(--stone); font-size: 15px; font-weight: 500; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--flame); }

/* Hero visual — CSS-only floating product windows over a warm wash */
.hero-visual { position: relative; min-height: 540px; }
.wash {
  position: absolute; inset: 0; border-radius: 32px;
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(250, 93, 0, .55) 0%, rgba(250, 93, 0, 0) 60%),
    radial-gradient(70% 60% at 100% 100%, rgba(254, 227, 181, 1) 0%, rgba(254, 227, 181, 0) 70%),
    linear-gradient(155deg, #ffb27a 0%, #ffd2a6 40%, var(--marigold) 70%, #fff3e3 100%);
}
.win {
  position: absolute; background: var(--paper); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-float); border: 1px solid rgba(29, 30, 28, .05);
}
.win-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid #f1ece5; }
.win-bar i { width: 9px; height: 9px; border-radius: 50%; background: #e8e2da; }
.win-url { flex: 1; height: 12px; margin-left: 10px; border-radius: 6px; background: #f4f0ea; }
.win--main { left: 2%; top: 11%; width: 74%; animation: floaty 9s ease-in-out infinite; }
.win--qr { right: 0; top: 0; width: 150px; padding: 16px; display: grid; gap: 12px; animation: floaty 11s ease-in-out infinite reverse; }
.win--quote { left: 4%; bottom: 3%; width: 236px; padding: 18px; display: grid; gap: 10px; animation: floaty 10s ease-in-out 1s infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.win-body { display: grid; grid-template-columns: 96px 1fr; min-height: 300px; }
.mock-side { border-right: 1px solid #f1ece5; padding: 18px 14px; display: grid; gap: 14px; align-content: start; background: #fcfaf7; }
.mock-main { padding: 20px 22px; display: grid; gap: 18px; align-content: start; }
.mock-head { display: flex; align-items: center; justify-content: space-between; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-stat { border: 1px solid #efe9e1; border-radius: 12px; padding: 12px; display: grid; gap: 8px; }
.mock-stat b { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1; }
.mock-stat--hi { background: var(--marigold); border-color: transparent; }
.mock-chart { display: flex; align-items: flex-end; gap: 8px; height: 88px; padding: 0 2px; border-bottom: 1px solid #efe9e1; }
.mock-chart i { flex: 1; height: var(--h); background: #ece6de; border-radius: 6px 6px 2px 2px; }
.mock-chart i.hi { background: var(--flame); }

.ml { display: block; height: 8px; border-radius: 4px; background: #ebe5dd; }
.ml--lg { height: 12px; }
.ml--ink { background: #2c2d2a; }
.ml--paper { background: rgba(255, 255, 255, .8); }
.ml--w30 { width: 30%; } .ml--w35 { width: 35%; } .ml--w40 { width: 40%; } .ml--w45 { width: 45%; }
.ml--w50 { width: 50%; } .ml--w55 { width: 55%; } .ml--w60 { width: 60%; } .ml--w70 { width: 70%; }
.ml--w80 { width: 80%; } .ml--w90 { width: 90%; }

.mock-title { font-size: 14px; font-weight: 600; margin: 0 0 2px; }
.mock-input { display: flex; align-items: center; height: 34px; padding: 0 12px; border: 1px solid var(--bone); border-radius: 10px; background: #fff; }
.mock-btn {
  display: inline-flex; align-items: center; justify-content: center; height: 32px; padding: 0 14px;
  background: var(--flame); color: #fff; font-size: 13px; font-weight: 600; border-radius: 10px;
}
.mock-btn--block { display: flex; width: 100%; height: 36px; }
.mock-pill {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: var(--r-pill);
  background: var(--marigold); color: var(--ink); font-size: 11px; font-weight: 600; width: max-content;
}
.mock-pill--dark { background: rgba(255, 255, 255, .16); color: #fff; }
.mock-pill--flame { background: var(--flame); color: #fff; }
.mock-chip { flex: 1; height: 30px; display: grid; place-items: center; border: 1px solid var(--bone); border-radius: 10px; font-size: 12px; font-weight: 600; color: var(--stone); }

/* QR motif — pseudo-random fill pattern via nth-child */
.qr { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; aspect-ratio: 1; width: 100%; }
.qr b { background: #ece6de; border-radius: 2px; }
.qr b:nth-child(3n+1), .qr b:nth-child(11n+4), .qr b:nth-child(7n+5), .qr b:nth-child(13n+9) { background: var(--ink); }
.qr b:nth-child(2n+9):nth-child(4n+1) { background: #ece6de; }
.qr-eye {
  position: absolute; width: 36%; height: 36%; border: 3px solid var(--ink); border-radius: 4px; background: #fff;
}
.qr-eye::after { content: ""; position: absolute; inset: 22%; background: var(--ink); border-radius: 2px; }
.qr-eye--tl { left: 0; top: 0; }
.qr-eye--tr { right: 0; top: 0; }
.qr-eye--bl { left: 0; bottom: 0; }
.qr-eye--tr::after, .qr-eye--tl::after, .qr-eye--bl::after { background: var(--ink); }
.qr--lg .qr-eye--tr::after { background: var(--flame); }
.qr--lg .qr-eye--tr { border-color: var(--flame); }

/* ---------- Logo strip --------------------------------------------------- */
.logo-strip { padding: 8px 0 56px; }
.logo-strip-label { text-align: center; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ash); margin-bottom: 24px; }
.logo-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px; }
.logo-list li {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--smoke);
  filter: grayscale(1); transition: color .2s ease;
}
.logo-list li:hover { color: var(--stone); }
.logo-glyph { width: 22px; height: 22px; display: inline-block; position: relative; }
.logo-glyph--qr { border: 3px solid currentColor; border-radius: 4px; }
.logo-glyph--qr::after { content: ""; position: absolute; inset: 4px; background: currentColor; border-radius: 2px; }
.logo-glyph--moon { border-radius: 50%; box-shadow: inset -7px -4px 0 0 currentColor; }
.logo-glyph--tyre { border: 6px solid currentColor; border-radius: 50%; }
.logo-glyph--scaff { background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 9px), repeating-linear-gradient(0deg, currentColor 0 3px, transparent 3px 9px); }

/* ---------- Sections / cards --------------------------------------------- */
.section { padding: var(--section-y) 0; }
.section--tint { background: var(--cream-deep); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.card {
  background: var(--paper); border-radius: var(--r-card); box-shadow: var(--shadow-card);
  border: 1px solid rgba(29, 30, 28, .04);
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tag {
  display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border-radius: var(--r-pill);
  background: var(--cream-deep); color: var(--stone); font-size: 13px; font-weight: 600; letter-spacing: .02em;
}
.tag--flame { background: var(--marigold); color: var(--ink); }

/* Services */
.service-card { padding: 36px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.icon { width: 48px; height: 48px; color: var(--ink); margin-bottom: 22px; }
.service-card h3 { margin-bottom: 10px; }
.service-card > p { color: var(--stone); margin-bottom: 18px; }
.check-list { display: grid; gap: 8px; }
.check-list li { position: relative; padding-left: 26px; font-size: 16px; color: var(--ironwood); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--marigold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check-list li::after {
  content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 4px;
  border-left: 2px solid var(--flame); border-bottom: 2px solid var(--flame); transform: rotate(-45deg);
}

/* Work */
.work-card { overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.work-body { padding: 28px 32px 32px; }
.work-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.work-body h3 { margin-bottom: 8px; }
.work-body > p { color: var(--stone); }
.stack { font-size: 14px; color: var(--ash); font-weight: 500; margin-bottom: 14px; }

.shot {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: grid; place-items: center;
  background: linear-gradient(160deg, #fff1e2 0%, var(--cream-deep) 100%); border-bottom: 1px solid rgba(29, 30, 28, .05);
}
.shot--qr { gap: 16px; grid-template-rows: auto auto; align-content: center; }
.shot--qr .qr { width: 132px; padding: 12px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-float); }
.swatches { display: flex; gap: 8px; }
.swatches i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(29, 30, 28, .15); }

.cal { width: min(78%, 320px); background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-float); display: grid; gap: 12px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; }
.cal-streak { font-size: 11px; font-weight: 600; background: var(--marigold); border-radius: var(--r-pill); padding: 4px 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid i { aspect-ratio: 1; border-radius: 6px; background: #f3eee7; position: relative; }
.cal-grid i.on::after { content: ""; position: absolute; inset: 0; margin: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--flame); }
.cal-grid i.today { background: var(--flame); }
.cal-tags { display: flex; gap: 6px; }
.cal-tags span { font-size: 11px; font-weight: 600; color: var(--stone); background: var(--cream-deep); border-radius: var(--r-pill); padding: 3px 9px; }

.shot--tyres { background: linear-gradient(160deg, #fff1e2 0%, #ffe2c4 100%); align-items: end; }
.phone { width: 190px; background: #fff; border-radius: 22px 22px 0 0; box-shadow: var(--shadow-float); overflow: hidden; border: 6px solid var(--ink); border-bottom: 0; }
.phone-top { background: var(--ink); padding: 18px 14px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.phone-body { padding: 14px; display: grid; gap: 8px; }
.phone-body .mock-title { font-size: 13px; }
.phone-body .mock-input { height: 30px; }
.phone-body .mock-btn--block { height: 32px; }
.phone-row { display: flex; gap: 6px; }

.shot--scaff {
  background:
    repeating-linear-gradient(90deg, rgba(192, 187, 182, .35) 0 2px, transparent 2px 42px),
    repeating-linear-gradient(0deg, rgba(192, 187, 182, .35) 0 2px, transparent 2px 42px),
    linear-gradient(160deg, #fff1e2 0%, var(--cream-deep) 100%);
}
.scaff-card { width: min(70%, 260px); background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow-float); display: grid; gap: 10px; }
.scaff-tags { display: flex; gap: 6px; margin-top: 4px; }
.scaff-tags span { font-size: 11px; font-weight: 600; color: var(--stone); border: 1px solid var(--bone); border-radius: var(--r-pill); padding: 3px 9px; }

/* Why */
.why-item { padding-top: 24px; border-top: 2px solid var(--ink); }
.why-icon { display: block; width: 40px; height: 40px; color: var(--ink); margin-bottom: 16px; }
.why-icon svg { width: 100%; height: 100%; }
.why-item h3 { font-size: 20px; margin-bottom: 8px; }
.why-item p { color: var(--stone); font-size: 16px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.step { padding: 32px 28px; position: relative; }
.step-num {
  width: 44px; height: 44px; border-radius: 14px; background: var(--flame); color: #fff; display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 20px; box-shadow: var(--shadow-btn);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--stone); font-size: 16px; margin: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 64px; align-items: start; }
.about-copy p { color: var(--ironwood); font-size: 18px; }
.about-copy strong { color: var(--ink); }
.stack-groups { display: grid; gap: 20px; margin-top: 32px; }
.stack-group h4 { margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span {
  display: inline-flex; align-items: center; height: 30px; padding: 0 12px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--bone); color: var(--ironwood); font-size: 14px; font-weight: 500;
}
.about-side { display: grid; gap: 24px; position: sticky; top: 100px; }
.founder-card { padding: 32px; text-align: center; }
.monogram {
  width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 28px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--flame) 0%, #ff9a4d 100%); color: #fff;
  font-family: var(--font-serif); font-size: 40px; font-weight: 500; letter-spacing: -0.02em;
  box-shadow: 0 12px 28px -10px rgba(250, 93, 0, .6);
}
.founder-name { font-size: 20px; font-weight: 600; margin: 0 0 2px; }
.founder-role { color: var(--stone); font-size: 15px; margin-bottom: 14px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0; }
.stats > div { background: var(--paper); border-radius: var(--r-card); padding: 22px 22px 20px; box-shadow: var(--shadow-card); border: 1px solid rgba(29, 30, 28, .04); }
.stats dt { font-family: var(--font-serif); font-size: 40px; line-height: 1; font-weight: 500; color: var(--ink); font-variation-settings: "opsz" 72; }
.stats dt span { color: var(--flame); }
.stats dd { margin: 8px 0 0; font-size: 14px; color: var(--stone); }

/* Contact */
.section--contact {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(254, 227, 181, .9) 0%, rgba(254, 227, 181, 0) 70%),
    radial-gradient(50% 45% at 0% 100%, rgba(250, 93, 0, .12) 0%, rgba(250, 93, 0, 0) 70%),
    var(--cream-deep);
}
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.contact-details { display: grid; gap: 18px; margin-top: 32px; }
.contact-details li { display: grid; gap: 2px; font-size: 17px; }
.contact-details a { font-weight: 600; }
.contact-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--ash); }

.contact-form { padding: 40px; display: grid; gap: 20px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: 15px; }
.field label span[aria-hidden] { color: var(--flame); }
.optional { color: var(--ash); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; letter-spacing: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--bone); border-radius: var(--r-btn); padding: 13px 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%231d1e1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--smoke); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--flame); box-shadow: 0 0 0 4px rgba(250, 93, 0, .15);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: #d3452e; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.form-note { margin: 0; color: var(--ash); font-size: 14px; }
.form-error { margin: 0; color: #b93a25; font-size: 15px; font-weight: 500; }
.form-success {
  position: absolute; inset: 0; border-radius: var(--r-card); background: var(--paper);
  display: grid; place-content: center; text-align: center; padding: 40px; gap: 8px;
}
.form-success[hidden] { display: none; }
.form-success h3 { margin-bottom: 4px; }
.form-success p { color: var(--stone); max-width: 32em; margin: 0 auto; }
.success-check {
  width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 16px; display: grid; place-items: center;
  background: var(--flame); color: #fff; box-shadow: 0 12px 28px -10px rgba(250, 93, 0, .6);
}
.success-check svg { width: 32px; height: 32px; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--bone); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand .brand, .footer-brand .brand:hover { color: #fff; }
.footer-brand p { margin: 16px 0 0; color: var(--smoke); max-width: 30em; }
.footer-nav, .footer-contact { display: grid; gap: 12px; align-content: start; }
.footer-nav a, .footer-contact a { color: var(--bone); font-weight: 500; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 28px; font-size: 14px; color: var(--smoke); }
.footer-bottom p { margin: 0; }

/* ---------- Reveal on scroll --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 480px; max-width: 640px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --section-y: 64px; --gutter: 20px; }
  body { font-size: 16px; }
  .lead { font-size: 18px; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 76px; flex-direction: column; gap: 4px;
    background: var(--cream); padding: 12px 20px 20px; border-bottom: 1px solid rgba(29, 30, 28, .08);
    box-shadow: 0 20px 40px -20px rgba(29, 30, 28, .25);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 4px; font-size: 18px; }
  .site-nav a::after { display: none; }
  .nav-cta-mobile { display: block; color: var(--flame) !important; font-weight: 600; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 48px 0 40px; }
  .hero-visual { min-height: 400px; }
  .win--main { width: 90%; left: 2%; }
  .win--qr { width: 124px; }
  .win--quote { width: 200px; left: 0; }
  .win-body { grid-template-columns: 72px 1fr; min-height: 240px; }
  .mock-chart { height: 64px; }
  .grid-2, .grid-4, .steps { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .work-body { padding: 24px; }
  .section-head { margin-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .logo-list { gap: 12px 28px; }
  .logo-list li { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .win { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .work-card { transition: none; }
}
