/*
Theme Name: Pumpkin Creek Farm
Theme URI: https://pumpkincreekfarm.com
Author: Pumpkin Creek Farm
Description: Custom theme for Pumpkin Creek Farm — Raw Tennessee Honey
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: pumpkin-creek-farm
*/

:root {
  --honey: #C8851A;
  --honey-light: #E8A832;
  --honey-deep: #8B5E0A;
  --cream: #FAF3E0;
  --cream-dark: #F0E4C4;
  --bark: #2C1F0E;
  --bark-mid: #4A3520;
  --sage: #6B7B5E;
  --white: #FDFAF4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ── PAGE WRAPPER ── */
#page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,0.12);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(250, 243, 224, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 133, 26, 0.2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--honey); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--bark);
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title em {
  font-style: italic;
  color: var(--honey);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bark-mid);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-location svg { width: 14px; height: 14px; }

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
  background: var(--honey);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--honey);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--honey-deep);
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn-primary:hover { border-color: var(--honey-deep); color: var(--white); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-ghost {
  color: var(--bark);
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--bark);
  transition: all 0.3s;
}
.btn-ghost:hover { background: var(--bark); color: var(--cream); }

/* ── HERO RIGHT — QUEEN PHOTO ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.queen-photo-wrap {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.5s;
}

/* Outer decorative ring */
.queen-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid var(--honey);
  opacity: 0.55;
}

/* Second outer ring */
.queen-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px solid var(--honey-light);
  opacity: 0.2;
}

.queen-photo {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: rotate(-90deg);
  filter: saturate(1.1) contrast(1.05);
  box-shadow:
    0 0 0 6px var(--honey-deep),
    0 30px 80px rgba(44, 31, 14, 0.45);
}

/* Honey-toned gradient vignette over the photo */
.queen-photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 70% 80%,
    rgba(139, 94, 10, 0.35) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 12%;
  left: 8%;
  background: var(--bark);
  color: var(--cream);
  padding: 1.2rem 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 200px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
  z-index: 3;
}
.hero-badge strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--honey-light);
  margin-bottom: 0.3rem;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 6rem;
  margin: 0;
}
.divider-line { flex: 1; height: 1px; background: var(--honey); opacity: 0.3; }
.divider-icon { color: var(--honey); font-size: 1.2rem; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--bark);
  color: var(--cream);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 3rem;
  align-items: start;
}

.strip-divider { background: rgba(200,133,26,0.3); align-self: stretch; }

.strip-item { text-align: center; }
.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--honey-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.strip-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.5);
  margin-bottom: 0.8rem;
}
.strip-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,243,224,0.75);
  line-height: 1.6;
}

/* ── STORY SECTION ── */
.story {
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-frame {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

/* Warm honey vignette over story photo */
.story-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(44,31,14,0.45) 0%, transparent 45%),
    linear-gradient(to right, rgba(139,94,10,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.story-frame-inner {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(200,133,26,0.4);
  z-index: 2;
  pointer-events: none;
}

.story-accent {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  border: 2px solid var(--honey);
  z-index: -1;
}
.story-accent2 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 80px;
  height: 80px;
  background: var(--cream-dark);
  z-index: -1;
}

.story-content {}
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bark);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--honey); }

.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--bark-mid);
  margin-bottom: 1.2rem;
}

.promise-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.promise-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--bark-mid);
}
.promise-list li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--honey);
  flex-shrink: 0;
}

/* ── PRODUCTS ── */
.products {
  background: var(--bark);
  padding: 8rem 6rem;
}

.products-header {
  text-align: center;
  margin-bottom: 5rem;
}
.products-header .section-eyebrow { color: var(--honey-light); }
.products-header .section-title { color: var(--cream); }
.products-header .section-title em { color: var(--honey-light); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.product-card:hover { transform: translateY(-6px); }

.product-card-inner {
  padding: 3rem;
  border: 1px solid rgba(200,133,26,0.2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.product-card:hover .product-card-inner { border-color: var(--honey); }

.product-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-card-bg { opacity: 1; }

.product-card.classic .product-card-bg {
  background: linear-gradient(135deg, rgba(200,133,26,0.15), transparent);
}
.product-card.hot .product-card-bg {
  background: linear-gradient(135deg, rgba(180,50,20,0.2), transparent);
}

.product-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.product-card.classic .product-tag {
  background: rgba(200,133,26,0.2);
  color: var(--honey-light);
}
.product-card.hot .product-tag {
  background: rgba(180,50,20,0.2);
  color: #E86B4A;
}

.product-photo-wrap {
  position: relative;
  width: calc(100% + 6rem);
  margin: -3rem -3rem 1.8rem -3rem;
  overflow: hidden;
  z-index: 1;
}

.product-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.5s ease;
}

.product-card:hover .product-photo {
  transform: scale(1.04);
}

/* Gradient fade from photo into card */
.product-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bark));
  pointer-events: none;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.product-name em { font-style: italic; color: var(--honey-light); }
.product-name .hot-word { color: #D94F2A; font-style: italic; }

.product-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,243,224,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.product-detail {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(250,243,224,0.45);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.product-detail::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--honey);
  opacity: 0.5;
}

/* ── PROCESS ── */
.process {
  padding: 8rem 6rem;
  background: var(--cream);
}
.process-header {
  margin-bottom: 5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,133,26,0.2);
  border: 1px solid rgba(200,133,26,0.2);
}
.process-step {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: var(--cream-dark); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(200,133,26,0.12);
  line-height: 1;
  margin-bottom: -1rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 1rem;
  position: relative;
}
.step-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--bark-mid);
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: linear-gradient(135deg, var(--honey-deep) 0%, var(--bark) 100%);
  padding: 8rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(255,255,255,0.03);
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.testimonial-attr {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-light);
  position: relative;
  z-index: 1;
}

/* ── WHERE TO BUY ── */
.where {
  padding: 8rem 6rem;
  background: var(--cream-dark);
}
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
.where-card {
  border-left: 3px solid var(--honey);
  padding-left: 2rem;
}
.where-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.8rem;
}
.where-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bark-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--bark);
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-title em { font-style: italic; color: var(--honey-light); }
.contact-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(250,243,224,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(250,243,224,0.65);
}
.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-light);
  width: 70px;
  flex-shrink: 0;
}

.contact-form-area {}
.form-group {
  margin-bottom: 1.2rem;
}
.form-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.4);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,133,26,0.3);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--honey);
}
.form-textarea { height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(250,243,224,0.2);
}

/* ── FOOTER ── */
footer {
  background: #1A1005;
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200,133,26,0.15);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.3);
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--honey-light); }
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  color: rgba(250,243,224,0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 2.5rem 3rem; }
  .hero-right { display: none; }
  .about-strip { grid-template-columns: 1fr; padding: 3rem 2.5rem; }
  .strip-divider { display: none; }
  .story { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 3rem; }
  .products { padding: 5rem 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .process { padding: 5rem 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonial { padding: 5rem 2.5rem; }
  .where { padding: 5rem 2.5rem; }
  .where-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 3rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
  .footer-links { display: none; }
  .divider { padding: 0 2.5rem; }
}
