/* =====================================================================
   Urban Press Co. — core stylesheet
   Hand-built. No framework, no build step.
   Edit the variables in :root to re-skin the whole site.
   ===================================================================== */

/* ---- 1. Design tokens ------------------------------------------------ */
:root {
  /* Colour — "Prestige Graphite" dark theme.
     Swap these eight values to re-skin the entire site. */
  --ink:        #ece9e1;   /* primary text — warm off-white            */
  --forest:     #23262c;   /* elevated panel (feature band)            */
  --sage:       #8fa890;   /* secondary accent — used in ambient glow  */
  --linen:      #16181b;   /* page background — deep graphite          */
  --paper:      #1e2126;   /* raised surface — cards                   */
  --brass:      #e3ba6a;   /* champagne-gold accent — marks, CTAs      */
  --muted:      #9aa0a6;   /* muted body text                          */
  --line:       rgba(236,233,225,.13); /* hairline rule colour         */

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section: clamp(4.5rem, 11vw, 10rem);
  --maxw: 1240px;

  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- 2. Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--linen);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, .96rem + .25vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* Paper grain — sits above background, below content. Subtle. */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 3;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Inset hairline "print margin" that frames the whole page */
.frame {
  position: fixed; z-index: 40;
  pointer-events: none;
  inset: clamp(.6rem, 1.4vw, 1.25rem);
  border: 1px solid var(--line);
}
@media (max-width: 640px) { .frame { display: none; } }

/* Ambient background — soft drifting light, the only "motion" on the page.
   Sits behind all content; freezes for users who prefer reduced motion. */
.bg-orbs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .85; will-change: transform; }
.orb.a {
  width: 46vw; height: 46vw; left: -8vw; top: -8vw;
  background: radial-gradient(circle at 35% 35%, rgba(150,178,152,.7), rgba(150,178,152,0) 68%);
  animation: drift-a 22s ease-in-out infinite;
}
.orb.b {
  width: 42vw; height: 42vw; right: -10vw; top: 10vh;
  background: radial-gradient(circle at 50% 50%, rgba(227,186,106,.72), rgba(227,186,106,0) 68%);
  animation: drift-b 26s ease-in-out infinite;
}
.orb.c {
  width: 50vw; height: 50vw; left: 14vw; bottom: -26vh;
  background: radial-gradient(circle at 50% 50%, rgba(104,134,170,.66), rgba(104,134,170,0) 68%);
  animation: drift-c 30s ease-in-out infinite;
}
/* lighter & cheaper on phones */
@media (max-width: 640px) {
  .orb { filter: blur(55px); opacity: .75; }
  .orb.a { width: 78vw; height: 78vw; }
  .orb.b { width: 72vw; height: 72vw; }
  .orb.c { width: 85vw; height: 85vw; }
}
/* Larger, faster drift so the movement is actually perceptible. */
@keyframes drift-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(18vw,12vh) scale(1.28); } }
@keyframes drift-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-16vw,14vh) scale(1.22); } }
@keyframes drift-c { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(14vw,-12vh) scale(1.32); } }

/* keep page content above the ambient layer */
main, .site-foot { position: relative; z-index: 1; }

/* ---- 3. Layout helpers --------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); position: relative; }
.lede { max-width: 56ch; }

/* Section eyebrow: "01 — Service" */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.eyebrow .num { color: var(--brass); font-variant-numeric: tabular-nums; }
.eyebrow::before { display: none; }

/* ---- 4. Typography -------------------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-optical-sizing: auto;
  line-height: .98;
  letter-spacing: -.01em;
  font-size: clamp(2.6rem, 1.2rem + 6.2vw, 6.4rem);
}
h2.title {
  font-family: var(--serif);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 1.1rem + 3.4vw, 3.7rem);
}
h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.15; }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.measure { max-width: 62ch; }
.muted { color: var(--muted); }

/* ---- 5. Links & buttons -------------------------------------------- */
.link {
  position: relative; display: inline-block; padding-bottom: 2px;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.link:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .95rem 1.6rem;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--brass); border-radius: var(--radius);
  background: var(--brass); color: #15171a;
  box-shadow: 0 10px 30px -14px rgba(205,169,107,.55);
  transition: background .4s var(--ease), color .4s var(--ease), transform .3s var(--ease), box-shadow .4s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn:hover::before { left: 150%; }
