/* =========================================================================
   IDAHO GOLD — BRAND SYSTEM
   Quality honey. Quality opportunities. Quality futures.
   ========================================================================= */

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

/* -------- TOKENS -------- */
:root {
  /* Brand colors — pulled from the actual packaging */
  --honey-deep:    #B8860B;   /* deep amber, the molten edition */
  --honey-warm:    #D4A24C;   /* signature gold */
  --honey-foil:    #C9A961;   /* metallic foil tone */
  --honey-light:   #E8D7A8;   /* creamed honey color */
  --honey-cream:   #F5EFDF;   /* page warm white */
  --honey-paper:   #FBF7EC;   /* off-white paper */

  --ink:           #1A1814;   /* near-black, warm */
  --ink-soft:      #3A332A;   /* body copy */
  --ink-mute:      #6B6256;   /* secondary text */

  --navy:          #0F1B2D;   /* deep accent */
  --navy-soft:     #1F2D44;

  --ember:         #B33024;   /* molten / hot honey accent */
  --frost:         #F8F6F1;   /* white gold accent */

  --rule:          rgba(26,24,20,0.12);
  --rule-strong:   rgba(26,24,20,0.25);

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script:   'Caveat', cursive;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--honey-cream);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* -------- TYPOGRAPHY -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.005em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--honey-deep);
}

p { max-width: 62ch; }
.lede { font-size: 1.125rem; line-height: 1.6; color: var(--ink-soft); }

