/* =========================================================
   58Flowers — Atelier blush palette + mobile-first polish
   ========================================================= */

/* Self-hosted fonts (latin subset only — EN/ES coverage)
   Manrope ships a single woff2 used across weights 400/500/600. */
@font-face{
  font-family:'Manrope';
  font-style:normal;
  font-weight:400 600;
  font-display:swap;
  src:url('/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Noto Serif';
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url('/assets/fonts/noto-serif-regular-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Noto Serif';
  font-style:italic;
  font-weight:400 500;
  font-display:swap;
  src:url('/assets/fonts/noto-serif-italic-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  --bg:           #FDF6F4;
  --bg-2:         #F9ECE7;
  --blush:        #F9D8D1;
  --blush-deep:   #EFB8AE;
  --rose:         #C97B6E;
  --mauve:        #8B4A4A;
  --ink:          #2A1F1E;
  --mute:         #6B5751;
  --line:         #EAD9D2;
  --gold:         #C9A961;
  --gold-soft:    #B8945A;
  --white:        #FFFFFF;
  --container:    1280px;
  --gutter:       24px;
  --gutter-mobile:18px;
  --radius:       2px;
  --radius-lg:    6px;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; }
body{
  font-family:'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size:15px; line-height:1.6;
  color:var(--ink); background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ cursor:pointer; font-family:inherit; }

/* Type */
.eyebrow{
  display:inline-block;
  font-size:11px; letter-spacing:.28em;
  text-transform:uppercase; font-weight:500;
  color:var(--mauve);
}
.eyebrow--gold{ color:var(--gold-soft); }
.eyebrow--light{ color:var(--blush); }
.h1, h1, h2.h1{
  font-family:'Noto Serif', Georgia, serif;
  font-weight:400; font-style:italic;
  font-size:clamp(34px,5vw,64px);
  line-height:1.05; color:var(--mauve);
  margin:12px 0 0; letter-spacing:-.01em;
}
.muted{ color:var(--mute); }
.rule{ display:block; width:48px; height:1px; background:var(--blush-deep); margin:24px auto 0; }
.section-head{ text-align:center; margin:0 auto 56px; max-width:680px; padding:0 var(--gutter); }

/* Buttons */
.btn{
  display:inline-block; padding:14px 28px;
  font-size:12px; letter-spacing:.18em;
  text-transform:uppercase; font-weight:600;
  border:1px solid transparent; border-radius:var(--radius);
  transition:all .25s ease; text-align:center;
  min-height:44px;
}
.btn--gold{ background:var(--mauve); color:var(--white); border-color:var(--mauve); }
.btn--gold:hover{ background:var(--rose); border-color:var(--rose); }
.btn--ghost{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.7); }
.btn--ghost:hover{ background:rgba(255,255,255,.12); }
.btn--ghost-dark{ background:transparent; color:var(--mauve); border-color:var(--mauve); }
.btn--ghost-dark:hover{ background:var(--mauve); color:var(--white); }
.btn--block{ display:block; width:100%; }

/* Header */
.site-header{
  background:var(--blush);
  border-bottom:1px solid rgba(139,74,74,.10);
  position:sticky; top:0; z-index:50;
}
.site-header__inner{
  max-width:var(--container); margin:0 auto;
  padding:14px var(--gutter);
  display:flex; align-items:center; gap:24px;
}
.brand{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-size:24px;
  color:var(--mauve); letter-spacing:.01em;
  display:inline-flex; align-items:baseline;
  line-height:1;
  white-space:nowrap;
}
.brand__tld{
  font-style:italic; font-size:13px;
  color:var(--rose); letter-spacing:.06em;
  margin-left:2px;
}
.nav{ display:flex; gap:32px; margin-left:32px; flex:1; }
.nav a{
  font-size:13px; letter-spacing:.06em;
  color:var(--ink); position:relative;
  padding:6px 0; transition:color .2s;
}
.nav a:hover, .nav a.is-active{ color:var(--mauve); }
.nav a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px;
  height:1px; background:var(--mauve);
}

/* Lang switch */
.lang{
  display:inline-flex; align-items:center;
  border:1px solid rgba(139,74,74,.25);
  border-radius:999px; overflow:hidden;
  background:rgba(255,255,255,.5);
}
.lang button{
  background:transparent; border:0;
  padding:6px 12px; font-size:11px;
  letter-spacing:.12em; color:var(--mauve);
  font-weight:600; min-height:32px;
}
.lang button.is-active{ background:var(--mauve); color:var(--white); }

.icons{ display:flex; gap:10px; align-items:center; }
.nav-toggle{
  display:none; font-size:22px;
  background:transparent; border:0; color:var(--mauve);
  width:44px; height:44px;
  align-items:center; justify-content:center;
}

/* Hero */
.hero{
  position:relative; min-height:88vh;
  overflow:hidden; display:flex; align-items:center;
  background:var(--bg-2);
}
.hero__media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.78);
}
.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(42,31,30,.10) 0%, rgba(139,74,74,.45) 100%);
}
.hero__inner{
  position:relative; z-index:2;
  max-width:var(--container); margin:0 auto;
  padding:120px var(--gutter); color:var(--white);
}
.hero__heading{
  font-family:'Noto Serif', Georgia, serif;
  font-weight:400; font-style:italic;
  font-size:clamp(40px, 7vw, 88px); line-height:1.05;
  margin:16px 0 24px; max-width:780px; color:var(--white);
}
.hero__sub{
  max-width:560px; color:rgba(255,255,255,.92);
  font-size:17px; margin:0 0 36px;
}
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hero .btn--gold{ background:var(--gold); color:var(--mauve); border-color:var(--gold); }
.hero .btn--gold:hover{ background:var(--blush); border-color:var(--blush); }