.btn:hover { background: transparent; color: var(--brass); transform: translateY(-2px); box-shadow: 0 14px 34px -16px rgba(205,169,107,.4); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); box-shadow: none; }
.btn--light { background: var(--ink); color: var(--linen); border-color: var(--ink); box-shadow: none; }
.btn--light:hover { background: transparent; color: var(--ink); }

/* ---- 6. Header / nav ----------------------------------------------- */
/* Sticky top stack — promo bar + menu pinned together (web + mobile) */
.topbar { position: sticky; top: 0; z-index: 50; }
.site-head {
  position: relative; z-index: 1;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--linen) 88%, transparent);
  border-bottom: 1px solid var(--line);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-head.is-stuck { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em; }
.brand .mark { width: 34px; height: 34px; }
.brand b { font-weight: 500; }
.brand small { font-family: var(--sans); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); display: block; line-height: 1; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: .82rem; letter-spacing: .04em; color: var(--muted); transition: color .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-size: .76rem !important; letter-spacing: .12em; text-transform: uppercase; color: var(--ink) !important; font-weight: 600; }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
  .nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--linen); padding: 2rem var(--gutter); border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { font-size: 1.1rem; }
}

/* ---- 7. Hero -------------------------------------------------------- */
.hero { padding-top: clamp(2.5rem, 5vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.hero-eyebrow { margin-bottom: 1.8rem; }
.hero h1 { margin-bottom: 1.8rem; }
.hero h1 .ix { display: block; }
.hero .sub { max-width: 42ch; color: var(--muted); font-size: 1.1rem; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-figure { position: relative; }
.hero-figure img { width: 100%; height: clamp(420px, 56vh, 640px); object-fit: cover; border-radius: var(--radius); }
.figure-cap {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--linen); padding: .8rem 1.1rem;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-figure img { height: 56vh; }
}

/* ---- 8. Marquee (sectors) ------------------------------------------ */
.marquee { border-block: 1px solid var(--line); padding-block: 1.4rem; overflow: hidden; }
.marquee-track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: slide 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 3.5rem; font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 350; color: var(--ink); }
.marquee-item::after { content: "✦"; color: var(--brass); font-size: .7em; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---- 9. Statement section ------------------------------------------ */
.statement .big {
  font-family: var(--serif); font-weight: 300; line-height: 1.12;
  font-size: clamp(1.6rem, 1rem + 2.6vw, 3rem); letter-spacing: -.01em; max-width: 22ch;
}
.statement .big em { font-style: italic; color: var(--brass); }

/* ---- 10. Service / editorial list ---------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 6rem); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }

.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: baseline;
  padding-block: 1.8rem; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease);
}
.svc:hover { padding-left: .8rem; }
.svc .svc-num { font-variant-numeric: tabular-nums; color: var(--brass); font-size: .8rem; letter-spacing: .1em; }
.svc h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.svc p { color: var(--muted); grid-column: 2; max-width: 50ch; margin-top: .5rem; }
.svc .svc-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---- 11. Cards (process / why) ------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 55px -34px rgba(0,0,0,.7); border-color: rgba(205,169,107,.35); }
.card-media { aspect-ratio: 3 / 2; }
.card-body { padding: 1.4rem 1.4rem 1.7rem; }
.card .step {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  width: 2.2rem; height: 2.2rem; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1rem; color: #15171a; font-weight: 500;
  background: var(--brass); border-radius: 50%;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .92rem; }

/* ---- 12. Dark feature band ----------------------------------------- */
.band {
  background: linear-gradient(155deg, #272b32 0%, #1a1d21 100%);
  color: var(--ink); border-radius: var(--radius);
  border: 1px solid rgba(205,169,107,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 40px 80px -50px rgba(0,0,0,.8);
}
.band .eyebrow, .band .muted { color: color-mix(in srgb, var(--ink) 65%, transparent); }
.band .eyebrow .num { color: var(--brass); }
.band .title { color: var(--ink); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; border-top: 1px solid rgba(243,239,228,.18); }
.stat { padding-top: 1.8rem; }
.stat .n { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; }
.stat .l { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in srgb, var(--ink) 60%, transparent); margin-top: .7rem; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 0; } .stat { border-bottom: 1px solid rgba(243,239,228,.18); padding-block: 1.4rem; } }

/* ---- 13. Journal / blog preview ------------------------------------ */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 880px) { .posts { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card .thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); margin-bottom: 1.3rem; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-meta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; display: flex; gap: .8rem; }
.post-meta .dot { color: var(--brass); }
.post-card h3 { font-size: 1.5rem; margin-bottom: .6rem; transition: color .3s var(--ease); }
.post-card:hover h3 { color: var(--brass); }
.post-card p { color: var(--muted); font-size: .95rem; }

/* ---- 14. Contact / CTA --------------------------------------------- */
.cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); }
.contact-row { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .k { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-row .v { font-family: var(--serif); font-size: 1.05rem; }

/* ---- 15. Footer ---------------------------------------------------- */
.site-foot { border-top: 1px solid var(--line); padding-block: 3.5rem 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.foot-grid h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1.2rem; }
.foot-grid a { color: var(--ink); font-size: .95rem; display: inline-block; padding-block: .25rem; }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted); }

