/* ============================================================
   Tony McChrystal — design system (Pavesen house style)
   Navy + gold, Cormorant Garamond display / DM Sans body
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #001233;
  --navy2:  #00102d;
  --slate:  #e2e4df;
  --slate-dark: #d0d2cd;
  --gold:   #a78831;
  --gold2:  #c4a042;
  --gold-btn: #a47c0e;
  --light:  #e2e4df;
  --muted:  #6b7a8d;
  --white:  #ffffff;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 100px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p + p { margin-top: 1rem; }

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 10; opacity: 0.5;
}

/* ── TYPOGRAPHY ── */
.t-hero {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
}
.t-hero em { font-style: italic; color: var(--gold); }
.t-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.t-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.01em;
}
.t-h2 em { font-style: italic; color: var(--gold); }
.t-body { font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 300; line-height: 1.85; color: var(--muted); }
.t-body strong { color: var(--navy); font-weight: 500; }
.on-dark .t-body { color: rgba(255,255,255,0.62); }
.on-dark .t-body strong { color: #fff; }
.on-dark .t-h2 { color: #fff; }
.on-dark .t-eyebrow { color: var(--gold); }
.on-dark .gold-rule { background: var(--gold); }
.on-light .t-h2 { color: var(--navy); }
.on-light .t-h2 em { color: var(--gold); font-style: italic; }
.on-light .t-eyebrow { color: var(--gold); }
.on-light .t-body { color: #3a4a5c; }
.on-light .pil-title { color: var(--navy); }
.on-light .sc-title { color: var(--navy); }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }
.gold-rule { width: 48px; height: 1px; background: var(--gold); margin: 24px 0 32px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 14px 34px; border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,90,0.22); }
.btn-ghost { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: transparent; padding: 13px 34px; border: 1px solid rgba(245,243,239,0.3); border-radius: 2px; transition: border-color 0.25s, color 0.25s, transform 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-blue { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: var(--navy); padding: 13px 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; transition: background 0.25s, border-color 0.25s, transform 0.2s; }
.btn-blue:hover { background: #00102d; border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }

/* ── NAVBAR ── */
.pv-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 40px; background: #001233; transition: background 0.4s var(--ease); }
.pv-nav.scrolled { border-bottom: 1px solid rgba(167,136,49,0.2); }
.pv-nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 84px; }
.pv-logo img { height: 60px; width: auto; transition: opacity 0.3s; }
.pv-logo img:hover { opacity: 0.8; }
.pv-nav-links { display: flex; align-items: center; gap: 2rem; }
.pv-nav-links a { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.82); transition: color 0.25s; position: relative; }
.pv-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); }
.pv-nav-links a:hover, .pv-nav-links a.active { color: var(--gold); }
.pv-nav-links a:hover::after, .pv-nav-links a.active::after { width: 100%; }
.pv-nav-cta { color: var(--navy) !important; background: var(--gold); padding: 10px 20px; border-radius: 2px; transition: background 0.25s !important; }
.pv-nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }
.pv-nav-cta::after { display: none !important; }
.pv-nav-tel { font-size: 0.8rem !important; font-weight: 400 !important; letter-spacing: 0.08em !important; color: rgba(255,255,255,0.55) !important; text-transform: none !important; position: relative; padding-left: 1.6rem; transition: color 0.25s !important; }
.pv-nav-tel::before { content: ''; position: absolute; left: -0.6rem; top: 50%; transform: translateY(-50%); width: 1px; height: 1em; background: rgba(167,136,49,0.3); }
.pv-nav-tel::after { display: none !important; }
.pv-nav-tel:hover { color: rgba(167,136,49,0.8) !important; }
.pv-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; position: relative; z-index: 1001; }
.pv-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s; }
@media (max-width: 1020px) { .pv-nav-links { gap: 1.4rem; } .pv-nav-links a { font-size: 0.82rem; } }
@media (max-width: 860px) { .pv-nav-links { display: none; } .pv-hamburger { display: flex; } .pv-nav { padding: 0 24px; } }
.pv-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 999; flex-direction: column; background: rgba(2,12,27,0.98); border-top: 1px solid rgba(184,150,90,0.2); }
.pv-mobile-menu a { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.78); padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; display: block; }
.pv-mobile-menu a:hover, .pv-mobile-menu a.active { color: var(--gold) !important; }
.pv-mobile-menu a.pv-mob-tel { color: var(--gold); opacity: 0.75; font-size: 0.85rem; letter-spacing: 0.08em; }
.pv-mobile-menu a.pv-mob-tel:hover { opacity: 1; }
.pv-mobile-menu a:last-child { border-bottom: none; padding-bottom: 24px; }
.pv-mobile-menu.open { display: flex; }