/* Promises */
.promises{ background:var(--blush); padding:44px 0; }
.promises__grid{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:32px; text-align:center;
}
.promise h3{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:22px; color:var(--mauve);
  margin:0 0 8px;
}
.promise p{ color:var(--mute); margin:0; font-size:14px; }
.promise__icon{ font-size:28px; color:var(--rose); margin-bottom:8px; }

/* Collections */
.collections{ padding:96px 0; background:var(--bg); }
.collections__grid{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.card{ display:block; text-align:center; transition:transform .35s ease; }
.card:hover{ transform:translateY(-6px); }
.card__media{
  aspect-ratio:3/4; overflow:hidden;
  background:var(--bg-2); border-radius:var(--radius-lg);
  margin-bottom:20px;
}
.card__media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .8s ease;
}
.card:hover .card__media img{ transform:scale(1.05); }
.card__title{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-size:24px;
  font-weight:400; color:var(--mauve);
  margin:0 0 8px;
}
.card__sub{ color:var(--mute); margin:0 0 12px; font-size:14px; }
.card__price{ color:var(--ink); font-weight:600; margin:0 0 12px; font-size:14px; }
.card__cta{
  font-size:11px; letter-spacing:.22em;
  text-transform:uppercase; color:var(--rose);
  font-weight:600;
}

/* Philosophy */
.philosophy{ background:var(--mauve); color:var(--white); padding:96px 0; }
.philosophy__inner{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
}
.philosophy__heading{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.15; color:var(--blush);
  margin:16px 0 24px;
}
.philosophy__text{ font-size:16px; color:rgba(255,255,255,.85); margin:0 0 32px; }
.stats{ display:flex; align-items:center; gap:40px; }
.stat__num{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-size:54px;
  line-height:1; color:var(--blush); margin:0;
}
.stat__label{
  font-size:11px; letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7); margin:8px 0 0;
}
.stat__sep{ width:1px; height:60px; background:rgba(249,216,209,.4); }
.philosophy__media{ position:relative; aspect-ratio:4/5; }
.philosophy__frame{
  position:absolute; inset:-12px -12px 12px 12px;
  border:1px solid var(--gold); border-radius:var(--radius);
}
.philosophy__img{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  border-radius:var(--radius);
}