/* ---- 16. Reveal-on-scroll ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---- 17. Article (blog post) --------------------------------------- */
.article { padding-block: clamp(3rem, 7vw, 6rem); }
.article-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: 3rem; }
.article-head h1 { font-family: var(--serif); font-weight: 300; line-height: 1.05; font-size: clamp(2.1rem, 1.2rem + 3.5vw, 4rem); letter-spacing: -.01em; margin-block: 1.4rem; }
.article-hero { max-width: 1100px; margin: 0 auto 3.5rem; }
.article-hero img { width: 100%; height: clamp(300px, 48vh, 560px); object-fit: cover; border-radius: var(--radius); }
.prose { max-width: 680px; margin-inline: auto; }
.prose > * + * { margin-top: 1.4rem; }
.prose p { font-size: 1.12rem; line-height: 1.75; color: #cbc8c0; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; line-height: 1.1; margin-top: 3rem; letter-spacing: -.01em; }
.prose h3 { font-size: 1.3rem; margin-top: 2rem; }
.prose blockquote { border-left: 2px solid var(--brass); padding-left: 1.4rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.3; color: var(--ink); margin-block: 2.4rem; }
.prose ul { padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; margin-top: .7rem; color: #cbc8c0; }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.prose strong { font-weight: 600; }
.prose a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); }

/* ---- 18. Blog index page ------------------------------------------- */
.page-head { padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem,4vw,3rem); }
.feature-post { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; border-block: 1px solid var(--line); padding-block: clamp(2rem,4vw,3rem); }
@media (max-width: 880px) { .feature-post { grid-template-columns: 1fr; } }
.feature-post .thumb { aspect-ratio: 16/11; overflow: hidden; border-radius: var(--radius); }
.feature-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.feature-post h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.05; margin-block: 1rem 1rem; }

/* ---- 19. Misc ------------------------------------------------------ */
.center { text-align: center; }
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 3.5rem; }
.divider { height: 1px; background: var(--line); border: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---- 20. Credibility chips ----------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .03em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: .45rem .95rem;
  background: color-mix(in srgb, var(--paper) 65%, transparent);
  backdrop-filter: blur(4px);
}
.chip::before { content: "✦"; color: var(--brass); font-size: .7em; }

