/*
Theme Name: The Grater Guys
Theme URI: https://thegraterguys.com
Author: A Lynn Creative
Author URI: https://alynncreative.com
Description: Custom theme for The Grater Guys — gameday fashion originals. Requires Advanced Custom Fields Pro, Classic Editor, and Fluent Forms.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: grater-guys
*/

/* ============================================================
   THE GRATER GUYS — shared stylesheet
   Palette sampled from the primary logo:
     navy   #06345E  (the "GRATER" script)
     steel  #667785  (the "THE / GUYS" block letters)
     silver #D1D3D4  (the grater body)
   Accent: copper #A5673F (from the earring hooks) — used sparingly.
   Avoids green + yellow per client brief.
   ============================================================ */

:root {
  --navy: #06345E;
  --navy-deep: #04223D;
  --navy-soft: #0E4577;
  --steel: #667785;
  --steel-dark: #47535D;
  --silver: #D1D3D4;
  --silver-light: #E9ECEE;
  --paper: #F5F7F8;
  --white: #FFFFFF;
  --ink: #10181F;
  --copper: #A5673F;      /* decorative borders/underlines only */
  --copper-ink: #8E5533;  /* copper for text — 6:1 on white */

  --font-sans: "Albert Sans", "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 10px;
  --shadow: 0 10px 30px rgba(6, 52, 94, 0.12);
  --maxw: 1140px;

  /* Punched-hole pattern (the signature motif), staggered like a box grater */
  --holes-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Ccircle cx='9' cy='9' r='3.4' fill='%2310181F' fill-opacity='0.16'/%3E%3Ccircle cx='27' cy='27' r='3.4' fill='%2310181F' fill-opacity='0.16'/%3E%3C/svg%3E");
  --holes-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Ccircle cx='9' cy='9' r='3.4' fill='%23FFFFFF' fill-opacity='0.07'/%3E%3Ccircle cx='27' cy='27' r='3.4' fill='%23FFFFFF' fill-opacity='0.07'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Type ---------- */

h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; }

/* Heavy block caps — echoes THE / GUYS in the wordmark */
.block {
  font-family: var(--font-sans);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #001E34;
}

/* Accent word — same heavy block caps, set apart by color */
em.g, .g {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #001E34;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--steel-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #E8632F 0 55%, #C83803 60%);
  box-shadow: inset 0 -1px 1px rgba(0,0,0,.35);
}

