/** Shopify CDN: Minification failed

Line 48:0 All "@import" rules must come first

**/
/* ==========================================================================
   Vaishnavi Estate — Green Coffee Landing Page
   Design language: "Field Journal" — the botanical record of the bean
   before it is ever roasted: herbarium specimen cards, sun-bleached
   field-notebook cream, forest-canopy green, and a hexagonal estate seal
   in place of the pure-coffee page's circular ledger stamp. Distinct
   hero mechanics (glass card, floating beans, parallax), distinct
   component language (alternating rows, vertical timeline) from the
   pure-coffee page — same brand, different voice.
   ========================================================================== */

:root {
  /* ---- Color tokens -------------------------------------------------- */
  --gc-cream:        #F7F2E7; /* field-notebook cream */
  --gc-cream-deep:   #EFE8D8;
  --gc-ink:          #262319; /* near-black botanical ink */
  --gc-ink-soft:     #46422F;
  --gc-green:        #4B5D3A; /* forest canopy green */
  --gc-green-deep:   #333F27;
  --gc-green-pale:   #DCE3CC;
  --gc-brass:        #AD8054; /* warm brass */
  --gc-brass-light:  #C9A377;
  --gc-bean:         #6B5843; /* unroasted bean tan-brown */
  --gc-line:         rgba(38, 35, 25, 0.14);
  --gc-line-on-dark: rgba(247, 242, 231, 0.2);
  --gc-shadow:       0 20px 48px rgba(38, 35, 25, 0.14);
  --gc-shadow-soft:  0 8px 22px rgba(38, 35, 25, 0.10);
  --gc-glass-bg:     rgba(247, 242, 231, 0.14);
  --gc-glass-border: rgba(247, 242, 231, 0.35);

  /* ---- Type tokens ----------------------------------------------------- */
  --gc-font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --gc-font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout tokens ----------------------------------------------------- */
  --gc-radius-lg: 26px;
  --gc-radius-md: 16px;
  --gc-radius-sm: 10px;
  --gc-container: 1220px;
  --gc-gutter: clamp(20px, 5vw, 64px);
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Public+Sans:wght@400;500;600;700&display=swap');

/* ---- Reset / base -------------------------------------------------------- */
.gc-scope, .gc-scope * { box-sizing: border-box; }
.gc-scope {
  font-family: var(--gc-font-body);
  color: var(--gc-ink);
  -webkit-font-smoothing: antialiased;
}
.gc-scope img { max-width: 100%; height: auto; display: block; }
.gc-scope a { color: inherit; }
.gc-scope svg { display: block; }
.gc-scope button { font-family: inherit; }

.gc-container {
  width: 100%;
  max-width: var(--gc-container);
  margin: 0 auto;
  padding-left: var(--gc-gutter);
  padding-right: var(--gc-gutter);
}

.gc-section {
  padding-top: var(--gc-pt, 72px);
  padding-bottom: var(--gc-pb, 72px);
}
@media screen and (min-width: 750px) {
  .gc-section { padding-top: var(--gc-pt-desktop, var(--gc-pt, 104px)); padding-bottom: var(--gc-pb-desktop, var(--gc-pb, 104px)); }
}

.gc-on-dark { color: var(--gc-cream); }
.gc-on-dark .gc-heading { color: var(--gc-cream); }
.gc-on-dark .gc-body { color: rgba(247, 242, 231, 0.82); }

/* ---- Eyebrow -------------------------------------------------------- */
.gc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gc-font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gc-green);
  margin: 0 0 18px;
}
.gc-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gc-brass);
  display: inline-block;
}
.gc-on-dark .gc-eyebrow { color: var(--gc-brass-light); }

/* ---- Headings -------------------------------------------------------- */
.gc-heading {
  font-family: var(--gc-font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--gc-ink);
}
.gc-heading em { font-style: italic; font-weight: 400; color: var(--gc-green); }
.gc-on-dark .gc-heading em { color: var(--gc-brass-light); }

