/* ==============================================================
   Common Cowboys — website styles
   Built to Brand Guidelines V1.0 (August 2026)
   Palette: Ink #1E2833 · Accent #2C3947 · Muted #6B7480
            Paper #F4F2EA · Accent LT #E4E1D3 · Khaki #A8A48E · Border #D8D6CE
   Type:    Source Serif 4 (display) + Source Sans 3 (body)
   Rules:   No italics for emphasis; use semibold. Restraint everywhere.
   ============================================================== */

:root {
  /* Brand palette */
  --ink:       #1E2833;
  --accent:    #2C3947;
  --accent-dk: #1B2530;
  --muted:     #6B7480;
  --paper:     #F4F2EA;
  --accent-lt: #E4E1D3;
  --khaki:     #A8A48E;
  --border:    #D8D6CE;

  /* Type stacks */
  --font-display: 'Source Serif 4', 'Georgia', serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;

  /* Type scale — conservative, per brand guide */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   clamp(1.375rem, 1.4vw + 1rem, 1.75rem);
  --text-2xl:  clamp(1.875rem, 2.4vw + 1rem, 2.625rem);
  --text-3xl:  clamp(2.25rem, 4vw + 1rem, 3.75rem);
  --text-hero: clamp(2.75rem, 6vw + 1rem, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 3px;
  --radius:    6px;
  --radius-lg: 10px;

  --container: 74rem;

  /* Leather-tooling asset URL — one place to change */
  --leather-url: url('images/leather-band-tile.png');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Container primitive */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-12));
}
.section { padding: clamp(var(--space-16), 9vw, var(--space-32)) 0; position: relative; }

/* --------------------------------------------------------------
   Signature leather band — per brand guide:
   thin horizontal strip, ink screen overlay 12–18%, khaki hairlines
   above & below. Never taller than 140px on web.
   The tile is 1200×200 with dense hand-tooled acanthus scrollwork.
   We size it by height so the pattern reads at web scale, and let
   it repeat horizontally.
   -------------------------------------------------------------- */
.leather-band {
  width: 100%;
  height: 64px;
  background-color: var(--accent-dk);
  background-image:
    linear-gradient(rgba(30, 40, 51, 0.14), rgba(30, 40, 51, 0.14)),
    var(--leather-url);
  background-repeat: no-repeat, repeat-x;
  background-position: center, center;
  background-size: cover, auto 100%;
  border-top: 1px solid var(--khaki);
  border-bottom: 1px solid var(--khaki);
  position: relative;
}
.leather-band--top {
  position: sticky;
  top: 0;
  z-index: 60;
}
.leather-band--footer {
  border-top: none;
  border-bottom: 1px solid rgba(168, 164, 142, 0.35);
  height: 44px;
}
/* Divider band sits between sections on the light background — thinner
   and lighter so it reads as ornament, not a wall. */
.leather-band--divider {
  height: 36px;
  border-top: 1px solid rgba(168, 164, 142, 0.65);
  border-bottom: 1px solid rgba(168, 164, 142, 0.65);
  background-image:
    linear-gradient(rgba(30, 40, 51, 0.20), rgba(30, 40, 51, 0.20)),
    var(--leather-url);
}
/* Onlight variant — a thin engraved rule instead of the full band, used
   when the surrounding paper background needs a lighter touch. */
.leather-band--onlight {
  height: 28px;
}

/* Section-header leather ornament — a subtle, narrow accent band
   that sits directly above section titles per the brand guide's
   "top of major section headers" application. */
.section-band {
  height: 44px;
  width: min(100%, 18rem);
  margin: 0 0 var(--space-10);
  background-image:
    linear-gradient(rgba(30, 40, 51, 0.14), rgba(30, 40, 51, 0.14)),
    var(--leather-url);
  background-repeat: no-repeat, repeat-x;
  background-position: center, center;
  background-size: cover, auto 100%;
  border-top: 1px solid var(--khaki);
  border-bottom: 1px solid var(--khaki);
}
.section-band--reverse { border-color: rgba(168, 164, 142, 0.5); }