/* ── LOGO WORDMARK ── */
.tm-logo { display: flex; align-items: center; }
.tm-word { display: flex; flex-direction: column; line-height: 1; }
/* Footer brand (no logo) — centred */
.pv-footer-brand { text-align: center; }
.pv-footer-brand .tm-logo { justify-content: center; }
.pv-footer-brand .tm-word { align-items: center; }
.pv-footer-brand .pv-footer-tag { margin-left: auto; margin-right: auto; }
.tm-word .tm-name { font-family: 'Cormorant Garamond', serif; font-size: 1.32rem; font-weight: 500; letter-spacing: 0.02em; color: #fff; }
.tm-word .tm-role { font-family: 'DM Sans', sans-serif; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
@media (max-width: 600px) { .tm-word .tm-name { font-size: 1.15rem; } }

/* ── HERO ── */
.pv-hero { position: relative; min-height: 640px; max-height: 880px; height: calc(100vh - 80px); overflow: hidden; background: linear-gradient(135deg, #001233 0%, #00102d 100%); display: flex; align-items: center; }
.pv-hero-content { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; padding: 100px 40px 40px; max-width: 1140px; margin: 0 auto; gap: 50px; }
.pv-hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.pv-hero-visual { display: flex; align-items: center; justify-content: center; }
.pv-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; opacity: 0; transform: translateY(18px); animation: fadeUp 0.8s 0.3s var(--ease) forwards; }
.pv-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.pv-eyebrow-txt { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.pv-hero-headline { max-width: 700px; margin-bottom: 26px; opacity: 0; transform: translateY(28px); animation: fadeUp 0.9s 0.5s var(--ease) forwards; }
.pv-hero-sub { max-width: 560px; font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(245,243,239,0.62); margin-bottom: 42px; opacity: 0; transform: translateY(18px); animation: fadeUp 0.8s 0.72s var(--ease) forwards; }
.pv-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(18px); animation: fadeUp 0.8s 0.92s var(--ease) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Hero portrait frame */
.pv-portrait { position: relative; width: 100%; max-width: 420px; }
.pv-portrait img { width: 100%; height: auto; border-radius: 4px; display: block; filter: grayscale(100%) contrast(1.02); position: relative; z-index: 1; }
.pv-portrait::before { content: ''; position: absolute; top: 22px; left: 22px; right: -22px; bottom: -22px; border: 1px solid var(--gold); border-radius: 4px; z-index: 0; }
.pv-portrait::after { content: ''; position: absolute; inset: 0; border-radius: 4px; background: linear-gradient(180deg, transparent 55%, rgba(0,18,51,0.35) 100%); z-index: 2; pointer-events: none; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Pre-framed hero portrait (navy panel + gold grid baked in) */
.pv-hero-framed { width: 100%; max-width: 480px; height: auto; display: block; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.4)); }
@media (max-width: 768px) { .pv-hero-framed { max-width: 360px; margin: 0 auto; } }

/* Hero cube fallback (interior pages) */
.pv-hero-cube { width: 420px; height: 430px; background: url('../images/cube-transparent.webp') center/contain no-repeat; animation: cubeFloat 8s ease-in-out infinite; filter: drop-shadow(0 0 60px rgba(100,160,255,0.15)); }
@keyframes cubeFloat { 0%,100% { transform: translateY(0px) rotate(0deg); } 33% { transform: translateY(-18px) rotate(1.5deg); } 66% { transform: translateY(-8px) rotate(-1deg); } }

/* Compact hero for interior pages */
.pv-hero.compact { min-height: 0; height: auto; max-height: none; }
.pv-hero.compact .pv-hero-content { grid-template-columns: 1fr; padding: 150px 40px 70px; gap: 0; }
.pv-hero.compact .pv-hero-text { max-width: 760px; }

@media (max-width: 900px) { .pv-hero-cube { width: 320px; height: 328px; } }
@media (max-width: 768px) {
  .pv-hero { height: auto; min-height: 0; max-height: none; }
  .pv-hero-content { grid-template-columns: 1fr; padding: 120px 24px 56px; text-align: center; gap: 40px; }
  .pv-hero-text { align-items: center; }
  .pv-hero-eyebrow { justify-content: center; }
  .pv-hero-headline { max-width: 100%; }
  .pv-hero-sub { max-width: 100%; }
  .pv-hero-actions { justify-content: center; }
  .pv-portrait { max-width: 300px; margin: 0 auto; }
  .pv-portrait::before { top: 16px; left: 16px; right: -16px; bottom: -16px; }
  .pv-hero.compact .pv-hero-content { padding: 120px 24px 56px; }
}

/* ── STATS / PILLAR STRIP ── */
.pv-stats { background: var(--navy2); border-top: 1px solid rgba(167,136,49,0.35); border-bottom: 1px solid rgba(167,136,49,0.35); }
.pv-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.pv-pillar-box { padding: 36px 32px; border-right: 1px solid rgba(167,136,49,0.15); }
.pv-pillar-box:last-child { border-right: none; }
.pv-pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--gold); margin-bottom: 10px; }
.pv-pillar-txt { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }
@media (max-width: 768px) {
  .pv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-pillar-box { border-right: none !important; border-bottom: 1px solid rgba(167,136,49,0.15); padding: 28px 20px; }
  .pv-pillar-title { font-size: 1.15rem; overflow-wrap: anywhere; }
  .pv-pillar-box:last-child { border-bottom: none; }
}
@media (max-width: 480px) { .pv-stats-grid { grid-template-columns: 1fr; } }

/* ── SECTIONS ── */
.pv-section { padding: 80px 0; }
@media (max-width: 1020px) { .pv-section { padding: 70px 0; } }
@media (max-width: 768px) { .pv-section { padding: 56px 0; } }

/* ── INTRO (light) ── */
.pv-intro { background: var(--slate); }
.pv-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pv-intro .t-eyebrow { color: var(--gold); }
.pv-intro .t-h2 { color: var(--navy); }
.pv-intro .t-h2 em { color: var(--gold); }
.pv-intro .t-body { color: #3a4a5c; }
.pv-img-wrap { position: relative; overflow: hidden; border-radius: 12px; }
.pv-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.pv-img-wrap.portrait img { filter: grayscale(100%) contrast(1.02); }
@media (max-width: 900px) { .pv-intro-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) { .pv-intro-grid > div:first-child { order: 1; } .pv-intro-grid > div:last-child { order: 2; } }

/* ── CARD GRID (who we serve / specialism) ── */
.pv-serve { background: var(--navy2); position: relative; overflow: hidden; }
.pv-serve-cube { position: absolute; left: -120px; top: 50%; transform: translateY(-50%); width: 480px; height: 480px; background: url('../images/cube-transparent.webp') center/cover no-repeat; mix-blend-mode: screen; opacity: 0.12; pointer-events: none; animation: cubeDriftA 16s ease-in-out infinite; }
@keyframes cubeDriftA { 0%,100% { transform: translateY(-50%) rotate(0deg); } 50% { transform: translateY(-53%) rotate(3deg); } }
@media (max-width: 768px) { .pv-serve-cube { display: none; } }
.pv-section-hdr { margin-bottom: 56px; }
.pv-section-hdr .t-h2 { color: var(--white); }
.pv-section-hdr .t-h2 em { color: var(--gold); }
.pv-section-hdr.center { text-align: center; }
.pv-section-hdr.center .gold-rule { margin-left: auto; margin-right: auto; }
.pv-serve-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.pv-serve-card { background: rgba(255,255,255,0.03); padding: 44px 38px; border: 1px solid rgba(167,136,49,0.1); transition: border-color 0.3s, background 0.3s; position: relative; overflow: hidden; display: block; color: inherit; }
.pv-serve-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--gold); transition: height 0.4s var(--ease); }
.pv-serve-card:hover { border-color: rgba(167,136,49,0.3); background: rgba(255,255,255,0.06); }
.pv-serve-card:hover::before { height: 100%; }
.pv-serve-card:hover .sc-num { color: var(--gold); opacity: 1; }
.sc-num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; color: rgba(167,136,49,0.45); line-height: 1; margin-bottom: 14px; transition: color 0.35s var(--ease), opacity 0.35s var(--ease); }
.sc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.pv-serve-card .t-body { color: rgba(255,255,255,0.55); }
@media (max-width: 640px) { .pv-serve-cards { grid-template-columns: 1fr; gap: 10px; } .pv-serve-card { padding: 32px 24px; } .sc-num { font-size: 2.4rem; } }

