/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;margin-top:0!important}
body{font-family:"DM Sans",sans-serif;color:#1A1714;background:#fff;line-height:1.6;overflow-x:hidden;margin-top:0!important;padding-top:0!important}
#wpadminbar{display:none!important}
h1,h2,h3,h4,h5{font-family:"Cormorant Garamond",serif;line-height:1.15;font-weight:700}
img{display:block;width:100%;height:auto}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;font-family:inherit;border:none;background:none}

/* ===== CSS VARIABLES ===== */
:root{
  --navy:#0F1C2E;
  --navy-mid:#1B2B4B;
  --navy-light:#243654;
  --gold:#C9973A;
  --gold-light:#E4B86A;
  --gold-pale:#F5E9D0;
  --white:#FFFFFF;
  --off-white:#F8F6F2;
  --gray-light:#EFEFEB;
  --gray-mid:#C4BFB5;
  --gray-dark:#6B6560;
  --text:#1A1714;
  --radius:4px;
  --radius-lg:10px;
  --shadow:0 4px 24px rgba(15,28,46,0.10);
  --shadow-lg:0 12px 48px rgba(15,28,46,0.18)
}

/* ===== UTILITY CLASSES ===== */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.section-label{font-size:11px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:12px;display:block}
.section-title{font-size:clamp(2rem,4vw,3.2rem);color:var(--navy);margin-bottom:16px}
.section-title-white{color:#fff}
.section-sub{font-size:17px;color:var(--gray-dark);line-height:1.7;max-width:580px}
.divider-gold{width:48px;height:2px;background:var(--gold);margin:20px 0}
.section-pad{padding:96px 0}
.section-pad-sm{padding:64px 0}
.section-dark{background:var(--navy)}
.section-off{background:var(--off-white)}
.text-center{text-align:center}
.text-center .section-sub{margin:0 auto}
.text-center .divider-gold{margin:20px auto}

/* ===== RESPONSIVE BASE ===== */
@media(max-width:768px){
  .section-pad{padding:64px 0}
}
@media(max-width:480px){
  .header-inner{padding:0 20px}
}