/* --------------------------------------------------------------
   Eyebrows / section titles / body
   -------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow--light { color: rgba(244, 242, 234, 0.85); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 var(--space-6);
  color: var(--ink);
  max-width: 30ch;
}
.section-title--light { color: var(--paper); }

.section-lede, .lede {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--accent);
  max-width: 60ch;
  margin: 0;
  font-weight: 400;
}
.lede--light { color: rgba(244, 242, 234, 0.82); }

/* --------------------------------------------------------------
   Header
   -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 64px;                       /* sits directly under the leather band */
  z-index: 55;
  background: rgba(244, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(244, 242, 234, 0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.brand-mark {
  width: 80px; height: 80px;
  object-fit: contain;
  display: block;
  opacity: 0;                       /* revealed by JS after hero seal fades */
  transition: opacity .15s linear;
}
@media (max-width: 640px) {
  .header-inner { height: 88px; }
  .brand-mark { width: 64px; height: 64px; }
}
.nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(var(--space-6), 3vw, var(--space-10));
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav a {
  color: var(--ink);
  opacity: 0.75;
  transition: opacity .2s ease;
}
.nav a:hover { opacity: 1; }
.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  opacity: 1 !important;
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
@media (max-width: 720px) {
  .nav { gap: var(--space-4); }
  .nav a:not(.nav-cta) { display: none; }
}

/* --------------------------------------------------------------
   Hero
   -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,40,51,.55) 0%, rgba(30,40,51,.12) 42%, rgba(30,40,51,.78) 100%);
}
.hero-content {
  padding-top: var(--space-16);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  max-width: 60rem;
}
/* Oversized hero seal — fades out as user scrolls, handing off to the
   smaller sticky header seal. JS toggles opacity/transform via CSS var. */
.hero-seal {
  display: block;
  width: clamp(260px, 44vw, 585px);
  height: auto;
  margin: 0 0 var(--space-8);
  opacity: var(--hero-seal-opacity, 1);
  transform: translateY(calc((1 - var(--hero-seal-opacity, 1)) * -12px));
  transition: opacity .1s linear, transform .1s linear;
  filter:
    drop-shadow(0 2px 4px rgba(244,242,234,0.55))
    drop-shadow(0 12px 40px rgba(20,28,38,0.45));
  will-change: opacity, transform;
}
@media (max-width: 640px) {
  .hero-seal { width: 225px; }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-6);
  color: var(--paper);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(244, 242, 234, 0.9);
  margin: 0 0 var(--space-8);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* --------------------------------------------------------------
   Buttons
   -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 242, 234, 0.45);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(244, 242, 234, 0.1);
}
.btn-block { width: 100%; justify-content: center; padding: 1rem 1.5rem; }
.btn-inline { margin-top: var(--space-8); }

/* --------------------------------------------------------------
   Intro
   -------------------------------------------------------------- */
.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.intro-figure {
  margin: 0;
  position: relative;
}
.intro-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(30, 40, 51, 0.35);
}
.intro-figure figcaption {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Prose-shaped points under the intro copy */
.intro-points {
  list-style: none;
  margin: clamp(var(--space-8), 4vw, var(--space-12)) 0 0;
  padding: var(--space-6) 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: var(--space-4);
}
.intro-points li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: var(--space-4);
  align-items: baseline;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.55;
}
.intro-points__mark {
  color: var(--accent);
  font-size: 0.85em;
  line-height: 1.55;
  transform: translateY(0.05em);
}
@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------
   Services list
   -------------------------------------------------------------- */
.services { background: var(--accent-lt); }
.section-head {
  max-width: 44rem;
  margin: 0 0 clamp(var(--space-12), 6vw, var(--space-16));
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(30, 40, 51, 0.14);
}
.service {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  border-bottom: 1px solid rgba(30, 40, 51, 0.14);
  align-items: start;
}
.service-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.5vw + 0.75rem, 2.5rem);
  color: var(--khaki);
  line-height: 1;
  letter-spacing: -0.01em;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.18;
  margin: 0 0 var(--space-4);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.service-body p {
  max-width: 62ch;
  margin: 0 0 var(--space-6);
  color: var(--accent);
  line-height: 1.6;
}
.service-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.service-tags li {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--khaki);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(244, 242, 234, 0.55);
}
@media (max-width: 640px) {
  .service { grid-template-columns: 1fr; gap: var(--space-3); }
  .service-num { font-size: 1.5rem; }
}

