/* Two Gems on a Journey — site stylesheet */

:root{
  --black:#0b0c0e;
  --ink:#14161a;
  --cream:#faf6ec;
  --cream-dim:#f1ead9;
  --gold:#c9a227;
  --gold-light:#e7cd8c;
  --gold-deep:#9c7a1f;
  --navy:#173a63;
  --teal:#2f9e8f;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(0,0,0,.28);
  --radius:16px;
  --serif:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,"Times New Roman",serif;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
section{position:relative;}

/* ---------- Nav ---------- */
.site-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:rgba(11,12,14,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,162,39,.25);
  transition:background .3s ease;
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.nav-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.nav-brand img{
  height:34px;width:auto;flex:none;
  background:var(--cream);
  border-radius:8px;
  padding:3px 5px;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
}
.nav-brand span{
  font-family:var(--serif);
  color:var(--cream);
  font-size:1.05rem;
  letter-spacing:.02em;
  white-space:nowrap;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0;padding:0;
}
.nav-links a{
  color:var(--cream-dim);
  font-size:.92rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  font-weight:600;
  transition:color .2s ease;
}
.nav-links a:hover{color:var(--gold-light);}
.nav-cta{
  background:linear-gradient(135deg,var(--gold-light),var(--gold-deep));
  color:var(--black);
  padding:9px 18px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.02em;
  white-space:nowrap;
  box-shadow:0 4px 14px rgba(201,162,39,.35);
}
.nav-toggle{
  display:none;
  background:none;
  border:1px solid rgba(231,205,140,.5);
  border-radius:8px;
  color:var(--gold-light);
  width:40px;height:36px;
  font-size:1.2rem;
  cursor:pointer;
}

/* ---------- Hero ---------- */
.hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(180deg,rgba(6,8,10,.55) 0%,rgba(6,8,10,.45) 40%,rgba(6,8,10,.85) 100%),
    url("img/hero-ocean-shores.jpg") center 60%/cover no-repeat;
  padding:140px 20px 80px;
}
.hero-inner{max-width:760px;margin:0 auto;}
.hero-eyebrow{
  color:var(--gold-light);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.72rem;
  font-weight:700;
  margin-bottom:22px;
}
.hero-wordmark{
  width:min(560px,88vw);
  margin:0 auto 22px;
  filter:drop-shadow(0 6px 24px rgba(0,0,0,.45));
}
.hero-tagline{
  font-family:var(--serif);
  font-style:italic;
  color:var(--cream);
  font-size:clamp(1.15rem,2.6vw,1.55rem);
  line-height:1.5;
  margin:0 auto 34px;
  max-width:520px;
  text-shadow:0 2px 12px rgba(0,0,0,.5);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:30px;
}
.btn-subscribe{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-deep));
  color:var(--black);
  font-weight:700;
  padding:14px 28px;
  border-radius:999px;
  font-size:.98rem;
  letter-spacing:.02em;
  box-shadow:0 10px 30px rgba(201,162,39,.4);
  transition:transform .2s ease;
}
.btn-subscribe:hover{transform:translateY(-2px);}
.btn-subscribe svg{width:20px;height:20px;flex:none;}

.hero-social{
  display:flex;
  gap:16px;
  justify-content:center;
}
.hero-social a{
  width:44px;height:44px;
  border:1px solid rgba(250,246,236,.35);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--cream);
  transition:all .2s ease;
  background:rgba(255,255,255,.06);
}
.hero-social a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--black);
  transform:translateY(-3px);
}
.hero-social svg{width:20px;height:20px;}

.scroll-cue{
  position:absolute;
  bottom:26px;left:50%;
  transform:translateX(-50%);
  color:rgba(250,246,236,.65);
  font-size:1.4rem;
  animation:bob 2.2s ease-in-out infinite;
}
@keyframes bob{0%,100%{transform:translateX(-50%) translateY(0);}50%{transform:translateX(-50%) translateY(8px);}}

