/* ============================================
   RESET & TOKENS
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #c0392b;
  --red-deep: #8b1a0f;
  --gold:     #c9973a;
  --gold-lt:  #e8c46a;
  --cream:    #fdf6ee;
  --white:    #ffffff;
  --dark:     #0d0605;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ============================================
   AGENCY CREDIT
============================================ */
#built-by {
  position: fixed;
  bottom: 1.4rem;
  right: 1.5rem;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.85rem 0.38rem 0.6rem;
  background: rgba(8, 3, 2, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 120px;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

#built-by:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 3, 2, 0.82);
}

.bb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.bb-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.bb-text strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

#built-by:hover .bb-text { color: rgba(255, 255, 255, 0.7); }
#built-by:hover .bb-text strong { color: var(--white); }

/* ============================================
   FIXED 3D CANVAS
============================================ */
#c {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Vignette frame */
#vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 55%, rgba(5,2,1,0.65) 100%);
}

/* ============================================
   PROGRESS BAR
============================================ */
#progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  background: rgba(255,255,255,0.07);
}

#progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ============================================
   NAVIGATION
============================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}

#nav.scrolled {
  background: rgba(10, 4, 3, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-star { color: var(--gold); font-size: 0.8rem; }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); }

/* ============================================
   PANELS (SECTIONS)
============================================ */
.panel {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh; /* dvh = dynamic viewport height — correct on mobile Safari */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Transparent so canvas shows through */
}

.panel-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 7vw 5rem;
  display: flex;
  flex-direction: column;
}

/* Left-side content (lychee on right) */
.panel-inner.side-left {
  align-items: flex-start;
}

/* Right-side content (lychee on left) */
.panel-inner.side-right {
  align-items: flex-end;
}

/* Full-width content (quality section) */
.panel-inner.side-full {
  align-items: center;
}

/* Glass card for text content */
.panel-card {
  max-width: 460px;
  width: 100%;
  background: rgba(8, 3, 2, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 2.75rem;
  /* Reveal animation — driven by IntersectionObserver + CSS, not RAF */
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.panel-card.from-left  { transform: translateX(-60px); }
.panel-card.revealed   { opacity: 1; transform: translateX(0); }

/* ============================================
   SECTION LABEL
============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-label.centered {
  justify-content: center;
}

.section-label.centered::before { display: none; }

/* ============================================
   HEADINGS
============================================ */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}

em {
  font-style: italic;
  color: var(--gold-lt);
}

/* ============================================
   HERO
============================================ */
/* Hero logo medallion */
.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.08);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroUp 0.8s cubic-bezier(0.16,1,0.3,1) 0s both;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(201, 151, 58, 0.1);
  border: 1px solid rgba(201, 151, 58, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
}

.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-lt);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 8px 60px rgba(0,0,0,0.6);
  opacity: 0;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  opacity: 0;
}

.hero-sub2 {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0;
}

.hero-sub3 {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* ── Hero text: CSS-driven reveal (works even in throttled/headless tabs) ── */
.hero-badge {
  animation: heroUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
.hero-title {
  animation: heroUp 1.0s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.hero-sub {
  animation: heroUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.60s both;
}
.hero-sub2 {
  animation: heroUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.72s both;
}
.hero-sub3 {
  animation: heroUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.82s both;
}
.hero-ctas {
  animation: heroUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.95s both;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}

.sh-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.sh-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: lineDown 2.2s ease-in-out infinite;
}

@keyframes lineDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   CARD INTERNALS
============================================ */
.card-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.card-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.cs-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
}

.cs-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

/* Variety details */
.variety-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.variety-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: -0.8rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 1.2rem;
}

.tag-list li {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.2);
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--red);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(192,57,43,0.35);
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192,57,43,0.45);
}

.btn-large {
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  margin-top: 1.5rem;
  display: block;
  text-align: center;
}

