:root {
  --ink: #153c2f;
  --ink-dark: #0b2a20;
  --cream: #fff9ef;
  --paper: #f3eadc;
  --white: #ffffff;
  --coral: #d95f47;
  --yellow: #efb84d;
  --sage: #d8e4d5;
  --rose: #ead4d5;
  --line: rgba(21, 60, 47, .22);
  --muted: rgba(11, 42, 32, .72);
  --shadow: 0 22px 70px rgba(24, 50, 40, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-dark);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  padding: .7rem 1rem;
  color: white;
  background: var(--ink-dark);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(1420px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  letter-spacing: -.025em;
}
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
.brand em { font-family: Georgia, serif; font-size: 1.38rem; font-weight: 600; }
.site-header nav { display: flex; align-items: center; gap: 1.8rem; }
.site-header nav a { font-size: .91rem; font-weight: 750; text-underline-offset: 5px; }
.menu-button { display: none; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: .75rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.7rem, 6.6vw, 7.35rem); }
h1 span { color: var(--coral); }
h2 { font-size: clamp(2.8rem, 5.4vw, 5.8rem); }

.button {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--ink-dark); }
.button-secondary { color: var(--ink); background: transparent; }
.button-secondary:hover { background: rgba(255,255,255,.55); }
.button-light { color: var(--ink-dark); border-color: white; background: white; }