.gc-h1 { font-size: clamp(40px, 6.4vw, 74px); }
.gc-h2 { font-size: clamp(30px, 4.4vw, 48px); }
.gc-h3 { font-size: clamp(20px, 2.4vw, 26px); }

.gc-body { font-size: 17px; line-height: 1.7; color: var(--gc-ink-soft); max-width: 58ch; }

/* ---- Buttons --------------------------------------------------------- */
.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.gc-btn:focus-visible { outline: 2px solid var(--gc-brass); outline-offset: 3px; }
.gc-btn--primary { background: var(--gc-green); color: var(--gc-cream); box-shadow: var(--gc-shadow-soft); }
.gc-btn--primary:hover { background: var(--gc-green-deep); transform: translateY(-2px); box-shadow: var(--gc-shadow); }
.gc-btn--glass {
  background: var(--gc-glass-bg);
  border-color: var(--gc-glass-border);
  color: var(--gc-cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gc-btn--glass:hover { background: rgba(247, 242, 231, 0.24); transform: translateY(-2px); }
.gc-btn--underline {
  padding: 4px 0;
  border-radius: 0;
  background: none;
  color: inherit;
}
.gc-btn--underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s ease;
  opacity: 0.5;
}
.gc-btn--underline:hover::after { transform: scaleX(1); opacity: 1; }
.gc-btn--sm { padding: 11px 22px; font-size: 13.5px; }

/* ---- Hexagonal estate seal (signature element) ---------------------- */
.gc-seal { --size: 104px; width: var(--size); height: var(--size); flex-shrink: 0; }
.gc-seal text { font-family: var(--gc-font-body); font-weight: 600; }
.gc-seal .gc-seal-fill { fill: currentColor; opacity: 0.08; }
.gc-seal .gc-seal-outline { fill: none; stroke: currentColor; stroke-width: 1; }
@media (prefers-reduced-motion: no-preference) {
  .gc-seal--spin { animation: gcSealSpin 32s linear infinite; }
}
@keyframes gcSealSpin { to { transform: rotate(360deg); } }

/* ---- Hero: cinematic, glass card, floating beans --------------------- */
.gc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--gc-ink);
  color: var(--gc-cream);
}
.gc-hero__breadcrumb {
  position: absolute;
  top: 22px;
  left: var(--gc-gutter);
  z-index: 4;
  font-size: 12.5px;
  color: rgba(247, 242, 231, 0.6);
}
.gc-hero__breadcrumb a { text-decoration: none; }
.gc-hero__breadcrumb a:hover { text-decoration: underline; }
.gc-hero__breadcrumb ol { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; flex-wrap: wrap; }
.gc-hero__breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; opacity: 0.5; }

.gc-hero__media {
  position: absolute;
  inset: -3% -3% -3% -3%;
  z-index: 0;
  will-change: transform;
}
.gc-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gc-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(38,35,25,0.28) 0%, rgba(38,35,25,0.4) 45%, rgba(38,35,25,0.88) 100%);
}
.gc-hero--no-image .gc-hero__scrim { background: var(--gc-ink); }

.gc-hero__beans {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.gc-hero__bean {
  position: absolute;
  color: var(--gc-green-pale);
  opacity: 0.55;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .gc-hero__bean { animation: gcFloat 9s ease-in-out infinite; }
  .gc-hero__bean:nth-child(2) { animation-duration: 11s; animation-delay: 1.2s; }
  .gc-hero__bean:nth-child(3) { animation-duration: 7.5s; animation-delay: 2.4s; }
  .gc-hero__bean:nth-child(4) { animation-duration: 10s; animation-delay: 0.6s; }
}
@keyframes gcFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -22px) rotate(12deg); }
}

.gc-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--gc-container);
  margin: 0 auto;
  padding: 96px var(--gc-gutter) 64px;
  display: grid;
  gap: 36px;
}
@media screen and (min-width: 960px) {
  .gc-hero__inner { padding: 130px var(--gc-gutter) 80px; grid-template-columns: 1.3fr 0.9fr; align-items: end; gap: 48px; }
}