.lede { font-size: 1.18rem; color: var(--steel-dark); max-width: 42ch; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: 6px;
  border: 2px solid var(--navy);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #334A5D;
  color: #fff;
}
.btn-primary:hover { background: #3E5A70; border-color: #3E5A70; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: rgba(6,52,94,.06); }
.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,30,52,.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-logo img { height: 72px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #001E34;
  padding: .35rem 0;
  border-bottom: 3px solid transparent;
}
.nav-links a { transition: border-color .15s ease, color .15s ease; }
.nav-links a:not(.btn-primary):hover { border-bottom-color: #C83803; }
.nav-links a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.nav-cta { margin-left: .4rem; }
.nav-cta .btn { padding: .6rem 1.15rem; font-size: .82rem; }
.nav-links a.btn-primary { color: #fff; background: #334A5D; border-color: #334A5D; }
.nav-links a.btn-primary:hover { color: #fff; background: #3E5A70; border-color: #3E5A70; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #001E34;
  border-radius: 6px;
  padding: .45rem .6rem;
  cursor: pointer;
  color: #001E34;
}
.nav-toggle svg { display: block; }

/* ---------- Hero (home) — copy left, product cluster right ---------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F5F7 40%, #D8DFE5 100%);
  overflow: hidden;
}
/* Grater-hole texture that fades in behind the products instead of tiling the section */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--holes-dark);
  opacity: .55;
  -webkit-mask-image: radial-gradient(62% 88% at 76% 12%, #000 22%, transparent 70%);
  mask-image: radial-gradient(62% 88% at 76% 12%, #000 22%, transparent 70%);
}
.hero > .wrap { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 2.6rem;
  align-items: center;
  padding: 3rem 24px 7rem;
}
.hero-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: #001E34;
  margin-bottom: 1.1rem;
  max-width: none;
}
.hero-title em {
  font-style: normal;
  font-weight: 800;
  color: #001E34;
  white-space: nowrap;
}
.hero .g { color: var(--silver); }
.hero .g-rule { border-bottom-color: var(--copper); }
.hero-copy { min-width: 0; margin-top: -4rem; }
.hero-copy .eyebrow { margin-bottom: 1rem; }
.hero-copy .lede {
  margin: 0 0 2rem;
  max-width: 42ch;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.65;
  color: #001E34;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero .btn-ghost { color: var(--navy); border-color: rgba(6,52,94,.55); }
.hero .btn-ghost:hover { background: rgba(6,52,94,.08); }

/* Football-scallop cutout blending hero into the next section */
.hero-cut {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 78px;
  display: block;
  pointer-events: none;
}
.hero-cut-m { display: none; }

/* Product cluster — purse big, earrings beside, roundel stamp */
.hero-cluster {
  position: relative;
  min-height: 560px;
}
.collage-item {
  margin: 0;
  position: absolute;
  background: linear-gradient(150deg, #EDF0F2 0%, var(--silver) 55%, #B9BEC2 100%);
  border-radius: var(--radius);
  padding: 9px;
  box-shadow: 0 16px 38px rgba(6,52,94,.28), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .2s ease;
}
.collage-item img {
  display: block;
  width: 100%;
  height: auto; /* beat WP's height attribute so aspect-ratio can crop */
  border-radius: 6px;
  object-fit: cover;
}
.c-main {
  width: 66%;
  left: 1%;
  top: 0;
  z-index: 2;
}
.c-main img { aspect-ratio: 4 / 4.4; object-position: 50% 72%; }
.c-side {
  width: 45%;
  right: 0;
  bottom: 2%;
  transform: rotate(4deg);
  z-index: 3;
}
.c-side img { aspect-ratio: 4 / 4.2; object-position: top; }
.c-side:hover { transform: rotate(0deg); }
/* "Not a hater. Just a grater." roundel stamp */
.roundel {
  position: absolute;
  height: auto;
  width: 35%;
  max-width: 225px;
  left: -7%;
  bottom: 2%;
  z-index: 4;
  transform: rotate(-10deg);
  filter: drop-shadow(0 10px 22px rgba(6,52,94,.35));
}

/* ---------- Fan photo marquee ---------- */

.fanroll {
  background: #fff;
  padding: 1.6rem 0 2.8rem;
  overflow: hidden;
}
.fanroll-track {
  display: flex;
  width: max-content;
  animation: fanroll 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
@media (hover: hover) {
  .fanroll:hover .fanroll-track { animation-play-state: paused; }
}
.fanroll-track.is-paused { animation-play-state: paused; }
.fan-card {
  height: 290px;
  margin-right: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(6,52,94,.16);
  flex: none;
}
.fan-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.fan-card:nth-child(even) { transform: rotate(1.1deg) translateY(6px); }
.fan-card img { height: 100%; width: auto; display: block; }
@keyframes fanroll {
  to { transform: translate3d(var(--fanroll-shift, -50%), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .fanroll-track { animation: none; }
  .fanroll { overflow-x: auto; }
}

/* ---------- Slogan band ---------- */

.slogan {
  background:
    var(--holes-light),
    linear-gradient(120deg, #001E34, #334A5D 78%, #3E5A70);
  color: #EBEDEF;
  text-align: center;
  padding: 4rem 24px;
}
.slogan p {
  margin: 0 auto;
  max-width: 20ch;
  font-family: var(--font-sans);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.8rem, 4.6vw, 3.2rem);
  line-height: 1.15;
}
.slogan em {
  font-style: normal;
  color: #CCD2D6;
  border-bottom: 4px solid #C83803;
  padding: 0 .05em .02em;
}

/* ---------- Sections ---------- */

.section { padding: 4.5rem 0; }
.section-head { max-width: 62rem; margin-bottom: 2.6rem; }
h2.block {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: .01em;
  color: #001E34;
}
h2.block em, h2.block .g { text-transform: none; letter-spacing: .01em; font-weight: 800; color: #001E34; }
h3.block, h3.block em, h3.block .g {
  text-transform: none;
  letter-spacing: .01em;
  font-weight: 800;
  color: #001E34;
}
.section.tint { background: #fff; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.section.facts-band { background: #CCD2D6; }
.section.origin { position: relative; overflow: hidden; }
.section.origin::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--holes-dark);
  opacity: .55;
  -webkit-mask-image: radial-gradient(46% 85% at 95% 25%, #000 18%, transparent 72%);
  mask-image: radial-gradient(46% 85% at 95% 25%, #000 18%, transparent 72%);
}
.section.origin > .wrap { position: relative; }
.section.origin .split p { color: #001E34; }
main > .section:last-of-type { padding-bottom: 3rem; }

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(6,52,94,.06);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-photo {
  aspect-ratio: 4 / 2.9;
  overflow: hidden;
  background: linear-gradient(160deg, var(--silver-light), var(--silver));
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-body h3 { font-size: 1.35rem; margin: 0; }
.card-kicker {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #334A5D;
}
.card-body p { margin: 0; color: #001E34; }
.card-actions { margin-top: auto; padding-top: 1rem; display: flex; gap: .7rem; flex-wrap: wrap; }

/* ---------- Fact tiles ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.fact {
  background: #fff;
  border: 1px solid var(--silver);
  border-left: 5px solid var(--navy);
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
}
.facts .fact:nth-child(1) { border-left-color: #C83803; }
.facts .fact:nth-child(2) { border-left-color: #4F2683; }
.facts .fact:nth-child(3) { border-left-color: #0076B6; }
.fact h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; }
.fact p { margin: 0; color: #001E34; font-size: .98rem; }

/* ---------- Split feature (story teaser, product features) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}
.split.rev > .split-media { order: 2; }

/* Placeholder photo tile — swap src when pro photos arrive */
.ph {
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--silver-light), #D9DCDF 70%, #CFD3D6);
  border: 1px dashed var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--steel-dark);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  min-height: 320px;
  padding: 1.5rem;
}

/* ---------- Quotes ---------- */

blockquote.pull {
  margin: 0;
  padding: 0 0 0 1.6rem;
  border-left: 4px solid #334A5D;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.55;
  color: #001E34;
}
.card .pull, .founder-block .pull { font-size: 1rem; margin-top: .6rem; }
blockquote.pull footer {
  margin-top: .8rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel-dark);
}

/* ---------- Timeline (about page) ---------- */

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--silver);
}
.timeline li {
  position: relative;
  padding: 0 0 2.4rem 3rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #E8632F 0 40%, #C83803 70%);
  border: 2px solid var(--navy);
  box-shadow: inset 0 -2px 2px rgba(0,0,0,.25);
}
.timeline .t-date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #334A5D;
}
.timeline h3 { margin: .2rem 0 .35rem; font-size: 1.25rem; }
.timeline p { margin: 0; color: var(--steel-dark); }

.timeline li:nth-child(3n+2)::before { background: radial-gradient(circle at 35% 30%, #7A55B0 0 40%, #4F2683 70%); }
.timeline li:nth-child(3n)::before   { background: radial-gradient(circle at 35% 30%, #3FA3DE 0 40%, #0076B6 70%); }

/* ---------- News list ---------- */

.article {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  margin-bottom: 2rem;
}
.article time {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #334A5D;
}
.article h2 { font-size: 1.6rem; margin: .4rem 0 .8rem; }
.article h3 { font-size: 1.1rem; margin: 1.4rem 0 .4rem; }
.article p { color: #2A3540; }
.article .more { font-weight: 700; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--silver);
  border-top: 5px solid var(--navy);
  border-radius: 8px;
  padding: 1.6rem 1.7rem;
}
.contact-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-card p { margin: .3rem 0; color: var(--steel-dark); }
.contact-card a { font-weight: 600; }

.form {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  max-width: 720px;
}
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel-dark);
  margin: 1.1rem 0 .35rem;
}
.form input, .form textarea {
  width: 100%;
  font: inherit;
  padding: .8rem .9rem;
  border: 1px solid var(--silver);
  border-radius: 6px;
  background: var(--paper);
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6,52,94,.15);
}
.form .btn { margin-top: 1.5rem; }

/* ---------- Legal ---------- */

.legal-toc {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: 8px;
  padding: 1.2rem 1.6rem;
  margin-bottom: 2.5rem;
}
.legal-toc ul { margin: .4rem 0 0; padding-left: 1.2rem; }
.legal section { margin-bottom: 2.8rem; }
.legal h2 { font-size: 1.4rem; border-bottom: 2px solid var(--silver); padding-bottom: .4rem; }
.legal p, .legal li { color: #2A3540; }

/* ---------- Photo plate frame ---------- */

.plate {
  position: relative;
  background: linear-gradient(150deg, #EDF0F2 0%, var(--silver) 55%, #B9BEC2 100%);
  border-radius: var(--radius);
  padding: 9px;
  box-shadow: 0 16px 38px rgba(6,52,94,.22);
}
.plate img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
}
.plate-strip { display: none; }
.plate-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #334A5D;
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem .8rem;
  border-radius: 999px;
}

/* ---------- Article pages & teaser links ---------- */

.article h2 a {
  color: inherit;
  text-decoration: none;
}
.article h2 a:hover { color: #334A5D; }
.article-page h3 { font-size: 1.25rem; font-weight: 800; color: #001E34; margin: 1.8rem 0 .55rem; }
.article-page p, .article-page li {
  color: #001E34;
  font-size: 1.13rem;
  line-height: 1.75;
}
.article-page .plate { margin-bottom: 2.6rem; }

/* ---------- Founders (shared photo + stacked bios) ---------- */

.founders-list h3 { font-size: 1.35rem; margin: .15rem 0 .5rem; }
.founder-block + .founder-block {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--silver);
}

/* ---------- Product gallery (arrows + thumbnails) ---------- */

.product-gallery .pg-main { position: relative; }
/* Must out-rank `.plate img` (0-1-1), which sets display: block */
.pg-main img.pg-slide { display: none; }
.pg-main img.pg-slide.is-active { display: block; }
.pg-tag { display: none; }
.pg-tag.is-active { display: inline-block; }
.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(51,74,93,.88);
  color: #fff;
  cursor: pointer;
  transition: background .15s ease;
}
.pg-arrow:hover { background: #334A5D; }
.pg-arrow:focus-visible { outline: 3px solid rgba(51,74,93,.4); }
.pg-arrow svg { width: 20px; height: 20px; }
.pg-prev { left: 14px; }
.pg-next { right: 14px; }
.pg-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}
.pg-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}
.pg-thumb img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.pg-thumb.is-active { border-color: #334A5D; }
.pg-thumb:hover:not(.is-active) { border-color: var(--silver); }

/* ---------- News teaser card ---------- */

.news-head {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.3rem;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #334A5D;
  text-decoration: none;
}
.see-all svg { width: 16px; height: 16px; transition: transform .18s ease; }
.see-all:hover svg { transform: translateX(4px); }

.news-head {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.3rem;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #334A5D;
  text-decoration: none;
}
.see-all svg { width: 16px; height: 16px; transition: transform .18s ease; }
.see-all:hover svg { transform: translateX(4px); }

.news-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6,52,94,.14);
}
.news-thumb {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  flex: none;
}
.news-date {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #334A5D;
  margin-bottom: .35rem;
}
.news-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  color: #001E34;
  margin: 0 0 .5rem;
}
.news-excerpt {
  color: #001E34;
  margin: 0 0 .9rem;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #334A5D;
}
.news-link svg { width: 18px; height: 18px; transition: transform .18s ease; }
.news-card:hover .news-link svg { transform: translateX(4px); }
.news-body { flex: 1; min-width: 0; }

/* Long emails (press contact) must wrap instead of overflowing on phones */
.contact-card a { overflow-wrap: anywhere; }

/* ---------- Footer ---------- */

.footer-logo {
  height: 84px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.site-footer {
  background: #334A5D;
  color: var(--silver);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-mark {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.2;
}
.footer-mark em {
  font-style: normal;
  color: var(--silver);
  border-bottom: 3px solid var(--copper);
}
.footer-tag { font-size: .92rem; margin-top: .8rem; color: #C9D3DC; max-width: 30ch; }
.site-footer h4 {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C2CDD7;
  margin: 0 0 .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--silver); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.social {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--steel);
  color: var(--silver);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.social a:hover { background: #fff; color: var(--navy); border-color: #fff; }
.social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 1.3rem 0 1.6rem;
  font-size: .82rem;
  color: #C2CDD7;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 2rem;
  align-items: start;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F5F7 45%, #D8DFE5 100%);
  padding: 3.2rem 0;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--holes-dark);
  opacity: .55;
  -webkit-mask-image: radial-gradient(46% 95% at 95% 20%, #000 18%, transparent 72%);
  mask-image: radial-gradient(46% 95% at 95% 20%, #000 18%, transparent 72%);
}
.page-hero > .wrap { position: relative; }
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: .01em;
  color: #001E34;
  margin-bottom: .4rem;
}
.page-hero h1 em, .page-hero h1 .g {
  text-transform: none;
  letter-spacing: .01em;
  font-weight: 800;
  color: #001E34;
}
.page-hero .lede { margin-bottom: 0; color: #001E34; }

/* ---------- Utilities ---------- */

.note {
  background: var(--silver-light);
  border-left: 4px solid var(--steel);
  border-radius: 6px;
  padding: .9rem 1.2rem;
  font-size: .95rem;
  color: var(--steel-dark);
}

.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0 0; }
.badge {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(6,52,94,.08);
  border: 1px solid rgba(6,52,94,.18);
  border-radius: 999px;
  padding: .35rem .85rem;
}

ul.features { padding-left: 1.2rem; color: #2A3540; }
ul.features li { margin-bottom: .5rem; }

/* Reveal on scroll — disabled if reduced motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 2.4rem 24px 4.6rem; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  /* Cluster falls back to a stacked grid */
  .hero-copy { margin-top: 0; }
  .hero-cluster { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: center; }
  .collage-item { position: static; width: auto; }
  .c-main { grid-row: 1; }
  .c-main img { aspect-ratio: 4 / 4.6; }
  .c-side { transform: none; }
  .c-side img { aspect-ratio: 4 / 4.4; }
  .roundel { position: static; transform: rotate(-8deg); width: 56%; max-width: 170px; justify-self: center; margin-top: .3rem; }
  .split.rev > .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plate-strip { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0,30,52,.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: .6rem 24px 1.2rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .8rem 0; border-bottom: 1px solid rgba(0,30,52,.1); }
  .nav-links a[aria-current="page"] { border-bottom-color: var(--navy); }
  .nav-cta { margin: 1rem 0 0; }
  .article { padding: 1.6rem 1.4rem; }
  .form { padding: 1.6rem 1.4rem; }
}

@media (max-width: 760px) {
  .hero-title { font-size: clamp(1.2rem, 5.6vw, 1.55rem); max-width: none; }
  .fan-card { height: 200px; margin-right: 1rem; }
  .eyebrow { font-size: .72rem; letter-spacing: .14em; align-items: baseline; }

.news-card { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .news-thumb { width: 100%; height: 180px; }
  .nav { padding: .3rem 16px; }
  .nav-logo img { height: 56px; }
  .roundel { margin-bottom: 1.6rem; }
  h2.block { font-size: 1.4rem; line-height: 1.28; }
  .news-title { font-size: 1.4rem; line-height: 1.28; }
  .hero-cut { height: 56px; }
  .hero-cut-d { display: none; }
  .hero-cut-m { display: block; }
.hero-copy .lede { font-size: .98rem; margin-bottom: 1.4rem; }
  .hero-ctas .btn { padding: .8rem 1.3rem; font-size: .88rem; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ---------- Utility classes (replacing former inline styles) ---------- */

.wrap-narrow { max-width: 860px; }
.wrap-article-hero { max-width: 908px; }
.u-mt { margin-top: 1.6rem; }
.u-mt-lg { margin-top: 3rem; }
.back-link { margin-top: 2.4rem; }

/* ---------- WordPress core ---------- */

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: #334A5D; margin-top: .4rem; }
.sticky, .bypostauthor { display: inherit; }

/* Page content (Classic Editor output) */
.entry-content h2 { font-size: 1.5rem; font-weight: 800; color: #001E34; margin: 1.8rem 0 .6rem; scroll-margin-top: 110px; }
.entry-content h3 { font-size: 1.2rem; font-weight: 800; color: #001E34; margin: 1.5rem 0 .5rem; }
.entry-content p, .entry-content li { color: #001E34; }
.entry-content a { color: #334A5D; }
.entry-content img { max-width: 100%; height: auto; border-radius: 10px; }

/* ---------- News pagination ---------- */

.pagination { margin-top: 2.6rem; }
.pagination .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 .8rem;
  border: 1px solid var(--silver);
  border-radius: 8px;
  font-weight: 700;
  color: #334A5D;
  text-decoration: none;
  background: #fff;
}
.pagination .page-numbers.current { background: #334A5D; border-color: #334A5D; color: #fff; }
.pagination .page-numbers:hover:not(.current) { border-color: #334A5D; }

/* ---------- 404 ---------- */

.error-404 { text-align: center; padding: 5rem 24px 6rem; }
.error-404 .roundel-404 { width: 160px; margin: 0 auto 1.6rem; transform: rotate(-10deg); filter: drop-shadow(0 10px 22px rgba(6,52,94,.25)); }
.error-404 h1 { font-size: 2rem; font-weight: 800; color: #001E34; margin-bottom: .6rem; }
.error-404 p { color: #001E34; max-width: 46ch; margin: 0 auto 1.8rem; }

/* ---------- Designer credit ---------- */

.footer-bottom > span:nth-child(2) { grid-column: 2; grid-row: 1; text-align: right; }
.footer-credit { grid-column: 1; grid-row: 2; opacity: .75; }
@media (max-width: 600px) {
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > span:nth-child(2) { grid-column: 1; grid-row: auto; text-align: left; }
  .footer-credit { grid-column: 1; grid-row: auto; }
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(235,237,239,.4);
}
.footer-credit a:hover { border-bottom-color: #EBEDEF; }

/* ---------- Analytics notice banner ---------- */

.consent-note[hidden] { display: none; }
.consent-note {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: min(92vw, 640px);
  background: #001E34;
  color: #EBEDEF;
  border-radius: 10px;
  padding: .8rem 1.1rem;
  box-shadow: 0 12px 30px rgba(0,30,52,.35);
}
.consent-note p { margin: 0; font-size: .88rem; line-height: 1.5; }
.consent-note a { color: #CCD2D6; text-decoration: underline; }
.consent-dismiss {
  flex: none;
  background: transparent;
  color: #EBEDEF;
  border: 1.5px solid #667785;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.consent-dismiss:hover { background: #334A5D; border-color: #334A5D; }
@media (max-width: 600px) {
  .consent-note { flex-direction: column; align-items: flex-start; gap: .7rem; bottom: 12px; }
}

/* ---------- Fluent Forms — matches the original contact form design ---------- */

/* White card container (was .form in the static build) */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  max-width: 720px;
}

/* Labels: uppercase site label style */
.contact-form-wrap .ff-el-input--label label {
  display: block;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel-dark);
  margin-bottom: .45rem;
}
.contact-form-wrap .ff-el-input--label.ff-el-is-required.asterisk-right label:after,
.contact-form-wrap .ff-el-input--label.ff-el-is-required.asterisk-left label:before {
  color: var(--steel-dark);
}

/* Inputs: paper fill, silver border, navy focus ring */
.contact-form-wrap .ff-el-form-control {
  width: 100%;
  font: inherit;
  font-family: var(--font-sans);
  padding: .8rem .9rem;
  border: 1px solid var(--silver);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}
.contact-form-wrap .ff-el-form-control::placeholder { color: #8A97A1; }
.contact-form-wrap .ff-el-form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6,52,94,.15);
  background: var(--paper);
}
.contact-form-wrap .ff-el-group { margin-bottom: 1.15rem; }

/* Submit: identical to .btn.btn-primary */
.contact-form-wrap .ff-btn-submit {
  display: inline-block;
  background: #334A5D !important;
  color: #fff !important;
  border: 2px solid var(--navy) !important;
  border-radius: 6px !important;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  line-height: inherit;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .95rem 1.7rem !important;
  margin-top: .4rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.contact-form-wrap .ff-btn-submit:hover {
  background: #3E5A70 !important;
  border-color: #3E5A70 !important;
  transform: translateY(-2px);
}

/* Success / error messages in brand colors */
.contact-form-wrap .ff-message-success {
  border: 1px solid var(--silver);
  border-left: 4px solid #334A5D;
  border-radius: 6px;
  padding: .9rem 1.2rem;
  color: #001E34;
  background: var(--paper);
}

@media (max-width: 600px) {
  .contact-form-wrap { padding: 1.6rem 1.4rem; }
}