.btn-ghost {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ============================================
   MARQUEE
============================================ */
.marquee-band,
.footer-marquee {
  position: relative;
  z-index: 3;
  background: rgba(192,57,43,0.9);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer-marquee {
  background: rgba(192,57,43,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marqueeAnim 28s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.marquee-track .mx {
  color: rgba(255,255,255,0.3);
  font-size: 0.55rem;
}

@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   QUALITY SECTION
============================================ */
.panel-quality {
  min-height: 100vh;
  justify-content: center;
}

.quality-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.quality-header.revealed { opacity: 1; transform: translateY(0); }

.quality-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 1.2rem;
  width: 100%;
  max-width: 1050px;
}

.q-gap {
  /* Empty center column — lychee shows through here */
}

.q-item {
  background: rgba(8,3,2,0.68);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.6rem;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1),
              background 0.3s;
}
.q-item.from-left  { transform: translateX(-40px); }
.q-item.revealed   { opacity: 1; transform: translateX(0); }
.q-item.revealed:hover { background: rgba(15,5,3,0.85); transform: translateY(-3px); }

.q-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.7rem;
}

.q-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.q-item p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   CONTACT
============================================ */
.contact-links {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-link:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   FOOTER
============================================ */
footer {
  position: relative;
  z-index: 3;
  background: rgba(5,2,1,0.96);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 3.5rem 7vw;
  flex-wrap: wrap;
}

.footer-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.95);
  display: block;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.28);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 7vw;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   GALLERY SECTION
============================================ */
.panel-gallery {
  padding-top: 0;
}