.gc-hero__title { max-width: 15ch; }
.gc-hero__subtitle { font-size: 17px; line-height: 1.7; color: rgba(247, 242, 231, 0.82); max-width: 42ch; margin: 0 0 30px; }
.gc-hero__trust { list-style: none; margin: 0 0 34px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gc-hero__trust li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(247, 242, 231, 0.9); }
.gc-hero__trust svg { width: 16px; height: 16px; color: var(--gc-brass-light); flex-shrink: 0; }
.gc-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* Floating glass info card */
.gc-hero__card {
  background: var(--gc-glass-bg);
  border: 1px solid var(--gc-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--gc-radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gc-hero__card-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gc-brass-light); font-weight: 600; }
.gc-hero__card-value { font-family: var(--gc-font-display); font-size: 26px; }
.gc-hero__card-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--gc-line-on-dark); padding-top: 14px; }
.gc-hero__card-row:first-child { border-top: none; padding-top: 0; }

.gc-hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247, 242, 231, 0.7);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media screen and (min-width: 700px) { .gc-hero__scroll { display: flex; } }
.gc-hero__scroll-line { width: 1px; height: 30px; background: linear-gradient(180deg, rgba(247,242,231,0.8), transparent); position: relative; overflow: hidden; }
@media (prefers-reduced-motion: no-preference) {
  .gc-hero__scroll-line::after {
    content: '';
    position: absolute; left: 0; top: -100%;
    width: 100%; height: 100%;
    background: var(--gc-brass-light);
    animation: gcScrollDrip 2.4s ease-in-out infinite;
  }
}
@keyframes gcScrollDrip { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---- Benefits: alternating editorial rows ----------------------------- */
.gc-benefits__list { display: flex; flex-direction: column; gap: 0; }
.gc-benefit {
  display: grid;
  gap: 28px;
  padding: 48px 0;
  border-top: 1px solid var(--gc-line);
  align-items: center;
}
.gc-benefit:last-child { border-bottom: 1px solid var(--gc-line); }
@media screen and (min-width: 860px) {
  .gc-benefit { grid-template-columns: 1fr 1fr; gap: 64px; }
  .gc-benefit--reverse .gc-benefit__media { order: 2; }
  .gc-benefit--reverse .gc-benefit__text { order: 1; }
}
.gc-benefit__media {
  position: relative;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--gc-cream-deep);
  box-shadow: var(--gc-shadow-soft);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gc-benefit__media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.gc-benefit:hover .gc-benefit__media-image {
  transform: scale(1.04);
}
.gc-benefit__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gc-green-pale);
  color: var(--gc-green-deep);
  margin-bottom: 18px;
}
.gc-benefit__icon svg { width: 22px; height: 22px; }
.gc-benefit__title { font-family: var(--gc-font-display); font-size: 26px; margin: 0 0 12px; }
.gc-benefit__text { font-size: 15.5px; line-height: 1.7; color: var(--gc-ink-soft); margin: 0; max-width: 46ch; }

/* ---- Estate story: split editorial + vertical timeline ---------------- */
.gc-story {
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 960px) {
  .gc-story { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
}
.gc-story__media {
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--gc-shadow);
  position: sticky;
  top: 32px;
}
.gc-story__media img { width: 100%; height: 100%; object-fit: cover; }
.gc-story__quote {
  font-family: var(--gc-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--gc-green-deep);
  margin: 0 0 40px;
  max-width: 34ch;
}
.gc-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.gc-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--gc-line);
}
.gc-timeline__item {
  position: relative;
  padding: 0 0 34px 48px;
}
.gc-timeline__item:last-child { padding-bottom: 0; }
.gc-timeline__dot {
  position: absolute;
  left: 0; top: 2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gc-cream);
  border: 1px solid var(--gc-green);
  color: var(--gc-green-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--gc-font-display);
  font-size: 13px;
}
.gc-timeline__title { font-family: var(--gc-font-display); font-size: 19px; margin: 0 0 6px; }
.gc-timeline__text { font-size: 14.5px; line-height: 1.6; color: var(--gc-ink-soft); margin: 0; max-width: 46ch; }

