:root {
  --cream:        #fdfaf3;
  --cream-2:      #f5ede0;
  --warm-beige:   #ede1cc;
  --sage:         #6b7e6b;
  --sage-dark:    #4d5e4d;
  --sage-light:   #aab7a8;
  --terracotta:   #c8856e;
  --terracotta-d: #a86a55;
  --gold:         #c9a96e;
  --ink:          #2d2820;
  --ink-2:        #5b5448;
  --ink-3:        #8c8478;
  --line:         #e6dcc8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
h3 { font-size: clamp(22px, 2.5vw, 28px); line-height: 1.25; }
.subtle { color: var(--ink-2); }
.muted  { color: var(--ink-3); }

a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--terracotta); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,250,243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
nav .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.logo svg { color: var(--terracotta); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}
.lang-switcher button {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 0.18s ease;
}
.lang-switcher button:hover { color: var(--ink); }
.lang-switcher button.active {
  background: var(--ink);
  color: var(--cream);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  background: var(--cream-2);
}
.btn-large { padding: 18px 36px; font-size: 16px; }

/* BACK LINK */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 32px 0 0;
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.18s ease;
}
.back-link:hover { color: var(--terracotta); }
.back-link svg { transition: transform 0.18s ease; }
.back-link:hover svg { transform: translateX(-3px); }

/* HERO */
.hero, .page-hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,133,110,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(107,126,107,0.08) 0%, transparent 50%),
    var(--cream);
}
.page-hero { padding: 40px 0 100px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 .accent, .page-hero h1 .accent {
  font-style: italic;
  color: var(--terracotta-d);
}
.hero p.lead, .page-hero p.lead {
  font-size: 19px;
  color: var(--ink-2);
  margin: 28px 0 40px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px;
  display: flex; gap: 32px; align-items: center;
  color: var(--ink-3);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-trust .dot { color: var(--sage); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(238,225,200,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #f5ede0 0%, #e8d9be 60%, #d6c5a3 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(45,40,32,0.25);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.6) 0%, transparent 30%),
    radial-gradient(circle at 30% 70%, rgba(200,133,110,0.3) 0%, transparent 40%);
}
.letter-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 78%; aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 20px 50px -10px rgba(45,40,32,0.3),
    0 5px 12px -3px rgba(45,40,32,0.15);
  font-family: 'Cormorant Garamond', serif;
}
.letter-card .date { font-size: 13px; color: var(--ink-3); font-style: italic; margin-bottom: 20px; }
.letter-card .greeting { font-size: 22px; color: var(--ink); margin-bottom: 14px; }
.letter-card .body {
  font-size: 17px; line-height: 1.6; color: var(--ink-2); font-style: italic;
}
.letter-card .signoff {
  margin-top: 28px; font-size: 18px; color: var(--ink); font-style: italic;
}
.letter-card .seal {
  position: absolute; bottom: -16px; right: -16px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  box-shadow: 0 6px 16px -4px rgba(168,106,85,0.5);
  transform: rotate(8deg);
}
.floating-tag {
  position: absolute;
  background: var(--cream);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink);
  box-shadow: 0 8px 24px -6px rgba(45,40,32,0.18);
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
  z-index: 3;
}
.floating-tag svg { color: var(--sage); }
.floating-tag.tag-1 { top: 8%; right: -20px; transform: rotate(3deg); }
.floating-tag.tag-2 { bottom: 12%; left: -28px; transform: rotate(-4deg); }

/* HERO ANIMATION SCENE */
.scene {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #2d2820;
}
.scene-bouquet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  /* zoom origin = the tag on the vase, slightly lower to land below the flowers */
  transform-origin: 50% 84%;
  animation: scene-bouquet 18s infinite cubic-bezier(0.55, 0, 0.45, 1);
  z-index: 1;
  will-change: transform;
}
@keyframes scene-bouquet {
  0%   { transform: scale(1);   }
  10%  { transform: scale(1.04);}
  32%  { transform: scale(5.5); }
  90%  { transform: scale(5.5); }
  100% { transform: scale(1);   }
}

