/* ============================================================
   Heritage Casting — styles.css
   Vintage foundry brand: bronze, gold, chrome & oxblood.
   Dark (default) and light (aged parchment) themes.
   ============================================================ */

:root {
  /* Brand constants (identical in both themes) */
  --gold:       #D7A94A;
  --gold-600:   #B5852B;
  --gold-700:   #9C6F2A;
  --red:        #B23A3A;   /* oxblood / casting red */
  --red-600:    #8E2A2A;
  --chrome:     #CDD2D8;
  --chrome-600: #9AA0A8;
  --bronze:     #B97A45;

  /* Theme tokens — DARK (default): forged iron & espresso brown */
  --bg-deep:      #14110D;
  --bg:           #1B1712;
  --bg-alt:       #181410;
  --surface:      #241E17;
  --surface-2:    #1E1812;
  --text:         #F2E8D6;
  --text-muted:   #B7A488;
  --border:       rgba(215, 169, 74, .14);
  --border-strong:rgba(215, 169, 74, .26);
  --header-bg:    rgba(20, 17, 13, .86);
  --menu-bg:      rgba(20, 17, 13, .97);
  --input-bg:     rgba(12, 10, 8, .55);
  --grid-line:    rgba(215, 169, 74, .055);
  --ghost-border: rgba(215, 169, 74, .4);

  --hero-bg:
    radial-gradient(1100px 620px at 82% -12%, rgba(215,169,74,.20), transparent 60%),
    radial-gradient(900px 540px at -5% 110%, rgba(178,58,58,.14), transparent 58%),
    linear-gradient(180deg, var(--bg-deep), var(--bg));
  --glass-bg: linear-gradient(160deg, rgba(48,38,28,.65), rgba(28,23,17,.55));
  --about-art-bg:
    radial-gradient(600px 320px at 100% 0, rgba(215,169,74,.22), transparent 60%),
    linear-gradient(160deg, #2a2219, #1a1510);
  --band-bg:
    radial-gradient(720px 420px at 50% 0, rgba(215,169,74,.12), transparent 60%),
    var(--bg-alt);
  --soft-bg: linear-gradient(180deg, var(--bg), var(--bg-alt));
  --cta-bg:
    radial-gradient(720px 420px at 88% 8%, rgba(215,169,74,.26), transparent 55%),
    radial-gradient(600px 400px at 0% 100%, rgba(178,58,58,.18), transparent 60%),
    linear-gradient(150deg, #2c2318, #181410);
  --creed-bg:
    radial-gradient(800px 400px at 50% -20%, rgba(215,169,74,.16), transparent 60%),
    linear-gradient(180deg, #1f1912, #14110d);

  --shadow-card: 0 26px 54px rgba(0,0,0,.5);

  --maxw: 1180px;
  --r: 16px;
}

/* Theme tokens — LIGHT: aged parchment & ink */
:root[data-theme="light"] {
  --bg-deep:      #FBF6EC;
  --bg:           #F4ECDC;
  --bg-alt:       #FBF6EC;
  --surface:      #FFFFFF;
  --surface-2:    #F6EFE1;
  --text:         #2A2118;
  --text-muted:   #6E5C46;
  --border:       rgba(60, 44, 24, .12);
  --border-strong:rgba(60, 44, 24, .20);
  --header-bg:    rgba(244, 236, 220, .9);
  --menu-bg:      rgba(251, 246, 236, .98);
  --input-bg:     #FFFFFF;
  --grid-line:    rgba(60, 44, 24, .05);
  --ghost-border: rgba(60, 44, 24, .26);

  --hero-bg:
    radial-gradient(1100px 620px at 82% -12%, rgba(181,133,43,.16), transparent 60%),
    radial-gradient(900px 540px at -5% 110%, rgba(178,58,58,.10), transparent 58%),
    linear-gradient(180deg, #FBF6EC, #EFE5D2);
  --glass-bg: linear-gradient(160deg, #FFFFFF, #F2E8D4);
  --about-art-bg:
    radial-gradient(600px 320px at 100% 0, rgba(181,133,43,.18), transparent 60%),
    linear-gradient(160deg, #FFFFFF, #EFE4CF);
  --band-bg:
    radial-gradient(720px 420px at 50% 0, rgba(181,133,43,.14), transparent 60%),
    #F0E6D3;
  --soft-bg: linear-gradient(180deg, #F4ECDC, #FBF6EC);
  --cta-bg:
    radial-gradient(720px 420px at 88% 8%, rgba(181,133,43,.18), transparent 55%),
    radial-gradient(600px 400px at 0% 100%, rgba(178,58,58,.10), transparent 60%),
    linear-gradient(150deg, #FFFFFF, #EFE5D1);
  --creed-bg:
    radial-gradient(800px 400px at 50% -20%, rgba(181,133,43,.14), transparent 60%),
    linear-gradient(180deg, #F6EEDD, #EFE4CF);

  --shadow-card: 0 24px 50px rgba(60,44,24,.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
  position: relative;
}

/* Subtle film/paper grain for vintage texture */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  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='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
:root[data-theme="light"] body::before { opacity: .22; mix-blend-mode: multiply; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.gold { color: var(--gold); }
.muted { color: var(--text-muted); }

h1, h2, h3, h4, .brand .name, .num, .seal-curve {
  font-family: "Cinzel", Georgia, serif;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600; font-size: 14px; letter-spacing: .5px;
  padding: 14px 28px; border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s, color .2s;
  cursor: pointer; border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-700));
  color: #1B1712;
  box-shadow: 0 10px 28px rgba(181,133,43,.32);
  border: 1px solid rgba(255,235,180,.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(181,133,43,.46); }
.btn-gold:disabled { opacity: .7; cursor: default; transform: none; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--ghost-border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--ghost-border);
  color: var(--text); cursor: pointer; flex-shrink: 0;
  transition: border-color .2s, color .2s, transform .2s;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ---------- Nav ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark { width: 46px; height: 46px; flex-shrink: 0; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.brand .name { font-weight: 700; font-size: 21px; letter-spacing: 1px; line-height: 1; color: var(--text); }
.brand .sub { font-family: "Cinzel", serif; font-size: 11px; letter-spacing: 6px; color: var(--red); font-weight: 600; margin-top: 3px; }
:root[data-theme="light"] .brand .sub { color: var(--red-600); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: "Cinzel", serif; font-size: 13px; letter-spacing: .8px; font-weight: 500;
  color: var(--text-muted); transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { padding: 11px 22px; }
.nav-links a.btn-gold,
.nav-links a.btn-gold:hover { color: #1B1712; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); }
.menu-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--hero-bg);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 72% 42%, black, transparent 75%);
  pointer-events: none;
}
.hero-wrap {
  display: flex; flex-direction: column; gap: 48px;
  position: relative; z-index: 2; padding: 124px 0 88px;
}
.hero-banner {
  margin: 0 auto; max-width: 860px; width: 100%;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 28px 64px rgba(0,0,0,.5), inset 0 0 0 1px rgba(215,169,74,.18);
  position: relative;
}
.hero-banner::after {
  content: ""; position: absolute; inset: 0; border-radius: 18px;
  box-shadow: inset 0 0 40px rgba(0,0,0,.35); pointer-events: none;
}
.hero-banner img { width: 100%; height: auto; display: block; }
:root[data-theme="light"] .hero-banner { box-shadow: 0 24px 54px rgba(60,44,24,.28), inset 0 0 0 1px rgba(215,169,74,.25); }

.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Cinzel", serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(215,169,74,.09); border: 1px solid rgba(215,169,74,.28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 {
  font-size: clamp(44px, 6vw, 78px); font-weight: 800; line-height: 1.04;
  letter-spacing: 1px; margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-700), var(--gold) 55%, #F4D98A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(18px, 1.7vw, 21px); color: var(--text-muted); max-width: 560px; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .s b { font-family: "Cinzel", serif; display: block; font-size: 32px; font-weight: 700; color: var(--text); }
.hero-stats .s span { font-size: 15px; color: var(--text-muted); letter-spacing: .3px; }

/* Hero visual — engraved seal medallion */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.seal { position: relative; width: min(420px, 90%); aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45)); }
.seal-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.seal-ring { transform-origin: 160px 160px; animation: spin 38s linear infinite; }
.seal-curve { font-size: 13.5px; font-weight: 600; letter-spacing: 3px; fill: var(--gold);
  text-transform: uppercase; }
.seal-crest { position: relative; width: 52%; height: 52%; filter: drop-shadow(0 12px 24px rgba(0,0,0,.5)); }
@keyframes spin { to { transform: rotate(360deg); } }

.float-badge {
  position: absolute; bottom: 2%; left: -4%;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 13px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,.4);
  animation: floaty 4.5s ease-in-out infinite;
  z-index: 3;
}
.float-badge svg { width: 28px; height: 28px; color: var(--gold); }
.float-badge b { font-family: "Cinzel", serif; font-size: 14px; line-height: 1.2; display: block; }
.float-badge span { font-size: 13px; color: var(--text-muted); }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 24px; height: 38px; border: 2px solid var(--ghost-border); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100%{ opacity: 0; transform: translate(-50%,0); } 50%{ opacity: 1; transform: translate(-50%,10px); } }

/* ---------- Marquee strip ---------- */
.marquee { overflow: hidden; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; position: relative; z-index: 2; }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: scroll 32s linear infinite; }
.marquee span { font-family: "Cinzel", serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.marquee .sep { color: var(--gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
section { position: relative; }
.pad { padding: 104px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 62px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 700; letter-spacing: .5px; line-height: 1.12; }
.section-head p { color: var(--text-muted); margin-top: 18px; font-size: 19px; }
.band-soft { background: var(--soft-bg); }

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; line-height: 1.14; letter-spacing: .5px; margin-bottom: 24px; }
.about p { color: var(--text-muted); font-size: 18px; margin-bottom: 18px; }
.about .ticks { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.about .ticks li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 17px; }
.about .ticks svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.about-art {
  position: relative; border-radius: 20px; min-height: 400px;
  background: var(--about-art-bg);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-art .ring { position: absolute; border: 1px solid var(--border-strong); border-radius: 50%; }
.about-art .r1 { width: 470px; height: 470px; }
.about-art .r2 { width: 330px; height: 330px; }
.about-art .r3 { width: 190px; height: 190px; }
.about-art .logo-mark { width: 200px; height: 200px; filter: drop-shadow(0 18px 40px rgba(0,0,0,.45)); position: relative; z-index: 2; }

/* ---------- Cards (What We Cast) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 34px 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r); padding: 1px;
  background: linear-gradient(160deg, rgba(215,169,74,.4), transparent 45%); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; transition: opacity .25s;
}
.card:hover { transform: translateY(-8px); border-color: rgba(215,169,74,.45); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 58px; height: 58px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(215,169,74,.12); border: 1px solid rgba(215,169,74,.28);
  margin-bottom: 22px;
}
.card .ico svg { width: 30px; height: 30px; color: var(--gold); }
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; letter-spacing: .3px; }
.card p { color: var(--text-muted); font-size: 17px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding: 32px 26px; border-radius: var(--r);
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); }
.step .num {
  font-size: 16px; font-weight: 700; color: #1B1712;
  width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-700));
  box-shadow: 0 8px 18px rgba(181,133,43,.3);
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 16px; }

/* ---------- Heritage creed band ---------- */
.creed { background: var(--creed-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 92px 0; text-align: center; overflow: hidden; }
.creed-inner { max-width: 820px; margin: 0 auto; }
.creed-mark { width: 78px; height: 78px; margin: 0 auto 28px; filter: drop-shadow(0 12px 28px rgba(0,0,0,.5)); }
.creed-quote { font-family: "Cinzel", serif; font-size: clamp(22px, 2.8vw, 33px); font-weight: 500; line-height: 1.45;
  color: var(--text); letter-spacing: .3px; }
.creed-by { margin-top: 24px; font-style: italic; color: var(--gold); font-size: 18px; }

/* ---------- Stats band ---------- */
.band { background: var(--band-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-grid .st b { font-family: "Cinzel", serif; display: block; font-size: clamp(38px, 4.4vw, 58px); font-weight: 700; line-height: 1;
  color: var(--text); }
.stat-grid .st b .gold { color: var(--gold); }
.stat-grid .st span { display: block; margin-top: 14px; color: var(--text-muted); font-size: 15px; letter-spacing: .4px; }

/* ---------- CTA / Contact ---------- */
.contact { background: var(--bg-alt); }
.cta-box {
  position: relative; overflow: hidden;
  border-radius: 22px; padding: 66px 58px;
  background: var(--cta-bg);
  border: 1px solid var(--border-strong);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
  box-shadow: var(--shadow-card);
}
.cta-box h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; line-height: 1.12; letter-spacing: .5px; }
.cta-box p { color: var(--text-muted); margin-top: 16px; font-size: 18px; }
.contact-list { margin-top: 30px; display: grid; gap: 16px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.contact-list .ic { width: 46px; height: 46px; border-radius: 10px; background: rgba(215,169,74,.12);
  border: 1px solid rgba(215,169,74,.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-list .ic svg { width: 20px; height: 20px; color: var(--gold); }
.contact-list small { display: block; color: var(--text-muted); font-weight: 400; font-size: 14px; }

/* form */
form { display: grid; gap: 14px; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form input, form textarea {
  width: 100%; font-family: "EB Garamond", Georgia, serif; font-size: 17px; color: var(--text);
  background: var(--input-bg); border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
form input::placeholder, form textarea::placeholder { color: var(--text-muted); opacity: .85; }
form input:focus, form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(215,169,74,.18); }
form textarea { resize: vertical; min-height: 110px; }
form .btn { justify-content: center; width: 100%; font-size: 15px; }
.form-note { font-size: 14px; color: var(--text-muted); text-align: center; }
.form-status { font-size: 15px; text-align: center; font-weight: 600; min-height: 20px; }
.form-status.ok { color: #4CAF7D; }
.form-status.err { color: #E06A60; }

/* ---------- Footer ---------- */
footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 58px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }
footer .brand { margin-bottom: 18px; }
footer p.about-foot { color: var(--text-muted); font-size: 16px; max-width: 340px; }
.foot-col h4 { font-family: "Cinzel", serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--text-muted); font-size: 16px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 24px; color: var(--text-muted); font-size: 15px; }
.foot-bottom span:last-child { font-family: "Cinzel", serif; letter-spacing: 1px; color: var(--gold); font-size: 14px; }
.disclaimer { font-size: 13px; color: var(--text-muted); opacity: .8; margin-top: 14px; line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; padding: 124px 0 80px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .about-grid, .cta-box { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 46px 32px; }
  .scroll-cue { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
    position: absolute; top: 68px; left: 16px; right: 16px;
    background: var(--menu-bg); backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong); border-radius: 14px; padding: 22px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
  }
  .nav-links.open a { font-size: 15px; }
  .nav-links.open .btn { width: 100%; justify-content: center; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
  .float-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  @keyframes floaty { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,-10px);} }
  .pad { padding: 76px 0; }
  .foot-bottom { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   WordPress additions (appended — everything above is the
   original static stylesheet, untouched).
   Inner pages, castings gallery, news, pagination, form extras.
   ============================================================ */

/* Honeypot field — visually removed, present for bots */
.hc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Inner pages sit under the fixed header (front-page hero has its own offset) */
.page-hero { padding-top: 168px; }

/* Filter chips (gallery types) — kin to the eyebrow badge */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: -26px 0 48px; }
.chip {
  font-family: "Cinzel", serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border-strong);
  padding: 8px 18px; border-radius: 999px;
  transition: color .2s, border-color .2s, background .2s;
  display: inline-block;
}
.chip:hover { color: var(--gold); border-color: var(--gold); }
.chip.active { color: var(--gold-600); background: rgba(215,169,74,.09); border-color: rgba(215,169,74,.28); }

/* Media cards (castings + news) — the .card look with an image top */
.media-card { display: block; padding: 0; overflow: hidden; }
.media-card .thumb { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.media-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.media-card:hover .thumb img { transform: scale(1.05); }
.media-card .card-body { padding: 24px 26px 28px; }
.media-card h3 { margin-bottom: 8px; }
.media-card .card-date {
  display: block; font-family: "Cinzel", serif; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: 10px;
}
.none-yet { text-align: center; color: var(--text-muted); font-style: italic; }

/* Reading column (news posts, castings, pages) */
.entry { max-width: 800px; }
.entry .section-head { margin-bottom: 44px; }
.entry-banner { margin-bottom: 44px; }
.entry-content { max-width: 72ch; margin: 0 auto; font-size: 18px; }
.entry-content p { color: var(--text-muted); margin-bottom: 20px; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 40px 0 14px; line-height: 1.2; letter-spacing: .4px; }
.entry-content h2 { font-size: 30px; }
.entry-content h3 { font-size: 24px; }
.entry-content a { color: var(--gold); border-bottom: 1px solid rgba(215,169,74,.4); transition: border-color .2s; }
.entry-content a:hover { border-color: var(--gold); }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; color: var(--text-muted); }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--gold); padding: 6px 26px; margin: 30px 0;
  font-family: "Cinzel", serif; font-size: 20px; line-height: 1.5; color: var(--text);
}
.entry-content img { border-radius: 14px; border: 1px solid var(--border-strong); height: auto; }
.entry-content figure { margin: 30px 0; }
.entry-content figcaption { font-size: 14px; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* Casting details chips */
.casting-meta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: -14px 0 40px; }
.casting-meta .chip b { color: var(--gold-600); font-weight: 600; margin-right: 6px; }

/* Prev/next navigation on single views */
.entry-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--border); margin-top: 56px; padding-top: 26px;
  font-family: "Cinzel", serif; font-size: 14px; letter-spacing: .5px;
}
.entry-nav a { color: var(--text-muted); transition: color .2s; }
.entry-nav a:hover { color: var(--gold); }

/* WP pagination (".nav-links" also names the header nav — scope + override,
   incl. the mobile display:none rule) */
.pagination { margin-top: 52px; }
.pagination .nav-links { display: flex !important; gap: 10px; justify-content: center; flex-wrap: wrap; position: static; }
.pagination .page-numbers {
  font-family: "Cinzel", serif; font-size: 14px; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: 8px; padding: 9px 16px;
  transition: color .2s, border-color .2s;
}
.pagination a.page-numbers:hover { color: var(--gold); border-color: var(--gold); }
.pagination .page-numbers.current { color: #1B1712; background: linear-gradient(135deg, var(--gold), var(--gold-700)); border-color: transparent; }

/* Media-card grids collapse like the service cards */
@media (max-width: 940px) { .media-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) {
  .media-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 140px; }
}