/* ---- 21. Voices / testimonials ------------------------------------- */
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 760px) { .voice-grid { grid-template-columns: 1fr; } }
.voice {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.4rem); display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.voice:hover { transform: translateY(-4px); box-shadow: 0 28px 55px -34px rgba(0,0,0,.7); border-color: rgba(205,169,107,.3); }
.voice .stars { color: var(--brass); letter-spacing: .18em; font-size: .9rem; margin-bottom: 1.1rem; }
.voice .quote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); line-height: 1.34; letter-spacing: -.01em; color: var(--ink);
}
.voice .who {
  margin-top: auto; padding-top: 1.4rem; font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: .7rem;
}
.voice .who .mk { width: 28px; height: 1px; background: var(--brass); display: inline-block; }

/* ---- 22. Stat counters --------------------------------------------- */
.stat .n { font-variant-numeric: tabular-nums; }

/* crisp edges for photos on the dark background */
.hero-figure img, .article-hero img, .feature-post .thumb img,
.post-card .thumb, .voice { box-shadow: 0 1px 0 rgba(255,255,255,.03); }

/* ---- 23. Mobile-first refinements ---------------------------------- */
@media (max-width: 880px) {
  .nav { height: 66px; }
  .site-head { background: color-mix(in srgb, var(--linen) 88%, transparent); }
  .site-head.is-stuck { background: color-mix(in srgb, var(--linen) 94%, transparent); }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero .sub { font-size: 1.05rem; }
  .hero-figure img { height: 58vh; }
  .chips { gap: .5rem; }
  .chip { padding: .4rem .8rem; font-size: .72rem; }
  /* a touch more breathing room between stacked sections on phones */
  .section { padding-block: clamp(3.25rem, 14vw, 5rem); }
}

/* ---- 24. Trust strip (under hero) ---------------------------------- */
.trust { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 35%, transparent); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 1rem 1.8rem; flex-wrap: wrap; padding-block: 1.15rem; }
.trust .stars { color: var(--brass); letter-spacing: .14em; font-size: 1rem; }
.trust .t-txt { font-size: .82rem; letter-spacing: .03em; color: var(--muted); }
.trust .t-txt b { color: var(--ink); font-weight: 600; }
.trust .sep { width: 1px; height: 16px; background: var(--line); }
@media (max-width: 620px) { .trust .sep { display: none; } .trust-inner { gap: .5rem 1.2rem; } }

