:root {
  --rose: #b76e5b;
  --rose-dark: #7f3f34;
  --rose-soft: #f2b8a1;
  --coral: #ff6f61;
  --sun: #ffd251;
  --honey: #f8b62d;
  --cream: #fff8f1;
  --cream-2: #fff1e8;
  --ink: #3c2417;
  --muted: #7c5c4f;
  --line: rgba(183, 110, 91, .2);
  --shadow: 0 24px 70px rgba(127, 63, 52, .16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.announcement {
  background: var(--ink);
  color: #fff8f1;
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 241, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-actions { justify-content: flex-end; }

.brand-logo {
  width: 320px;
  min-width: 220px;
  display: grid;
  place-items: center;
}

.brand-logo img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .58);
}

.page-hero {
  min-height: 48svh;
  display: grid;
  align-items: end;
  padding: clamp(54px, 9vw, 118px) clamp(18px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 210, 81, .38), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(255, 111, 97, .18), transparent 30%),
    linear-gradient(135deg, #fffaf5 0%, #fff1e8 100%);
}

.page-hero-inner {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.8vw, 22px);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 70px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--muted);
}

.grid-3,
.grid-4,
.link-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.panel,
.product-card,
.policy-block {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}

.panel:nth-child(2n),
.product-card:nth-child(2n) { background: #fff0ec; }
.panel:nth-child(3n),
.product-card:nth-child(3n) { background: #fff6d8; }

.product-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin: -8px -8px 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 210, 81, .35), transparent 34%),
    linear-gradient(180deg, #fff8f1, #fff1e8);
}

.product-visual.has-image,
.collection-visual.has-image,
.journal-visual.has-image,
.story-photo.has-image,
.gift-visual.has-image,
.ugc-tile.has-image {
  overflow: hidden;
}

.product-visual.has-image img,
.collection-visual.has-image img,
.journal-visual.has-image img,
.story-photo.has-image img,
.gift-visual.has-image img,
.ugc-tile.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-visual.has-image img {
  object-fit: contain;
  background: #fff8f1;
}

.product-visual.has-image,
.journal-visual.has-image {
  display: block;
  background: #fff8f1;
}

.price-row,
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.price-row {
  font-weight: 760;
}

.muted {
  color: var(--muted);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-secondary {
  color: var(--rose-dark);
  background: rgba(255, 255, 255, .68);
  border-color: var(--line);
}

.form-shell {
  max-width: 720px;
  display: grid;
  gap: 14px;
}

.field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 12px 14px;
  color: var(--ink);
}

textarea.field {
  min-height: 140px;
  resize: vertical;
}

.note-band {
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: #fff8f1;
}

.note-band p {
  max-width: 860px;
  margin-bottom: 0;
  color: rgba(255, 248, 241, .78);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
}

.note-band a {
  color: var(--sun);
  text-decoration: underline;
}

footer {
  padding: 34px clamp(18px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fffaf5;
  font-size: 13px;
}

.mini-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* --- Shared components ported from the homepage --- */

.nav a[aria-current="page"] {
  color: var(--rose-dark);
  border-bottom: 2px solid var(--rose);
  padding-bottom: 2px;
}

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 28px rgba(60, 36, 23, .18);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.pill {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.collection-visual {
  min-height: 220px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.collection-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 380px;
}

.collection-card .btn { align-self: start; }

.product-visual {
  min-height: 230px;
}

.story {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(rgba(255,248,241,.84), rgba(255,248,241,.84)),
    radial-gradient(circle at 20% 50%, rgba(255, 111, 97, .24), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(255, 210, 81, .36), transparent 32%);
}

.story-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}

.story-card h2 { margin-bottom: 26px; }

.story-card p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
}

.story-card p.eyebrow {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
}

.story-card p:not(.eyebrow) + p:not(.eyebrow) { margin-top: 10px; }
.story-card .btn { margin-top: 8px; }

.story-photo {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 44% 26%, rgba(255,255,255,.85), transparent 16%),
    linear-gradient(145deg, #ffb88f, #fff0c8 50%, #f06f61);
  box-shadow: var(--shadow);
}

.story-photo.has-image {
  background: #fff1e8;
}

.story-photo.has-image::before,
.story-photo.has-image::after {
  display: none;
}

