
:root{
  --navy:#0D1B34;
  --gold:#C8A766;
  --ivory:#F3EFE6;
  --ink:#111111;
  --white:#ffffff;
  --muted:#6f6a63;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font:17px/1.65 Arial,Helvetica,sans-serif;
}
img{max-width:100%;display:block}
a{color:inherit}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  letter-spacing:.015em;
  margin:0 0 .5em;
}
h1{font-size:clamp(2.5rem,5.7vw,5rem);line-height:1.02}
h2{font-size:clamp(2rem,4vw,3.3rem);line-height:1.1;color:var(--navy)}
h3{font-size:1.3rem;color:var(--navy)}
p{margin:.6em 0 1em}
.wrap{width:min(1160px,91%);margin:auto}

.nav{
  background:var(--navy);
  color:white;
  border-bottom:1px solid rgba(200,167,102,.4);
}
.nav .wrap{
  min-height:84px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:26px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.brand .knot{
  width:54px;
  height:42px;
  object-fit:cover;
}
.brand .wordmark{
  width:220px;
  height:auto;
}
.navlinks{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  text-decoration:none;
  text-transform:uppercase;
  font-size:.78rem;
  letter-spacing:.11em;
}
.navlinks a:hover{color:var(--gold)}

.hero{
  background:var(--navy);
  color:white;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(360px, 1.05fr);
  min-height:620px;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:76px max(5vw,42px);
}
.hero-photo-wrap{
  min-height:620px;
  background:#d6d0c4;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-photo{
  width:100%;
  height:100%;
  object-fit:contain;       /* critical: show ALL of Rocky, not just chest */
  object-position:center center;
  background:#d6d0c4;
}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.18em;
  font-size:.78rem;
  margin-bottom:14px;
}
.hero .lead{
  font:italic 1.28rem/1.55 Georgia,"Times New Roman",serif;
  max-width:620px;
}
.button{
  display:inline-block;
  width:max-content;
  margin-top:12px;
  background:var(--gold);
  color:var(--navy);
  padding:11px 18px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.08em;
}
section{padding:78px 0}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
}
.split img.content-photo{
  width:100%;
  max-height:650px;
  object-fit:contain;
  background:#ddd7cc;
}
.dark{background:var(--navy);color:white}
.dark h2,.dark h3{color:white}
.quote{
  font:italic clamp(1.45rem,3vw,2.25rem)/1.35 Georgia,"Times New Roman",serif;
}
.detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0 34px;
}
.detail{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  background:white;
  color:var(--ink);
  padding:23px;
  border-top:3px solid var(--gold);
}
.notice{
  background:white;
  border-left:3px solid var(--gold);
  padding:18px 20px;
}
.resource-strip{
  background:#e9e2d5;
  border-top:1px solid #d5c9b7;
  border-bottom:1px solid #d5c9b7;
}
.resource-strip .wrap{
  display:flex;
  flex-wrap:wrap;
  gap:16px 28px;
  align-items:center;
  justify-content:center;
  padding:24px 0;
}
.resource-strip a{
  color:var(--navy);
  font-weight:700;
  text-decoration:none;
}
.resource-strip a:hover{text-decoration:underline}
.footer{
  background:var(--navy);
  color:white;
  padding:44px 0;
  text-align:center;
}
.footer .knot{
  width:90px;
  height:66px;
  object-fit:cover;
  margin:0 auto 12px;
}
.footer .resource-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
  justify-content:center;
  margin-top:18px;
}
.footer .resource-links a{
  color:var(--gold);
  text-decoration:none;
  font-size:.9rem;
}
.small{font-size:.9rem;color:var(--muted)}
.dark .small{color:#ddd}
form{display:grid;gap:13px}
input,textarea{
  width:100%;
  padding:14px;
  border:1px solid #aaa;
  background:#fff;
  font:inherit;
}
textarea{min-height:170px}
strong.callout{
  display:block;
  color:var(--navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.4rem;
  margin:1.1em 0 .4em;
}
.dark strong.callout{color:var(--gold)}
@media(max-width:850px){
  .hero-grid{grid-template-columns:1fr;min-height:0}
  .hero-copy{padding:58px 5vw}
  .hero-photo-wrap{min-height:0;padding:24px}
  .hero-photo{height:auto;max-height:650px;object-fit:contain}
  .split,.cards{grid-template-columns:1fr}
  .nav .wrap{align-items:flex-start;padding:12px 0}
  .brand .wordmark{width:170px}
  .navlinks{gap:10px 14px}
  section{padding:54px 0}
}
@media(max-width:580px){
  .brand .wordmark{display:none}
  .nav .wrap{min-height:68px}
  .navlinks{font-size:.8rem}
  .detail-grid{grid-template-columns:1fr}
}

/* Revision 3 brand fixes */
.brand-full{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand-full img{
  width:160px;
  max-height:96px;
  object-fit:contain;
  object-position:center;
}
.brand-watermark{
  position:absolute;
  right:3%;
  top:18px;
  width:min(230px,22vw);
  opacity:.055;
  pointer-events:none;
  z-index:0;
}
.watermark-section{
  position:relative;
  overflow:hidden;
}
.watermark-section > .wrap{
  position:relative;
  z-index:1;
}
.footer .primary-footer-logo{
  width:170px;
  height:auto;
  margin:0 auto 14px;
  object-fit:contain;
}
@media(max-width:850px){
  .brand-full img{width:135px}
  .brand-watermark{width:150px;right:-12px;top:12px}
}

/* Revision 5 hero photo quality */
.hero-photo{
  image-rendering:auto;
  object-fit:contain;
  object-position:center center;
}

/* Revision 6 launch-candidate polish */
:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
.skip-link{position:absolute;left:-9999px;top:auto}
.skip-link:focus{left:12px;top:12px;background:white;color:var(--navy);padding:10px;z-index:100}
.noble-definition{background:#fff;border-top:1px solid #d8cfbf;border-bottom:1px solid #d8cfbf}
.noble-pairs{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:28px}
.noble-pair{padding:20px;border-left:3px solid var(--gold)}
.noble-pair b{display:block;color:var(--navy);font-family:Georgia,serif;font-size:1.15rem}
@media(max-width:760px){.noble-pairs{grid-template-columns:1fr}.hero-copy{padding-top:48px;padding-bottom:48px}}

/* Revision 7 — live desktop proportion refinement */
@media (min-width:851px){
  body{font-size:16px}
  h1{font-size:clamp(2.5rem,3.9vw,4.05rem);line-height:1.04}
  h2{font-size:clamp(1.9rem,3.2vw,2.9rem)}
  .nav .wrap{min-height:72px}
 .brand-full img{width:150px;max-height:88px}
  .navlinks{gap:20px}
  .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(420px,1fr);
    min-height:0;
    height:520px;
  }
  .hero-copy{padding:52px max(5vw,42px)}
  .hero-photo-wrap{
    min-height:0;
    height:520px;
    padding:0;
    background:#d6d0c4;
  }
  .hero-photo{
    width:auto;
    height:100%;
    max-width:100%;
    object-fit:contain;
    object-position:center center;
    margin:auto;
  }
  .hero .lead{font-size:1.12rem;line-height:1.5}
  section{padding:64px 0}
}

@media (min-width:1200px){
  .hero-grid{height:500px}
  .hero-photo-wrap{height:500px}
  h1{font-size:4.15rem}
}