/* ── DAMAGE / INFO CARDS (dark blue) ── */
.pv-damage { background: #0d1f38; }
.pv-damage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.pv-info-card-dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(167,136,49,0.15); border-left: 2px solid var(--gold); padding: 24px 28px; transition: background 0.3s ease, border-color 0.3s ease; }
.pv-info-card-dark:hover { background: rgba(255,255,255,0.07); border-color: rgba(167,136,49,0.32); }
.dp-title { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pv-info-card-dark .t-body { color: rgba(255,255,255,0.6); }
.pv-quote-block { border-left: 2px solid var(--gold); padding-left: 36px; }
.pv-quote-block .q { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.92); line-height: 1.45; }
@media (max-width: 900px) { .pv-damage-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ── APPROACH (light) ── */
.pv-approach { background: var(--slate); }
.pv-approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pv-approach .t-eyebrow { color: var(--gold); }
.pv-approach .t-h2 { color: var(--navy); }
.pv-approach .t-h2 em { color: var(--gold); }
.approach-img-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.approach-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.approach-pillars { display: flex; flex-direction: column; gap: 0; }
.approach-pil { display: flex; gap: 22px; align-items: flex-start; padding: 30px 0; border-bottom: 1px solid rgba(0,18,51,0.1); }
.approach-pil:last-child { border-bottom: none; }
.pil-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--gold); opacity: 0.55; min-width: 32px; line-height: 1; padding-top: 2px; transition: opacity 0.3s var(--ease); }
.approach-pil:hover .pil-num { opacity: 1; }
.pil-title { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; }
.approach-pil .t-body { color: #3a4a5c; }
@media (max-width: 900px) { .pv-approach-grid { grid-template-columns: 1fr; gap: 48px; } .pv-approach-grid > div:first-child { order: 1; } .pv-approach-grid > div:last-child { order: 2; } }

/* ── ADVISORS / STATS BAND ── */
.pv-advisors { background: #011a3a; position: relative; overflow: hidden; }
.pv-advisors > * { position: relative; z-index: 1; }
.pv-advisors-cube { position: absolute; right: -100px; bottom: -80px; width: 480px; height: 480px; background: url('../images/cube-transparent.webp') center/cover no-repeat; mix-blend-mode: screen; opacity: 0.18; pointer-events: none; z-index: 0; animation: cubeDriftB 19s ease-in-out infinite; }
@keyframes cubeDriftB { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-16px,-12px) rotate(-3deg); } }
@media (max-width: 600px) { .pv-advisors-cube { display: none; } }
.pv-advisors-grid { max-width: 820px; margin: 0 auto; text-align: center; }
.pv-advisors .t-eyebrow { color: var(--gold); }
.pv-advisors .t-h2 { color: var(--white); }
.pv-advisors .t-h2 em { color: var(--gold); }
.pv-advisors .t-body { color: rgba(255,255,255,0.58); }
.adv-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px; border: 1px solid rgba(167,136,49,0.5); }
.adv-pillar { padding: 36px 28px; border-right: 1px solid rgba(167,136,49,0.5); }
.adv-pillar:last-child { border-right: none; }
.adv-pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.adv-pillar-lbl { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
@media (max-width: 600px) { .adv-pillars { grid-template-columns: 1fr; } .adv-pillar { border-right: none; border-bottom: 1px solid rgba(167,136,49,0.5); } .adv-pillar:last-child { border-bottom: none; } }

/* ── TIMELINE (career history) ── */
.pv-timeline { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin-left: auto; margin-right: auto; }
.tl-item { display: grid; grid-template-columns: 32px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tl-item:last-child { border-bottom: none; }
.tl-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); opacity: 0.55; line-height: 1.4; transition: opacity 0.3s var(--ease), color 0.3s var(--ease); }
.tl-item:hover .tl-num { opacity: 1; color: var(--gold2); }
.tl-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }

/* ── NEWS CARDS ── */
.pv-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pv-news-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.03); border: 1px solid rgba(167,136,49,0.12); border-radius: 4px; padding: 34px 32px; transition: border-color 0.3s, background 0.3s, transform 0.25s; position: relative; }
.pv-news-card:hover { border-color: rgba(167,136,49,0.32); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.pv-news-outlet { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.pv-news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; line-height: 1.3; color: var(--white); margin-bottom: 14px; }
.pv-news-card .t-body { color: rgba(255,255,255,0.58); flex-grow: 1; }
.pv-news-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); transition: gap 0.25s; }
.pv-news-card:hover .pv-news-link { gap: 14px; }
@media (max-width: 768px) { .pv-news-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── FAQ ── */
.pv-faq { max-width: 880px; margin: 0 auto; }
.pv-faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 8px 0; }
.pv-faq-q { display: flex; align-items: flex-start; gap: 18px; width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 24px 0; color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; line-height: 1.3; }
.pv-faq-q .faq-n { color: var(--gold); font-size: 1rem; opacity: 0.7; min-width: 30px; padding-top: 6px; font-family: 'DM Sans',sans-serif; font-weight: 600; letter-spacing: 0.1em; }
.pv-faq-q .faq-ico { margin-left: auto; color: var(--gold); font-size: 1.6rem; line-height: 1; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.pv-faq-item.open .faq-ico { transform: rotate(45deg); }
.pv-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.pv-faq-a-inner { padding: 0 0 26px 48px; }
.pv-faq-a-inner .t-body { color: rgba(255,255,255,0.62); }
@media (max-width: 600px) { .pv-faq-a-inner { padding-left: 0; } .pv-faq-q { font-size: 1.2rem; } }

/* ── PAVESEN (the firm) ── */
.pv-pavesen { background: var(--navy2); position: relative; overflow: hidden; }
.pv-pavesen-watermark { position: absolute; right: -90px; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; background: url('../images/gold-p.png') center/contain no-repeat; opacity: 0.05; pointer-events: none; }
@media (max-width: 900px) { .pv-pavesen-watermark { display: none; } }
.pv-pavesen-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.pv-pavesen-inner .gold-rule { margin-left: auto; margin-right: auto; }
.pv-pavesen-logo { margin-bottom: 30px; }
.pv-pavesen-logo img { height: 64px; width: auto; margin: 0 auto; }
.pv-pavesen .t-h2 { color: #fff; }
.pv-pavesen .t-h2 em { color: var(--gold); }
.pv-pavesen .t-body { color: rgba(255,255,255,0.62); }
.pv-pavesen .t-body strong { color: #fff; }
.pv-pavesen-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; justify-content: center; }
.pv-pavesen-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; border: 1px solid rgba(167,136,49,0.4); }
.pv-pavesen-pillars .adv-pillar { border-right: 1px solid rgba(167,136,49,0.4); text-align: center; }
.pv-pavesen-pillars .adv-pillar:last-child { border-right: none; }
.pp-pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--gold); margin-bottom: 10px; }
.pp-pillar-txt { font-family: 'DM Sans', sans-serif; font-size: 0.86rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }
@media (max-width: 700px) { .pv-pavesen-pillars { grid-template-columns: 1fr; } .pv-pavesen-pillars .adv-pillar { border-right: none; border-bottom: 1px solid rgba(167,136,49,0.4); } .pv-pavesen-pillars .adv-pillar:last-child { border-bottom: none; } }