.scene-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 78%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #fdfaf3 0%, #f8f1e2 100%);
  border-radius: 6px;
  padding: 9% 9% 8%;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 0 0 1px rgba(45,40,32,0.06),
    0 26px 60px -12px rgba(45,40,32,0.4),
    0 8px 18px -4px rgba(45,40,32,0.2);
  transform: translate(-50%, -32%) rotate(-1.6deg) scale(0.18);
  opacity: 0;
  animation: scene-card 18s infinite cubic-bezier(0.55, 0, 0.4, 1);
  z-index: 2;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(200,168,110,0.06) 0%, transparent 25%),
    linear-gradient(180deg, #fdfaf3 0%, #f8f1e2 100%);
}
@keyframes scene-card {
  0%, 22%  { opacity: 0; transform: translate(-50%, -32%) rotate(-1.6deg) scale(0.18); }
  34%, 92% { opacity: 1; transform: translate(-50%, -50%) rotate(-1.6deg) scale(1); }
  100%     { opacity: 0; transform: translate(-50%, -32%) rotate(-1.6deg) scale(0.18); }
}

.scene-letter {
  font-family: 'Caveat', 'Cormorant Garamond', cursive;
  color: #2d2820;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scene-bottom { display: flex; flex-direction: column; gap: 2px; }

.scene-line {
  display: block;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  margin: 0;
  line-height: 1.05;
  animation-duration: 18s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.scene-line span {
  display: inline-block;
  transform: rotate(-1.6deg);
  transform-origin: 0 50%;
}
.scene-line.line-greeting {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  animation-name: scene-type-greeting;
}
.scene-line.line-signoff {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  animation-name: scene-type-signoff;
}
.scene-line.line-brand {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--terracotta-d);
  animation-name: scene-type-brand;
}

/* Greeting writes 38% – 52% */
@keyframes scene-type-greeting {
  0%, 38%  { width: 0; }
  52%, 92% { width: 7em; }
  100%     { width: 0; }
}
/* Signoff writes 60% – 66% */
@keyframes scene-type-signoff {
  0%, 60%  { width: 0; }
  66%, 92% { width: 2.7em; }
  100%     { width: 0; }
}
/* Brand writes 70% – 84% */
@keyframes scene-type-brand {
  0%, 70%  { width: 0; }
  84%, 92% { width: 9.4em; }
  100%     { width: 0; }
}

@media (max-width: 900px) {
  .scene-card { padding: 8% 7%; width: 86%; }
}

/* SUB-PAGE VISUALS */
.flowers-visual { background: linear-gradient(135deg, #f5e3d8 0%, #e9c8b4 60%, #c98b75 100%); }
.flowers-visual .bouquet {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%;
}
.flowers-visual .petal {
  position: absolute; width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f5b8a0 60%, #c8856e 100%);
  box-shadow: 0 8px 20px -6px rgba(45,40,32,0.25);
}
.flowers-visual .petal.p1 { top: 18%; left: 42%; }
.flowers-visual .petal.p2 { top: 28%; left: 22%; width: 52px; height: 52px; background: radial-gradient(circle at 35% 35%, #fff 0%, #fadcc6 60%, #d9a98d 100%); }
.flowers-visual .petal.p3 { top: 28%; left: 62%; width: 56px; height: 56px; background: radial-gradient(circle at 35% 35%, #fff 0%, #f1c5b0 60%, #b97a64 100%); }
.flowers-visual .petal.p4 { top: 38%; left: 38%; width: 70px; height: 70px; background: radial-gradient(circle at 35% 35%, #fff 0%, #f8c4a8 60%, #c08066 100%); }
.flowers-visual .petal.p5 { top: 48%; left: 22%; width: 50px; height: 50px; background: radial-gradient(circle at 35% 35%, #fff 0%, #f7d9c4 60%, #c89880 100%); }
.flowers-visual .petal.p6 { top: 48%; left: 62%; width: 54px; height: 54px; background: radial-gradient(circle at 35% 35%, #fff 0%, #efb89e 60%, #b07359 100%); }
.flowers-visual .petal.p7 { top: 58%; left: 44%; width: 46px; height: 46px; background: radial-gradient(circle at 35% 35%, #fff 0%, #facfb6 60%, #c98e75 100%); }
.flowers-visual .leaf {
  position: absolute; width: 80px; height: 30px; border-radius: 50% 0 50% 0;
  background: linear-gradient(135deg, #6b7e6b 0%, #4d5e4d 100%);
  box-shadow: 0 6px 14px -4px rgba(45,40,32,0.25);
}
.flowers-visual .leaf.l1 { top: 50%; left: 8%; transform: rotate(-30deg); }
.flowers-visual .leaf.l2 { top: 52%; right: 8%; transform: rotate(30deg); border-radius: 0 50% 0 50%; }
.flowers-visual .stem {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 6px; height: 30%;
  background: linear-gradient(180deg, #4d5e4d 0%, #6b7e6b 100%);
  border-radius: 3px;
}

.custom-visual { background: linear-gradient(135deg, #efe6d3 0%, #d8c8a4 60%, #a8916a 100%); }
.custom-visual .giftbox {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 60%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #fdfaf3 0%, #ede1cc 100%);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 30px 60px -20px rgba(45,40,32,0.35),
    0 10px 20px -8px rgba(45,40,32,0.2);
}
.custom-visual .giftbox::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 14%; transform: translateX(-50%);
  background: linear-gradient(180deg, #c9a96e 0%, #a88a52 100%);
}
.custom-visual .giftbox::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 14%; transform: translateY(-50%);
  background: linear-gradient(90deg, #c9a96e 0%, #a88a52 100%);
}
.custom-visual .ribbon {
  position: absolute; top: -22%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 50%;
  pointer-events: none;
}
.custom-visual .ribbon::before, .custom-visual .ribbon::after {
  content: ""; position: absolute; top: 50%; width: 50%; height: 60%;
  background: radial-gradient(circle at 50% 50%, #c9a96e 0%, #a88a52 70%, transparent 75%);
  border-radius: 50%;
}
.custom-visual .ribbon::before { left: 0; transform: translate(-10%, -50%) rotate(-25deg); }
.custom-visual .ribbon::after  { right: 0; transform: translate(10%, -50%) rotate(25deg); }

.donation-visual { background: linear-gradient(135deg, #e7e9d8 0%, #c4cdb1 60%, #6b7e6b 100%); }
.donation-visual .heart {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 55%; aspect-ratio: 1/1;
  filter: drop-shadow(0 30px 50px rgba(45,40,32,0.3));
}
.donation-visual .heart::before, .donation-visual .heart::after {
  content: ""; position: absolute; top: 0; width: 50%; height: 80%;
  background: linear-gradient(135deg, #c8856e 0%, #a86a55 100%);
  border-radius: 50% 50% 0 0;
}
.donation-visual .heart::before { left: 0; transform-origin: 100% 100%; transform: rotate(-45deg); }
.donation-visual .heart::after  { right: 0; transform-origin: 0 100%; transform: rotate(45deg); }
.donation-visual .ring {
  position: absolute; border: 2px dashed rgba(253,250,243,0.5); border-radius: 50%;
}
.donation-visual .ring.r1 { width: 60%; height: 60%; top: 20%; left: 20%; }
.donation-visual .ring.r2 { width: 80%; height: 80%; top: 10%; left: 10%; }
.donation-visual .ring.r3 { width: 100%; height: 100%; top: 0; left: 0; opacity: 0.4; }

/* SECTIONS */
section { padding: 120px 0; }
section.tight { padding: 80px 0; }
.page-section { padding: 100px 0; }
.page-section.alt { background: var(--cream-2); }
.section-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-head .eyebrow { color: var(--sage-dark); }
.section-head p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-2);
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps.three { grid-template-columns: repeat(3, 1fr); }
.step { text-align: left; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--ink-2); font-size: 15px; }

/* GIFT TYPES */
.gifts-section { background: var(--cream-2); }
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gift-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  position: relative;
}
a.gift-card, a.gift-card:hover { color: inherit; }
.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(45,40,32,0.15);
  border-color: var(--sage-light);
}
.gift-card .arrow {
  position: absolute; top: 32px; right: 32px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all 0.25s ease;
}
.gift-card:hover .arrow {
  background: var(--terracotta);
  color: var(--cream);
  transform: translate(2px, -2px);
}
.gift-card.featured .arrow {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}
.gift-card.featured:hover .arrow {
  background: var(--gold);
  color: var(--ink);
}
.gift-photo {
  display: block;
  width: calc(100% + 64px);
  margin: -36px -32px 28px;
  aspect-ratio: 5/4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px 20px 0 0;
}
.gift-photo.gift-photo-contain {
  object-fit: contain;
  object-position: center;
  background: #c9e7e2;
}
.gift-card.has-photo .arrow {
  background: rgba(253,250,243,0.92);
  color: var(--ink);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -3px rgba(45,40,32,0.25);
}
.gift-card.has-photo:hover .arrow {
  background: var(--terracotta);
  color: var(--cream);
}
.gift-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 24px;
}
.gift-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.gift-card.featured h3, .gift-card.featured .gift-from { color: var(--cream); }
.gift-card.featured .gift-icon {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}
.gift-card.featured p { color: rgba(253,250,243,0.7); }
.gift-card.featured .gift-from { opacity: 0.85; }
.gift-card h3 { margin-bottom: 8px; }
.gift-card p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 24px;
  min-height: 70px;
}
.gift-from {
  display: flex; align-items: baseline; gap: 6px;
  font-size: 13px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.gift-from strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.gift-card.featured .gift-from strong { color: var(--gold); }

/* MOMENT EXAMPLES */
.moments-section { background: var(--ink); color: var(--cream); }
.moments-section .section-head h2 { color: var(--cream); }
.moments-section .section-head .eyebrow { color: var(--gold); }
.moments-section .section-head p { color: rgba(253,250,243,0.65); }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.moment {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 24px;
}
.moment .when {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.moment p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(253,250,243,0.92);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}
.feature {
  display: flex; gap: 24px;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--ink-2); font-size: 15px; }

/* PRICING */
.pricing-section { background: var(--cream-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
}
.price-card .price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.price-card .price-sub { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.price-card .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.price-card .amount .currency { font-size: 28px; color: var(--ink-2); margin-right: 4px; }
.price-card .per { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.price-card ul {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}
.price-card li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2);
  display: flex; gap: 10px;
}
.price-card li svg { color: var(--sage); flex-shrink: 0; margin-top: 4px; }

.single-price { max-width: 560px; margin: 0 auto; }
.single-price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 20px 50px -20px rgba(45,40,32,0.15);
}
.single-price-card .price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}
.single-price-card .price-sub { font-size: 15px; color: var(--ink-3); margin-bottom: 28px; }
.single-price-card .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.single-price-card .amount .currency { font-size: 32px; color: var(--ink-2); margin-right: 4px; }
.single-price-card .per { font-size: 14px; color: var(--ink-3); margin-top: 8px; }
.single-price-card ul { list-style: none; margin: 36px 0; padding: 0; }
.single-price-card li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink-2);
  display: flex; gap: 12px;
}
.single-price-card li svg { color: var(--sage); flex-shrink: 0; margin-top: 4px; }
.donation-price-card .amount-free {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1;
}

/* BOUQUET STYLES (flowers page) */
.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bouquet-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: all 0.25s ease;
}
.bouquet-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-light);
  box-shadow: 0 16px 36px -12px rgba(45,40,32,0.15);
}
.bouquet-visual {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 16px 36px -10px rgba(45,40,32,0.25);
}
.bouquet-visual::before {
  content: ""; position: absolute; inset: 12%;
  border-radius: 50%;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6) 0%, transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(45,40,32,0.15) 0%, transparent 40%);
}
.bouquet-visual.seasonal {
  background: radial-gradient(circle at 35% 35%, #fdfaf3 0%, #f5dfa8 25%, #c89858 65%, #6b7e6b 100%);
}
.bouquet-visual.romantic {
  background: radial-gradient(circle at 35% 35%, #fdfaf3 0%, #f5d4d8 25%, #c8856e 65%, #8c4e5e 100%);
}
.bouquet-visual.vibrant {
  background: radial-gradient(circle at 35% 35%, #fdfaf3 0%, #f8c46e 22%, #d04e6e 55%, #5e6ec8 100%);
}
.bouquet-card h3 { margin-bottom: 10px; font-size: 26px; }
.bouquet-card .style-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-weight: 600;
  margin-bottom: 8px;
}
.bouquet-card p { color: var(--ink-2); font-size: 14px; }

/* CHARITY GRID (donation page) */
.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.charity-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
}
.charity-card .charity-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.charity-card p { font-size: 14px; color: var(--ink-2); }

/* EXAMPLES (custom page) */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.example-card.curated {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.example-card.curated h3 { color: var(--cream); }
.example-card.curated p { color: rgba(253,250,243,0.7); }
.example-card.curated .example-icon {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}
.example-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
}
.example-card .example-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.example-card h3 { font-size: 22px; margin-bottom: 8px; }
.example-card p { font-size: 14px; color: var(--ink-2); }

/* FAQ */
.faq-grid {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  color: var(--ink-3);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "–";
  color: var(--terracotta);
}
.faq-item .answer {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

/* SIMPLE PAGE HEADER */
.page-header-simple {
  text-align: center;
  padding: 56px 0 32px;
}
.page-header-simple .eyebrow { color: var(--sage-dark); }
.page-header-simple h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 14px; }
.page-header-simple p {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ORDER FORM */
.form-section { padding: 16px 0 100px; }
.order-form {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 48px;
  box-shadow: 0 20px 50px -25px rgba(45,40,32,0.15);
}
.form-row { margin-bottom: 26px; }
.form-row > label, .form-row > .field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.form-row .field-hint {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="date"],
.form-row input[type="number"],
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,126,107,0.15);
}
.form-row textarea {
  min-height: 110px;
  resize: vertical;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238c8478' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* RADIO CARDS */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.radio-grid.two { grid-template-columns: repeat(2, 1fr); }
.radio-card {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.18s ease;
  background: var(--cream);
}
.radio-card:hover { border-color: var(--sage-light); }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:has(input:checked) {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 2px rgba(200,133,110,0.25);
  background: var(--cream-2);
}
.radio-card .radio-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  margin-top: 8px;
  color: var(--ink);
}
.radio-card .radio-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.4;
}
.radio-card .radio-swatch {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  margin: 0 0 14px;
  box-shadow: 0 6px 16px -6px rgba(45,40,32,0.25);
  position: relative;
  overflow: hidden;
}
.radio-card .radio-swatch::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 65%, rgba(45,40,32,0.12) 100%);
  pointer-events: none;
}
.radio-card .radio-swatch.seasonal { background-image: url('img/bouquet-seasonal.png'); }
.radio-card .radio-swatch.romantic { background-image: url('img/bouquet-romantic.png'); }
.radio-card .radio-swatch.vibrant  { background-image: url('img/bouquet-vibrant.png'); }
.radio-card .radio-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin: 0 auto;
  color: var(--sage-dark);
}

/* DATE LIST */
.date-list { display: flex; flex-direction: column; gap: 14px; }
.date-row { display: flex; gap: 10px; align-items: center; }
.date-row input[type="date"] { flex: 1; }

/* DATE CARD (multi-date with occasion) */
.date-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 18px;
  position: relative;
}
.date-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.date-card .field-mini-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.date-card .toggle-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.date-card .repeat-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.date-card .end-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.date-card .end-row[hidden] { display: none; }
.date-card .end-row .field-mini-label { margin-top: 0; }
.end-count-wrap, .end-date-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.end-count-wrap[hidden], .end-date-wrap[hidden] { display: none; }
.end-count-wrap input[type="number"] {
  width: 90px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
}
.end-count-wrap input[type="number"]:focus,
.end-date-wrap input[type="date"]:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,126,107,0.15);
}
.end-date-wrap {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.end-date-wrap input[type="date"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
}
.end-date-hint {
  font-size: 13px;
  color: var(--ink-3);
  padding-left: 4px;
}
.end-date-hint .end-date-count {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.end-unit {
  font-size: 14px;
  color: var(--ink-2);
}

/* PER-CARD RECIPIENT */
.card-recipient-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.card-recipient-row .toggle-row { margin-top: 0; }
.diff-recipient-fields {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.diff-recipient-fields[hidden] { display: none; }
.diff-recipient-fields input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.diff-recipient-fields input:focus,
.diff-recipient-fields textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,126,107,0.15);
}
.diff-recipient-note { margin-top: 4px; }
.diff-recipient-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  min-height: 80px;
  resize: vertical;
}
.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.seg-item {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.18s ease;
}
.seg-item:hover { border-color: var(--sage-light); color: var(--ink); }
.seg-item input { position: absolute; opacity: 0; pointer-events: none; }
.seg-item:has(input:checked) {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 4px 10px -4px rgba(45,40,32,0.3);
}
.date-card .remove-date {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink-3);
  padding: 0;
  transition: all 0.18s ease;
}
.date-card .remove-date:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.date-card .date-num {
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.date-card.has-num { padding-top: 38px; }
.btn-link {
  background: var(--cream);
  border: 1.5px dashed var(--line);
  cursor: pointer;
  color: var(--terracotta-d);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 24px;
  font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 14px;
  margin-top: 14px;
  width: 100%;
  transition: all 0.18s ease;
}
.btn-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: var(--cream-2);
}
.btn-link svg { width: 18px; height: 18px; }
.btn-icon {
  background: none; border: none; cursor: pointer;
  color: var(--ink-3); padding: 6px;
  display: flex; align-items: center;
}
.btn-icon:hover { color: var(--terracotta); }

/* CHECKBOX ROW */
.toggle-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
  font-size: 14px; color: var(--ink-2);
  cursor: pointer;
}
.toggle-row input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