/* Masterpieces */
.masterpieces{ padding:96px 0; background:var(--bg-2); }
.masterpieces__head{
  max-width:var(--container); margin:0 auto 48px;
  padding:0 var(--gutter);
  display:flex; justify-content:space-between;
  align-items:flex-end; gap:20px;
}
.arrows{ display:flex; gap:10px; }
.arrow{
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--blush-deep);
  background:transparent; color:var(--mauve);
  font-size:22px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.arrow:hover{ background:var(--mauve); color:var(--white); border-color:var(--mauve); }
.masterpieces__grid{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.product{ text-align:left; }
.product__media-link{
  display:block; aspect-ratio:1/1;
  background:var(--bg); border-radius:var(--radius-lg);
  overflow:hidden; margin-bottom:14px;
}
.product__media-link img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .8s ease;
}
.product__media-link:hover img{ transform:scale(1.06); }
.product__type{
  font-size:11px; letter-spacing:.2em;
  text-transform:uppercase; color:var(--rose); margin:0 0 6px;
}
.product__title{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:22px; margin:0 0 6px; color:var(--mauve);
}
.product__price{ margin:0 0 14px; font-size:15px; color:var(--ink); }

/* Testimonial */
.testimonial{ background:var(--bg); padding:96px 0; text-align:center; }
.testimonial__inner{ max-width:760px; margin:0 auto; padding:0 var(--gutter); }
.testimonial__mark{
  font-family:'Noto Serif', Georgia, serif;
  font-size:80px; color:var(--blush-deep);
  line-height:.5; margin-bottom:24px;
}
.testimonial__quote{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-size:clamp(22px, 2.4vw, 30px);
  line-height:1.4; color:var(--mauve); margin:0 0 28px;
}
.testimonial__name{ margin:0; font-size:14px; font-weight:600; letter-spacing:.06em; color:var(--ink); }
.testimonial__role{ margin:4px 0 0; font-size:12px; color:var(--mute); letter-spacing:.18em; text-transform:uppercase; }

/* Newsletter */
.newsletter{ background:var(--mauve); color:var(--white); padding:72px 0; }
.newsletter__inner{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px; align-items:center;
}
.newsletter h2{ color:var(--blush); }
.newsletter p{ color:rgba(255,255,255,.85); }
.newsletter__form{ display:flex; gap:12px; flex-wrap:wrap; }
.newsletter .input{
  flex:1; min-width:220px;
  padding:14px 18px; min-height:48px;
  border:1px solid rgba(255,255,255,.3);
  background:transparent; color:var(--white);
  font:inherit; border-radius:var(--radius);
}
.newsletter .input::placeholder{ color:rgba(255,255,255,.5); }
.newsletter .btn--gold{ background:var(--gold); color:var(--mauve); border-color:var(--gold); }
.newsletter .btn--gold:hover{ background:var(--blush); border-color:var(--blush); }

/* Footer */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.75); padding:56px 0 28px; }
.site-footer__inner{ max-width:var(--container); margin:0 auto; padding:0 var(--gutter); text-align:center; }
.site-footer .brand{ color:var(--blush); margin-bottom:8px; }
.site-footer .brand__tld{ color:var(--blush-deep); }
.site-footer__links{
  display:flex; justify-content:center; gap:28px;
  flex-wrap:wrap; margin:24px 0;
}
.site-footer__links a{
  font-size:13px; color:rgba(255,255,255,.7);
  padding:6px 0; min-height:32px;
}
.site-footer__links a:hover{ color:var(--blush); }
.site-footer__copy{
  margin:24px 0 0; padding-top:24px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:12px; letter-spacing:.1em; color:rgba(255,255,255,.5);
}

