:root {
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --linen: #efe5d4;
  --sage: #7b8758;
  --sage-dark: #3f472d;
  --olive: #5f6f3c;
  --rose: #d98282;
  --rose-soft: #f4d7d2;
  --ink: #2f2f23;
  --muted: #6f695d;
  --shadow: 0 18px 50px rgba(63, 71, 45, .13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  background: var(--paper);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; }

.announcement-bar {
  width: min(calc(100% - 1.5rem), 1160px);
  margin: .55rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .85rem;
  min-height: 34px;
  padding: .48rem 1rem .42rem;
  background: var(--sage);
  color: var(--paper);
  border-radius: 999px 999px 0 0;
  font-family: var(--serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  box-shadow: 0 10px 28px rgba(63, 71, 45, .08);
}
.bar-sprig { font-size: 1rem; transform: translateY(-1px); opacity: .92; }
.bar-sprig-right { transform: scaleX(-1) translateY(-1px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(calc(100% - 1.5rem), 1160px);
  margin: 0 auto;
  background: rgba(255, 253, 248, .97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(95, 111, 60, .13);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 14px 34px rgba(63, 71, 45, .08);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 68px 1fr 168px;
  align-items: center;
  gap: 1rem;
  padding: .82rem 1.25rem .7rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: .75rem;
  min-width: 0;
}

.brand-mark {
  width: clamp(58px, 8vw, 76px);
  height: clamp(58px, 8vw, 76px);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text { min-width: 0; text-align: center; }

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  line-height: .86;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.brand-name span {
  font-size: .48em;
  letter-spacing: -.02em;
}

.brand-rule {
  display: block;
  width: min(285px, 42vw);
  height: 17px;
  margin: .18rem auto .05rem;
  background: url("assets/title-flourish.svg") center/contain no-repeat;
  opacity: .95;
}

.brand-subtitle {
  display: block;
  text-align: center;
  font-family: var(--serif);
  font-size: .62rem;
  letter-spacing: .27em;
  text-transform: uppercase;
}

.main-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4.1rem);
  padding-top: .38rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}

.main-nav a {
  position: relative;
  padding: .35rem 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.2rem;
  height: 2px;
  background: var(--sage);
}

.main-nav .has-dropdown::before {
  content: "⌄";
  position: absolute;
  right: -1.15em;
  top: .27rem;
  font-size: .9em;
  line-height: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .85rem;
}

.icon-button,
.cart-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: .18rem;
}
.icon-button svg,
.cart-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  justify-self: start;
  width: 36px;
  gap: 5px;
}
.mobile-menu span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--ink);
}

.cart-button { position: relative; }
.cart-button b {
  position: absolute;
  top: -.6rem;
  right: -.72rem;
  width: 1.26rem;
  height: 1.26rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--rose);
  color: white;
  font-size: .65rem;
  line-height: 1;
}

.hero-section {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(251,247,239,.98), rgba(251,247,239,.72)), url("assets/hero-brand-lifestyle.png") center/cover;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-section.hero-exact {
  display: block;
  min-height: 0;
  background: var(--cream);
  margin-top: .75rem;
}

.hero-exact-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
}
.hero-hotspot:focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 4px;
  background: rgba(255, 255, 255, .18);
}
.hero-hotspot-shop {
  left: 9.3%;
  top: 60.5%;
  width: 16.5%;
  height: 7.8%;
}
.hero-hotspot-new {
  left: 27.1%;
  top: 60.5%;
  width: 15.2%;
  height: 7.8%;
}

