:root {
  --cream: #f6f1ea;
  --warm-white: #fffdf9;
  --ink: #2c2925;
  --green: #314238;
  --sage: #a9b5a4;
  --rose: #c89c98;
  --terra: #b67960;
  --line: rgba(44, 41, 37, .16);
  --light-line: rgba(255, 253, 249, .21);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --pad: clamp(1.25rem, 4vw, 4.6rem);
  --section: clamp(5.8rem, 12vw, 12rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--warm-white); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.45; }
body.menu-open, body:has(dialog[open]) { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; background: var(--green); color: #fff; padding: .75rem 1rem; transition: top .2s; }
.skip-link:focus { top: 1rem; }

.header { align-items: center; display: grid; grid-template-columns: 1fr auto; height: 5.6rem; left: 0; padding: 0 var(--pad); position: fixed; right: 0; top: 0; z-index: 30; transition: background .4s var(--ease), border .4s var(--ease), height .4s var(--ease), backdrop-filter .4s var(--ease); }
.header.is-scrolled { backdrop-filter: blur(12px); background: rgba(246, 241, 234, .9); border-bottom: 1px solid var(--line); height: 4.5rem; }
.brand { color: var(--green); display: inline-flex; flex-direction: column; font-family: var(--serif); font-size: 1.7rem; letter-spacing: .04em; line-height: .78; width: max-content; }
.brand span { font-family: var(--sans); font-size: .45rem; font-weight: 600; letter-spacing: .19em; margin-top: .5rem; text-transform: uppercase; }
.desktop-nav { display: none; }
.header-order { display: none; }
.menu-toggle { align-items: center; background: none; border: 0; display: flex; flex-direction: column; gap: 5px; justify-content: center; padding: .75rem 0 .75rem .75rem; width: 3rem; }
.menu-toggle i { background: var(--green); display: block; height: 1px; transition: transform .3s var(--ease), width .3s var(--ease); width: 1.8rem; }
.menu-open .menu-toggle i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle i:last-child { transform: translateY(-3px) rotate(-45deg); }
.menu-panel { background: var(--cream); display: flex; flex-direction: column; height: 100dvh; justify-content: center; left: 0; opacity: 0; padding: 7rem var(--pad) 3rem; pointer-events: none; position: fixed; right: 0; top: 0; transform: translateY(-1.5rem); transition: opacity .4s var(--ease), transform .4s var(--ease); visibility: hidden; z-index: 25; }
.menu-open .menu-panel { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.menu-panel .eyebrow { margin-bottom: 1.5rem; }
.menu-panel nav { border-top: 1px solid var(--line); }
.menu-panel nav a { align-items: baseline; border-bottom: 1px solid var(--line); display: flex; font-family: var(--serif); font-size: clamp(2.1rem, 9vw, 4rem); justify-content: space-between; padding: .65rem 0; }
.menu-panel nav a span { color: var(--terra); font-family: var(--sans); font-size: .65rem; letter-spacing: .12em; }
.menu-panel > p { font-size: .75rem; letter-spacing: .08em; margin-top: auto; text-transform: uppercase; }
.menu-panel em { color: var(--terra); font-family: var(--serif); font-size: 1rem; letter-spacing: 0; text-transform: none; }

.eyebrow { color: var(--green); font-size: .62rem; font-weight: 600; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow span { background: currentColor; display: inline-block; height: 1px; margin: 0 .45rem .2em; width: 1.8rem; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; line-height: .95; }
h2 { font-size: clamp(3.15rem, 6.1vw, 6.25rem); }
h2 em, .statement em { color: var(--terra); font-style: italic; }
.section { padding: var(--section) var(--pad); }
.section--bleed { padding-left: 0; padding-right: 0; }
.section-head { align-items: end; display: flex; gap: 2rem; justify-content: space-between; margin-bottom: clamp(3rem, 6vw, 6.25rem); }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head__aside { font-size: .91rem; line-height: 1.6; max-width: 19rem; }
.button { align-items: center; background: var(--green); border: 1px solid var(--green); color: var(--warm-white); display: inline-flex; font-size: .69rem; font-weight: 600; gap: 1.25rem; justify-content: center; letter-spacing: .09em; min-height: 3.1rem; padding: .7rem 1.1rem; text-transform: uppercase; transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.button span { font-size: 1.15rem; font-weight: 400; line-height: 0; transition: transform .3s var(--ease); }
.button:hover { background: transparent; color: var(--green); }
.button:hover span { transform: translate(2px, -2px); }
.button--small { min-height: 2.65rem; padding: .5rem .8rem; }
.button--light { background: var(--warm-white); border-color: var(--warm-white); color: var(--green); }
.button--light:hover { color: var(--warm-white); }
.text-link { align-items: center; background: none; border: 0; color: var(--green); display: inline-flex; font-size: .69rem; font-weight: 600; gap: .55rem; letter-spacing: .07em; padding: .2rem 0; position: relative; text-transform: uppercase; }
.text-link::after { background: currentColor; bottom: 0; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(.25); transform-origin: left; transition: transform .35s var(--ease); width: 100%; }
.text-link:hover::after { transform: scaleX(1); }
.text-link span { font-size: 1rem; }
.text-link--light { color: var(--warm-white); }

.hero { display: grid; min-height: 100svh; overflow: hidden; padding-top: 5.6rem; }
.hero__copy { align-self: end; display: flex; flex-direction: column; padding: 4rem var(--pad) 3rem; position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 1.2rem; }
.hero h1 { color: var(--green); font-size: clamp(3.35rem, 7.3vw, 7.25rem); }
.hero__intro { font-size: .98rem; line-height: 1.62; margin-top: 1.7rem; max-width: 24rem; }
.hero__actions { align-items: center; display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; margin-top: 2rem; }
.hero__benefits { display: flex; flex-wrap: wrap; font-size: .61rem; font-weight: 600; gap: .75rem 1.25rem; letter-spacing: .08em; margin-top: 3rem; text-transform: uppercase; }
.hero__benefits li { align-items: center; display: flex; }
.hero__benefits li:not(:last-child)::after { background: var(--terra); border-radius: 50%; content: ""; height: 3px; margin-left: 1.25rem; width: 3px; }
.hero__visual { min-height: 67svh; overflow: hidden; position: relative; }
.hero__image-wrap { height: 100%; overflow: hidden; }
.hero__visual img { object-position: 64% center; }
.hero__note { align-items: center; background: var(--warm-white); bottom: 0; display: flex; gap: .65rem; padding: .9rem 1.1rem; position: absolute; right: 0; }
.hero__note span { color: var(--terra); font-size: .95rem; }
.hero__note p { font-family: var(--serif); font-size: .93rem; line-height: .9; }
.hero__index { bottom: 2rem; color: var(--warm-white); font-size: .65rem; left: 1.5rem; letter-spacing: .1em; position: absolute; }
.hero__index i { background: currentColor; display: inline-block; height: 1px; margin: 0 .5rem .2em; width: 2rem; }
.statement { background: var(--cream); padding: clamp(5.5rem, 11vw, 10rem) var(--pad); }
.statement .eyebrow { margin-bottom: 2rem; }
.statement__text { font-family: var(--serif); font-size: clamp(2rem, 4.8vw, 5rem); letter-spacing: -.04em; line-height: 1; max-width: 60rem; }

.collection { overflow: hidden; }
.products { display: grid; gap: clamp(2.6rem, 5vw, 5rem) clamp(1.15rem, 3vw, 3.5rem); grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 auto; max-width: 110rem; }
.product { min-width: 0; }
.product__image { background: var(--cream); border: 0; display: block; height: clamp(15rem, 27vw, 31rem); overflow: hidden; padding: 0; position: relative; text-align: left; width: 100%; }
.product__image::after { background: linear-gradient(0deg, rgba(15, 20, 15, .42), transparent 36%); content: ""; inset: 0; opacity: 0; position: absolute; transition: opacity .4s var(--ease); }
.product__image img { transition: transform .65s var(--ease), object-position .65s var(--ease); }
.product:nth-child(2) img { object-position: 64% 50%; }.product:nth-child(3) img { object-position: 63% center; }.product:nth-child(4) img { object-position: 40% center; }.product:nth-child(5) img { object-position: 70% center; }.product:nth-child(6) img { object-position: 55% 55%; }
.product__image span { bottom: 1rem; color: white; font-size: .67rem; font-weight: 600; letter-spacing: .08em; opacity: 0; position: absolute; right: 1rem; text-transform: uppercase; transform: translateY(7px); transition: opacity .4s var(--ease), transform .4s var(--ease); z-index: 1; }
.product__image b { font-size: 1.1rem; font-weight: 400; margin-left: .3rem; }
.product__image:hover img { transform: scale(1.04); }
.product__image:hover::after, .product__image:hover span { opacity: 1; }
.product__image:hover span { transform: translateY(0); }
.product__meta { align-items: flex-start; display: flex; gap: .5rem; justify-content: space-between; padding-top: .85rem; }
.product__meta h3 { color: var(--green); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; letter-spacing: -.03em; line-height: 1; }
.product__meta p { font-size: .72rem; line-height: 1.35; margin-top: .4rem; max-width: 11rem; }
.product__meta strong { color: var(--terra); font-size: .75rem; font-weight: 600; padding-top: .3rem; white-space: nowrap; }

.featured { background: var(--green); color: var(--warm-white); display: grid; }
.featured__visual { height: min(130vw, 47rem); overflow: hidden; position: relative; }
.featured__visual img { object-position: 58% center; }
.featured__visual p { bottom: 1.25rem; color: var(--warm-white); font-family: var(--serif); font-size: 1.2rem; line-height: .9; position: absolute; right: 1.2rem; text-align: right; }
.featured__visual p span { color: var(--sage); display: block; font-family: var(--sans); font-size: .6rem; letter-spacing: .12em; margin-top: .8rem; }
.featured__copy { padding: 4rem var(--pad) 5rem; }
.featured .eyebrow { color: var(--sage); margin-bottom: 1.25rem; }
.featured h2 { font-size: clamp(5rem, 10vw, 10rem); }.featured h2 span { color: var(--terra); }
.featured__desc { font-size: 1rem; line-height: 1.62; margin-top: 1.75rem; max-width: 25rem; }
.featured__price { color: var(--sage); font-family: var(--serif); font-size: 2.5rem; letter-spacing: -.04em; margin-top: 1.75rem; }.featured__price span { font-family: var(--sans); font-size: .62rem; letter-spacing: .1em; }
.featured ul { border-top: 1px solid var(--light-line); display: grid; gap: .65rem; margin: 1.75rem 0 2.25rem; padding-top: 1.2rem; }.featured li { font-size: .73rem; }.featured li::before { color: var(--terra); content: "✦"; font-size: .6rem; margin-right: .65rem; }
.featured .button { background: var(--warm-white); border-color: var(--warm-white); color: var(--green); }.featured .button:hover { background: transparent; color: var(--warm-white); }

.occasions { background: var(--cream); }.occasion-layout { display: grid; gap: 2rem; }.occasion-list { border-top: 1px solid var(--line); }.occasion-list li { border-bottom: 1px solid var(--line); }.occasion-list button { align-items: center; background: none; border: 0; color: var(--ink); display: flex; font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 3.6rem); justify-content: space-between; letter-spacing: -.035em; padding: .7rem 0; text-align: left; transition: color .3s var(--ease), padding .35s var(--ease); width: 100%; }.occasion-list button span { color: var(--terra); font-family: var(--sans); font-size: .57rem; font-weight: 600; letter-spacing: .08em; margin-right: .6rem; }.occasion-list button i { font-family: var(--sans); font-size: 1rem; font-style: normal; opacity: 0; transform: translate(-5px, 5px); transition: opacity .3s var(--ease), transform .3s var(--ease); }.occasion-list li.is-active button, .occasion-list button:hover { color: var(--terra); padding-left: .5rem; }.occasion-list li.is-active i, .occasion-list button:hover i { opacity: 1; transform: translate(0); }.occasion-image { aspect-ratio: 1 / 1.1; margin: 0; overflow: hidden; position: relative; }.occasion-image img { object-position: center; transition: opacity .25s var(--ease); }.occasion-image figcaption { background: var(--warm-white); bottom: 0; font-family: var(--serif); font-size: 1.1rem; left: 0; line-height: .95; max-width: 10rem; padding: .75rem 1rem; position: absolute; }.occasion-image figcaption em { color: var(--terra); }

.custom { align-items: start; display: grid; gap: 3rem; }.custom__copy .eyebrow { margin-bottom: 1.2rem; }.custom__copy > p:not(.eyebrow) { font-size: .95rem; line-height: 1.65; margin: 1.7rem 0; max-width: 20rem; }.custom__board { display: grid; gap: .6rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }.custom__card { display: flex; flex-direction: column; min-height: 10.8rem; padding: 1rem; position: relative; }.custom__num { font-size: .58rem; font-weight: 600; letter-spacing: .1em; }.custom__card p { font-family: var(--serif); font-size: 1.45rem; letter-spacing: -.03em; line-height: .9; margin-top: auto; }.custom__card p em { font-style: italic; }.custom__card--tone { background: var(--sage); color: var(--green); }.swatches { display: flex; gap: .35rem; margin-top: .8rem; }.swatches i { border-radius: 50%; height: 1.25rem; width: 1.25rem; }.swatches i:nth-child(1) { background: #f1eadc; }.swatches i:nth-child(2) { background: #c89c98; }.swatches i:nth-child(3) { background: #b67960; }.swatches i:nth-child(4) { background: #314238; }.custom__card--size { background: var(--cream); }.sizes { align-items: end; display: flex; gap: .5rem; height: 2.2rem; margin-top: .75rem; }.sizes i { background: var(--green); border-radius: 50%; display: block; }.sizes i:nth-child(1) { height: .65rem; width: .65rem; }.sizes i:nth-child(2) { height: 1.25rem; width: 1.25rem; }.sizes i:nth-child(3) { height: 2rem; width: 2rem; }.custom__card--card { background: var(--terra); color: var(--warm-white); }.tiny-card { align-self: end; background: var(--warm-white); color: var(--ink); font-family: var(--serif); font-size: .75rem; font-style: italic; margin-top: .8rem; padding: .6rem; transform: rotate(-6deg); }.custom__card--flower { background: var(--green); color: var(--warm-white); }.flower-mark { color: var(--sage); font-family: var(--serif); font-size: 3rem; line-height: .7; margin-left: auto; margin-top: .8rem; }

.gifts { background: var(--cream); display: grid; gap: 2.5rem; overflow: hidden; }.gifts__intro .eyebrow { margin-bottom: 1.2rem; }.gifts__items > p { font-size: .9rem; line-height: 1.6; margin-bottom: 2rem; max-width: 22rem; }.gifts__items ul { border-top: 1px solid var(--line); }.gifts__items li { align-items: center; border-bottom: 1px solid var(--line); display: flex; font-family: var(--serif); font-size: 1.18rem; justify-content: space-between; letter-spacing: -.02em; padding: .75rem 0; }.gifts__items b { color: var(--terra); font-family: var(--sans); font-size: .71rem; font-weight: 600; letter-spacing: 0; }.gifts__image { height: 19rem; margin: 1rem -1.25rem 0 0; overflow: hidden; }.gifts__image img { object-position: center 32%; }

.section--dark { background: var(--green); color: var(--warm-white); }.about__grid { display: grid; gap: 2rem; }.about__copy .eyebrow { color: var(--sage); margin-bottom: 1.25rem; }.about__copy h2 em { color: var(--rose); }.about__copy > div { display: grid; gap: 1rem; font-size: .92rem; line-height: 1.65; margin-top: 2rem; max-width: 23rem; }.about__image { overflow: hidden; }.about__image--main { height: 28rem; }.about__image--main img { object-position: 55% center; }.about__image--small { height: 14rem; margin-left: 18%; width: 82%; }.about__image--small img { object-position: 62% center; }

.process { overflow: hidden; }.process__title .eyebrow { margin-bottom: 1.2rem; }.process__list { border-top: 1px solid var(--line); margin-top: 3.5rem; }.process__list li { align-items: baseline; border-bottom: 1px solid var(--line); display: flex; gap: 1.2rem; padding: 1.15rem 0; }.process__list span { color: var(--terra); font-size: .62rem; font-weight: 600; letter-spacing: .08em; min-width: 1.4rem; }.process__list p { font-family: var(--serif); font-size: 1.55rem; letter-spacing: -.03em; line-height: .95; }

.section--cream { background: var(--cream); }.delivery { display: grid; gap: 3rem; }.delivery__art { height: 23rem; overflow: hidden; position: relative; }.delivery__art img { object-position: 66% center; }.delivery__circle { align-items: center; background: var(--green); border-radius: 50%; color: var(--warm-white); display: flex; flex-direction: column; font-size: .55rem; font-weight: 600; height: 7.5rem; justify-content: center; left: 1rem; letter-spacing: .12em; line-height: 1.5; position: absolute; text-align: center; top: 1rem; width: 7.5rem; z-index: 1; }.delivery__circle i { color: var(--sage); font-size: .9rem; font-style: normal; margin: .25rem; }.delivery__copy .eyebrow { margin-bottom: 1.2rem; }.delivery__copy > p:not(.eyebrow) { font-size: .94rem; line-height: 1.6; margin: 1.75rem 0; max-width: 25rem; }.delivery__copy ul { border-top: 1px solid var(--line); display: grid; gap: .6rem; padding-top: 1.2rem; }.delivery__copy li { font-size: .75rem; }.delivery__copy li::before { color: var(--terra); content: "✦"; font-size: .6rem; margin-right: .6rem; }

.testimonials__top { align-items: end; display: flex; gap: 1.5rem; justify-content: space-between; }.testimonials__top .eyebrow { margin-bottom: 1.2rem; }.rating { flex-shrink: 0; }.rating strong { color: var(--terra); font-family: var(--serif); font-size: 3.5rem; letter-spacing: -.06em; line-height: .75; }.rating span { font-family: var(--serif); font-size: 1.2rem; }.rating p { font-size: .63rem; line-height: 1.4; margin-top: .75rem; }.testimonial-grid { display: grid; gap: 0; margin-top: 3rem; }.testimonial-grid blockquote { border-top: 1px solid var(--line); display: flex; flex-direction: column; font-family: var(--serif); font-size: 1.35rem; letter-spacing: -.025em; line-height: 1.08; min-height: 11.5rem; padding: 1.1rem 0 1.4rem; }.testimonial-grid cite { color: var(--terra); font-family: var(--sans); font-size: .62rem; font-style: normal; font-weight: 600; letter-spacing: .08em; margin-top: auto; text-transform: uppercase; }

.gallery { background: var(--cream); }.gallery__head { margin-bottom: 3rem; }.gallery__head .eyebrow { margin-bottom: 1.2rem; }.gallery-grid { display: grid; gap: .6rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }.gallery-item { background: var(--sage); border: 0; min-height: 11rem; overflow: hidden; padding: 0; }.gallery-item img { transition: transform .55s var(--ease); }.gallery-item:hover img { transform: scale(1.04); }.gallery-item--1 img { object-position: 75% center; }.gallery-item--2 img { object-position: 60% center; }.gallery-item--3 img { object-position: 70% center; }.gallery-item--4 img { object-position: 45% center; }.gallery-item--5 img { object-position: 58% center; }.gallery-item--6 img { object-position: center; }.gallery-item--7 img { object-position: 58% center; }.gallery-item--8 img { object-position: 62% center; }

.faq { display: grid; gap: 3rem; }.faq__intro .eyebrow { margin-bottom: 1.2rem; }.faq__list { border-top: 1px solid var(--line); }.faq details { border-bottom: 1px solid var(--line); }.faq summary { align-items: center; cursor: pointer; display: flex; font-family: var(--serif); font-size: 1.25rem; justify-content: space-between; letter-spacing: -.02em; list-style: none; padding: 1.15rem 0; }.faq summary::-webkit-details-marker { display: none; }.faq summary span { height: 1rem; position: relative; width: 1rem; }.faq summary span::before, .faq summary span::after { background: var(--terra); content: ""; height: 1px; left: 0; position: absolute; top: 50%; transition: transform .3s var(--ease); width: 100%; }.faq summary span::after { transform: rotate(90deg); }.faq details[open] summary span::after { transform: rotate(0); }.faq details p { font-size: .82rem; line-height: 1.6; max-width: 30rem; padding: 0 2rem 1.35rem 0; }

.closing-cta { color: var(--warm-white); min-height: 39rem; overflow: hidden; position: relative; }.closing-cta > img, .closing-cta__overlay { inset: 0; position: absolute; }.closing-cta > img { object-position: 61% center; }.closing-cta__overlay { background: linear-gradient(90deg, rgba(30, 34, 26, .78), rgba(30, 34, 26, .22)); }.closing-cta__copy { bottom: 0; max-width: 49rem; padding: 0 var(--pad) 4rem; position: absolute; z-index: 1; }.closing-cta .eyebrow { color: var(--sage); margin-bottom: 1.25rem; }.closing-cta h2 em { color: #edd2bf; }.closing-cta__copy > p:not(.eyebrow) { font-size: .94rem; line-height: 1.6; margin-top: 1.6rem; max-width: 25rem; }.closing-cta__copy > div { align-items: center; display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 2rem; }

.footer { background: var(--green); color: var(--warm-white); padding: 4rem var(--pad) 1.35rem; }.footer__top { display: grid; gap: 2.8rem; }.brand--footer { color: var(--warm-white); }.footer__top > div > p { font-family: var(--serif); font-size: 1.1rem; margin-top: 1.5rem; }.footer__links { display: grid; gap: .65rem; }.footer__links a { font-family: var(--serif); font-size: 1.4rem; width: max-content; }.footer address { display: grid; font-size: .75rem; font-style: normal; gap: .8rem; line-height: 1.5; }.footer address p:first-child { color: var(--sage); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }.footer small { color: var(--sage); font-size: .61rem; }.footer address a { text-decoration: underline; text-decoration-color: var(--terra); text-underline-offset: .3rem; width: max-content; }.footer__bottom { border-top: 1px solid var(--light-line); display: flex; flex-direction: column; font-size: .57rem; gap: .7rem; letter-spacing: .04em; margin-top: 3.5rem; padding-top: 1rem; text-transform: uppercase; }

.whatsapp { align-items: center; background: var(--green); border: 1px solid rgba(255,253,249,.62); border-radius: 999px; bottom: 1rem; box-shadow: 0 10px 26px rgba(32, 43, 35, .2); color: var(--warm-white); display: flex; gap: .46rem; height: 3.05rem; justify-content: flex-start; padding: .23rem .58rem .23rem .28rem; position: fixed; right: .9rem; transition: box-shadow .35s var(--ease), transform .35s var(--ease), background .35s var(--ease), opacity .3s var(--ease); width: 11.8rem; z-index: 20; }.whatsapp__icon { align-items: center; background: var(--sage); border-radius: 50%; color: var(--green); display: inline-flex; flex: 0 0 2.5rem; height: 2.5rem; justify-content: center; }.whatsapp__icon svg { fill: currentColor; height: 1.95rem; width: 1.95rem; }.whatsapp__copy { display: flex; flex: 1; flex-direction: column; gap: .12rem; text-align: left; }.whatsapp__copy small { color: var(--sage); font-size: .47rem; font-weight: 600; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }.whatsapp__copy strong { color: var(--warm-white); font-size: .84rem; font-weight: 700; letter-spacing: .01em; line-height: 1.05; }.whatsapp__arrow { color: var(--rose); font-size: .95rem; line-height: 1; }.whatsapp:hover { background: #3b5143; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(32, 43, 35, .25); }.whatsapp:active { transform: translateY(-1px); } body:has(dialog[open]) .whatsapp { opacity: 0; pointer-events: none; transform: translateY(.75rem); }

dialog:not([open]) { display: none; } dialog { color: var(--ink); }.modal { background: var(--cream); border: 0; box-shadow: 0 24px 90px rgba(24, 31, 25, .24); max-width: min(31rem, calc(100% - 2rem)); overflow: visible; padding: clamp(2rem, 6vw, 4rem); }.modal::backdrop, .lightbox::backdrop { background: rgba(28, 33, 27, .62); backdrop-filter: blur(3px); }.modal__close { align-items: center; background: transparent; border: 1px solid var(--line); border-radius: 50%; display: flex; font-size: 1.5rem; height: 2rem; justify-content: center; line-height: 1; padding: 0 0 .2rem; position: absolute; right: .8rem; top: .8rem; width: 2rem; }.modal__flourish { color: var(--terra); font-family: var(--serif); font-size: 3rem; line-height: 1; margin-bottom: 1.5rem; }.modal .eyebrow { margin-bottom: 1rem; }.modal h2 { font-size: clamp(3.5rem, 13vw, 5.5rem); }.modal h2 em { color: var(--terra); }.modal > p:not(.eyebrow) { font-size: .95rem; line-height: 1.6; margin: 1.5rem 0 2rem; max-width: 21rem; }.modal--product { display: grid; max-width: min(50rem, calc(100% - 2rem)); padding: 0; }.modal--product > img { height: 17rem; }.modal--product > div { padding: 2rem; }.modal--product h2 { font-size: 3.8rem; }.modal--product .button { margin-top: 1.6rem; }.modal__price { color: var(--terra); font-family: var(--serif); font-size: 2rem; margin-top: .9rem; }.lightbox { background: transparent; border: 0; max-height: 92dvh; max-width: min(70rem, 95vw); overflow: visible; padding: 0; }.lightbox > img { height: auto; max-height: 90dvh; object-fit: contain; }.lightbox .modal__close { background: var(--warm-white); right: .5rem; top: .5rem; }

.reveal { opacity: 0; transform: translateY(1.3rem); transition: opacity .8s var(--ease), transform .8s var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-animate { animation: hero-rise .85s var(--ease) both; }.hero__visual.hero-animate { animation-delay: .05s; }.hero__copy .hero-animate:nth-child(1) { animation-delay: .22s; }.hero__copy .hero-animate:nth-child(2) { animation-delay: .3s; }.hero__copy .hero-animate:nth-child(3) { animation-delay: .42s; }.hero__copy .hero-animate:nth-child(4) { animation-delay: .5s; }.hero__copy .hero-animate:nth-child(5) { animation-delay: .58s; }@keyframes hero-rise { from { opacity: 0; transform: translateY(1.4rem); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 600px) {
  .hero__copy { padding-bottom: 4rem; }.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }.product--large { grid-column: span 2; }.product--large .product__image { height: clamp(23rem, 42vw, 40rem); }.product--offset { margin-top: clamp(3rem, 11vw, 9rem); }.product--offset .product__image { height: clamp(17rem, 32vw, 28rem); }.product--medium { margin-top: 1.5rem; }.product--medium .product__image { height: clamp(17rem, 26vw, 26rem); }.occasion-layout { grid-template-columns: 1.05fr .95fr; }.occasion-image { margin-top: 0; }.custom { grid-template-columns: .85fr 1.15fr; }.custom__board { gap: .9rem; }.custom__card { min-height: 13.5rem; padding: 1.4rem; }.gifts { grid-template-columns: .8fr 1.1fr; }.gifts__image { grid-column: 1 / -1; margin-right: -2.5rem; }.about__grid { grid-template-columns: 1fr 1fr; }.about__copy { grid-column: span 2; }.about__image--main { height: 34rem; }.about__image--small { align-self: end; height: 17rem; margin: 0 0 2.5rem -15%; width: 115%; }.process__list { display: grid; grid-template-columns: repeat(5, 1fr); }.process__list li { border-bottom: 0; border-right: 1px solid var(--line); display: block; min-height: 10rem; padding: 1rem; }.process__list li:last-child { border-right: 0; }.process__list p { font-size: clamp(1.2rem, 2.2vw, 2.1rem); margin-top: 2rem; }.delivery { grid-template-columns: 1fr 1fr; }.delivery__art { height: auto; min-height: 30rem; }.testimonial-grid { grid-template-columns: repeat(3, 1fr); }.testimonial-grid blockquote { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-height: 13rem; padding: 1.25rem; }.testimonial-grid blockquote:first-child { padding-left: 0; }.testimonial-grid blockquote:last-child { border-right: 0; }.gallery-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: 10rem 10rem 10rem; }.gallery-item { min-height: 0; }.gallery-item--1 { grid-column: span 2; grid-row: span 2; }.gallery-item--2 { grid-column: span 2; }.gallery-item--3 { grid-column: span 2; grid-row: span 2; }.gallery-item--4 { grid-column: span 2; }.gallery-item--5 { grid-column: span 2; }.gallery-item--6 { grid-column: span 2; }.gallery-item--7 { grid-column: span 2; }.gallery-item--8 { grid-column: span 2; }.faq { grid-template-columns: .72fr 1.28fr; }.footer__top { grid-template-columns: 1.2fr .6fr 1fr; }.footer__bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .header { grid-template-columns: 1fr auto 1fr; }.desktop-nav { display: flex; gap: clamp(1rem, 2vw, 2.5rem); }.desktop-nav a { font-size: .67rem; font-weight: 600; letter-spacing: .09em; position: relative; text-transform: uppercase; }.desktop-nav a::after { background: var(--terra); bottom: -.4rem; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); width: 100%; }.desktop-nav a:hover::after { transform: scaleX(1); }.header-order { display: inline-flex; justify-self: end; }.menu-toggle { display: none; }.hero { grid-template-columns: 43% 57%; }.hero__copy { padding: 8rem 2rem 4rem var(--pad); }.hero__visual { min-height: 0; }.hero__note { bottom: 2.5rem; right: 2.5rem; }.hero__index { bottom: 2.5rem; left: 2.5rem; }.featured { grid-template-columns: 51% 49%; }.featured__visual { height: min(56rem, 63vw); }.featured__copy { align-self: center; padding: 4rem clamp(3rem, 8vw, 9rem); }.gifts { grid-template-columns: .75fr .95fr .8fr; }.gifts__image { grid-column: auto; height: auto; margin: 0 -4.6rem 0 0; min-height: 28rem; }.about__grid { grid-template-columns: .95fr 1.1fr .7fr; }.about__copy { align-self: center; grid-column: auto; }.about__image--main { height: 42rem; }.about__image--small { height: 20rem; margin: 0 0 3rem -3rem; width: calc(100% + 3rem); }.process { display: grid; grid-template-columns: .9fr 2fr; gap: 7vw; }.process__list { margin: 0; }.delivery__art { margin-left: calc(var(--pad) * -1); }.delivery__copy { align-self: center; padding-left: 4vw; }.testimonials__top { align-items: end; }.gallery { align-items: end; display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 7vw, 8rem); }.gallery__head { margin-bottom: 0; }.gallery-grid { grid-template-rows: 9rem 9rem 9rem; }.closing-cta { min-height: 43rem; }.closing-cta__copy { padding-bottom: 5rem; }.modal--product { grid-template-columns: 1fr 1fr; }.modal--product > img { height: 100%; min-height: 28rem; }.modal--product > div { align-self: center; padding: 3.5rem; }
}

@media (min-width: 1200px) {
  .hero__copy { padding-right: 3rem; }.products { padding: 0 4vw; }.product--offset { margin-top: 12rem; }.featured__visual { height: 58rem; }.section-head__aside { margin-right: 10vw; }.occasion-layout { gap: clamp(4rem, 10vw, 12rem); grid-template-columns: 1fr .75fr; padding: 0 7vw; }.custom { gap: 10vw; padding-left: 10vw; padding-right: 10vw; }.custom__card { min-height: 16rem; }.gifts { padding-left: 10vw; }.about__grid { padding-left: 8vw; padding-right: 8vw; }.process { padding-left: 10vw; padding-right: 10vw; }.delivery { grid-template-columns: 1.1fr .9fr; }.delivery__copy { max-width: 42rem; }.testimonials { padding-left: 10vw; padding-right: 10vw; }.faq { padding-left: 10vw; padding-right: 10vw; }.closing-cta__copy { padding-left: 10vw; }.footer { padding-left: 10vw; padding-right: 10vw; }
}

@media (max-width: 599px) { .section-head { align-items: start; flex-direction: column; }.section-head__aside { max-width: 18rem; }.hero__copy { min-height: 44svh; }.gallery-item:nth-child(3n + 1) { min-height: 15rem; }.gallery-item:nth-child(3n) { min-height: 13rem; }.gallery-item:nth-child(5) { margin-top: -2rem; }.closing-cta h2 { font-size: clamp(2.8rem, 10vw, 4.1rem); } }

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