.gallery-inner {
  gap: 2.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gallery-intro {
  text-align: center;
  max-width: 560px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.gallery-intro.revealed { opacity: 1; transform: translateY(0); }

.gallery-sub {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  margin-top: 0.75rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr;
  gap: 0.85rem;
  width: 100%;
  max-width: 1050px;
  height: clamp(460px, 58vh, 640px);
  overflow: hidden;
}

.pm-featured,
.pm-stack { min-height: 0; }

.pm-featured {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.pm-featured.revealed { opacity: 1; transform: translateX(0); }

.pm-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pm-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  flex: 1;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.pm-card--delay { transition-delay: 0.12s; }
.pm-card.revealed { opacity: 1; transform: translateX(0); }

.pm-featured img,
.pm-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: filter 0.5s ease;
}
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}
@keyframes kenBurnsSlow {
  from { transform: scale(1.0); }
  to   { transform: scale(1.065); }
}
.pm-featured.revealed img { animation: kenBurns 15s ease-out forwards; }
.pm-card.revealed img { animation: kenBurnsSlow 12s ease-out forwards; }
.pm-card--delay.revealed img { animation: kenBurnsSlow 13s ease-out 0.4s forwards; }
.pm-featured:hover img,
.pm-card:hover img { filter: brightness(1.1); }

.pm-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(5,1,0,0.82) 0%, rgba(5,1,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pm-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.pm-caption {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

/* ============================================
   FSSAI TRUST BADGE
============================================ */
.fssai-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
  padding: 0.9rem 1.1rem;
  background: rgba(30, 80, 40, 0.12);
  border: 1px solid rgba(60, 160, 80, 0.2);
  border-radius: 14px;
}

.fssai-seal {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(40, 160, 70, 0.15);
  border: 1.5px solid rgba(70, 200, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(80, 210, 100, 0.9);
  flex-shrink: 0;
  font-weight: 700;
}

.fssai-info { flex: 1; }

.fssai-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(90, 210, 110, 0.85);
  margin-bottom: 0.2rem;
}

.fssai-reg {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.03em;
}

.fssai-validity {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}

/* ============================================
   KEYFRAMES
============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE — COMPREHENSIVE DEVICE SUPPORT
   Breakpoints: 1100 · 1024 · 767 · 480 · 390 · 280
   Plus: landscape · foldable dual-screen · reduced motion
============================================ */

/* ── Large desktop constraint ── */
@media (max-width: 1100px) {
  .quality-grid { grid-template-columns: 1fr 80px 1fr; }
}

/* ── Small desktop / large tablet (1024–1199px) ── */
@media (min-width: 1024px) and (max-width: 1199px) {
  .panel-card { max-width: 420px; }
  .quality-grid { grid-template-columns: 1fr 90px 1fr; }
}

/* ── Tablet portrait & foldable unfolded (768–1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
  #nav { padding: 1.1rem 2.5rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.78rem; }

  .panel-inner { padding: 6rem 6vw 4rem; }
  .panel-card { max-width: 420px; padding: 2.2rem; }

  .quality-grid { grid-template-columns: 1fr 60px 1fr; gap: 1rem; }

  .photo-mosaic { height: clamp(360px, 50vh, 520px); }
  .pm-banner { height: clamp(120px, 18vh, 190px); }

  .press-clips { flex-direction: row; flex-wrap: wrap; }
  .press-clip { flex: 1; min-width: 240px; }
  .press-stats { padding: 1.6rem 2rem; }

  .footer-inner { gap: 2rem; flex-wrap: wrap; }
}

/* ── Base mobile (≤ 767px) — shared styles ── */
@media (max-width: 767px) {
  /* Navigation */
  #nav {
    padding: 0.85rem 1.25rem;
    padding-top: max(0.85rem, env(safe-area-inset-top, 0.85rem));
  }
  .nav-links { display: none; }
  .nav-logo-text { display: none; }

  /* Panels */
  .panel-inner { padding: 5.5rem 5vw 3.5rem; }
  .panel-inner.side-left,
  .panel-inner.side-right { align-items: center; }

  /* Cards */
  .panel-card { max-width: 100%; padding: 1.75rem; }

  /* Hero */
  .hero-logo { width: 72px; height: 72px; margin-bottom: 1.1rem; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-ctas { justify-content: center; }
  .btn-primary, .btn-ghost { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  /* Quality */
  .quality-grid { grid-template-columns: 1fr; max-width: 440px; }
  .q-gap { display: none; }

  /* Gallery */
  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 260px;
    height: auto;
  }
  .pm-stack { flex-direction: row; height: 260px; }
  .pm-card { flex: 1; }
  .pm-banner { height: 110px; }

  /* Press */
  .press-clips { flex-direction: column; }
  .press-clip { max-width: 100%; min-width: 0; padding: 1.6rem 1.8rem; }
  .press-stats { flex-wrap: wrap; gap: 1.2rem; padding: 1.4rem 1.5rem; justify-content: center; }
  .press-divider { display: none; }
  .press-stat { min-width: 40%; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.8rem; align-items: center; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo-img { margin: 0 auto 0.75rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; }
  .footer-nav, .footer-contact { align-items: center; }

  /* Trust strip */
  .trust-strip { padding: 1rem 5vw; }

  /* Mobile-specific UI */
  .mobile-cta-bar {
    display: flex;
    padding-bottom: max(0.6rem, env(safe-area-inset-bottom, 0.6rem));
  }
  #wa-btn { display: none; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }

  /* Built-by — shrink on mobile */
  #built-by { bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); right: 1rem; padding: 0.28rem 0.65rem 0.28rem 0.48rem; }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .panel-inner { padding: 5rem 4.5vw 3rem; }
  .panel-card { padding: 1.5rem; }

  .hero-logo { width: 64px; height: 64px; }
  .hero-title { font-size: clamp(2.1rem, 9.5vw, 3.2rem); }
  .season-badge { font-size: 0.63rem; padding: 0.32rem 0.75rem; }
  .hero-badge { font-size: 0.64rem; }

  .photo-mosaic { grid-template-rows: 230px 230px; }
  .pm-stack { height: 230px; }

  .scroll-hint { display: none; }
}

/* ── Very small phones & foldable cover screens (≤ 390px) ── */
@media (max-width: 390px) {
  .panel-inner { padding: 4.8rem 4vw 2.8rem; }
  .panel-card { padding: 1.35rem; }

  .hero-logo { width: 56px; height: 56px; }
  .hero-title { font-size: clamp(1.95rem, 10vw, 2.8rem); }
  .season-badge { font-size: 0.58rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.38rem 0.8rem; }

  .card-stats { gap: 1.2rem; }
  .cs-num { font-size: 1.6rem; }

  .photo-mosaic { grid-template-rows: 200px 200px; }
  .pm-stack { height: 200px; }
  .pm-banner { height: 90px; }

  .ps-num { font-size: 1.85rem; }
  .press-stat { min-width: 44%; }

  h2 { font-size: clamp(1.75rem, 7.5vw, 2.5rem); }
}

/* ── Foldable cover & tiny screens (≤ 280px) ── */
@media (max-width: 280px) {
  .panel-inner { padding: 4.5rem 3.5vw 2.5rem; }
  .hero-logo { width: 48px; height: 48px; }
  .hero-title { font-size: 1.75rem; }
  .hero-badge { display: none; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .card-stats { flex-wrap: wrap; gap: 1rem; }
  .cs { min-width: 40%; }
  .photo-mosaic { grid-template-rows: 165px 165px; }
  .pm-stack { height: 165px; }
  .pm-banner { height: 72px; }
  h2 { font-size: 1.65rem; }
}

/* ── Landscape phones ── */
@media (max-width: 767px) and (orientation: landscape) {
  #p-hero { min-height: 100dvh; }
  .panel { min-height: auto; }
  .panel-inner { padding: 3.8rem 6vw 2.8rem; }
  .hero-logo { width: 52px; height: 52px; margin-bottom: 0.75rem; }
  .hero-title { font-size: clamp(1.75rem, 5.5vw, 2.8rem); }
  .scroll-hint { display: none; }
  .photo-mosaic { grid-template-rows: 190px 190px; }
  .pm-stack { height: 190px; }
}

/* ── Dual-screen foldable (Galaxy Z Fold spanning mode) ── */
@media (horizontal-viewport-segments: 2) {
  .panel-inner {
    max-width: 100%;
    padding-left: max(7vw, env(viewport-segment-left 0 0, 7vw));
    padding-right: max(7vw, env(viewport-segment-left 1 0, 7vw));
  }
  #c { width: 100vw; }
}

/* ── Tall screens — more breathing room ── */
@media (min-height: 900px) and (min-width: 768px) {
  .panel-inner { padding-top: 9rem; padding-bottom: 7rem; }
}

/* ── Reduced motion accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .sh-line { animation: none; }
  .season-dot { animation: none; }
  .badge-dot { animation: none; }
  /* Still reveal elements — just instantly */
  .panel-card, .q-item, .gallery-intro, .quality-header,
  .pm-featured, .pm-card, .pm-banner, .press-header,
  .press-clip, .press-stats {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   PRELOADER
============================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #110403;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-content { text-align: center; }
.pre-star {
  display: block; font-size: 2.2rem; color: #c9973a;
  margin-bottom: 1.4rem;
  animation: preStarSpin 3s ease-in-out infinite;
}
@keyframes preStarSpin {
  0%,100% { transform: rotate(0deg) scale(1); opacity:1; }
  50% { transform: rotate(180deg) scale(1.15); opacity:0.6; }
}
.pre-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; font-weight: 700;
  color: #fff; letter-spacing: 0.04em; margin-bottom: 0.35rem;
}
.pre-tagline {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 2.2rem;
}
.pre-track {
  width: 140px; height: 1.5px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px; margin: 0 auto; overflow: hidden;
}
#pre-bar {
  height: 100%;
  background: linear-gradient(90deg, #c0392b, #c9973a);
  width: 0%; transition: width 0.25s ease; border-radius: 2px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
#wa-btn {
  position: fixed; bottom: 4.2rem; left: 1.5rem;
  z-index: 500;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.42rem 0.9rem 0.42rem 0.65rem;
  background: rgba(18, 50, 22, 0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 100px; text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s, background 0.3s, border-color 0.3s;
}
#wa-btn:hover { opacity: 1; background: rgba(18,50,22,0.9); border-color: rgba(37,211,102,0.45); }
.wa-icon { width: 14px; height: 14px; color: #25d366; flex-shrink: 0; }
.wa-label { font-size: 0.73rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; white-space: nowrap; }
#wa-btn:hover .wa-label { color: #fff; }

/* ============================================
   FILM GRAIN OVERLAY
============================================ */
#grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  animation: grainShift 0.18s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  20%  { background-position: -28px -14px; }
  40%  { background-position: 12px -32px; }
  60%  { background-position: -18px 11px; }
  80%  { background-position: 16px 26px; }
  100% { background-position: -6px -8px; }
}

/* ============================================
   CLIP-PATH TEXT REVEALS FOR HEADINGS
============================================ */
.h2-reveal {
  clip-path: inset(0 0 105% 0);
  transition: clip-path 0.85s cubic-bezier(0.16,1,0.3,1) 0.28s;
  display: block;
}
.panel-card.revealed .h2-reveal,
.quality-header.revealed .h2-reveal,
.gallery-intro.revealed .h2-reveal,
.press-header.revealed .h2-reveal,
.adopt-card.revealed .h2-reveal {
  clip-path: inset(0 0 0% 0);
}

/* ============================================
   HARVEST SEASON BADGE
============================================ */
.season-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(110, 230, 115, 0.92);
  background: rgba(30, 120, 50, 0.12);
  border: 1px solid rgba(60, 200, 80, 0.22);
  padding: 0.38rem 0.9rem; border-radius: 100px;
  margin-bottom: 0.75rem; opacity: 0;
  animation: heroUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.0s both;
}
.season-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5de878; flex-shrink: 0;
  animation: seasonPulse 1.8s ease-in-out infinite;
}
@keyframes seasonPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(93,232,120,0.55); }
  60% { box-shadow: 0 0 0 5px rgba(93,232,120,0); }
}

/* ============================================
   MOBILE STICKY CTA BAR
============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: rgba(8,3,2,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.6rem 1rem;
  gap: 0.75rem;
}
.mcta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 0; border-radius: 12px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  letter-spacing: 0.02em;
}
.mcta-call {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.mcta-wa {
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #5de878;
}

/* ============================================
   TRUST STRIP — SUPPLIED PAN-INDIA
============================================ */
.trust-strip {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem 1.5rem;
  padding: 1.2rem 7vw;
  background: rgba(5,2,1,0.6);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ts-label {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
  white-space: nowrap;
}
.ts-cities {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem 0.7rem;
}
.ts-cities span {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
}
.ts-sep { color: rgba(255,255,255,0.12) !important; }

/* ============================================
   NAV ADOPT HIGHLIGHT
============================================ */
.nav-link-highlight {
  color: var(--gold-lt) !important;
  position: relative;
}
.nav-link-highlight::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-lt);
  opacity: 0.5;
  border-radius: 2px;
}