/* -------- LAYOUT -------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 10vw, 8rem); }

@media (max-width: 580px) {
  .section { padding-block: 3rem; }
}
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 239, 223, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  transition: all 0.3s ease;
}
.nav.is-scrolled {
  padding-block: var(--s-3);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.nav__logo svg { width: 32px; height: 32px; }
.nav__links {
  display: flex;
  gap: var(--s-7);
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav__links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--honey-deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--honey-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cart {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.nav__cart:hover { background: var(--ink); color: var(--honey-cream); }

.nav__toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cart span { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--honey-cream);
    padding: var(--s-6) var(--gutter);
    gap: var(--s-5);
    border-bottom: 1px solid var(--rule);
  }
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-6);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.btn--primary {
  background: var(--ink);
  color: var(--honey-cream);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: var(--honey-deep);
  border-color: var(--honey-deep);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--honey-cream);
}
.btn--gold {
  background: var(--honey-deep);
  color: var(--honey-cream);
  border: 1px solid var(--honey-deep);
}
.btn--gold:hover { background: var(--ink); border-color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: var(--s-4); color: var(--honey-deep); border-color: var(--honey-deep); }

/* -------- HERO -------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--honey-cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(212, 162, 76, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184, 134, 11, 0.08), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
  width: 100%;
}
.hero__content { padding-block: var(--s-7); }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--honey-deep);
}
.hero h1 {
  font-style: normal;
  font-weight: 400;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1em;
  color: var(--honey-deep);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline;
}

/* Default em styling inside display headings — elegant italic accent matching package */
h1 em, h2 em, h3 em, .page-hero h1 em, .section-head__title h2 em,
.story h2 em, .workforce h2 em, .newsletter h2 em, .story-block h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--honey-deep);
  font-family: var(--font-display);
}
.hero__lede {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s-6);
  max-width: 50ch;
}
.hero__cta {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero__jar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(184, 134, 11, 0.25)) drop-shadow(0 10px 20px rgba(26, 24, 20, 0.15));
  animation: float 6s ease-in-out infinite;
}
.hero__badge {
  position: absolute;
  top: 8%; left: -5%;
  width: 130px;
  height: 130px;
  animation: rotate 30s linear infinite;
  z-index: 3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 2.5rem; }
  .hero__content { padding-block: var(--s-4); }
  .hero__visual { max-width: 380px; margin: 0 auto; aspect-ratio: 3/4; }
  .hero__badge { width: 72px; height: 72px; top: 4%; left: 2%; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.75rem); }
  .hero__lede { font-size: 1.0625rem; }
  .hero__cta { gap: var(--s-3); }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; min-width: 140px; }
}
@media (max-width: 480px) {
  .hero__badge { display: none; }
  .hero { padding-top: 6.5rem; padding-bottom: 1.5rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* -------- MARQUEE -------- */
.marquee {
  background: var(--ink);
  color: var(--honey-cream);
  padding: var(--s-4) 0;
  overflow: hidden;
  border-block: 1px solid var(--honey-foil);
}
.marquee__track {
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: var(--s-7); }
.marquee__track span::after {
  content: '✦';
  color: var(--honey-foil);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- SECTION HEADERS -------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
  align-items: end;
}
.section-head__title h2 {
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-head__title h2 em {
  font-style: italic;
  color: var(--honey-deep);
  font-family: var(--font-display);
  font-weight: 400;
}
.section-head__copy { font-size: 1.0625rem; line-height: 1.65; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* -------- PRODUCT CARDS -------- */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.product {
  position: relative;
  background: var(--honey-paper);
  border: 1px solid var(--rule);
  padding: var(--s-6);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product:hover {
  border-color: var(--honey-deep);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(26, 24, 20, 0.15);
}
.product__tag {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-deep);
  font-weight: 600;
}
.product__image {
  aspect-ratio: 1/1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 162, 76, 0.1), transparent 70%);
}
.product__image img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(184, 134, 11, 0.2));
  transition: transform 0.4s ease;
}
.product:hover .product__image img { transform: scale(1.05); }
.product__image--placeholder {
  background:
    linear-gradient(135deg, var(--honey-paper), var(--honey-light)),
    radial-gradient(circle at 50% 50%, rgba(212, 162, 76, 0.2), transparent 70%);
  border: 1px dashed var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  text-align: center;
  padding: var(--s-5);
}
.product__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s-1);
  line-height: 1.1;
}
.product__variety {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--honey-deep);
  margin-bottom: var(--s-3);
}
.product__desc {
  font-size: 0.9375rem;
  color: var(--ink-mute);
  margin-bottom: var(--s-4);
  flex-grow: 1;
}
.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}
.product__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}
.product__price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-mute);
  font-weight: 400;
  margin-left: 4px;
}
.product__add {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--ink);
  color: var(--honey-cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.product__add:hover { background: var(--honey-deep); }

@media (max-width: 880px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .product { padding: var(--s-5); }
  .product__image { aspect-ratio: 4/5; }
}
@media (max-width: 580px) {
  .products { grid-template-columns: 1fr; }
  .product { padding: var(--s-5) var(--s-4); }
  .product__image { aspect-ratio: 5/6; max-height: 360px; }
  .product__footer { gap: var(--s-3); }
}

/* -------- STORY SECTION -------- */
.story {
  background: var(--ink);
  color: var(--honey-cream);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(212, 162, 76, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(184, 134, 11, 0.08), transparent 60%);
  pointer-events: none;
}
.story__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.story h2 { color: var(--honey-cream); font-style: normal; font-weight: 400; }
.story h2 em { color: var(--honey-foil); font-family: var(--font-display); font-style: italic; }
.story__copy { font-size: 1.0625rem; line-height: 1.7; color: rgba(245, 239, 223, 0.85); }
.story__copy p { margin-bottom: var(--s-4); max-width: 52ch; }
.story__copy strong { color: var(--honey-foil); font-weight: 500; }
.story__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--honey-foil);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(212, 162, 76, 0.3);
}
.story__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-soft), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(212, 162, 76, 0.2);
}

/* Decorative SVG mountain in the story panel */
.story__mountain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.story__stat {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  padding: var(--s-5);
  background: rgba(15, 27, 45, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 162, 76, 0.25);
}
.story__stat div { text-align: center; }
.story__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--honey-foil);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.story__stat span {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 223, 0.7);
}

@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* -------- DIFFERENTIATORS / VALUES -------- */
.values {
  background: var(--honey-paper);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.value {
  padding: var(--s-7) var(--s-6);
  border-right: 1px solid var(--rule);
  position: relative;
}
.value:last-child { border-right: none; }
.value__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--honey-deep);
  margin-bottom: var(--s-5);
  display: block;
}
.value h3 {
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--s-4);
  font-size: 1.5rem;
  line-height: 1.2;
}
.value p { font-size: 0.9375rem; color: var(--ink-mute); }