.story-photo::before {
  content: "";
  position: absolute;
  inset: 9% 16% 0;
  border-radius: 200px 200px 0 0;
  background:
    radial-gradient(circle at 50% 16%, #5e2e22 0 14%, transparent 15%),
    linear-gradient(180deg, rgba(255, 248, 241, .86), rgba(255, 207, 175, .9));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.story-photo::after {
  content: "";
  position: absolute;
  left: 23%;
  right: 23%;
  top: 38%;
  height: 190px;
  border: 3px solid rgba(183, 110, 91, .76);
  border-top: 0;
  border-radius: 0 0 180px 180px;
}

.gift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf5;
}

.gift-copy {
  padding: clamp(38px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gift-copy p {
  color: var(--muted);
  max-width: 520px;
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
}

.gift-copy p.eyebrow {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.gift-copy h2 { margin-bottom: 26px; }
.gift-copy p:not(.eyebrow) + .cta-row { margin-top: 10px; }

.gift-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 64% 31%, rgba(255, 210, 81, .4), transparent 20%),
    linear-gradient(145deg, #fff1e8, #ffd8c5);
  border-left: 1px solid var(--line);
}

.gift-visual.has-image {
  display: block;
  background: #fff1e8;
}

.box {
  position: relative;
  width: min(72%, 420px);
  aspect-ratio: 1.14;
  background: linear-gradient(145deg, #fff8f1, #ffd7c8);
  border: 1px solid rgba(183, 110, 91, .28);
  box-shadow: 0 35px 80px rgba(127, 63, 52, .18);
  transform: rotate(-6deg);
}

.box::before {
  content: "";
  position: absolute;
  inset: 42% -3% auto;
  height: 18%;
  background: linear-gradient(90deg, #ff6f61, #ffd251);
}

.box::after {
  content: "Summer\A Never Ends";
  white-space: pre;
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
  color: var(--rose);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(28px, 4vw, 52px);
  line-height: .86;
}

.ugc {
  background: var(--ink);
  color: #fff8f1;
}

.ugc .eyebrow { color: var(--sun); }
.ugc h2 { color: #fff8f1; }
.ugc .section-head p { color: rgba(255, 248, 241, .7); }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ugc-tile {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--tone-a), var(--tone-b));
}

.ugc-tile.has-image {
  background: #3c2417;
}

.ugc-tile::before {
  content: "";
  position: absolute;
  inset: 16% 24% 0;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 248, 241, .78);
}

.ugc-tile.has-image::before {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(60, 36, 23, 0) 48%, rgba(60, 36, 23, .62) 100%);
  z-index: 1;
}

.ugc-tile::after {
  content: attr(data-caption);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: white;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(60, 36, 23, .45);
  z-index: 2;
}

.newsletter {
  text-align: center;
  background:
    radial-gradient(circle at 25% 40%, rgba(255, 210, 81, .42), transparent 24%),
    radial-gradient(circle at 78% 42%, rgba(255, 111, 97, .22), transparent 28%),
    #fff8f1;
}

.newsletter h2 {
  max-width: 820px;
  margin: 0 auto 18px;
}

.newsletter p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
}

.newsletter p.eyebrow {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.email-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  box-shadow: 0 20px 48px rgba(127, 63, 52, .12);
}

.email-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--ink);
  outline: none;
}

/* --- New shared components for sub-pages --- */

.cta-band {
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 210, 81, .3), transparent 26%),
    radial-gradient(circle at 80% 44%, rgba(255, 111, 97, .16), transparent 28%),
    var(--cream-2);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0 auto 26px;
}

.cta-band .cta-row { justify-content: center; }

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
}

.journal-visual {
  height: 168px;
  display: grid;
  place-items: center;
  margin: -6px -6px 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 210, 81, .35), transparent 34%),
    linear-gradient(180deg, #fff8f1, #fff1e8);
}

.journal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-card h3 { margin-bottom: 0; }

.journal-card p.muted {
  margin-bottom: 0;
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.journal-link {
  margin-top: auto;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.2vw, 24px);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--rose);
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item p {
  margin: 0;
  padding: 0 4px 22px;
  max-width: 680px;
  color: var(--muted);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.faq-item a { color: var(--rose-dark); text-decoration: underline; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}

.step-num {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.field:focus {
  border-color: var(--rose);
  outline: 2px solid rgba(183, 110, 91, .15);
}

.form-note {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--rose-dark);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.form-note.is-visible { display: block; }

.newsletter .form-note {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-info-block {
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.contact-info-block h3 { font-size: 22px; }

.contact-info-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.contact-info-block a { color: var(--rose-dark); text-decoration: underline; }

.panel .lead,
.panel p.muted,
.policy-block p.muted,
.product-card p.muted {
  font-family: "Libre Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.panel-icon {
  height: 96px;
  display: grid;
  place-items: center;
  justify-items: start;
  margin-bottom: 16px;
}

.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;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
  }
  .nav-links { display: none; }
  .brand-logo {
    justify-self: start;
    min-width: 0;
    width: 230px;
  }
  .grid-3,
  .grid-4,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story,
  .gift,
  .contact-grid { grid-template-columns: 1fr; }
  .gift-visual {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 420px;
  }
  .story-photo { min-height: 440px; }
  .ugc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .announcement { font-size: 10px; }
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
  }
  .nav-actions a:not(.icon-btn) { display: none; }
  .nav-actions {
    min-width: 38px;
    gap: 0;
  }
  .brand-logo {
    width: min(190px, calc(100vw - 78px));
    min-width: 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .grid-3,
  .grid-4,
  .link-grid,
  .ugc-grid {
    grid-template-columns: 1fr;
  }
  .email-form {
    border-radius: 8px;
    flex-direction: column;
    padding: 10px;
  }
  .email-form input { min-height: 46px; }
  .email-form .btn { width: 100%; }
  footer { flex-direction: column; }
}