/* ---- 25. Benefit callouts (how it works) --------------------------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; gap: .7rem; } }
.benefit {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 55%, transparent);
}
.benefit .bi { color: var(--brass); flex-shrink: 0; line-height: 1; }
.benefit .bi svg { width: 1.7rem; height: 1.7rem; display: block; }
.benefit b { font-weight: 600; display: block; }
.benefit span { color: var(--muted); font-size: .86rem; }

/* ---- 26. Coverage / areas ------------------------------------------ */
.coverage { position: relative; overflow: hidden; }
.coverage-bg { position: absolute; inset: 0; margin: 0; }
.coverage-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.32) brightness(.62) contrast(1.05); }
.coverage-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,20,23,.9) 0%, rgba(18,20,23,.8) 45%, rgba(18,20,23,.9) 100%),
    radial-gradient(110% 120% at 80% 20%, rgba(227,186,106,.16), rgba(227,186,106,0) 55%);
}
.coverage > .wrap { position: relative; z-index: 2; }
.coverage .area { background: color-mix(in srgb, #1e2126 78%, transparent); backdrop-filter: blur(2px); }
.areas { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.area {
  font-size: .85rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.05rem;
  background: color-mix(in srgb, var(--paper) 45%, transparent);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.area::before { content: "✦"; color: var(--brass); font-size: .7em; margin-right: .5rem; }
.area:hover { border-color: rgba(227,186,106,.45); transform: translateY(-2px); }

/* ---- 27. Guarantee band -------------------------------------------- */
.guarantee {
  display: flex; align-items: center; gap: 1.5rem 2.5rem; flex-wrap: wrap; justify-content: space-between;
  border: 1px solid rgba(227,186,106,.3); border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(227,186,106,.09), rgba(227,186,106,0) 60%);
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.guarantee .g-seal {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--brass);
  display: flex; align-items: center; gap: .9rem; flex-shrink: 0;
}
.guarantee .g-seal .ring {
  width: 52px; height: 52px; border: 1px solid var(--brass); border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem;
}
.guarantee h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }
.guarantee p { color: var(--muted); margin-top: .45rem; max-width: 52ch; }
@media (max-width: 620px) { .guarantee { justify-content: flex-start; } }

/* ---- 28. Branded photo treatment ----------------------------------
   Unifies all stock photography into one "Urban Press" look:
   warm graphite duotone + a fine gold inner frame. */
.media, .card-media, .hero-figure, .post-card .thumb, .feature-post .thumb, .article-hero {
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.media img, .card-media img, .hero-figure img, .post-card .thumb img,
.feature-post .thumb img, .article-hero img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.26) contrast(1.05) brightness(.9);
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.media::after, .card-media::after, .hero-figure::after, .post-card .thumb::after,
.feature-post .thumb::after, .article-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(165deg, rgba(22,24,27,.06) 0%, rgba(22,24,27,.46) 100%),
    radial-gradient(120% 130% at 18% 0%, rgba(227,186,106,.18), rgba(227,186,106,0) 55%);
  box-shadow: inset 0 0 0 1px rgba(227,186,106,.2);
}
.media:hover img, .card:hover .card-media img { transform: scale(1.05); }
.figure-cap { z-index: 3; }

/* ---- 29. Brand band (full-bleed brand moment) ---------------------- */
.brandband {
  position: relative; overflow: hidden;
  min-height: clamp(300px, 44vh, 480px);
  display: grid; place-items: center; text-align: center;
  margin-block: clamp(1rem, 3vw, 2rem);
}
.brandband .media { position: absolute; inset: 0; border-radius: 0; }
.brandband .media::after {
  background: linear-gradient(180deg, rgba(20,22,25,.62), rgba(20,22,25,.82));
  box-shadow: none;
}
.brandband-inner { position: relative; z-index: 2; padding: 2rem 1.5rem; }
.bb-mark { width: 52px; height: 52px; margin: 0 auto 1.3rem; opacity: .92; }
.bb-word {
  font-family: var(--serif); font-weight: 300; letter-spacing: .015em;
  font-size: clamp(1.9rem, 1rem + 4vw, 3.4rem); line-height: 1;
}
.bb-tag {
  font-family: var(--serif); font-style: italic; color: var(--brass);
  margin-top: .7rem; font-size: clamp(1.02rem, .9rem + 1vw, 1.4rem);
}

/* ---- 30. Service image column -------------------------------------- */
.service-img { align-self: start; aspect-ratio: 4 / 5; }
@media (min-width: 881px) { .service-img { position: sticky; top: 96px; } }

/* ---- 31. Enquiry form ---------------------------------------------- */
.form { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.form .row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--brass); }
.field input, .field select, .field textarea {
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem .95rem; font: inherit; font-size: .95rem; width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 85%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(227,186,106,.16);
  background: color-mix(in srgb, var(--paper) 95%, transparent);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e3ba6a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center;
}
.field select option { background: #1e2126; color: var(--ink); }
.form-foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.sending { color: var(--muted); }
.form-status.ok { color: var(--brass); }
.form-status.err { color: #e08c7a; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* ---- 32. Announcement / promo bar ---------------------------------- */
.announce {
  position: relative; z-index: 41;
  background: linear-gradient(90deg, #e9c987 0%, #e3ba6a 45%, #d3a14a 100%);
  color: #15171a; font-size: .82rem; letter-spacing: .01em;
}
.announce[hidden] { display: none; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: .65rem; flex-wrap: wrap; padding: .6rem 2.4rem; text-align: center; }
.announce strong { font-weight: 600; }
.announce a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.announce .x { position: absolute; right: .7rem; top: 50%; transform: translateY(-50%); background: none; border: 0; color: #15171a; font-size: 1.15rem; line-height: 1; cursor: pointer; opacity: .65; padding: 4px; }
.announce .x:hover { opacity: 1; }
@media (max-width: 520px) { .announce-inner { font-size: .76rem; padding: .55rem 2rem; } }

/* ---- 33. Gold gradient text + kinetic rotator ---------------------- */
.grad {
  background: linear-gradient(95deg, #f0d49a 0%, #e3ba6a 50%, #cf9b44 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rotator { display: inline-block; }
.rotator .word { display: inline-block; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.rotator.swap .word { opacity: 0; transform: translateY(10px); }

/* ---- 34. Sticky mobile CTA ----------------------------------------- */
.mobile-cta { display: none; }
@media (max-width: 880px) {
  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
    padding: .65rem .9rem calc(.65rem + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--linen) 90%, transparent);
    backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 4.6rem; }
}

/* ---- 35. Hero CTA attention glow ----------------------------------- */
.btn-glow { animation: glow 2.6s ease-in-out infinite; }
@keyframes glow {
  0%, 100% { box-shadow: 0 10px 30px -14px rgba(227,186,106,.55); }
  50% { box-shadow: 0 12px 38px -10px rgba(227,186,106,.85); }
}

/* ---- 36. Anchor offset (clears the sticky top stack) --------------- */
section[id], .marquee[id] { scroll-margin-top: 124px; }
@media (max-width: 880px) { section[id], .marquee[id] { scroll-margin-top: 104px; } }

/* ---- 38. Section background images (Testimonials, Enquire, …) ------ */
.has-bg { position: relative; overflow: hidden; }
.sec-bg { position: absolute; inset: 0; margin: 0; }
.sec-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.32) brightness(.58) contrast(1.05); }
.sec-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,20,23,.93) 0%, rgba(18,20,23,.82) 50%, rgba(18,20,23,.94) 100%),
    radial-gradient(110% 120% at 85% 12%, rgba(227,186,106,.13), rgba(227,186,106,0) 55%);
}
.has-bg > .wrap { position: relative; z-index: 2; }

