/* =========================================================
   RockyGems — v3 Brand Stylesheet
   "You don't buy decorations. You create memories."
   Palette: warm neutrals + dark green + navy + gold
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --white: #ffffff;
  --cream: #FAF7F2;
  --beige: #F0EBE1;
  --sand: #E4DCCB;
  --gold: #C4A24E;
  --gold-soft: #D4B96A;
  --gold-bg: rgba(196,162,78,0.08);
  --green: #2E4A3A;
  --green-soft: #3D6150;
  --green-bg: #EEF3EF;
  --navy: #1C2B4A;
  --navy-soft: #2C3D5E;
  --charcoal: #1E1E1E;
  --ink: #2A2A2A;
  --muted: #6E6E6E;
  --light-muted: #999;
  --line: #E4DDD0;
  --shadow-sm: 0 4px 20px rgba(30,30,30,0.06);
  --shadow: 0 10px 40px rgba(30,30,30,0.08);
  --shadow-lg: 0 24px 60px rgba(30,30,30,0.13);
  --radius: 16px;
  --radius-lg: 24px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --container: 1140px;
  --container-sm: 780px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: .2s ease; }
a:hover { color: var(--gold); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
p { margin-bottom: 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.nav-links {
  display: flex; gap: 26px; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--ink); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.015em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 22px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em;
  transition: .25s ease;
}
.nav-cta:hover { background: var(--navy); color: var(--white) !important; transform: translateY(-1px); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); margin: 5px 0; transition: .3s ease;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 15px 32px; border-radius: 999px;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em;
  cursor: pointer; border: 1.5px solid transparent; transition: .25s ease;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); }

/* ---------- TAGS / EYEBROW ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; padding: 7px 18px; border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow--gold { color: var(--gold); background: var(--gold-bg); }
.eyebrow--light { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); }
.tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; padding: 5px 13px;
  border-radius: 999px; margin-bottom: 14px;
  color: var(--green); background: var(--green-bg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 100px;
  color: var(--white); overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/hero.jpg") center/cover;
  filter: brightness(0.52) saturate(0.9); z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,43,74,0.35) 0%, rgba(30,30,30,0.65) 100%);
  z-index: -1;
}
.hero-inner { max-width: 780px; }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 3px 25px rgba(0,0,0,0.3); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 36px; font-weight: 300; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-quote {
  margin-top: 52px; font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
}

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head p { max-width: 560px; margin: 14px auto 0; color: var(--muted); }

/* ---------- EMOTIONAL TEXT BLOCK ---------- */
.emo-block { text-align: center; }
.emo-block h2 { margin-bottom: 24px; }
.emo-block p { max-width: 520px; margin: 0 auto 12px; color: var(--muted); font-size: 1.05rem; }
.emo-block .highlight {
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--gold); margin-top: 28px;
}

/* ---------- GEM CARDS (COLLECTIONS) ---------- */
.gems { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.gem-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: .35s ease;
}
.gem-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.gem-img { height: 280px; overflow: hidden; position: relative; }
.gem-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gem-card:hover .gem-img img { transform: scale(1.05); }
.gem-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.15));
  pointer-events: none;
}
.gem-body { padding: 30px 28px 34px; flex: 1; display: flex; flex-direction: column; }
.gem-body h3 { margin-bottom: 8px; }
.gem-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.gem-body .btn { margin-top: 18px; align-self: flex-start; }