/* Page hero */
.page-hero{ background:var(--blush); padding:80px var(--gutter); text-align:center; }
.page-hero h1{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:clamp(36px, 5vw, 64px);
  color:var(--mauve); margin:16px auto 24px;
  max-width:820px; line-height:1.1;
}
.page-hero p{ max-width:640px; margin:0 auto; color:var(--mute); font-size:16px; }

/* Feature row */
.feature-row{ padding:96px 0; background:var(--bg); }
.feature-row--cream{ background:var(--bg-2); }
.feature-row__inner{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
}
.feature-row--reverse .feature-row__inner > :first-child{ order:2; }
.feature-row__media{
  aspect-ratio:4/5; background:var(--bg-2);
  background-size:cover; background-position:center;
  border-radius:var(--radius-lg);
}

/* Pillars */
.pillars{ padding:96px 0; background:var(--bg-2); }
.pillars__grid{
  max-width:var(--container); margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(4,1fr); gap:32px;
}
.pillar h3{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:22px; color:var(--mauve); margin:0 0 12px;
}
.pillar p{ margin:0; color:var(--mute); font-size:14px; }

/* Promise band */
.promise-band{
  background:var(--mauve); color:var(--white);
  padding:96px var(--gutter); text-align:center;
}
.promise-band h2{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:clamp(30px, 4.2vw, 52px);
  color:var(--blush); max-width:820px; margin:16px auto 24px;
  line-height:1.15;
}
.promise-band p{ max-width:600px; margin:0 auto; color:rgba(255,255,255,.85); }
.promise-band .btn--gold{ background:var(--gold); color:var(--mauve); border-color:var(--gold); }
.promise-band .btn--gold:hover{ background:var(--blush); border-color:var(--blush); }
.promise-band__cta{ margin-top:36px; }

/* Collection grid page */
.coll-grid{ padding:64px 0 96px; background:var(--bg); }
.coll-grid__grid{
  max-width:1100px; margin:0 auto;
  padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(2,1fr); gap:32px;
}
.coll-grid__grid--three{ grid-template-columns:repeat(3,1fr); }
.city-section{ padding:48px 0; scroll-margin-top:80px; }
.city-section + .city-section{ border-top:1px solid rgba(139,74,74,.12); }
.city-section__head{
  max-width:1100px; margin:0 auto 32px; padding:0 var(--gutter);
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px;
}
.city-section__head h2{
  font-family:'Noto Serif',serif; font-style:italic; font-weight:500;
  font-size:42px; color:var(--mauve); margin:0;
}
.city-section__head .city-section__sub{
  color:var(--mute); font-size:15px; max-width:520px; margin:0;
}


/* Contact */
.contact{ padding:64px 0 96px; background:var(--bg); }
.contact-form{ max-width:640px; margin:0 auto; padding:0 var(--gutter); display:grid; gap:18px; }
.field{ display:grid; gap:6px; }
.field label{
  font-size:12px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--mauve); font-weight:600;
}
.field input, .field textarea{
  padding:14px 16px; min-height:48px;
  border:1px solid var(--line);
  background:var(--white); font:inherit;
  color:var(--ink); border-radius:var(--radius);
  transition:border .2s; width:100%;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--mauve); }
