/* ─── Design tokens ───────────────────────────────────────────── */
:root {
  --brand-black:      #1a1208;
  --brand-rust:       #b84c1a;
  --brand-tan:        #d4a96a;
  --brand-cream:      #f5ede0;
  --brand-dark-brown: #2e1c0a;
  --brand-olive:      #5a6130;
  --brand-gold:       #c9962a;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-condensed: 'Barlow Condensed', Arial Narrow, sans-serif;
  --font-body:      'Barlow', Arial, sans-serif;
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--brand-black);
  color: var(--brand-cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: linear-gradient(to bottom, rgba(26,18,8,0.85) 0%, transparent 100%);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(26,18,8,0.97); }
.nav-brand {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--brand-rust);
  color: var(--brand-cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #9c3d12 !important; }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--brand-cream);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-cart:hover { opacity: 1; }
.nav-cart-icon { width: 26px; height: 26px; }
.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: var(--brand-rust);
  color: var(--brand-cream);
  border-radius: 8px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.nav-cart-count[hidden] { display: none; }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,18,8,0.3) 0%,
    rgba(26,18,8,0.55) 50%,
    rgba(26,18,8,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 2rem;
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-tan);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  line-height: 1;
  color: var(--brand-cream);
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--brand-cream);
  opacity: 0.88;
  line-height: 2;
  margin-bottom: 2.75rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--brand-cream);
  opacity: 0.4;
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--brand-rust); color: var(--brand-cream); }
.btn-primary:hover { background: #9c3d12; }
.btn-ghost {
  background: transparent;
  color: var(--brand-cream);
  border: 1.5px solid rgba(245,237,224,0.45);
}
.btn-ghost:hover { border-color: var(--brand-cream); }
.btn-large { padding: 1.1rem 3rem; font-size: 1.05rem; }
.btn-rust-sm {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  background: rgba(26,18,8,0.4);
  color: var(--brand-cream);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-rust-sm:hover { background: rgba(26,18,8,0.65); }

/* ─── Coming Soon Band ────────────────────────────────────────── */
.coming-soon-band { background: var(--brand-rust); padding: 1.75rem 0; }
.coming-soon-band .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.coming-soon-text {
  font-size: 0.95rem;
  color: var(--brand-cream);
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
}
.coming-soon-text strong { font-weight: 600; }
.band-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.band-form input[type="email"] {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 2px;
  background: rgba(245,237,224,0.18);
  color: var(--brand-cream);
  min-width: 220px;
  outline: none;
}
.band-form input[type="email"]::placeholder { color: rgba(245,237,224,0.55); }
.band-form input[type="email"]:focus { background: rgba(245,237,224,0.28); }
.band-form-success {
  font-size: 0.95rem;
  color: var(--brand-cream);
  font-weight: 500;
}

/* ─── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--brand-dark-brown);
  border-top: 1px solid rgba(201,150,42,0.15);
  border-bottom: 1px solid rgba(201,150,42,0.15);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  flex-wrap: wrap;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-tan);
}
.trust-dot { color: var(--brand-gold); opacity: 0.45; }

/* ─── Section base ────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-rust);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--brand-cream);
  margin-bottom: 1.75rem;
}

/* ─── Ranch Section ───────────────────────────────────────────── */
.ranch-section { background: var(--brand-black); }
.ranch-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.ranch-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: rgba(245,237,224,0.82);
}
.ranch-hero-photo { border-radius: 2px; overflow: hidden; }
.ranch-hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.3s, transform 0.4s;
}
.gallery-grid img:hover { opacity: 1; transform: scale(1.025); position: relative; z-index: 1; }