/* --------------------------------------------------------------
   Fulfillment spotlight
   -------------------------------------------------------------- */
.fulfillment { background: var(--paper); }
.fulfillment-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.fulfillment-figure {
  margin: 0;
  position: relative;
}
.fulfillment-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.fulfillment-figure figcaption {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: var(--space-3);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0 0;
  display: grid;
  gap: var(--space-6);
}
.checklist li {
  position: relative;
  padding-left: var(--space-8);
  color: var(--accent);
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 20px; height: 1px;
  background: var(--khaki);
}
.checklist strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
@media (max-width: 860px) {
  .fulfillment-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------
   Approach — dark section
   -------------------------------------------------------------- */
.approach {
  position: relative;
  background-color: var(--accent-dk);
  background-image:
    /* darken the pattern heavily so copy stays readable */
    linear-gradient(rgba(20, 28, 38, 0.78), rgba(20, 28, 38, 0.78)),
    var(--leather-url);
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  background-size: cover, 900px auto;
  color: var(--paper);
  border-top: 1px solid rgba(168, 164, 142, 0.35);
  border-bottom: 1px solid rgba(168, 164, 142, 0.35);
}
/* Soft inner vignette so the pattern reads richer toward the edges */
.approach::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
}
.approach > .container { position: relative; z-index: 1; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(var(--space-10), 6vw, var(--space-24));
  align-items: start;
}
.approach-head { position: static; }
.wont-do {
  margin: var(--space-10) 0 0;
  padding: var(--space-6) var(--space-6);
  border: 1px solid rgba(168, 164, 142, 0.28);
  border-radius: 2px;
  color: rgba(244, 242, 234, 0.78);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.wont-do-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--khaki);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.approach-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-10);
}
.approach-steps li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(168, 164, 142, 0.22);
}
.approach-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--khaki);
  letter-spacing: 0.02em;
}
.approach-steps h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: var(--paper);
}
.approach-steps p {
  color: rgba(244, 242, 234, 0.78);
  margin: 0;
  max-width: 58ch;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-head { position: static; }
}

/* --------------------------------------------------------------
   Industries grid (Who we work with)
   -------------------------------------------------------------- */
.clients { background: var(--paper); }
.industries-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.industry-tile {
  position: relative;
  padding: clamp(var(--space-8), 3vw, var(--space-10));
  background: var(--paper);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .25s ease;
}
.industry-tile:hover { background: var(--accent-lt); }
.industry-num {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--khaki);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.industry-tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 var(--space-3);
  color: var(--ink);
  max-width: 20ch;
}
.industry-tile p {
  margin: 0;
  color: var(--accent);
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 40ch;
}
.industries-footnote {
  margin: var(--space-10) 0 0;
  padding: var(--space-5) var(--space-6);
  border-left: 3px solid var(--khaki);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 60ch;
}
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------
   Contact
   -------------------------------------------------------------- */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.contact-facts {
  margin: var(--space-10) 0 0;
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6) 0 0;
  border-top: 1px solid var(--border);
}
.contact-facts > div { display: grid; gap: var(--space-1); }
.contact-facts dt {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.35;
}
.contact-facts a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
  background: var(--accent-lt);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid;
  gap: var(--space-4);
}
.field { display: grid; gap: var(--space-2); }
.field label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field .opt {
  color: rgba(107, 116, 128, 0.7);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.7rem;
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 6rem; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 57, 71, 0.12);
}
.form-status {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--muted);
  min-height: 1.25rem;
}
.form-status.ok { color: var(--accent); }
.form-status.err { color: #9b2c2c; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------
   Footer
   -------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 242, 234, 0.75);
  padding: 0 0 var(--space-8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: start;
  padding-top: var(--space-16);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--paper);
}
.footer-mark {
  width: 96px; height: 96px;
  flex-shrink: 0;
  opacity: 0.95;
}
.footer-word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--paper);
}
.footer-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 242, 234, 0.55);
  margin: 0.25rem 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
  justify-content: flex-end;
}
.footer-nav a { color: rgba(244, 242, 234, 0.7); }
.footer-nav a:hover { color: var(--paper); }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(244, 242, 234, 0.12);
  padding-top: var(--space-6);
  margin: var(--space-8) 0 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: rgba(244, 242, 234, 0.5);
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

/* --------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