/* ---- Product showcase -------------------------------------------------- */
.gc-products__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.gc-products {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gc-product {
  background: var(--gc-cream);
  border: 1px solid var(--gc-line);
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gc-product:hover { transform: translateY(-6px); box-shadow: var(--gc-shadow); }
.gc-product__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--gc-cream-deep); }
.gc-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.gc-product:hover .gc-product__media img { transform: scale(1.06); }
.gc-product__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gc-green);
  color: var(--gc-cream);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.gc-product__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.gc-product__title { font-family: var(--gc-font-display); font-size: 19px; margin: 0; }
.gc-product__title a { text-decoration: none; }
.gc-product__title a:hover { text-decoration: underline; }
.gc-product__price { font-size: 15px; font-weight: 600; color: var(--gc-green-deep); }
.gc-product__price s { color: var(--gc-ink-soft); opacity: 0.55; font-weight: 400; margin-right: 8px; }
.gc-product__form { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.gc-product__variant {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--gc-radius-sm);
  border: 1px solid var(--gc-line);
  background: var(--gc-cream);
  font-size: 14px;
  color: var(--gc-ink);
}
.gc-product__actions { display: flex; gap: 8px; }
.gc-product__add {
  flex: 1;
  background: var(--gc-ink);
  color: var(--gc-cream);
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.gc-product__add:hover { background: var(--gc-green-deep); transform: translateY(-1px); }
.gc-product__add[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
.gc-product__status { font-size: 12.5px; min-height: 16px; color: var(--gc-green-deep); }
.gc-product__status[data-state="error"] { color: #8C2F2F; }
.gc-products__empty { padding: 40px 0; color: var(--gc-ink-soft); }

/* ---- Newsletter: invitation, not a form --------------------------------- */
.gc-newsletter {
  position: relative;
  background: var(--gc-ink);
  color: var(--gc-cream);
  overflow: hidden;
}
.gc-newsletter__media { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.gc-newsletter__media img { width: 100%; height: 100%; object-fit: cover; }
.gc-newsletter__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(38,35,25,0.5), rgba(38,35,25,0.94)); }
.gc-newsletter__inner {
  position: relative; z-index: 2;
  max-width: 620px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.gc-newsletter__seal { margin: 0 auto 26px; color: var(--gc-brass-light); }
.gc-newsletter__card {
  background: var(--gc-glass-bg);
  border: 1px solid var(--gc-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--gc-radius-lg);
  padding: 40px 34px;
  width: 100%;
  margin-top: 12px;
}
.gc-newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.gc-newsletter__field {
  flex: 1 1 240px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--gc-line-on-dark);
  background: rgba(247, 242, 231, 0.08);
  color: var(--gc-cream);
  font-size: 15px;
}
.gc-newsletter__field::placeholder { color: rgba(247, 242, 231, 0.5); }
.gc-newsletter__field:focus-visible { outline: 2px solid var(--gc-brass-light); outline-offset: 2px; }
.gc-newsletter__note { font-size: 12.5px; color: rgba(247, 242, 231, 0.55); margin-top: 16px; }
.gc-newsletter__success { font-size: 13px; color: var(--gc-brass-light); margin-top: 14px; }

/* ---- Scroll reveal + parallax utility ----------------------------------- */
.gc-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.gc-reveal.gc-in { opacity: 1; transform: translateY(0); }
.gc-blur-in { filter: blur(6px); opacity: 0; transition: filter 0.9s ease, opacity 0.9s ease; }
.gc-blur-in.gc-in { filter: blur(0); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .gc-reveal, .gc-blur-in { opacity: 1; transform: none; filter: none; transition: none; }
  .gc-hero__bean, .gc-seal--spin, .gc-hero__scroll-line::after { animation: none; }
  .gc-hero__media, .gc-hero__card { transform: none !important; }
}

.gc-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.gc-scope a:focus-visible,
.gc-scope button:focus-visible,
.gc-scope input:focus-visible,
.gc-scope select:focus-visible {
  outline: 2px solid var(--gc-brass);
  outline-offset: 2px;
}