/* ─── Sticks Section ──────────────────────────────────────────── */
.sticks-section { background: var(--brand-dark-brown); }
.sticks-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.sticks-subtitle { font-size: 1.1rem; color: rgba(245,237,224,0.7); }
.copy {
  text-align: left;
  margin: 1.25rem 0;
  color: rgba(245,237,224,0.82);
}
.copy + .copy { margin-top: 0; }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card {
  background: rgba(26,18,8,0.55);
  border: 1px solid rgba(201,150,42,0.12);
  border-radius: 3px;
  overflow: hidden;
}
a.product-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
a.product-card:hover { border-color: rgba(201,150,42,0.3); transform: translateY(-3px); }
.product-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.product-info { padding: 2rem; }
.product-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-olive);
  background: rgba(90,97,48,0.15);
  border: 1px solid rgba(90,97,48,0.4);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--brand-cream);
  margin-bottom: 0.3rem;
}
.product-desc {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--brand-tan);
  margin-bottom: 1rem;
}
.product-body { font-size: 0.95rem; color: rgba(245,237,224,0.72); }

.diet-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  border: 1px solid;
}
.badge-keto, .badge-paleo, .badge-whole30, .badge-diabetic {
  color: var(--brand-olive);
  border-color: rgba(90,97,48,0.4);
  background: rgba(90,97,48,0.12);
}
.badge-school {
  color: var(--brand-tan);
  border-color: rgba(212,169,106,0.3);
  background: rgba(212,169,106,0.08);
}
.badge-protein {
  color: var(--brand-gold);
  border-color: rgba(201,150,42,0.35);
  background: rgba(201,150,42,0.1);
}

/* ─── Why Section ─────────────────────────────────────────────── */
.why-section { background: var(--brand-black); }
.why-section .container { text-align: center; }
.why-intro {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  color: rgba(245,237,224,0.72);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.why-card {
  background: var(--brand-dark-brown);
  border: 1px solid rgba(201,150,42,0.1);
  border-radius: 3px;
  padding: 2rem;
}
.why-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-tan);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.92rem; color: rgba(245,237,224,0.68); line-height: 1.65; }

/* ─── Waitlist Section ────────────────────────────────────────── */
.waitlist-section { background: var(--brand-dark-brown); }
.waitlist-container { text-align: center; max-width: 640px; }
.waitlist-title { font-size: clamp(2.25rem, 4vw, 3.5rem); }
.waitlist-body {
  font-size: 1.1rem;
  color: rgba(245,237,224,0.72);
  margin-bottom: 2.5rem;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.waitlist-fields {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  flex-wrap: wrap;
}
.waitlist-fields input {
  flex: 1;
  min-width: 180px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(245,237,224,0.18);
  border-radius: 2px;
  background: rgba(26,18,8,0.55);
  color: var(--brand-cream);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-fields input::placeholder { color: rgba(245,237,224,0.38); }
.waitlist-fields input:focus { border-color: rgba(245,237,224,0.45); }
.waitlist-success { padding: 1.5rem 0; }
.waitlist-success .success-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--brand-tan);
  margin-bottom: 0.75rem;
}
.waitlist-success-sub {
  font-size: 1rem;
  color: rgba(245,237,224,0.68);
}
.waitlist-footnote {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(245,237,224,0.3);
  font-style: italic;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--brand-black);
  border-top: 1px solid rgba(201,150,42,0.12);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-brand-name {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--brand-gold);
}
.footer-location { font-size: 0.8rem; color: var(--brand-tan); opacity: 0.65; }
.footer-nav {
  display: flex;
  gap: 2rem;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.55);
}
.footer-nav a:hover { color: var(--brand-cream); }
.footer-legal {
  font-size: 0.74rem;
  color: rgba(245,237,224,0.28);
  max-width: 500px;
  line-height: 1.5;
}

/* ─── Story blocks (from Our Story) ──────────────────────────── */
.ranch-pull-quote {
  background: var(--brand-rust);
  padding: 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--brand-cream);
  line-height: 1.5;
}

.story-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-rust);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.story-label::after { content: ''; flex: 1; height: 1px; background: rgba(184,76,26,0.2); }

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }

.story-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--brand-cream);
  margin-bottom: 1.5rem;
}
.story-copy h2 em { font-style: italic; color: var(--brand-tan); }
.story-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,237,224,0.78);
  margin-bottom: 1.25rem;
}
.story-copy p:last-child { margin-bottom: 0; }
.story-copy p strong { font-weight: 500; color: var(--brand-cream); }

.story-panel {
  background: var(--brand-dark-brown);
  padding: 3rem;
  border-left: 4px solid var(--brand-rust);
}
.story-panel-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--brand-cream);
  margin-bottom: 1.5rem;
}
.story-panel-attr {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-tan);
}

.stat-stack { display: flex; flex-direction: column; gap: 1px; background: rgba(184,76,26,0.15); }
.stat-item { background: var(--brand-dark-brown); padding: 1.5rem 2rem; display: flex; align-items: baseline; gap: 1rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-rust);
  line-height: 1;
  min-width: 3rem;
}
.stat-label { font-size: 0.9rem; line-height: 1.5; color: rgba(245,237,224,0.72); }

.ranch-promise {
  background: var(--brand-dark-brown);
  border-top: 4px solid var(--brand-rust);
  padding: 6rem 3rem;
  text-align: center;
  margin: 4rem 0;
}
.ranch-promise-inner { max-width: 780px; margin: 0 auto; }
.ranch-promise h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-cream);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.ranch-promise h2 em { font-style: italic; color: var(--brand-tan); }
.ranch-promise p { font-size: 1.05rem; line-height: 1.8; color: rgba(245,237,224,0.65); margin-bottom: 1.25rem; }
.ranch-promise-divider { width: 2rem; height: 1px; background: var(--brand-rust); margin: 2rem auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,76,26,0.12);
  margin: 3rem 0 5rem;
}
.pillar { background: var(--brand-dark-brown); padding: 2.5rem 2rem; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,76,26,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-cream);
  margin-bottom: 0.75rem;
}
.pillar p { font-size: 0.9rem; line-height: 1.7; color: rgba(245,237,224,0.68); }

/* ─── Scroll reveal ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.35s; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ranch-intro { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 220px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .story-block, .story-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .coming-soon-band .container { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 260px; }
  .why-grid { grid-template-columns: 1fr; }
  .waitlist-fields { flex-direction: column; }
  .pillars-grid { grid-template-columns: 1fr; }
  .ranch-promise { padding: 4rem 1.5rem; }
}

/* ─── Buy Intent Modal ────────────────────────────────────────── */
.buy-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.buy-modal[hidden] { display: none; }

.buy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.88);
  cursor: pointer;
}

.buy-modal__panel {
  position: relative;
  background: var(--brand-dark-brown);
  border: 1px solid rgba(212,169,106,0.2);
  border-radius: 4px;
  max-width: 520px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
}

.buy-modal__close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  color: var(--brand-tan);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.buy-modal__close:hover { opacity: 1; }

.buy-modal__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--brand-cream);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}

.buy-modal__text {
  color: rgba(245,237,224,0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.buy-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.buy-modal__fields input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,169,106,0.3);
  border-radius: 2px;
  color: var(--brand-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
}
.buy-modal__fields input::placeholder { color: rgba(245,237,224,0.4); }
.buy-modal__fields input:focus {
  outline: none;
  border-color: var(--brand-tan);
}
.buy-modal__form .btn { width: 100%; }
.buy-modal__error {
  color: #e55;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.buy-modal__footnote {
  font-size: 0.78rem;
  color: rgba(245,237,224,0.35);
  margin-top: 1.1rem;
}

.buy-modal__success-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-tan);
  margin-bottom: 0.75rem;
}
.buy-modal__success-body {
  color: rgba(245,237,224,0.78);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

@media (max-width: 480px) {
  .buy-modal__panel { padding: 2.5rem 1.5rem; }
}