.hero {
  width: min(1480px, calc(100% - 40px));
  min-height: min(760px, calc(100svh - 110px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: clamp(42px, 6.5vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lede { max-width: 620px; margin: 1.8rem 0; font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.small-note { margin: 1rem 0 0; color: var(--muted); font-size: .86rem; }
.hero-visual { position: relative; min-height: 560px; margin: 0; background: var(--sage); }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; display: block; }
.hero-visual img { object-fit: cover; object-position: 61% center; }
.hero-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: .55rem .8rem;
  color: white;
  border-radius: 999px;
  background: rgba(11, 42, 32, .9);
  font-size: .78rem;
  font-weight: 750;
}

.occasion-strip {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(25px, 4vw, 48px);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 2rem;
  color: white;
  border-radius: var(--radius);
  background: var(--ink);
}
.occasion-strip .eyebrow { color: var(--yellow); }
.occasion-strip h2 { font-size: clamp(2.3rem, 4vw, 4.4rem); }
.occasion-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.occasion-links a {
  min-height: 64px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 14px;
  color: white;
  font-weight: 850;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.occasion-links a:hover { color: var(--ink-dark); background: white; transform: translateY(-2px); }

.bouquet-section { width: min(1320px, calc(100% - 40px)); margin: clamp(90px, 11vw, 160px) auto; }
.section-heading { margin-bottom: 42px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(28px, 7vw, 90px); }
.split-heading > p { margin: 0 0 .35rem; font-size: 1.08rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 35px rgba(24, 50, 40, .08);
}
.product-photo {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.product-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .28s ease; }
.product-card:hover .product-photo img { transform: scale(1.025); }
.bouquet-art {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.bouquet-art::before, .bouquet-art::after, .bouquet-art span {
  content: "";
  position: absolute;
  border-radius: 52% 48% 49% 51%;
  transform: rotate(-18deg);
}
.bouquet-art::before { width: 150px; height: 150px; left: 18%; top: 28px; background: var(--art-a, #ecd4d5); }
.bouquet-art::after { width: 120px; height: 120px; right: 18%; top: 48px; background: var(--art-b, #efb84d); }
.bouquet-art span:nth-child(1) { width: 85px; height: 85px; left: 46%; top: 22px; background: var(--art-c, #88a981); }
.bouquet-art span:nth-child(2) { width: 75px; height: 75px; left: 9%; top: 82px; background: var(--art-b, #efb84d); }
.bouquet-art span:nth-child(3) { width: 72px; height: 140px; right: 8%; top: 9px; background: var(--art-a, #ecd4d5); transform: rotate(28deg); }
.tone-quiet { --art-a: #f5f1e6; --art-b: #e3bfc3; --art-c: #91ac8c; }
.tone-party { --art-a: #dc7082; --art-b: #ef9a42; --art-c: #7c5b9c; }
.tone-sun { --art-a: #f2be31; --art-b: #d9852f; --art-c: #708e66; }
.tone-love { --art-a: #b73f4a; --art-b: #e5818a; --art-c: #6d8d67; }
.tone-soft { --art-a: #ead1df; --art-b: #f0ca61; --art-c: #a18bb0; }
.tone-sympathy { --art-a: #f7f4e9; --art-b: #d7e1d4; --art-c: #9bad9a; }
.product-copy { height: 100%; padding: clamp(21px, 2.5vw, 30px); display: flex; flex-direction: column; }
.product-kicker { margin: 0 0 .8rem; color: var(--coral); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 1.85vw, 2rem); line-height: 1.05; letter-spacing: -.035em; }
.product-card h3 a { text-decoration: none; }
.product-card .product-copy > p:not(.product-kicker, .product-meta, .product-price) { margin: 1rem 0 1.6rem; }
.product-meta { min-height: 2.2rem; margin: 0 0 .65rem; display: flex; justify-content: space-between; gap: .75rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.product-meta span:last-child { text-align: right; }
.product-price { margin: .85rem 0 1.35rem; color: var(--coral); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 700; }
.product-link { margin-top: auto; font-weight: 900; text-underline-offset: 5px; }
.link-check { max-width: 930px; margin: 1.3rem 0 0; color: var(--muted); font-size: .84rem; }

.page-width { width: min(1320px, calc(100% - 40px)); margin: 20px auto 0; }
.affiliate-notice {
  margin: 0;
  padding: 1rem 1.15rem;
  color: var(--ink-dark);
  border: 1px solid rgba(21, 60, 47, .28);
  border-radius: 14px;
  background: #f7d77e;
  font-size: .9rem;
}
.affiliate-notice a { font-weight: 850; text-underline-offset: 4px; }

.occasion-section { width: min(1320px, calc(100% - 40px)); margin: clamp(90px, 10vw, 150px) auto; }
.occasion-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.occasion-grid a {
  min-height: 190px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.occasion-grid a:hover { color: white; background: var(--ink); }
.occasion-grid a > span, .occasion-grid a > small { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.occasion-grid a:hover > span, .occasion-grid a:hover > small { color: rgba(255,255,255,.68); }
.occasion-grid strong { grid-column: 1 / -1; font-family: Georgia, serif; font-size: clamp(1.65rem, 2.6vw, 2.5rem); font-weight: 500; line-height: 1; }
.occasion-grid small { align-self: end; }
.occasion-grid b { align-self: end; color: var(--coral); font-size: 1.35rem; }

.collection-hero, .catalog-hero {
  width: min(1320px, calc(100% - 40px));
  margin: clamp(45px, 6vw, 90px) auto 0;
  padding: clamp(46px, 7vw, 92px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.collection-hero h1, .catalog-hero h1 { max-width: 1100px; }
.collection-hero .lede, .catalog-hero .lede { max-width: 800px; }
.collection-hero .affiliate-notice, .catalog-hero .affiliate-notice { width: fit-content; max-width: 800px; margin-top: 1.7rem; }

.selection-guide {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(70px, 9vw, 120px) auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.selection-guide article { min-height: 230px; padding: clamp(24px, 3vw, 38px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.selection-guide span { color: var(--coral); font-family: Georgia, serif; font-size: 1.4rem; }
.selection-guide h2 { margin: 2.8rem 0 .8rem; font-family: Georgia, serif; font-size: 2.15rem; font-weight: 500; letter-spacing: -.035em; }
.selection-guide p { margin: 0; color: var(--muted); }

.collection-products, .catalog-tool { width: min(1320px, calc(100% - 40px)); margin: 0 auto clamp(90px, 11vw, 160px); }
.collection-heading { margin-bottom: 42px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(30px, 7vw, 90px); }
.collection-heading h2 { font-size: clamp(2.8rem, 5vw, 5.7rem); }
.collection-heading > p { margin: 0 0 .4rem; font-size: 1.05rem; }

.more-occasions {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto clamp(90px, 11vw, 160px);
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
  color: white;
  border-radius: var(--radius);
  background: var(--ink);
}
.more-occasions .eyebrow { color: var(--yellow); }
.more-occasions h2 { font-size: clamp(2.6rem, 4.8vw, 5rem); }

.catalog-tool { margin-top: clamp(70px, 9vw, 120px); }
.catalog-controls {
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: .8rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 35px rgba(24, 50, 40, .07);
}
.control-group { display: grid; gap: .45rem; }
.control-group label { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.control-group input, .control-group select { width: 100%; min-height: 52px; padding: .75rem .9rem; color: var(--ink-dark); border: 1px solid var(--line); border-radius: 10px; background: var(--cream); font: inherit; }
.catalog-status { margin-bottom: 1.2rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.catalog-status h2 { margin: 0 0 .6rem; font-size: clamp(2.6rem, 4vw, 4.4rem); }
.catalog-status p { margin: 0 0 .8rem; color: var(--muted); font-weight: 750; }
.catalog-more { margin-top: 2rem; display: grid; place-items: center; }
.noscript-note { padding: 1rem; border: 1px solid var(--line); background: var(--paper); }

.merchant-panel {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto clamp(90px, 11vw, 160px);
  padding: clamp(34px, 6vw, 74px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
  color: white;
  border-radius: var(--radius);
  background: var(--ink-dark);
  box-shadow: var(--shadow);
}
.merchant-panel .eyebrow { color: var(--yellow); }
.merchant-panel h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
.merchant-copy { font-size: 1.06rem; }
.merchant-copy p { margin: 0 0 1rem; }
.merchant-copy p:last-child { margin-bottom: 0; color: rgba(255,255,255,.78); font-size: .88rem; }

.checklist-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(90px, 11vw, 160px);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(32px, 7vw, 88px);
}
.checklist-section h2 { font-size: clamp(2.9rem, 5vw, 5.4rem); }
.checklist { margin: 0; padding: 0; list-style: none; counter-reset: checks; }
.checklist li { position: relative; padding: 1.35rem 0 1.35rem 3.7rem; border-top: 1px solid var(--line); counter-increment: checks; }
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.checklist li::before {
  content: "0" counter(checks);
  position: absolute;
  left: 0;
  top: 1.18rem;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.final-cta { padding: clamp(75px, 11vw, 150px) 20px; color: white; text-align: center; background: var(--coral); }
.final-cta .eyebrow { color: white; }
.final-cta h2 { max-width: 980px; margin: 0 auto 2.3rem; }
.final-actions { display: flex; flex-direction: column; align-items: center; gap: 1.15rem; }
.text-link-light { color: white; font-weight: 800; text-underline-offset: 5px; }

.site-footer { padding: 54px max(24px, calc((100vw - 1320px) / 2)); color: white; background: var(--ink-dark); }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand p { margin: 0; }
.site-footer nav { margin: 2.2rem 0; display: flex; flex-wrap: wrap; gap: 1rem 1.7rem; }
.site-footer nav a { color: white; text-underline-offset: 4px; }
.copyright { margin: 0; color: rgba(255,255,255,.68); font-size: .8rem; }

.legal-main { width: min(900px, calc(100% - 40px)); min-height: 70vh; margin: 70px auto 110px; }
.legal-hero { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(3.2rem, 8vw, 6.8rem); }
.legal-hero .lede { max-width: 720px; }
.legal-content { font-size: 1.03rem; }
.legal-content h2 { margin: 3.2rem 0 1rem; font-family: inherit; font-size: 1.6rem; font-weight: 850; letter-spacing: -.02em; line-height: 1.2; }
.legal-content h3 { margin: 2rem 0 .7rem; }
.legal-content p, .legal-content li { max-width: 780px; }
.legal-content li { margin: .65rem 0; }
.notice-box { margin: 2rem 0; padding: 1.25rem 1.4rem; border-left: 6px solid var(--coral); background: var(--paper); }
.back-home { display: inline-block; margin-top: 3rem; font-weight: 850; text-underline-offset: 5px; }

.notes-main { width: min(900px, calc(100% - 40px)); min-height: 60vh; margin: 70px auto 110px; }
.notes-hero { padding: clamp(28px, 6vw, 70px); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.notes-hero h1 { font-size: clamp(3.2rem, 8vw, 6.8rem); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .occasion-strip, .split-heading, .merchant-panel, .checklist-section, .collection-heading, .more-occasions { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-controls { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 28px); min-height: 76px; flex-wrap: wrap; gap: .65rem; padding: 10px 0; }
  .menu-button { display: block; padding: .55rem .8rem; color: var(--ink); border: 1px solid var(--ink); border-radius: 999px; background: transparent; font-weight: 800; }
  #site-nav { position: absolute; z-index: 10; top: 70px; right: 14px; width: min(300px, calc(100% - 28px)); padding: 1.2rem; display: none; align-items: stretch; flex-direction: column; gap: 1rem; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  #site-nav[data-open="true"] { display: flex; }
  .site-header nav:not(#site-nav) { width: 100%; justify-content: flex-start; gap: .8rem 1.2rem; flex-wrap: wrap; }
  .hero, .occasion-strip, .occasion-section, .bouquet-section, .merchant-panel, .checklist-section, .collection-hero, .catalog-hero, .selection-guide, .collection-products, .more-occasions, .catalog-tool, .page-width { width: calc(100% - 28px); }
  .hero { min-height: 0; border-radius: 24px; }
  .hero-copy { padding: 48px 24px; }
  h1 { font-size: clamp(3.45rem, 15vw, 5rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-visual img { object-position: 67% center; }
  .hero-visual figcaption { right: 12px; bottom: 12px; }
  .occasion-strip { margin-top: 14px; border-radius: 22px; }
  .occasion-links, .product-grid { grid-template-columns: 1fr; }
  .occasion-links a { min-height: 58px; }
  .occasion-grid, .selection-guide, .catalog-controls { grid-template-columns: 1fr; }
  .occasion-grid a { min-height: 155px; }
  .collection-hero, .catalog-hero { padding: 44px 24px; border-radius: 24px; }
  .selection-guide { margin: 64px auto; }
  .selection-guide article { min-height: 200px; }
  .collection-products, .catalog-tool { margin-bottom: 92px; }
  .more-occasions { margin-bottom: 92px; padding: 34px 24px; }
  .catalog-status { align-items: start; flex-direction: column; }
  .bouquet-section { margin: 92px auto; }
  .product-card h3 { font-size: 2.05rem; }
  .merchant-panel { margin-bottom: 92px; padding: 34px 24px; }
  .checklist-section { margin-bottom: 92px; }
  .site-footer { padding: 46px 24px; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (forced-colors: active) {
  .occasion-links a, .product-card, .merchant-panel { border: 2px solid CanvasText; }
}