.field textarea{ min-height:140px; resize:vertical; }
.form-msg{ margin:8px 0 0; font-size:14px; }
.form-msg.is-success{ color:var(--mauve); }
.form-msg.is-error{ color:#B23A48; }

/* Responsive */
@media (max-width: 1100px){
  .nav{ gap:20px; margin-left:20px; }
  .collections__grid{ grid-template-columns:repeat(2,1fr); }
  .masterpieces__grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 900px){
  :root{ --gutter:18px; }
  .nav{
    display:none; position:absolute; top:100%; left:0; right:0;
    background:var(--blush); flex-direction:column; gap:0;
    padding:8px var(--gutter) 20px; margin:0;
    border-bottom:1px solid rgba(139,74,74,.10);
    box-shadow:0 8px 24px rgba(42,31,30,.08);
  }
  .nav.is-open{ display:flex; }
  .nav a{ padding:14px 0; border-bottom:1px solid rgba(139,74,74,.08); font-size:14px; min-height:44px; }
  .nav-toggle{ display:inline-flex; }
  .site-header__inner{ gap:12px; padding:12px var(--gutter); }
  .icons{ gap:8px; margin-left:auto; }
  .lang button{ padding:6px 10px; font-size:10px; }
  .philosophy__inner, .newsletter__inner, .feature-row__inner{
    grid-template-columns:1fr; gap:40px;
  }
  .feature-row--reverse .feature-row__inner > :first-child{ order:0; }
  .pillars__grid{ grid-template-columns:repeat(2,1fr); gap:28px; }
  .promises__grid{ grid-template-columns:1fr; gap:32px; }
  .hero{ min-height:78vh; }
  .hero__inner{ padding:96px var(--gutter) 80px; }
  .masterpieces__head{ flex-direction:column; align-items:flex-start; }
  .arrows{ display:none; }
  .masterpieces__grid{
    display:flex; overflow-x:auto; scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:0 var(--gutter) 8px;
    margin-left:calc(-1 * var(--gutter)); margin-right:calc(-1 * var(--gutter));
    gap:16px; scrollbar-width:none;
  }
  .masterpieces__grid::-webkit-scrollbar{ display:none; }
  .masterpieces__grid .product{
    flex:0 0 78%; scroll-snap-align:start;
  }
}

@media (max-width: 600px){
  .hero__inner{ padding:72px var(--gutter) 64px; }
  .hero__sub{ font-size:16px; }
  .hero__cta .btn{ flex:1 1 auto; }
  .collections, .philosophy, .testimonial, .feature-row, .pillars, .masterpieces{ padding:64px 0; }
  .promises{ padding:34px 0; }
  .newsletter{ padding:56px 0; }
  .promise-band{ padding:72px var(--gutter); }
  .page-hero{ padding:64px var(--gutter); }
  .collections__grid{ grid-template-columns:1fr; gap:32px; }
  .coll-grid__grid{ grid-template-columns:1fr; gap:28px; }
  .coll-grid__grid--three{ grid-template-columns:1fr; }
  .city-section__head h2{ font-size:32px; }
  .pillars__grid{ grid-template-columns:1fr; gap:28px; }
  .stats{ flex-direction:column; align-items:flex-start; gap:20px; }
  .stat__sep{ display:none; }
  .testimonial__quote{ font-size:20px; }
  .newsletter__form{ flex-direction:column; }
  .newsletter .input, .newsletter .btn{ width:100%; }
  .site-footer__links{ gap:18px; }
  .site-header__inner{ padding:10px var(--gutter); }
  .brand{ font-size:21px; }
  .brand__tld{ font-size:12px; }
}

/* Arrangement detail page */
.arrangement{ padding:48px 0 96px; background:var(--bg); }
.arrangement__crumbs{
  max-width:1180px; margin:0 auto 24px;
  padding:0 var(--gutter);
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--mauve); display:flex; gap:10px; align-items:center;
}
.arrangement__crumbs a{ color:var(--mauve); text-decoration:none; }
.arrangement__crumbs a:hover{ text-decoration:underline; }
.arrangement__inner{
  max-width:1180px; margin:0 auto; padding:0 var(--gutter);
  display:grid; grid-template-columns:1.05fr 1fr; gap:56px; align-items:start;
}
.arrangement__media{
  background:#fff; border-radius:6px; overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(42,31,30,.25);
}
.arrangement__media img{ width:100%; height:auto; display:block; }
.arrangement__title{
  font-family:'Noto Serif',serif; font-style:italic; font-weight:500;
  font-size:46px; line-height:1.1; color:var(--mauve);
  margin:8px 0 4px;
}
.arrangement__price{
  font-size:22px; color:var(--mauve); font-weight:600; margin:0 0 24px;
}
.arrangement__lede{ font-size:17px; color:var(--ink); margin:0 0 28px; }
.arrangement__h2{
  font-family:'Noto Serif',serif; font-style:italic; font-weight:500;
  font-size:22px; color:var(--mauve); margin:28px 0 12px;
}
.arrangement__stems{
  list-style:none; padding:0; margin:0 0 8px;
  display:grid; grid-template-columns:1fr 1fr; gap:6px 24px;
}
.arrangement__stems li{
  font-size:14px; color:var(--ink);
  padding-left:18px; position:relative;
}
.arrangement__stems li::before{
  content:'✿'; position:absolute; left:0; top:0;
  color:var(--rose); font-size:12px;
}
.arrangement__story{ font-size:15px; line-height:1.65; color:var(--mute); margin:0 0 32px; }
.arrangement__cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:24px; }
.arrangement__note{ font-size:13px; }