.feature-strip {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(95, 111, 60, .16);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-strip article {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(95, 111, 60, .16);
}
.feature-strip article:last-child { border-right: 0; }
.feature-icon { color: var(--sage); font-size: 2rem; line-height: 1; }
.feature-svg { width: 42px; height: 42px; margin: 0 auto .35rem; }
.feature-strip h2 {
  margin: .65rem 0 .25rem;
  font-family: var(--serif);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.feature-strip p { margin: 0 auto; max-width: 20ch; color: var(--muted); font-size: .9rem; }

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 5.2rem 1.5rem 4rem;
}

.section-heading {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 820px;
}

.ornate-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.7rem, 2vw, 1.2rem);
  margin-bottom: .6rem;
}
.ornate-title h2,
.release-header h2,
.split-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
}
.ornate-title h2,
.release-header h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.ornate-side {
  flex: 0 1 230px;
  height: 33px;
  background: url("assets/title-flourish.svg") center/contain no-repeat;
  opacity: .9;
}
.ornate-left { transform: scaleX(-1); }
.section-heading p { color: var(--muted); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(95, 111, 60, .16);
  box-shadow: 0 8px 22px rgba(63, 71, 45, .08);
  background: var(--paper);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.category-card:hover img { transform: scale(1.04); }
.category-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .85rem;
  display: block;
  padding: .65rem .35rem;
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(95, 111, 60, .12);
  border-radius: 999px;
  text-align: center;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
}

.new-release-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 20%, rgba(123,135,88,.15), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(217,130,130,.1), transparent 37%),
    linear-gradient(90deg, #edf0de 0%, #f3f0df 48%, #e9eedc 100%);
}
.new-release-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/release-bg-flourishes.svg") center/cover no-repeat;
  opacity: .92;
  pointer-events: none;
}
.new-release-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.42), rgba(255,255,255,.42)),
    repeating-linear-gradient(90deg, rgba(63,71,45,.035) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(0deg, rgba(63,71,45,.03) 0 1px, transparent 1px 10px);
}

.verse-card {
  position: relative;
  align-self: stretch;
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: 320px;
  padding: 2rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,.18);
}
.verse-card::before {
  content: "";
  position: absolute;
  inset: 1rem .2rem;
  background: url("assets/quote-flourish.svg") center/100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}
.verse-card p {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.38;
  text-align: center;
  color: var(--sage-dark);
}
.verse-card img {
  position: relative;
  z-index: 1;
  width: 50px;
  margin-top: 1.4rem;
}

.release-content { min-width: 0; }
.release-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.release-title-wrap {
  justify-self: center;
  text-align: center;
}
.release-header h2 { margin: 0; }
.release-title-flourish {
  width: min(300px, 70vw);
  height: 35px;
  margin: .35rem auto 0;
  object-fit: contain;
}
.text-link {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid rgba(95, 111, 60, .12);
  box-shadow: var(--shadow);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 1;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--rose);
  color: white;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
}
.product-info { padding: 1rem; }
.product-info h3 {
  margin-bottom: .2rem;
  font-family: var(--serif);
  font-size: 1.18rem;
}
.product-info p { margin-bottom: .5rem; color: var(--muted); font-size: .9rem; }
.product-info strong { color: var(--sage-dark); }

.split-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--sage-dark);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
.split-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
}
.split-section p:last-child { color: var(--muted); font-size: 1.05rem; }

.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--sage-dark);
  color: var(--paper);
}
.site-footer img {
  width: 84px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.22));
}
.site-footer p { margin: 0; color: rgba(255,253,248,.82); }

@media (max-width: 980px) {
  .announcement-bar { width: 100%; margin-top: 0; border-radius: 0; font-size: .68rem; }
  .site-header { width: 100%; border-radius: 0; border-left: 0; border-right: 0; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .brand-text { display: none; }
  .main-nav { display: none; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); margin: 0 1rem; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .new-release-band { grid-template-columns: 1fr; }
  .release-header { grid-template-columns: 1fr; text-align: center; }
  .text-link { justify-self: center; }
  .product-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
  .split-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .announcement-bar { font-size: .58rem; letter-spacing: .08em; gap: .45rem; }
  .header-inner { padding: .7rem 1rem; }
  .header-actions { gap: .55rem; }
  .header-actions .icon-button:not(:first-child) { display: none; }
  .brand-mark { width: 58px; height: 58px; }
  .hero-hotspot { display: none; }
  .feature-strip { grid-template-columns: 1fr; border-radius: var(--radius-md); }
  .feature-strip article { border-right: 0; border-bottom: 1px solid rgba(95, 111, 60, .16); }
  .ornate-title { flex-wrap: wrap; }
  .ornate-side { flex-basis: 120px; max-width: 33%; height: 24px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 190px; }
  .product-grid { grid-template-columns: 1fr; }
}
