/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #090d18;
  --navy-mid:   #0f1624;
  --navy-light: #161e30;
  --card:       #1c2540;
  --border:     #263050;
  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-dim:   #7a5f25;
  --crimson:    #8b1a1a;
  --text:       #eef0f8;
  --muted:      #8892b0;
  --white:      #ffffff;
  --max-w:      1200px;
  --radius:     8px;
  --radius-lg:  16px;
  --t:          .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

h3 { font-size: 1.15rem; color: var(--text); margin: 1.5rem 0 .5rem; }
p  { margin-bottom: 1rem; }
ul { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ===== NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(9,13,24,.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.nav-logo::before {
  content: '';
  display: inline-block;
  width: 5px; height: 26px;
  background: linear-gradient(180deg, var(--gold), var(--crimson));
  border-radius: 3px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .1rem; padding: 0; margin: 0;
}

.nav-links a {
  display: block;
  padding: .5rem 1rem;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--radius);
  letter-spacing: .02em;
  transition: all var(--t);
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--gold-light); background: rgba(201,168,76,.1); }

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 1.5rem;
  cursor: pointer; padding: .4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), #f5d98a);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.75rem; font-size: 1rem; }

/* ===== FULL-BLEED HERO ===== */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.06);
  will-change: transform;
  transition: transform 10s ease;
}

.site-hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(9,13,24,.3)   0%,
      rgba(9,13,24,.55) 45%,
      rgba(9,13,24,.92) 85%,
      rgba(9,13,24,1)  100%),
    radial-gradient(ellipse at 60% 40%, rgba(9,13,24,0) 30%, rgba(9,13,24,.4) 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px;
  padding: 2rem 1.5rem 6rem;
  animation: heroEnter 1s .1s ease both;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-pre {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  opacity: .85;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 700;
  color: var(--white);
  line-height: .95;
  margin-bottom: .8rem;
  letter-spacing: -.03em;
  text-shadow: 0 4px 60px rgba(0,0,0,.6);
}

.hero-name span { color: var(--gold-light); }

.hero-roles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.25rem;
}

.hero-roles span {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 0 1.1rem;
  position: relative;
}

.hero-roles span + span::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 12px;
  background: rgba(255,255,255,.25);
}

.hero-welcome {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .08em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.scroll-indicator {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .2; transform: scaleY(.5); transform-origin: top; }
  50%       { opacity: .8; transform: scaleY(1);  transform-origin: top; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { padding: .75rem 1rem; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  padding: 8rem 2rem;
  background: var(--navy-mid);
  overflow: hidden;
}

.about-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 6rem;
  align-items: center;
}

.about-strip-img {
  position: relative;
}

.about-strip-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}

.about-strip-img::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.overline {
  display: block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-strip-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.about-strip-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 8rem 2rem;
  background: var(--navy);
}

.features-inner { max-width: var(--max-w); margin: 0 auto; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin: 0 0 3.5rem;
  line-height: 1.15;
}

.text-center { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
}

.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  border-color: rgba(201,168,76,.3);
  color: inherit;
}

.feat-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.feat-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,13,24,0) 40%, rgba(9,13,24,.7) 100%);
  transition: opacity var(--t);
}

.feat-card:hover .feat-img::after { opacity: .6; }

.feat-body { padding: 1.75rem; }

.feat-tag {
  display: inline-block;
  padding: .2rem .75rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 20px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.feat-body h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin: 0 0 .6rem;
}

.feat-body p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
  line-height: 1.65;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 9rem 2rem;
  background:
    linear-gradient(135deg, rgba(139,26,26,.12) 0%, rgba(201,168,76,.08) 100%),
    var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.quote-inner { max-width: 740px; margin: 0 auto; }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  line-height: .5;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  display: block;
  opacity: .4;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
  background: none;
}

.quote-section cite {
  font-style: normal;
  color: var(--gold);
  font-size: .88rem;
  letter-spacing: .1em;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--navy);
}

.cta-inner { max-width: 580px; margin: 0 auto; }

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin: 0 0 1rem;
}

.cta-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ===== PAGE WRAP ===== */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 7rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(201,168,76,.1) 0%, transparent 65%),
    var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem 4.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text);
  margin: 0 0 .75rem;
}

.page-hero .hero-sub {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
  font-style: italic;
}

/* ===== PHOTO HERO (marines, etc.) ===== */
.photo-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-bottom: 5rem;
}

.photo-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.photo-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(9,13,24,.88) 0%, rgba(9,13,24,.5) 55%, rgba(9,13,24,.15) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(9,13,24,.9) 100%);
}

.photo-hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
}

.photo-hero-content .hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}

.photo-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin: 0 0 .5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.photo-hero-content .hero-sub {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ===== CONTENT GRID ===== */
.content-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

/* ===== BIO / ABOUT ===== */
.bio-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }

.info-list li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.info-list li:last-child { border-bottom: none; }

.info-list .label {
  font-weight: 600;
  color: var(--gold);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.link-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.link-list li { padding: .35rem 0; }

.link-list a {
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--t);
}

.link-list a::before { content: '→'; color: var(--gold-dim); transition: color var(--t); }
.link-list a:hover { color: var(--gold-light); }
.link-list a:hover::before { color: var(--gold); }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: rgba(201,168,76,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== MARINES ===== */
.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto 4.5rem;
  padding: 0 2rem;
}

.stat-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t);
}

.stat-card:hover { border-color: rgba(201,168,76,.35); }

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.stat-card .stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.stat-card .stat-value { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--text); margin-bottom: .3rem; }
.stat-card .stat-sub { font-size: .8rem; color: var(--muted); }

.service-timeline { margin-bottom: 2rem; }

.service-entry {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  border-left: 2px solid var(--gold-dim);
  margin-bottom: 1.5rem;
}

.service-entry::before {
  content: '';
  position: absolute;
  left: -6px; top: 1.75rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,.35);
}

.service-entry h3 { color: var(--gold-light); margin: 0 0 .3rem; }
.service-detail { font-size: .83rem; color: var(--gold-dim); margin-bottom: .75rem; font-weight: 600; letter-spacing: .04em; }
.service-entry ul { margin: 0; }
.service-entry li { font-size: .9rem; color: var(--muted); }

.di-story {
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 1rem;
  font-size: .92rem;
}

.awards-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.awards-list li {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem; color: var(--text);
}
.awards-list li:last-child { border-bottom: none; }
.award-icon { color: var(--gold); font-size: .9rem; flex-shrink: 0; }

.stations-list ul { list-style: none; padding: 0; }
.stations-list li {
  padding: .45rem 0;
  color: var(--muted); font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.stations-list li:last-child { border-bottom: none; }

.medals-image {
  margin: 2rem auto;
  max-width: 280px;
  filter: drop-shadow(0 8px 24px rgba(201,168,76,.2));
}

/* ===== TIMELINE (Hobbies) ===== */
.timeline {
  max-width: 880px; margin: 0 auto 4rem;
  padding: 0 2rem; position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: calc(2rem + 70px + 1.25rem);
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dim) 60%, transparent 100%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem; margin-bottom: 3rem; position: relative;
}

.timeline-year {
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: .85rem; color: var(--gold); font-weight: 700;
  padding-top: .2rem; white-space: nowrap;
}

.timeline-content {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem; position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}

.timeline-content:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -2.15rem; top: 1.15rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 2px var(--gold-dim), 0 0 12px rgba(201,168,76,.3);
}

.timeline-content h3 { color: var(--gold-light); font-size: 1.1rem; margin: 0 0 .75rem; }
.timeline-content p { font-size: .92rem; color: var(--muted); margin-bottom: .75rem; }
.timeline-content p:last-child { margin-bottom: 0; }

.clogging-section {
  max-width: 880px; margin: 0 auto 4rem;
  padding: 3rem 3.5rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ===== DADT ===== */
.ceremony-highlight {
  background: linear-gradient(135deg, rgba(139,26,26,.18), rgba(201,168,76,.1));
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius-lg);
  padding: 3rem; text-align: center; margin: 2rem 0;
}

.ceremony-highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold-light);
  margin: 0 0 .4rem;
}

.ceremony-sub { color: var(--muted); font-style: italic; }

.invocation-block {
  background: var(--navy-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem 3rem; margin: 2rem 0;
}

.invocation-block h3 {
  color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .8rem; margin: 0 0 1.5rem;
  font-family: 'Inter', sans-serif;
}

.invocation-text p {
  font-style: italic; color: var(--muted);
  font-size: .95rem; line-height: 1.88;
}

.ongoing-struggle {
  background: rgba(139,26,26,.1);
  border: 1px solid rgba(139,26,26,.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem; margin-top: 2rem;
}

.ongoing-struggle h3 { color: #e06060; margin: 0 0 .75rem; }
.ongoing-struggle p { color: var(--muted); margin: 0; }

/* ===== COINS ===== */
.coins-layout {
  max-width: 980px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem; align-items: start;
}

.coin-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  margin-bottom: 1.5rem;
}

.coin-photo img { width: 100%; }

.pricing-card {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: sticky; top: 84px;
}

.price-main {
  display: flex; align-items: flex-start;
  justify-content: center; gap: .1rem; margin-bottom: .25rem;
}

.price-symbol { font-size: 1.5rem; margin-top: .7rem; color: var(--gold); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1; color: var(--gold-light); }
.price-cents  { font-size: 1.5rem; margin-top: .7rem; color: var(--gold); }
.price-label  { color: var(--muted); font-size: .85rem; margin-bottom: 1.5rem; }

.price-breakdown {
  list-style: none; padding: 1rem 0 0; margin: 0;
  text-align: left;
  border-top: 1px solid var(--border);
}

.price-breakdown li {
  display: flex; align-items: center; gap: .6rem;
  padding: .45rem 0; font-size: .88rem; color: var(--muted);
}

.check { color: var(--gold); }

.specs-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.specs-list li {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--muted);
}
.specs-list li::before { content: '◆'; color: var(--gold); font-size: .55rem; }

.payment-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.payment-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color var(--t);
}