@media (max-width:900px){
  .arrangement__inner{ grid-template-columns:1fr; gap:32px; }
  .arrangement__title{ font-size:34px; }
  .arrangement__stems{ grid-template-columns:1fr; }
}

/* Sale price + badge */
.price-was{ text-decoration:line-through; color:var(--mute); margin-right:6px; font-weight:400; }
.price-now{ color:#B0282A; font-weight:600; }
.card{ position:relative; }
.card__sale-badge,
.product__sale-badge{
  position:absolute; top:12px; right:12px;
  background:#B0282A; color:#fff;
  font-size:10px; letter-spacing:.14em; font-weight:600;
  padding:6px 10px; border-radius:2px;
  z-index:2;
}
.is-on-sale .card__price,
.is-on-sale .product__price{ display:flex; gap:6px; align-items:baseline; flex-wrap:wrap; }

/* =========================================================
   Announcement banner (top-of-page, bilingual, Mother's Day)
   ========================================================= */
.announce{
  background:linear-gradient(90deg, #8B4A4A 0%, #B05B6F 50%, #8B4A4A 100%);
  color:#fff;
  font-size:13px;
  letter-spacing:.04em;
  position:relative;
  z-index:60; /* above sticky header on scroll-to-top */
}
.announce__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:9px var(--gutter);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
}
.announce__icon{ font-size:14px; opacity:.9; }
.announce__text{ flex:0 1 auto; }
.announce__text strong{ font-weight:600; letter-spacing:.06em; }
.announce__cta{
  display:inline-flex; align-items:center; gap:4px;
  padding:4px 12px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.4);
  color:#fff; text-decoration:none;
  border-radius:999px;
  font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  white-space:nowrap;
  transition:background .2s;
}
.announce__cta:hover{ background:rgba(255,255,255,.28); }

@media (max-width:600px){
  .announce{ font-size:12px; }
  .announce__inner{ flex-direction:column; gap:6px; padding:8px var(--gutter-mobile); }
  .announce__cta{ font-size:10px; padding:3px 10px; }
}

/* =========================================================
   Mother's Day collection (home + collections page)
   ========================================================= */