/* ── CONTACT ── */
.pv-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px; max-width: 820px; margin-left: auto; margin-right: auto; border: 1px solid rgba(167,136,49,0.3); }
.pv-contact-card { padding: 38px 28px; text-align: center; border-right: 1px solid rgba(167,136,49,0.3); transition: background 0.3s; }
.pv-contact-card:last-child { border-right: none; }
.pv-contact-card:hover { background: rgba(255,255,255,0.03); }
.pc-icon { width: 24px; height: 24px; fill: var(--gold); display: block; margin: 0 auto 18px; opacity: 0.8; transition: opacity 0.25s, transform 0.25s; }
.pv-contact-card a:hover .pc-icon { opacity: 1; transform: translateY(-2px); }
.pc-label { font-family: 'DM Sans', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.pc-value { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; color: #fff; transition: color 0.25s; word-break: break-word; }
.pv-contact-card a:hover .pc-value { color: var(--gold); }
@media (max-width: 700px) { .pv-contact-grid { grid-template-columns: 1fr; } .pv-contact-card { border-right: none; border-bottom: 1px solid rgba(167,136,49,0.3); } .pv-contact-card:last-child { border-bottom: none; } }

/* ── CTA ── */
.pv-cta { background: var(--navy2); padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden; }
.pv-cta::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--gold) 0%, rgba(167,136,49,0.3) 40%, transparent 100%); }
.pv-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(167,136,49,0.05) 0%, transparent 65%); pointer-events: none; }
.cta-hl { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 300; line-height: 1.3; max-width: 660px; margin: 16px auto 14px; color: var(--white); }
.cta-hl em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 44px; line-height: 1.8; }
.pv-cta .t-eyebrow { color: var(--gold); }
.pv-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .pv-cta { padding: 64px 0; } }