/* ---------- Section shell ---------- */
.section{padding:96px 0;}
.section-dark{background:var(--ink);color:var(--cream);}
.section-cream{background:var(--cream);}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.26em;
  font-size:.72rem;
  font-weight:700;
  color:var(--gold-deep);
  text-align:center;
  margin-bottom:14px;
}
.section-dark .eyebrow{color:var(--gold-light);}
.section-title{
  font-family:var(--serif);
  font-size:clamp(1.9rem,3.6vw,2.6rem);
  text-align:center;
  margin:0 0 18px;
  color:var(--navy);
}
.section-dark .section-title{color:var(--cream);}
.section-sub{
  text-align:center;
  max-width:620px;
  margin:0 auto 56px;
  color:#4a4a45;
  font-size:1.05rem;
  line-height:1.6;
}
.section-dark .section-sub{color:#c9c6ba;}
.divider-wave{display:block;width:100%;height:60px;}

/* ---------- Meet Scott & Coryn ---------- */
.meet-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.meet-copy h3{
  font-family:var(--serif);
  font-size:1.5rem;
  color:var(--navy);
  margin:0 0 6px;
}
.meet-copy .meet-since{
  color:var(--teal);
  font-weight:700;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:18px;
}
.meet-copy p{
  line-height:1.75;
  color:#33322d;
  margin:0 0 16px;
  font-size:1.02rem;
}
.meet-copy p:last-child{margin-bottom:0;}
.video-embed{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#000;
  border:3px solid var(--gold-light);
}
.video-embed iframe{
  position:absolute;inset:0;
  width:100%;height:100%;
  border:0;
}

/* ---------- What We Cover ---------- */
.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.pillar-card{
  background:rgba(250,246,236,.05);
  border:1px solid rgba(231,205,140,.25);
  border-radius:var(--radius);
  padding:32px 26px;
  text-align:center;
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}
.pillar-card:hover{
  transform:translateY(-6px);
  border-color:var(--gold);
  background:rgba(201,162,39,.08);
}
.pillar-icon{
  width:56px;height:56px;
  margin:0 auto 18px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-deep));
  display:flex;align-items:center;justify-content:center;
  color:var(--black);
}
.pillar-icon svg{width:26px;height:26px;}
.pillar-card h4{
  font-family:var(--serif);
  font-size:1.15rem;
  margin:0 0 8px;
  color:var(--cream);
}
.pillar-card p{
  margin:0;
  font-size:.92rem;
  line-height:1.55;
  color:#bfbcb0;
}

/* ---------- Featured Videos ---------- */
.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.video-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 30px rgba(20,20,15,.08);
  border:1px solid rgba(23,58,99,.08);
}
.video-card .video-embed{
  border-radius:0;
  border:none;
}
.video-card-body{padding:22px 24px 26px;}
.video-card-body h4{
  font-family:var(--serif);
  font-size:1.2rem;
  color:var(--navy);
  margin:0 0 8px;
}
.video-card-body p{
  margin:0;
  color:#55534b;
  font-size:.95rem;
  line-height:1.6;
}
.video-tag{
  display:inline-block;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:700;
  color:var(--teal);
  margin-bottom:10px;
}

/* ---------- Follow footer ---------- */
.footer{
  background:var(--black);
  color:var(--cream-dim);
  padding:70px 0 32px;
  text-align:center;
}
.footer-logo{
  height:52px;
  margin:0 auto 18px;
  background:var(--cream);
  border-radius:12px;
  padding:8px 12px;
  box-shadow:0 4px 14px rgba(0,0,0,.3);
}
.footer h2{
  font-family:var(--serif);
  color:var(--cream);
  font-size:1.7rem;
  margin:0 0 10px;
}
.footer p.footer-lede{
  color:#a9a69b;
  max-width:480px;
  margin:0 auto 32px;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.footer-social a{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(231,205,140,.3);
  padding:12px 20px;
  border-radius:999px;
  font-size:.88rem;
  font-weight:600;
  transition:all .2s ease;
}
.footer-social a:hover{
  background:var(--gold);
  color:var(--black);
  border-color:var(--gold);
}
.footer-social svg{width:18px;height:18px;flex:none;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:26px;
  font-size:.8rem;
  color:#716f66;
}
.footer-bottom span{color:var(--gold-light);}

/* ---------- Responsive ---------- */
@media (max-width:920px){
  .meet-grid{grid-template-columns:1fr;gap:36px;}
  .pillars{grid-template-columns:repeat(2,1fr);}
  .video-grid{grid-template-columns:1fr;}
}

@media (max-width:720px){
  .nav-links{
    position:fixed;
    top:64px;left:0;right:0;
    background:rgba(11,12,14,.97);
    flex-direction:column;
    align-items:flex-start;
    padding:20px 24px 26px;
    gap:18px;
    border-bottom:1px solid rgba(201,162,39,.25);
    transform:translateY(-140%);
    transition:transform .3s ease;
  }
  .nav-links.open{transform:translateY(0);}
  .nav-cta{order:2;}
  .nav-toggle{display:block;}
  .hero{padding-top:120px;}
  .section{padding:72px 0;}
  .pillars{grid-template-columns:1fr;}
}

@media (max-width:480px){
  .hero-actions{flex-direction:column;}
  .btn-subscribe{width:100%;justify-content:center;}
}