/* SUBMIT */
.form-submit { margin-top: 32px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 18px; font-size: 16px; }
.form-summary {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 14px;
}

/* COMING-SOON LOCK on a form */
.form-locked {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.form-locked > .order-form {
  filter: blur(7px) saturate(0.85);
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
  transform: scale(0.99);
}
.form-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px 24px;
  z-index: 5;
}
.form-locked-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 44px;
  text-align: center;
  max-width: 440px;
  box-shadow:
    0 20px 50px -16px rgba(45,40,32,0.28),
    0 6px 14px -4px rgba(45,40,32,0.15);
}
.form-locked-card .eyebrow { color: var(--terracotta-d); margin-bottom: 14px; }
.form-locked-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}
.form-locked-card p {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 24px;
}
.form-locked-card .btn { width: 100%; justify-content: center; padding: 16px; }

/* PRICE SUMMARY */
.price-summary {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink-2);
}
.price-line + .price-line { margin-top: 10px; }
.price-line .price-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink);
}
.price-total-line {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-weight: 600;
  color: var(--ink);
}
.price-total-line .price-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* AUTH (login) */
.auth-section { padding: 60px 0 100px; }
.auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 20px 50px -25px rgba(45,40,32,0.15);
  text-align: center;
}
.auth-card .eyebrow { color: var(--sage-dark); margin-bottom: 14px; }
.auth-card h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 12px; }
.auth-card p.lead { color: var(--ink-2); font-size: 16px; margin-bottom: 28px; }
.auth-card form { text-align: left; margin-top: 24px; }
.auth-card .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.auth-card .form-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.auth-card .form-row input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,126,107,0.15);
}
.auth-card .auth-submit { margin-top: 28px; }
.auth-card .auth-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }
.auth-card .auth-forgot {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}
.auth-card .auth-forgot a { color: var(--terracotta-d); }
.auth-card .auth-error {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(168,106,85,0.10);
  border: 1px solid rgba(168,106,85,0.3);
  border-radius: 10px;
  color: var(--terracotta-d);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.auth-card .auth-error[hidden] { display: none; }
.auth-card .auth-hint {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  font-style: italic;
}
.auth-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 32px 0 20px;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.auth-foot {
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
}
.auth-foot a { color: var(--terracotta-d); font-weight: 600; }

/* ACCOUNT */
.account-header {
  padding: 56px 0 32px;
}
.account-header .row {
  display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.account-header h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  margin-bottom: 10px;
}
.account-header p { color: var(--ink-2); font-size: 17px; max-width: 520px; }

.orders-section { padding: 24px 0 100px; }
.orders-tabs {
  display: flex; gap: 4px;
  margin-bottom: 24px;
  background: var(--cream-2);
  padding: 6px;
  border-radius: 999px;
  width: fit-content;
}
.orders-tabs button {
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.orders-tabs button:hover { color: var(--ink); }
.orders-tabs button.active {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 2px 6px -2px rgba(45,40,32,0.1);
}

.orders-list { display: flex; flex-direction: column; gap: 12px; }
.order-row {
  display: grid;
  grid-template-columns: 84px 1fr auto auto;
  gap: 24px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.order-row:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 28px -14px rgba(45,40,32,0.15);
}
.order-thumb {
  width: 84px; height: 84px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--sage-dark);
}
.order-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.order-thumb.donation { background: #c9e7e2; color: var(--terracotta-d); }
.order-main h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.order-main .order-sub {
  font-size: 14px;
  color: var(--ink-2);
}
.order-main .order-sub span + span::before {
  content: " · ";
  color: var(--ink-3);
}
.order-meta {
  text-align: right;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.order-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.order-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-2);
}
.order-status.scheduled { background: rgba(107,126,107,0.15); color: var(--sage-dark); }
.order-status.delivered { background: rgba(200,168,110,0.18); color: #6e5a30; }
.order-status.cancelled { background: rgba(168,106,85,0.15); color: var(--terracotta-d); }
.order-actions { display: flex; gap: 8px; }
.order-actions .btn-icon-line {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.order-actions .btn-icon-line:hover {
  background: var(--cream-2);
  border-color: var(--sage-light);
}
.order-actions .btn-icon-line.danger:hover {
  background: rgba(168,106,85,0.08);
  border-color: var(--terracotta);
  color: var(--terracotta-d);
}

@media (max-width: 900px) {
  .order-row { grid-template-columns: 72px 1fr; gap: 16px; padding: 18px; }
  .order-meta { grid-column: 1 / -1; align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .order-actions { grid-column: 1 / -1; }
}

/* ORDER BLOCK with per-delivery rows */
.order-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.order-block:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 28px -14px rgba(45,40,32,0.15);
}
.order-block[hidden] { display: none; }
.order-block-header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.order-block-header .order-thumb {
  width: 64px; height: 64px;
}
.order-block-info h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.order-block-info p {
  font-size: 13px;
  color: var(--ink-2);
}
.delivery-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.delivery-head, .delivery-row {
  display: grid;
  grid-template-columns: 130px 130px 1fr 130px;
  gap: 16px;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px dashed var(--line);
}
.delivery-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(245,237,224,0.5);
  padding: 10px 24px;
}
.delivery-row { padding: 14px 24px; }
.delivery-row:last-child { border-bottom: none; }
.delivery-row[hidden] { display: none; }
.delivery-row.past { background: rgba(245,237,224,0.4); }
.delivery-order-date {
  font-size: 14px;
  color: var(--ink-2);
}
.delivery-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.delivery-row.past .delivery-date { color: var(--ink-2); }
.delivery-occasion {
  font-size: 14px;
  color: var(--ink-2);
}
.delivery-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  justify-self: start;
}
.delivery-status.scheduled { background: rgba(107,126,107,0.15); color: var(--sage-dark); }
.delivery-status.delivered { background: rgba(200,168,110,0.18); color: #6e5a30; }
.delivery-status.cancelled { background: rgba(168,106,85,0.15); color: var(--terracotta-d); }

@media (max-width: 900px) {
  .order-block-header { grid-template-columns: 56px 1fr; }
  .order-block-header .btn-icon-line { grid-column: 1 / -1; justify-self: start; }
  .delivery-head { display: none; }
  .delivery-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* CTA BAND */
.cta-band {
  background: var(--sage-dark);
  color: var(--cream);
  text-align: center;
  padding: 100px 0;
}
.cta-band h2 { color: var(--cream); margin-bottom: 16px; }
.cta-band p {
  color: rgba(253,250,243,0.78);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 36px;
}
.cta-band .btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.cta-band .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(253,250,243,0.65);
  padding: 80px 0 40px;
}
footer .row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
footer .logo {
  color: var(--cream);
  margin-bottom: 16px;
}
footer p { color: rgba(253,250,243,0.55); font-size: 14px; max-width: 320px; }
footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { padding: 6px 0; }
footer ul a { color: rgba(253,250,243,0.65); font-size: 14px; }
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(253,250,243,0.10);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(253,250,243,0.45);
}

@media (max-width: 900px) {
  .hero-grid, .features-grid { grid-template-columns: 1fr; gap: 60px; }
  .steps, .gifts-grid, .moments-grid, .pricing-grid, .charity-grid, .examples-grid, .steps.three, .bouquet-grid, .form-grid-2, .radio-grid, .radio-grid.two, .date-card-grid { grid-template-columns: 1fr; }
  .segmented { grid-template-columns: 1fr 1fr 1fr; }
  .order-form { padding: 32px 22px; border-radius: 18px; max-width: 100%; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
  footer .row { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn) { display: none; }
}
