@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Italiana&display=swap');

:root {
  --ink: #2d1b2e;
  --plum: #4a2645;
  --berry: #9d3f63;
  --blush: #f0b9c7;
  --cream: #fbf6ed;
  --paper: #fffdf8;
  --sage: #b9bea2;
  --line: rgba(45, 27, 46, .16);
  --display: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 22px 70px rgba(55, 25, 48, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); line-height: 1.55; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 14px; color: var(--berry); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: .98; }
h1 { font-size: clamp(4rem, 9vw, 8.6rem); letter-spacing: -.045em; }
h2 { font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.75rem, 2.6vw, 2.8rem); }
p { margin: 0; }
.lede { max-width: 670px; color: #655362; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: .25s ease; }
.btn:hover { transform: translateY(-2px); background: var(--berry); border-color: var(--berry); }
.btn--light { background: transparent; color: var(--ink); }
.btn--light:hover { color: #fff; }
.text-link { display: inline-flex; gap: 9px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--berry); font-weight: 700; text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(251,246,237,.92); backdrop-filter: blur(14px); }
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 82px; }
.brand { display: inline-flex; align-items: center; justify-self: start; text-decoration: none; }
.brand__logo { width: 64px; height: 64px; border: 1px solid rgba(45,27,46,.28); border-radius: 50%; object-fit: cover; box-shadow: 0 5px 16px rgba(45,27,46,.12); }
.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.nav__links a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--berry); content: ""; transform: scaleX(0); transition: .25s; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__actions { display: flex; gap: 11px; align-items: center; justify-self: end; }
.nav__phone { font-size: .82rem; font-weight: 700; text-decoration: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; transition: color .28s ease, background-color .28s ease, border-color .28s ease, transform .42s cubic-bezier(.22,1,.36,1); }
.menu-toggle.is-active { border-color: var(--ink); background: var(--ink); color: #fff; transform: rotate(90deg); }

.hero { position: relative; min-height: 770px; overflow: hidden; background: var(--paper); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 770px; }
.hero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px 6vw 70px max(20px, calc((100vw - 1180px)/2)); }
.hero h1 span { display: block; color: var(--berry); font-style: italic; }
.hero__copy .lede { max-width: 530px; margin: 30px 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__image { position: relative; min-height: 650px; }
.hero__image img { height: 100%; object-fit: cover; }
.hero__seal { position: absolute; bottom: 35px; left: -54px; display: grid; place-items: center; width: 118px; aspect-ratio: 1; border-radius: 50%; background: var(--blush); font-family: var(--display); font-size: 1.15rem; line-height: 1.05; text-align: center; transform: rotate(-8deg); }
.hero__flourish { position: absolute; top: 8%; right: -90px; width: 230px; height: 230px; border: 1px solid rgba(157,63,99,.25); border-radius: 50%; }

.marquee { overflow: hidden; padding: 17px 0; background: var(--berry); color: #fff; white-space: nowrap; }
.marquee__track { display: inline-block; min-width: 200%; font-family: var(--display); font-size: 1.22rem; letter-spacing: .03em; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section--paper { background: var(--paper); }
.section--plum { background: var(--plum); color: #fff; }
.section-head { display: flex; gap: 30px; align-items: end; justify-content: space-between; margin-bottom: 55px; }
.section-head .lede { max-width: 470px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.split__image { position: relative; }
.split__image img { min-height: 600px; object-fit: cover; border-radius: 260px 260px 8px 8px; }
.split__note { position: absolute; right: -30px; bottom: 28px; max-width: 210px; padding: 21px; background: var(--paper); box-shadow: var(--shadow); font-family: var(--display); font-size: 1.32rem; transform: rotate(3deg); }
.split__copy .lede { margin: 25px 0 34px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--line); }
.stat { padding: 24px 16px; background: var(--cream); }
.stat strong { display: block; font-family: var(--display); font-size: 2.4rem; font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: #74636e; font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }

.occasion-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.occasion { position: relative; min-height: 430px; overflow: hidden; background: #ddd; }
.occasion:nth-child(1) { grid-column: span 7; }
.occasion:nth-child(2) { grid-column: span 5; }
.occasion:nth-child(3), .occasion:nth-child(4), .occasion:nth-child(5) { grid-column: span 4; min-height: 360px; }
.occasion img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.occasion:hover img { transform: scale(1.035); }
.occasion::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(30,16,28,.83)); content: ""; }
.occasion__copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; color: #fff; }
.occasion__copy p { margin-top: 8px; font-size: .88rem; }

.process-list { border-top: 1px solid rgba(255,255,255,.2); }
.process-row { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.2); align-items: start; }
.process-row__num { color: var(--blush); font-family: var(--display); font-size: 2rem; }
.process-row p { color: #ddcfda; }

.quote { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: center; }
.quote blockquote { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 5.4rem); line-height: 1.05; }
.quote cite { display: block; margin-top: 25px; color: var(--berry); font-style: normal; font-weight: 700; }
.quote__stamp { justify-self: center; display: grid; place-items: center; width: 210px; aspect-ratio: 1; padding: 22px; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--display); font-size: 1.5rem; text-align: center; transform: rotate(-5deg); }

.cta-band { position: relative; overflow: hidden; padding: 100px 0; background: var(--blush); text-align: center; }
.cta-band h2 { max-width: 900px; margin: 0 auto 28px; }
.cta-band p { max-width: 580px; margin: 0 auto 30px; }
.cta-band::before, .cta-band::after { position: absolute; width: 260px; height: 260px; border: 1px solid rgba(74,38,69,.22); border-radius: 50%; content: ""; }
.cta-band::before { top: -160px; left: -70px; }
.cta-band::after { right: -80px; bottom: -170px; }

.page-hero { padding: 95px 0 70px; background: var(--paper); }
.page-hero__top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.page-hero h1 { font-size: clamp(4.2rem, 9vw, 8rem); }
.page-hero .lede { padding-bottom: 10px; }
.page-hero__image { height: min(55vw, 630px); margin-top: 70px; overflow: hidden; }
.page-hero__image img { height: 100%; object-fit: cover; }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.editorial-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 420px; background: var(--paper); }
.editorial-card:nth-child(3n) { grid-column: 1 / -1; grid-template-columns: 1.2fr .8fr; }
.editorial-card img { height: 100%; object-fit: cover; }
.editorial-card__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 55px); }
.editorial-card__copy p { margin: 18px 0 24px; color: #6d5b68; }

.flavor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flavor { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.flavor span { color: var(--berry); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.flavor h3 { margin: 20px 0 13px; font-size: 2rem; }
.flavor p { color: #6d5b68; font-size: .9rem; }
.fineprint { margin-top: 20px; color: #7c6a76; font-size: .8rem; }

.timeline { counter-reset: timeline; }
.timeline__item { display: grid; grid-template-columns: 110px 1fr; gap: 40px; padding: 45px 0; border-top: 1px solid var(--line); }
.timeline__item::before { counter-increment: timeline; content: "0" counter(timeline); color: var(--berry); font-family: var(--display); font-size: 2.7rem; }
.timeline__item h3 { margin-bottom: 15px; }
.timeline__item p { max-width: 720px; color: #6d5b68; }

.about-feature { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 680px; }
.about-feature img { height: 100%; object-fit: cover; }
.about-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 8vw, 110px); background: var(--plum); color: #fff; }
.about-feature__copy .eyebrow { color: var(--blush); }
.about-feature__copy p { margin-top: 26px; color: #ddcfda; font-size: 1.1rem; }

.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.info-list { margin: 38px 0 0; border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.info-row strong { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.info-row a { color: var(--berry); text-decoration: none; }
.form { padding: clamp(28px, 5vw, 55px); background: var(--paper); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; padding: 12px 2px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--berry); }
.form__note { margin-top: 16px; color: #776571; font-size: .77rem; }
.form__success { display: none; margin-top: 18px; padding: 16px; background: #eef0e5; color: #3d432f; }
.form__success.is-visible { display: block; }

.site-footer { padding: 70px 0 24px; background: #241722; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .8fr; gap: 60px; }
.footer-brand { font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5rem); line-height: .92; }
.footer-logo { width: 108px; height: 108px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; object-fit: cover; }
.footer-tag { max-width: 330px; margin-top: 20px; color: #cdbdca; }
.footer-col h4 { margin: 0 0 16px; color: var(--blush); font-size: .71rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin: 7px 0; color: #e7dce4; text-decoration: none; }
.footer-bottom { display: flex; gap: 30px; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #af9eaa; font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { position: fixed; top: 82px; right: 0; left: 0; display: flex; min-height: calc(100dvh - 82px); flex-direction: column; gap: 0; align-items: stretch; justify-content: center; padding: 32px max(20px, calc((100vw - 680px)/2)); border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: 0 30px 70px rgba(45,27,46,.13); opacity: 0; pointer-events: none; transform: translateY(-18px) scale(.985); transform-origin: top center; visibility: hidden; transition: opacity .3s ease, transform .46s cubic-bezier(.22,1,.36,1), visibility 0s linear .46s; }
  .nav__links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); visibility: visible; transition-delay: 0s; }
  .nav__links a { width: 100%; padding: 15px 2px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 400; letter-spacing: -.02em; text-transform: none; opacity: 0; transform: translateY(-10px); transition: opacity .24s ease, transform .38s cubic-bezier(.22,1,.36,1), color .2s ease; }
  .nav__links a::after { display: none; }
  .nav__links a:hover { color: var(--berry); }
  .nav__links.is-open a { opacity: 1; transform: translateY(0); }
  .nav__links.is-open a:nth-child(1) { transition-delay: .07s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: .1s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: .13s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: .16s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: .19s; }
  .nav__links.is-open a:nth-child(6) { transition-delay: .22s; }
  body.menu-open { overflow: hidden; }
  .nav__actions .nav__phone { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .hero__grid, .page-hero__top, .split, .quote, .visit-grid, .about-feature { grid-template-columns: 1fr; }
  .hero__copy { padding: 85px 20px 60px; }
  .hero__image { min-height: 620px; }
  .hero__seal { left: 20px; }
  .section-head { display: block; }
  .section-head .lede { margin-top: 24px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card, .editorial-card:nth-child(3n) { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .flavor-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 0; }
  .nav { min-height: 72px; }
  .brand__logo { width: 54px; height: 54px; }
  .nav__links { top: 72px; min-height: calc(100dvh - 72px); }
  .nav__actions .btn { display: none; }
  .hero, .hero__grid { min-height: auto; }
  .hero__copy { padding-top: 65px; }
  .hero__image { min-height: 520px; }
  .split__note { right: 0; }
  .section { padding: 82px 0; }
  .occasion-grid { grid-template-columns: 1fr; }
  .occasion:nth-child(n) { grid-column: auto; min-height: 390px; }
  .stats { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 50px 1fr; }
  .process-row p { grid-column: 2; }
  .quote { gap: 35px; }
  .quote__stamp { justify-self: start; width: 150px; }
  .page-hero { padding: 70px 0 50px; }
  .page-hero__image { height: 480px; margin-top: 45px; }
  .editorial-card, .editorial-card:nth-child(3n) { grid-template-columns: 1fr; }
  .editorial-card img { min-height: 360px; }
  .flavor-grid, .field-grid { grid-template-columns: 1fr; }
  .timeline__item { grid-template-columns: 65px 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

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