.payment-item:hover { border-color: var(--gold-dim); }
.payment-item strong { color: var(--gold-light); font-size: .95rem; display: block; margin-bottom: .25rem; }
.payment-item p { font-size: .84rem; color: var(--muted); margin: .2rem 0 0; }

.shipping-note {
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  padding: .75rem 1rem; margin-bottom: 1.5rem;
  font-size: .84rem; color: var(--muted);
}

/* ===== CONTENT SECTION (generic) ===== */
.content-section {
  max-width: var(--max-w); margin: 0 auto 3rem;
  padding: 0 2rem;
}

.content-section.prose p,
.content-section.prose li { font-size: .95rem; color: var(--muted); }

/* ===== YOUTUBE EMBED ===== */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 1.75rem 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

.video-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .4rem;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}

/* ===== CAPTIONED IMAGE ===== */
figure.img-figure { margin: 1.75rem 0; }
figure.img-figure img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
figure.img-figure figcaption {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .6rem;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.photo-gallery img {
  border-radius: var(--radius);
  width: 100%; height: 220px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform var(--t), box-shadow var(--t);
}

.photo-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}

/* ===== PROJECT LOGOS ===== */
.project-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.project-logos a { display: block; }
.project-logos img {
  height: 80px; width: auto;
  filter: brightness(.9);
  transition: filter var(--t), transform var(--t);
}
.project-logos a:hover img { filter: brightness(1.1); transform: scale(1.05); }

/* ===== CATS SECTION ===== */
.cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.cat-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: border-color var(--t);
}

.cat-card:hover { border-color: rgba(201,168,76,.3); }

.cat-card img {
  width: 100%; height: 220px;
  object-fit: cover;
}

.cat-card-body { padding: 1rem; }
.cat-card-body h4 { color: var(--gold-light); font-size: 1rem; margin: 0 0 .3rem; }
.cat-card-body p  { color: var(--muted); font-size: .85rem; margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 0;
  margin-top: auto;
}

.footer-main {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold-light);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand-logo::before {
  content: '';
  display: inline-block;
  width: 4px; height: 22px;
  background: linear-gradient(180deg, var(--gold), var(--crimson));
  border-radius: 2px;
}

.footer-brand p { font-size: .84rem; color: var(--muted); margin: .3rem 0; line-height: 1.7; }
.footer-brand a { color: var(--muted); transition: color var(--t); }
.footer-brand a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: .35rem; }

.footer-nav-list a {
  color: var(--muted); font-size: .875rem;
  padding: .15rem 0;
  transition: color var(--t);
}

.footer-nav-list a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 0 2rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

.footer-bottom p { font-size: .78rem; color: var(--muted); margin: 0; }

/* ===== FLASH ===== */
.flash {
  padding: .85rem 1.25rem; border-radius: var(--radius);
  margin-bottom: 1.5rem; font-size: .9rem;
}
.flash-success { background: rgba(35,134,54,.1); border: 1px solid rgba(35,134,54,.3); color: #7ee787; }
.flash-error   { background: rgba(139,26,26,.1); border: 1px solid rgba(139,26,26,.3); color: #f87171; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-strip-inner { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { padding: 5rem 2rem; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-strip-img::after { display: none; }
  .photo-hero { height: 360px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(9,13,24,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem; gap: .2rem;
    backdrop-filter: blur(18px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .features-grid { grid-template-columns: 1fr; }
  .content-grid.two-col { grid-template-columns: 1fr; gap: 2rem; }
  .service-stats { grid-template-columns: 1fr; gap: 1rem; }
  .coins-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-card { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .timeline::before { left: calc(2rem + 50px + .75rem); }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .clogging-section { padding: 2rem 1.5rem; }
  .invocation-block { padding: 1.75rem 1.5rem; }
  .photo-hero-overlay { background: rgba(9,13,24,.72); }
}

@media (max-width: 540px) {
  .hero-name { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .photo-hero { height: 280px; }
  .timeline { padding: 0 1rem; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: .5rem; }
  .timeline-year { text-align: left; }
  .timeline-content::before { display: none; }
  .features-section, .about-strip, .quote-section, .cta-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .video-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
}