/* ---------- STEPS ---------- */
.steps {
  counter-reset: step;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
}
.step {
  position: relative; padding: 46px 24px 28px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); counter-increment: step;
  text-align: center;
}
.step::before {
  content: counter(step); position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; line-height: 36px;
  background: var(--green); color: var(--white);
  font-family: var(--serif); font-size: 1rem;
  border-radius: 50%; text-align: center;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- FROM / TO BLOCK ---------- */
.from-to {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px;
  align-items: center; text-align: center;
  max-width: 700px; margin: 0 auto;
}
.from-to .side {
  padding: 36px 28px; border-radius: var(--radius-lg);
}
.from-to .from {
  background: var(--beige); color: var(--muted);
  font-style: italic; font-family: var(--serif); font-size: 1.2rem;
}
.from-to .arrow { font-size: 2rem; color: var(--gold); }
.from-to .to {
  background: var(--green); color: var(--white);
  font-family: var(--serif); font-size: 1.2rem;
  font-style: italic;
}
@media (max-width: 600px) {
  .from-to { grid-template-columns: 1fr; gap: 16px; }
  .from-to .arrow { transform: rotate(90deg); }
}

/* ---------- BANDS ---------- */
.band-white { background: var(--white); }
.band-beige { background: var(--beige); }
.band-green {
  background: var(--green); color: var(--white);
}
.band-green h2, .band-green h3 { color: var(--white); }
.band-green .eyebrow { color: var(--gold-soft); background: rgba(196,162,78,0.15); }
.band-green p, .band-green li { color: rgba(255,255,255,0.85); }
.band-navy {
  background: var(--navy); color: var(--white);
}
.band-navy h2, .band-navy h3 { color: var(--white); }
.band-navy .eyebrow { color: var(--gold-soft); background: rgba(196,162,78,0.15); }
.band-navy p { color: rgba(255,255,255,0.85); }

/* ---------- TWO COLUMNS ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col .visual {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
}
.two-col .visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- FEATURE GRID ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.feature {
  background: var(--white); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: .3s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-bg); display: grid; place-items: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- SHARE & SAVE ---------- */
.share-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
.share-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--line);
}
.share-card .pct {
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold);
  font-weight: 500; margin-bottom: 6px;
}
.share-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.share-combo {
  max-width: 420px; margin: 32px auto 0; padding: 28px;
  background: var(--green); color: var(--white); border-radius: var(--radius);
  text-align: center;
}
.share-combo .pct { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }
.share-combo p { color: rgba(255,255,255,0.85); margin: 6px 0 0; font-size: 0.92rem; }

/* ---------- QUOTE ---------- */
.quote { text-align: center; max-width: 700px; margin: 0 auto; }
.quote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-style: italic; line-height: 1.35; color: var(--charcoal); margin-bottom: 18px;
}
.band-green .quote blockquote, .band-navy .quote blockquote { color: var(--white); }
.quote cite {
  font-style: normal; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--gold);
}

/* ---------- CHECK LIST ---------- */
.check-list { list-style: none; padding: 0; margin: 18px 0; }
.check-list li {
  padding: 11px 0 11px 30px; position: relative;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.check-list li::before {
  content: "✦"; position: absolute; left: 0; top: 11px;
  color: var(--gold); font-size: 0.95rem;
}

/* ---------- FORM ---------- */
.form {
  max-width: 580px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 38px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.form label {
  display: block; font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px; font-weight: 600;
}
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 12px; font-family: inherit; font-size: 0.95rem;
  background: var(--cream); color: var(--ink); margin-bottom: 18px;
  transition: .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--green); background: var(--white);
}
.form textarea { min-height: 120px; resize: vertical; }
.form button { width: 100%; }

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  position: relative; padding: 120px 0 80px; text-align: center;
  color: var(--white); overflow: hidden; isolation: isolate;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: url("img/mood.jpg") center/cover;
  filter: brightness(0.4); z-index: -2;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,43,74,0.4), rgba(30,30,30,0.6));
  z-index: -1;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { max-width: 580px; margin: 0 auto; color: rgba(255,255,255,0.88); font-size: 1.08rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--charcoal); color: #C8C4BA; padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h4 {
  color: #F0ECE2; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 18px;
  font-family: var(--sans); font-weight: 600;
}
.site-footer .brand img { filter: brightness(1.05); }
.site-footer .brand span { color: #F0ECE2; font-family: var(--serif); font-size: 1.3rem; }
.site-footer p { color: #A8A49A; font-size: 0.93rem; margin-top: 12px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { color: #C8C4BA; font-size: 0.91rem; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 26px; font-size: 0.82rem; color: #7A7670;
  flex-wrap: wrap; gap: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--cream);
    padding: 22px; gap: 16px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }
  .hero { min-height: 75vh; padding: 100px 24px 80px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form { padding: 30px 22px; }
  .gem-img { height: 220px; }
  .brand img { width: 44px; height: 44px; }
  .share-grid { grid-template-columns: 1fr; }
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 0.88rem; color: var(--light-muted); }
