/* ═══ GARDEN STRIP ═══ */
#strip {
  background: var(--garden-mid);
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
#strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
/* Soft garden glow behind strip */
#strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 120% at 50% 120%, rgba(100, 160, 80, 0.2) 0%, transparent 55%);
}
.strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.strip-quote {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  color: var(--parchment);
  line-height: 1.6;
}
.strip-quote em {
  color: var(--gold-light);
  font-style: normal;
}
.strip-stats {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}
.stat {
  text-align: center;
}
.stat-n {
  font-family: "Cormorant", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.stat-l {
  font-family: "Cormorant SC", serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: rgba(245, 237, 216, 0.4);
  margin-top: 0.35rem;
  white-space: nowrap;
}

/* ═══ SHARED ═══ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Cormorant SC", serif;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  color: var(--gold-on-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.chip::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold-on-light);
  flex-shrink: 0;
}

/* Contextual gold contrast system: lighter accents on dark sections */
:is(#commissions, #frankie-feature, #contact, footer) .chip {
  color: var(--gold-on-dark);
}
:is(#commissions, #frankie-feature, #contact, footer) .chip::before {
  background: var(--gold-on-dark);
}
#contact .contact-script,
#contact .field label,
#contact .form-heading,
.shop-notice-kicker,
.shop-notice-btn,
.footer-brand-top,
.footer-nav a:hover {
  color: var(--gold-on-dark-soft);
}
.h2 {
  font-family: "Cormorant", serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--garden-deep);
  margin-bottom: 1.5rem;
}
.h2 em {
  font-style: italic;
  color: var(--fern);
}
.h2 .cursive-h {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.1em;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}
.body-copy {
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 580px;
}

/* ═══ PRODUCTS — light section for readability ═══ */
#products {
  padding: 7rem clamp(1.5rem, 5vw, 5rem);
  background: var(--parchment2);
}
.products-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
}
.pc {
  background: var(--parchment2);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.pc:hover {
  background: var(--cream);
}
/* Top-right corner fold */
.pc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-top: 1px solid rgba(var(--gold-rgb), 0.2);
  border-right: 1px solid rgba(var(--gold-rgb), 0.2);
}
/* Bottom gold reveal */
.pc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2.4rem;
  right: 2.4rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.pc:hover::after {
  transform: scaleX(1);
}
.pc:nth-child(1) {
  grid-column: 1/5;
}
.pc:nth-child(2) {
  grid-column: 5/9;
}
.pc:nth-child(3) {
  grid-column: 9/13;
}
.pc:nth-child(4) {
  grid-column: 1/7;
}
.pc:nth-child(5) {
  grid-column: 7/10;
}
.pc:nth-child(6) {
  grid-column: 10/13;
}

.pc-vine {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.6rem;
  position: relative;
}
.pc-vine::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--parchment2);
}
.pc-name {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.32rem;
  color: var(--garden-deep);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.pc-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.pc-feats {
  list-style: none;
  margin-bottom: 1.6rem;
}
.pc-feats li {
  font-size: 0.75rem;
  color: var(--body);
  padding: 0.2rem 0 0.2rem 0.95rem;
  position: relative;
}
.pc-feats li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.25rem;
}
.pc-tag {
  display: inline-block;
  font-family: "Cormorant SC", serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  color: var(--gold);
  padding: 0.28rem 0.8rem;
  border-radius: 1px;
}
.pc-dark {
  background: var(--garden-mid) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pc-dark::before {
  border-color: rgba(var(--gold-rgb), 0.15);
}
.pc-dark::after {
  display: none;
}
.pc-dark .pc-name {
  color: var(--parchment);
}
.pc-dark .pc-desc {
  color: rgba(245, 237, 216, 0.5);
}

/* Responsive — products */
@media (max-width: 768px) {
  /* STRIP */
  .strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .strip-stats {
    justify-content: center;
    gap: 2rem;
  }

  /* PRODUCTS */
  .products-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pgrid {
    grid-template-columns: 1fr;
    background: none;
    gap: 0.5rem;
  }
  .pc:nth-child(n) {
    grid-column: 1 / -1;
  }
}
