:root {
  --forest: #35432f;
  --forest-dark: #2a3525;
  --cream: #f3ede4;
  --cream-deep: #ebe5db;
  --ink: #2a2a2a;
  --muted: #5c5c5c;
  --sage: #5a6b52;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.announcement {
  background: var(--forest);
  color: #fff;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 8px 16px;
  font-weight: 500;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(53,67,47,0.12);
}
.logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
}
.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
}
.nav a:hover { color: var(--forest); }
.nav a[aria-current="page"],
.nav a[href="/"] {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.utilities {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.utilities a {
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  position: relative;
}
.utilities a:hover { opacity: 0.75; }
.util-cart .cart-badge {
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: 2px;
  letter-spacing: 0.02em;
}

/* Hero: full-bleed photo with cream overlay panel on left */
.hero {
  position: relative;
  display: block;
  padding: 0;
  max-width: none;
  margin: 0;
  overflow: hidden;
}
.hero-media {
  position: relative;
  width: 100%;
}
.hero-media > img {
  width: 100%;
  height: min(560px, 55vw);
  object-fit: cover;
  display: block;
}
.hero-copy {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 42%);
  background: rgba(243, 237, 228, 0.94);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-script {
  position: absolute;
  right: 24px;
  bottom: 20px;
  margin: 0;
  z-index: 2;
  color: var(--forest);
  text-shadow: 0 1px 0 rgba(243,237,228,0.5);
}
.eyebrow {
  color: var(--forest);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.ornament {
  display: flex;
  justify-content: center;
  color: var(--forest);
  margin: 0.35rem 0 0.85rem;
}
.hero-copy .ornament { justify-content: flex-start; }
.lede {
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
.btn {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--forest);
  color: #fff !important;
  padding: 14px 28px;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 0;
  border: none;
  text-align: center;
}
.btn:hover { background: var(--forest-dark); }
.script {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  color: var(--forest);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.75rem 2rem;
  background: var(--cream-deep);
  text-align: center;
  border-top: 1px solid rgba(53,67,47,0.08);
  border-bottom: 1px solid rgba(53,67,47,0.08);
}
.value {
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(53,67,47,0.22);
}
.value:last-child { border-right: none; }
.value img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
}
.value h3 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}
.value p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
}

/* Favorites */
.favorites, .story {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-kicker {
  text-align: center;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--forest);
  font-weight: 600;
  margin: 0;
}
.favorites h2, .story h2 {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  color: var(--ink);
  margin: 0.35rem 0 0;
}
.favorites .ornament { margin-bottom: 1.5rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.card { text-align: center; }
.card img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  background: #fff;
}
.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  margin: 0.75rem 0 0.15rem;
  color: var(--ink);
}
.price {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.card .btn {
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
  width: 100%;
  max-width: 160px;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: none;
  padding: 0;
  background: var(--cream);
}
.story-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.story-copy {
  background: var(--cream);
  padding: 48px 48px 40px;
  position: relative;
}
.story h2 { text-align: left; color: var(--forest-dark); }
.story .section-kicker { text-align: left; }
.story-copy .ornament { justify-content: flex-start; }
.story-copy > p:not(.script):not(.section-kicker) {
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.story-botanical {
  width: min(180px, 45%);
  margin: 1.5rem 0 0.5rem auto;
  opacity: 0.85;
}
.story-script {
  text-align: right;
  margin: 0.25rem 0 0;
  font-size: 1.55rem;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
}
.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  /* lighten crest on dark footer without cream pill */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-center {
  text-align: center;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
}
.site-footer a { color: #fff; opacity: 0.95; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.tagline {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-size: 1.5rem;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  color: #fff;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); text-decoration: none; }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    justify-items: start;
  }
  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
  }
  .hero-copy {
    width: min(380px, 55%);
    padding: 32px 28px;
  }
  .hero-media > img { height: min(480px, 70vw); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2) { border-right: none; }
  .value:nth-child(1),
  .value:nth-child(2) {
    border-bottom: 1px solid rgba(53,67,47,0.22);
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
  }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story-media img { min-height: 280px; }
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .hero-copy {
    position: relative;
    width: 100%;
    background: var(--cream);
  }
  .hero-media > img { height: 280px; }
  .hero-script {
    right: 12px;
    bottom: 12px;
    font-size: 1.25rem;
  }
  .grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid rgba(53,67,47,0.22); }
  .value:last-child { border-bottom: none; }
  .value:nth-child(1),
  .value:nth-child(2) {
    border-bottom: 1px solid rgba(53,67,47,0.22);
    margin-bottom: 0;
    padding-bottom: 0.75rem;
  }
  .logo { width: 88px; height: 88px; }
}