/* ── PRESS STRIP ── */
.pv-press-strip { background: var(--navy2); padding: 32px 40px; text-align: center; border-top: 1px solid rgba(167,136,49,0.1); border-bottom: 1px solid rgba(167,136,49,0.1); }
.pv-press-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(167,136,49,0.45); display: block; margin-bottom: 20px; }
.pv-press-outlets { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; width: 100%; }
.pv-press-outlet { display: inline-block; cursor: default; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.5); transition: color 0.2s; padding: 4px 24px; position: relative; white-space: nowrap; }
.pv-press-outlet:hover { color: rgba(167,136,49,0.65); }
.pv-press-outlet + .pv-press-outlet::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 11px; background: rgba(167,136,49,0.2); }
@media (max-width: 768px) {
  .pv-press-strip { padding: 28px 24px; }
  .pv-press-outlets { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px 0; }
  .pv-press-outlet { padding: 4px 0; font-size: 0.88rem; white-space: normal; }
  .pv-press-outlet + .pv-press-outlet::before { display: none; }
}

/* ── FOOTER ── */
.pv-footer { background: var(--navy); border-top: 1px solid rgba(167,136,49,0.25); padding: 70px 0 40px; }
.pv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.pv-footer-logo img { height: 56px; width: auto; margin-bottom: 18px; }
.pv-footer-tag { font-size: 0.84rem; color: rgba(255,255,255,0.58); line-height: 1.7; max-width: 300px; margin: 0; }
.pv-fcol-title { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.pv-flinks { display: flex; flex-direction: column; gap: 11px; }
.pv-flinks a { font-size: 0.86rem; color: var(--muted); transition: color 0.2s; }
.pv-flinks a:hover { color: var(--white); }
.pv-footer-btm { border-top: 1px solid rgba(167,136,49,0.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.pv-social-links { display: flex; align-items: center; gap: 16px; }
.pv-social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(167,136,49,0.25); border-radius: 2px; color: rgba(255,255,255,0.45); transition: border-color 0.25s, color 0.25s, transform 0.2s; }
.pv-social-links a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.pv-social-links svg { width: 16px; height: 16px; fill: currentColor; }
.pv-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
@media (max-width: 768px) {
  .pv-footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .pv-footer-logo { display: flex; justify-content: center; }
  .pv-footer-tag { max-width: 100%; margin: 0 auto; }
  .pv-flinks { align-items: center; }
  .pv-footer-btm { flex-direction: column; text-align: center; gap: 18px; }
}

/* ── BACK TO TOP ── */
.pv-to-top {
  position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); border: 1px solid rgba(167,136,49,0.45); color: var(--gold);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); z-index: 90; padding: 0;
  font-family: inherit; -webkit-tap-highlight-color: transparent;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), background-color 200ms ease, border-color 200ms ease, color 200ms ease, visibility 0s linear 240ms;
}
.pv-to-top.show { opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), background-color 200ms ease, border-color 200ms ease, color 200ms ease; }
.pv-to-top:hover, .pv-to-top:focus-visible { background: var(--gold); border-color: var(--gold); color: var(--navy); outline: none; }
.pv-to-top:focus-visible { box-shadow: 0 0 0 3px rgba(167,136,49,0.35); }
.pv-to-top svg { width: 18px; height: 18px; display: block; pointer-events: none; }
@media (max-width: 540px) { .pv-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; } .pv-to-top svg { width: 16px; height: 16px; } }
@media (prefers-reduced-motion: reduce) { .pv-to-top { transition-duration: 0.01ms !important; transform: none !important; } }

