:root {
  --wine: #6f1834;
  --wine-dark: #45101f;
  --rose: #c98e91;
  --blush: #eeddd8;
  --cream: #f7f2e9;
  --paper: #fffdf8;
  --sage: #6d7a62;
  --ink: #241b1d;
  --muted: #73696a;
  --line: rgba(69, 16, 31, 0.16);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: white;
  color: var(--wine-dark);
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.announcement {
  display: grid;
  min-height: 34px;
  place-items: center;
  background: var(--wine-dark);
  color: #f8eee8;
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.announcement p { margin: 0; text-align: center; }
.announcement p > span:first-child { color: #d7a8a7; margin-right: .65rem; }
.announcement-separator { margin: 0 1.1rem; color: #bd8188; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(1.25rem, 4vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; width: max-content; }
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50% 50% 48% 52% / 58% 46% 54% 42%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: .82rem;
  font-style: italic;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.02em;
}
.brand-copy small {
  margin-top: .38rem;
  color: var(--rose);
  font-size: .51rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 2.5rem; color: #493f40; font-size: .78rem; }
.desktop-nav a { position: relative; padding: .7rem 0; }
.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: .35rem;
  left: 50%;
  height: 1px;
  background: var(--wine);
  content: "";
  transition: left .25s ease, right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; left: 0; }
.header-cta {
  justify-self: end;
  padding: .78rem 1.2rem;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  font-size: .76rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--wine); color: white; }
.header-cta span { margin-left: .4rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr);
  min-height: calc(100svh - 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 78%, rgba(238,221,216,.75), transparent 28%),
    var(--cream);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(2rem, 6vw, 7rem);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.55rem;
  color: var(--wine);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.8vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .82;
}
.hero h1 em { display: block; color: var(--wine); font-weight: 400; }
.hero-description {
  max-width: 510px;
  margin: 2.1rem 0 0;
  color: #5b5051;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.15rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 52px;
  padding: .85rem 1.55rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: white; box-shadow: 0 12px 30px rgba(111,24,52,.18); }
.button-primary:hover, .button-primary:focus-visible { background: var(--wine-dark); }
.text-link { border-bottom: 1px solid var(--ink); font-family: var(--serif); font-size: .98rem; }
.hero-trust {
  display: flex;
  gap: clamp(1rem, 3vw, 2.8rem);
  margin-top: clamp(3rem, 7vh, 5.5rem);
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.hero-trust span { margin-top: .1rem; color: var(--muted); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; }

.hero-visual { position: relative; min-height: 650px; padding: 2rem 2rem 2rem 0; }
.hero-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 48% 48% 3rem 3rem / 16% 16% 3rem 3rem;
  box-shadow: 0 26px 80px rgba(69,16,31,.13);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.hero-image-wrap::after {
  position: absolute;
  inset: 2rem 2rem 2rem 0;
  border-radius: 48% 48% 3rem 3rem / 16% 16% 3rem 3rem;
  background: linear-gradient(120deg, rgba(69,16,31,.1), transparent 38%);
  pointer-events: none;
  content: "";
}
.hero-note {
  position: absolute;
  right: 7%;
  bottom: 7%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  width: min(310px, 60%);
  padding: 1rem 1.2rem;
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 16px 50px rgba(56,28,34,.14);
  backdrop-filter: blur(8px);
}
.hero-note > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--blush); color: var(--wine); }
.hero-note p { margin: 0; color: #685b5d; font-size: .69rem; line-height: 1.45; }
.hero-note strong { display: block; color: var(--ink); font-family: var(--serif); font-size: .86rem; }
.hero-stamp {
  position: absolute;
  top: 9%;
  left: -48px;
  z-index: 2;
  display: flex;
  width: 100px;
  height: 100px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--paper);
  color: var(--wine);
  transform: rotate(-9deg);
}
.hero-stamp span { font-size: .48rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-stamp strong { margin: -.05rem 0; font-family: var(--serif); font-size: 1.25rem; font-style: italic; font-weight: 400; }

.occasions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 1.2rem clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
  background: var(--wine);
  color: white;
}
.occasions > span { padding-right: 2.5rem; border-right: 1px solid rgba(255,255,255,.25); font-size: .61rem; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.occasion-list { display: flex; align-items: center; justify-content: space-around; gap: 1.4rem; padding-left: 2.5rem; white-space: nowrap; }
.occasion-list p { margin: 0; font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.35rem); font-style: italic; }
.occasion-list i { color: #d5a2a2; font-size: .65rem; font-style: normal; }

.section-shell { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); }
.collection { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 4rem; margin-bottom: 3.5rem; }
.section-heading h2, .story-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
.section-heading > p { max-width: 470px; margin: 0 0 .5rem; color: var(--muted); font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: 1.12fr .94fr .94fr; gap: 1.3rem; }
.product-card { position: relative; padding: .75rem; border: 1px solid var(--line); background: #fff; transition: transform .28s ease, box-shadow .28s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(69,16,31,.09); }
.product-image {
  position: relative;
  min-height: clamp(310px, 35vw, 490px);
  overflow: hidden;
  background-image: url('assets/images/hero-floricultura.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  filter: saturate(.88);
}
.crop-bouquet { background-position: 56% center; }
.crop-basket { background-position: 93% center; }
.crop-chocolate { background-position: 22% center; }
.product-badge { position: absolute; top: .85rem; left: .85rem; padding: .5rem .75rem; border-radius: 999px; background: rgba(255,253,248,.9); color: var(--wine); font-size: .56rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(6px); }
.product-info { display: flex; justify-content: space-between; gap: .75rem; padding: 1.25rem .55rem .9rem; }
.product-info p { margin: 0 0 .35rem; color: var(--rose); font-size: .57rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 400; }
.product-price { display: flex; flex-direction: column; align-items: flex-end; white-space: nowrap; }
.product-price small { color: var(--muted); font-size: .52rem; }
.product-price strong { color: var(--wine); font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.product-card > a { display: flex; justify-content: space-between; margin: 0 .55rem; padding: .85rem 0 .45rem; border-top: 1px solid var(--line); color: var(--wine); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card > a span { transition: transform .2s ease; }
.product-card > a:hover span { transform: translate(2px,-2px); }
.collection-footer { display: flex; justify-content: center; gap: .8rem; margin-top: 2.5rem; color: var(--muted); font-size: .78rem; }
.collection-footer p { margin: 0; }
.collection-footer a { color: var(--wine); border-bottom: 1px solid var(--wine); }

.experience {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--wine-dark);
  color: #f9f1eb;
}
.eyebrow-light { color: #d8a4a5; }
.experience-intro h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}
.experience-intro h2 em, .contact h2 em { color: #d8a4a5; font-weight: 400; }
.experience-intro > p:not(.eyebrow) { max-width: 520px; margin: 2rem 0; color: #d4c7c6; font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; }
.button-light { background: #f8eee8; color: var(--wine-dark); }
.button-light:hover { background: white; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.steps li { display: grid; grid-template-columns: 86px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.steps li > span { color: #c88e92; font-family: var(--serif); font-size: .9rem; font-style: italic; }
.steps h3 { margin: 0 0 .45rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.steps p { max-width: 480px; margin: 0; color: #bdb0af; font-size: .78rem; line-height: 1.7; }

.story { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(4rem, 9vw, 9rem); background: var(--cream); }
.story-art { position: relative; min-height: 650px; }
.story-image {
  position: absolute;
  inset: 0 9% 0 0;
  background-image: linear-gradient(rgba(69,16,31,.08),rgba(69,16,31,.08)), url('assets/images/hero-floricultura.png');
  background-position: 57% center;
  background-size: auto 100%;
  filter: sepia(.08) saturate(.82);
}
.story-image::after { position: absolute; inset: 1.1rem; border: 1px solid rgba(255,255,255,.58); content: ""; }
.story-number { position: absolute; top: -2rem; left: -2rem; color: rgba(111,24,52,.12); font-family: var(--serif); font-size: 8rem; font-style: italic; line-height: 1; }
.story-art > p { position: absolute; right: 0; bottom: 3rem; margin: 0; padding: 1.2rem 1.5rem; background: var(--wine); color: white; font-family: var(--serif); font-size: 1.08rem; font-style: italic; line-height: 1.3; }
.story-copy blockquote { max-width: 560px; margin: 2.4rem 0 1.5rem; color: var(--wine); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); font-style: italic; line-height: 1.45; }
.story-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-family: var(--serif); font-size: .98rem; line-height: 1.8; }
.signature { margin-top: 2rem; color: var(--wine); font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.signature span { color: var(--muted); font-family: var(--sans); font-size: .58rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }

.testimonial { position: relative; display: flex; flex-direction: column; align-items: center; padding: clamp(5rem, 9vw, 8rem) 1.5rem; overflow: hidden; text-align: center; }
.quote-mark { position: absolute; top: 1rem; left: 50%; color: rgba(111,24,52,.07); font-family: var(--serif); font-size: 17rem; line-height: 1; transform: translateX(-50%); }
.testimonial blockquote { position: relative; max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3rem); font-style: italic; line-height: 1.35; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; }
.testimonial-author > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--blush); color: var(--wine); font-family: var(--serif); }
.testimonial-author p { display: flex; flex-direction: column; align-items: flex-start; margin: 0; }
.testimonial-author strong { font-family: var(--serif); font-size: .9rem; font-weight: 500; }
.testimonial-author small { color: var(--muted); font-size: .58rem; }
.stars { margin-top: 1rem; color: #b7787d; font-size: .67rem; letter-spacing: .3em; }

.contact { position: relative; padding: clamp(5rem, 8vw, 7.5rem) 1.5rem 3rem; overflow: hidden; background: var(--wine); color: white; text-align: center; }
.contact::before, .contact::after { position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.contact::before { top: -190px; left: -80px; }
.contact::after { right: -90px; bottom: -210px; }
.contact .eyebrow { justify-content: center; }
.contact h2 { position: relative; }
.contact-lead { max-width: 500px; margin: 1.6rem auto 2rem; color: #eadcda; font-family: var(--serif); font-size: 1.05rem; }
.button-contact { position: relative; background: white; color: var(--wine); }
.button-contact:hover { background: var(--cream); }
.contact-details { display: flex; justify-content: center; gap: clamp(2rem, 7vw, 7rem); margin-top: 4.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.18); }
.contact-details p { display: flex; flex-direction: column; margin: 0; }
.contact-details small { color: #d8a4a5; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong { margin-top: .25rem; font-family: var(--serif); font-size: .9rem; font-weight: 400; }
.contact-decor { position: absolute; top: 50%; left: 7%; color: rgba(255,255,255,.12); font-size: 8rem; transform: translateY(-50%) rotate(15deg); }

footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.5rem, 6vw, 6rem); background: #2b1119; color: #cbbdbd; font-size: .62rem; }
.brand-footer .brand-mark { border-color: #d8a4a5; color: #d8a4a5; }
.brand-footer .brand-copy strong { color: white; }
footer > a:last-child { color: white; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 3rem; padding-left: 3rem; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.2rem); }
  .hero-stamp { left: -30px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card-featured { grid-column: span 2; }
  .product-card-featured .product-image { min-height: 540px; background-size: cover; }
  .experience { gap: 4rem; }
}

@media (max-width: 760px) {
  .announcement { padding: .55rem 1rem; }
  .announcement-separator, .announcement p > span:first-child { display: none; }
  .site-header { min-height: 72px; padding: 0 1.1rem; }
  .brand-copy strong { font-size: 1.08rem; }
  .header-cta { padding: .7rem 1rem; font-size: .67rem; }
  .header-cta span { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 4.5rem 1.35rem 3.5rem; }
  .hero h1 { font-size: clamp(3.9rem, 19vw, 5.5rem); }
  .hero-description { font-size: 1.08rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .hero-trust { justify-content: space-between; gap: .75rem; }
  .hero-trust strong { font-size: 1.15rem; }
  .hero-trust span { max-width: 90px; font-size: .5rem; }
  .hero-visual { min-height: 520px; padding: 0 1rem 1rem; }
  .hero-image-wrap { min-height: 510px; border-radius: 46% 46% 1.5rem 1.5rem / 14% 14% 1.5rem 1.5rem; }
  .hero-image-wrap img { object-position: 61% center; }
  .hero-image-wrap::after { inset: 0 1rem 1rem; border-radius: 46% 46% 1.5rem 1.5rem / 14% 14% 1.5rem 1.5rem; }
  .hero-stamp { top: -30px; left: 1rem; width: 84px; height: 84px; }
  .hero-note { right: 1.8rem; bottom: 2.1rem; width: 72%; }
  .occasions { display: block; min-height: 0; padding: 1.3rem 0; }
  .occasions > span { display: block; margin: 0 1.25rem 1rem; padding: 0 0 .8rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .occasion-list { justify-content: flex-start; overflow: hidden; padding: 0 1.25rem; }
  .occasion-list p:nth-of-type(n+4), .occasion-list i:nth-of-type(n+4) { display: none; }
  .section-shell { padding: 5rem 1.25rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading h2, .story-copy h2 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: auto; }
  .product-card-featured .product-image, .product-image { min-height: 420px; background-size: auto 100%; }
  .collection-footer { align-items: flex-start; flex-direction: column; }
  .experience { grid-template-columns: 1fr; padding: 5rem 1.25rem; }
  .experience-intro h2, .contact h2 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .steps li { grid-template-columns: 50px 1fr; }
  .story { grid-template-columns: 1fr; gap: 4rem; }
  .story-art { min-height: 500px; }
  .story-image { right: 6%; }
  .story-number { left: 0; }
  .testimonial { padding: 6rem 1.3rem; }
  .testimonial blockquote { font-size: 1.75rem; }
  .contact { padding-right: 1.25rem; padding-left: 1.25rem; }
  .contact h2 br { display: none; }
  .contact-details { align-items: center; flex-direction: column; gap: 1.2rem; margin-top: 3rem; }
  .contact-decor { display: none; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: fade-up .7s both; }
  .hero-copy > :nth-child(2) { animation-delay: .08s; }
  .hero-copy > :nth-child(3) { animation-delay: .16s; }
  .hero-copy > :nth-child(4) { animation-delay: .24s; }
  .hero-copy > :nth-child(5) { animation-delay: .32s; }
  .hero-visual { animation: reveal 1s .1s both; }
  @keyframes fade-up { from { opacity: 0; transform: translateY(18px); } }
  @keyframes reveal { from { opacity: 0; transform: scale(.98); } }
}

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