/* ---- 37. Full-bleed hero ------------------------------------------- */
.hero--full {
  position: relative; overflow: hidden;
  min-height: clamp(540px, 82vh, 840px);
  display: grid; align-items: center;
  padding-block: clamp(3.5rem, 9vh, 7rem);
}
.hero-bg { position: absolute; inset: 0; margin: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) brightness(.82) contrast(1.05); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,20,23,.95) 0%, rgba(18,20,23,.82) 36%, rgba(18,20,23,.45) 70%, rgba(18,20,23,.32) 100%),
    linear-gradient(0deg, rgba(18,20,23,.72) 0%, rgba(18,20,23,0) 46%),
    radial-gradient(120% 100% at 14% 28%, rgba(227,186,106,.14), rgba(227,186,106,0) 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero--full .display { font-size: clamp(2.7rem, 1rem + 7.2vw, 6.6rem); font-weight: 600; letter-spacing: -.025em; }
.hero--full .sub { max-width: 46ch; color: #d7d5cd; }
@media (max-width: 560px) {
  .hero--full { min-height: 80vh; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(18,20,23,.55) 0%, rgba(18,20,23,.5) 38%, rgba(18,20,23,.88) 100%),
      radial-gradient(120% 70% at 50% 0%, rgba(227,186,106,.13), rgba(227,186,106,0) 60%);
  }
}

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