@media (max-width: 880px) {
  .values__grid { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--rule); }
  .value:last-child { border-bottom: none; }
}

/* -------- WORKFORCE BANNER -------- */
.workforce {
  background:
    linear-gradient(135deg, rgba(245, 239, 223, 0.95), rgba(232, 215, 168, 0.85)),
    var(--honey-cream);
  position: relative;
  overflow: hidden;
}
.workforce::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.08'%3E%3Cpath fill='%23B8860B' d='M50 10 L80 27 L80 60 L50 77 L20 60 L20 27 Z M50 25 L67 35 L67 55 L50 65 L33 55 L33 35 Z'/%3E%3C/svg%3E");
  background-size: 80px;
  opacity: 0.6;
  pointer-events: none;
}
.workforce__content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.workforce h2 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: var(--s-5);
}
.workforce__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--honey-deep);
  margin-bottom: var(--s-6);
}

/* -------- NEWSLETTER -------- */
.newsletter {
  background: var(--honey-deep);
  color: var(--honey-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter h2 {
  color: var(--honey-cream);
  font-style: italic;
  font-weight: 300;
  margin-bottom: var(--s-3);
}
.newsletter p {
  margin: 0 auto var(--s-6);
  font-size: 1.0625rem;
  color: rgba(245, 239, 223, 0.9);
}
.newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
  border: 1px solid var(--honey-cream);
  padding: 4px;
}
.newsletter__form input {
  flex: 1;
  padding: var(--s-3) var(--s-4);
  background: transparent;
  border: none;
  color: var(--honey-cream);
  font-size: 0.9375rem;
  outline: none;
}
.newsletter__form input::placeholder { color: rgba(245, 239, 223, 0.6); }
.newsletter__form button {
  padding: var(--s-3) var(--s-5);
  background: var(--honey-cream);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.newsletter__form button:hover { background: var(--ink); color: var(--honey-cream); }

/* -------- FOOTER -------- */
.footer {
  background: var(--ink);
  color: var(--honey-cream);
  padding-block: var(--s-8) var(--s-5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(245, 239, 223, 0.15);
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--honey-foil);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.footer__brand p {
  font-size: 0.9375rem;
  color: rgba(245, 239, 223, 0.7);
  max-width: 36ch;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-foil);
  margin-bottom: var(--s-4);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
.footer__col a {
  font-size: 0.9375rem;
  color: rgba(245, 239, 223, 0.75);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--honey-foil); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-5);
  font-size: 0.8125rem;
  color: rgba(245, 239, 223, 0.55);
}
.footer__social { display: flex; gap: var(--s-4); }
.footer__social a { color: rgba(245, 239, 223, 0.7); transition: color 0.2s; }
.footer__social a:hover { color: var(--honey-foil); }
.footer__social svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: var(--s-4); text-align: center; }
}

/* -------- DECORATIVE -------- */
.divider {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: var(--s-6) 0;
  color: var(--honey-deep);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}
.divider span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
}

/* -------- REVEAL ANIMATIONS -------- */
/* Only apply hide-state when JS-enabled body class is set.
   This way, no-JS users see the full content immediately. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- UTILITIES -------- */
.bg-cream { background: var(--honey-cream); }
.bg-paper { background: var(--honey-paper); }
.bg-ink { background: var(--ink); color: var(--honey-cream); }
.text-center { text-align: center; }
.center-x { margin-inline: auto; }
.divider-rule { height: 1px; background: var(--rule); border: 0; }

/* Page-specific: simple page hero */
.page-hero {
  padding-top: 9rem;
  padding-bottom: var(--s-7);
  background: var(--honey-cream);
  position: relative;
}
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.page-hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--honey-deep);
}
.page-hero h1 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--s-4);
}
.page-hero h1 em { color: var(--honey-deep); font-family: var(--font-script); font-style: normal; }
.page-hero p { font-size: 1.125rem; max-width: 60ch; }