/* ============================================
   ADOPT A TREE SECTION
============================================ */
.panel-adopt { min-height: 100vh; min-height: 100dvh; }

/* Card — wider than standard panel-card, gold-accented */
.adopt-card {
  max-width: 540px;
  width: 100%;
  background: rgba(8, 3, 2, 0.76);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(201, 151, 58, 0.18);
  border-left: 3px solid rgba(201, 151, 58, 0.55);
  border-radius: 28px;
  padding: 2.8rem;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.adopt-card.revealed { opacity: 1; transform: translateX(0); }

/* Eyebrow badge */
.adopt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(201, 151, 58, 0.1);
  border: 1px solid rgba(201, 151, 58, 0.22);
  padding: 0.34rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.adopt-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-lt);
  animation: adoptPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes adoptPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 196, 106, 0.5); opacity: 1; }
  60%       { box-shadow: 0 0 0 5px rgba(232, 196, 106, 0); opacity: 0.7; }
}

/* Lead paragraph */
.adopt-lead {
  font-size: 0.92rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.8rem;
}

/* Feature grid — 2×2 on desktop, stacked on mobile */
.adopt-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 151, 58, 0.1);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
              background 0.25s ease, border-color 0.25s ease;
}
.af-item.revealed { opacity: 1; transform: translateY(0); }
.af-item:hover {
  background: rgba(201, 151, 58, 0.07);
  border-color: rgba(201, 151, 58, 0.22);
}