.md-section{
  background:linear-gradient(180deg, #FBE9EE 0%, #F9D8D1 100%);
  padding:64px 0 80px;
  border-top:1px solid rgba(139,74,74,.08);
  border-bottom:1px solid rgba(139,74,74,.08);
  scroll-margin-top:80px;
}
.md-section__head{
  text-align:center;
  max-width:720px;
  margin:0 auto 40px;
  padding:0 var(--gutter);
}
.md-section__eyebrow{
  display:inline-block;
  font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  color:var(--mauve); font-weight:600;
  background:rgba(255,255,255,.65);
  padding:5px 14px; border-radius:999px;
  margin-bottom:14px;
}
.md-section__title{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:400;
  font-size:clamp(30px,4.4vw,52px);
  line-height:1.05; color:var(--mauve);
  margin:0 0 12px;
}
.md-section__sub{
  color:var(--mute); margin:0 auto;
  max-width:580px;
}
.md-section__deadline{
  display:inline-block;
  margin-top:14px;
  font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--mauve); font-weight:600;
}
.md-section__grid{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.md-card{
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 14px 40px -28px rgba(42,31,30,.35);
  display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;
}
.md-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 50px -28px rgba(42,31,30,.45);
}
.md-card__media{
  aspect-ratio:3/4;
  overflow:hidden;
  background:#F4EBE7;
}
.md-card__media img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.md-card__body{
  padding:18px 18px 22px;
  display:flex; flex-direction:column; gap:6px;
  flex:1;
}
.md-card__type{
  font-size:10px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--mauve); font-weight:600; opacity:.85;
}
.md-card__title{
  font-family:'Noto Serif', Georgia, serif;
  font-style:italic; font-weight:500;
  color:var(--mauve);
  font-size:22px; margin:0;
}
.md-card__price{
  margin:4px 0 0;
  font-size:18px; font-weight:600; color:var(--ink);
}
.md-card__cta{
  margin-top:14px;
  font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--mauve); font-weight:600;
}
.md-card__badge{
  position:absolute; top:12px; left:12px;
  background:var(--mauve); color:#fff;
  font-size:9px; padding:5px 10px; border-radius:2px;
  letter-spacing:.14em; font-weight:600; z-index:2;
}

@media (max-width:900px){
  .md-section__grid{ grid-template-columns:1fr; gap:18px; max-width:520px; }
  .md-card{ flex-direction:row; align-items:stretch; }
  .md-card__media{ width:42%; aspect-ratio:auto; flex-shrink:0; }
  .md-card__body{ padding:14px 16px; }
}

/* =========================================================
   Contact channels (above the form) + thank-you panel
   ========================================================= */
.contact-channels{
  list-style:none; padding:0; margin:0 auto 32px;
  max-width:640px;
  display:flex; gap:14px; flex-wrap:wrap;
  justify-content:center;
}
.contact-channels li{
  display:inline-flex; flex-direction:column; align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:14px 22px;
  min-width:200px;
  text-align:center;
}
.contact-channels__label{
  font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--mute); font-weight:600;
  margin-bottom:4px;
}
.contact-channels a{
  color:var(--mauve);
  font-weight:600; font-size:15px;
  letter-spacing:.01em;
}
.contact-channels a:hover{ color:var(--rose); }

.contact-thanks{
  max-width:640px; margin:0 auto; padding:48px var(--gutter);
  text-align:center;
  background:linear-gradient(180deg, #FBE9EE 0%, #F9D8D1 100%);
  border-radius:var(--radius-lg);
  border:1px solid rgba(139,74,74,.10);
}
.contact-thanks__icon{
  font-size:36px; color:var(--mauve);
  margin-bottom:8px;
}
.contact-thanks h2{ margin-top:0; }
.contact-thanks p{ color:var(--ink); max-width:480px; margin:14px auto; }
.contact-thanks__channels{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  font-weight:600;
  color:var(--mauve);
}
.contact-thanks__channels a{ color:var(--mauve); }
.contact-thanks__channels a:hover{ color:var(--rose); }

/* Footer social row */
.site-footer__social{
  margin:14px 0 6px;
  font-size:13px;
  display:flex; gap:10px; justify-content:center; align-items:center; flex-wrap:wrap;
  color:rgba(255,255,255,.7);
}
.site-footer__social span:first-child{
  font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-right:4px;
}
.site-footer__social a{
  color:var(--blush); font-weight:500;
}
.site-footer__social a:hover{ color:#fff; }

@media (max-width:600px){
  .contact-channels{ flex-direction:column; align-items:center; }
  .contact-channels li{ width:100%; max-width:320px; }
}