/* ── SCROLL REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.35s; }

/* ── 404 ── */
.pv-404 { min-height: calc(100vh - 84px); display: flex; align-items: center; justify-content: center; padding: 140px 24px 90px; position: relative; overflow: hidden; background: linear-gradient(160deg, #001233 0%, #00102d 100%); }
.pv-404::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(167,136,49,0.06) 0%, transparent 65%); pointer-events: none; }
.pv-404::after { content: 'TM'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: clamp(16rem, 30vw, 26rem); font-weight: 300; color: rgba(167,136,49,0.04); line-height: 1; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; white-space: nowrap; letter-spacing: -0.05em; }
.pv-404-inner { position: relative; z-index: 2; text-align: center; max-width: 580px; }
.pv-404-code { font-family: 'Cormorant Garamond', serif; font-size: clamp(5rem, 12vw, 9rem); font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: -0.02em; opacity: 0; transform: translateY(30px); animation: fadeUp 0.9s 0.2s var(--ease) forwards; }
.pv-404-rule { width: 48px; height: 1px; background: var(--gold); margin: 28px auto 32px; opacity: 0; animation: fadeUp 0.7s 0.45s var(--ease) forwards; }
.pv-404-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 18px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.55s var(--ease) forwards; }
.pv-404-headline em { font-style: italic; color: var(--gold); }
.pv-404-sub { font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 420px; margin: 0 auto 44px; opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s 0.7s var(--ease) forwards; }
.pv-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s 0.85s var(--ease) forwards; }
@media (max-width: 540px) { .pv-404 { padding: 120px 24px 60px; } .pv-404-actions { flex-direction: column; align-items: center; } }

/* ── ACCESSIBILITY ── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.btn-primary:focus-visible, .btn-ghost:focus-visible { outline-offset: 4px; }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999; }
.skip-link:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; overflow: visible; background: var(--gold); color: var(--navy); padding: 12px 24px; font-family: 'DM Sans',sans-serif; font-size: 0.9rem; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } [data-reveal] { opacity: 1; transform: none; } }