.af-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.af-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}

.af-desc {
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.38);
}

/* CTA row */
.adopt-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

/* Gold primary button */
.btn-adopt {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a0d02;
  background: linear-gradient(135deg, #e8c46a 0%, #c9973a 100%);
  padding: 0.92rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 6px 28px rgba(201, 151, 58, 0.4);
}
.btn-adopt:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 151, 58, 0.55);
  filter: brightness(1.06);
}

.adopt-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.adopt-sep { color: rgba(255,255,255,0.12); }

/* Responsive */
@media (max-width: 767px) {
  .adopt-card { max-width: 100%; padding: 1.75rem; border-left-width: 2px; }
  .adopt-features { grid-template-columns: 1fr; gap: 0.75rem; }
  .adopt-cta-row { align-items: stretch; }
  .btn-adopt { justify-content: center; }
  .adopt-meta { justify-content: center; }
}

@media (max-width: 390px) {
  .adopt-card { padding: 1.4rem; }
  .af-item { padding: 0.85rem; }
}

/* ============================================
   FARM BANNER (sign.jpg above mosaic)
============================================ */
.pm-banner {
  width: 100%;
  max-width: 1050px;
  height: clamp(130px, 18vh, 220px);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.pm-banner.revealed { opacity: 1; transform: translateY(0); }

.pm-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.pm-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(to top, rgba(5,1,0,0.72) 0%, transparent 100%);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   PRESS SECTION
============================================ */
.panel-press { min-height: 100vh; }

.press-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.press-header.revealed { opacity: 1; transform: translateY(0); }

.press-header h2 { font-size: clamp(2rem, 3vw, 3rem); }

.press-clips {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.press-clip {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  background: rgba(8,3,2,0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.press-clip.from-left { transform: translateX(-48px); }
.press-clip.revealed  { opacity: 1; transform: translateX(0); }

.press-pub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.press-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.85rem;
}

.press-meta {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}

.press-stats {
  display: flex;
  align-items: center;
  background: rgba(8,3,2,0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 1.8rem 2.5rem;
  width: 100%;
  max-width: 720px;
  justify-content: space-around;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}
.press-stats.revealed { opacity: 1; transform: translateY(0); }

.press-stat { text-align: center; flex: 1; }

.ps-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ps-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.press-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
