@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600&display=swap');

:root {
  --ivory: #f3eee5;
  --ivory-dark: #e5ddd0;
  --green: #1f3027;
  --olive: #4a5844;
  --clay: #b76c50;
  --rose: #d7b3aa;
  --ink: #1d1d1a;
  --paper: #f8f4ed;
  --line: color-mix(in srgb, var(--green) 24%, transparent);
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --page: min(100% - 2rem, 1340px);
  --pad: clamp(5.5rem, 9vw, 10rem);
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body { width: 100%; margin: 0; background: var(--ivory); color: var(--green); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body::before { position: fixed; inset: 0; z-index: 100; pointer-events: none; content: ""; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }
body.modal-is-open, body.menu-is-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img, video { max-width: 100%; display: block; }
picture { display: block; overflow: hidden; }
picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
::selection { color: var(--ivory); background: var(--clay); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .96; letter-spacing: -.025em; }
h1 em, h2 em { font-weight: 400; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; padding: .8rem 1rem; background: var(--clay); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 1.35rem; font-size: .69rem; line-height: 1.3; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.section-pad { padding: var(--pad) max(1rem, calc((100vw - 1340px) / 2)); }
.button-row { display: flex; align-items: center; gap: 1.7rem; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 3.5rem; align-items: center; justify-content: center; gap: 2.4rem; border: 0; border-radius: 0; padding: .9rem 1.25rem; cursor: pointer; font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .3s, background .3s, transform .3s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 1rem; }
.button--small { min-height: 2.85rem; gap: 1rem; }
.button--clay { background: var(--clay); color: white; }
.button--clay:hover { background: #a85e45; }
.button--dark { background: var(--green); color: var(--ivory); }
.button--ivory { background: var(--ivory); color: var(--green); }
.button--outline-light { border: 1px solid rgba(243,238,229,.5); background: transparent; color: var(--ivory); }
.text-link { width: max-content; border: 0; border-bottom: 1px solid currentColor; padding: 0 0 .28rem; background: none; cursor: pointer; font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.text-link span { margin-left: .6rem; }

/* Identity and navigation */
.botanical-line { width: 100%; height: auto; }
.botanical-line__stem { stroke-dasharray: 1; stroke-dashoffset: 0; }
.wordmark { display: inline-flex; flex-direction: column; font-family: var(--serif); font-size: clamp(4.2rem, 9vw, 9.5rem); line-height: .68; letter-spacing: -.07em; }
.wordmark span:last-child { margin-left: .35em; }
.wordmark--compact { font-size: 1.42rem; line-height: .73; letter-spacing: -.045em; }
.wordmark--compact span:last-child { margin-left: .25em; }
.site-header { position: fixed; z-index: 80; top: 0; left: 0; width: 100%; height: 88px; display: flex; align-items: center; justify-content: space-between; padding: .75rem clamp(1rem, 3vw, 3.5rem); color: var(--green); transition: height .35s, background .35s, box-shadow .35s; }
.site-header.is-scrolled { height: 68px; background: rgba(243,238,229,.92); box-shadow: 0 1px 0 rgba(31,48,39,.13); backdrop-filter: blur(12px); }
.brand-link { position: relative; z-index: 2; display: flex; align-items: center; gap: .75rem; }
.brand-link svg { width: 46px; height: 46px; }
.main-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.5rem); }
.main-nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.3vw, 2.7rem); }
.main-nav__links a { position: relative; font-size: .72rem; font-weight: 600; letter-spacing: .065em; text-transform: uppercase; }
.main-nav__links a::after { position: absolute; bottom: -.35rem; left: 0; width: 100%; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.main-nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav__mobile-foot, .menu-toggle { display: none; }
body.page-weddings .site-header:not(.is-scrolled), body.page-plants .site-header:not(.is-scrolled) { color: var(--ivory); }
body.page-weddings .site-header:not(.is-scrolled) .button--dark, body.page-plants .site-header:not(.is-scrolled) .button--dark { background: var(--ivory); color: var(--green); }

/* Shared structures */
.page-intro { position: relative; z-index: 2; }
.page-intro h1 { max-width: 950px; margin: 0 0 2rem; font-size: clamp(4rem, 7.3vw, 8.2rem); }
.page-intro__copy { max-width: 580px; }
.page-intro__copy > p { margin-bottom: 2rem; font-size: clamp(1rem, 1.45vw, 1.3rem); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-header h2 { margin: 0; font-size: clamp(3.3rem, 6vw, 6.8rem); }
.section-header > p { max-width: 320px; margin-bottom: .7rem; }
.section-number { font-family: var(--serif); color: var(--rose); font-size: clamp(8rem, 19vw, 19rem); line-height: .6; opacity: .55; }
.vertical-note { position: absolute; font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.image-caption { position: absolute; bottom: 1rem; left: 1rem; padding: .4rem .65rem; background: var(--ivory); font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.round-arrow { width: 3.2rem; height: 3.2rem; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--sans); font-size: 1.05rem; transition: background .3s, color .3s, transform .3s; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Home */
.home-hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 52% 48%; align-items: center; padding: 9rem clamp(1rem, 4vw, 4.5rem) 5rem; background: var(--ivory); }
.home-hero::after { position: absolute; right: 0; top: 0; width: 35%; height: 100%; content: ""; background: var(--rose); opacity: .17; clip-path: ellipse(80% 64% at 100% 32%); }
.home-hero__copy { z-index: 2; max-width: 780px; }
.home-hero h1 { margin: 0 0 2.2rem; font-size: clamp(5rem, 9.2vw, 10.4rem); }
.home-hero h1 em { color: var(--clay); }
.home-hero__lead { max-width: 535px; margin-bottom: 2.2rem; font-size: clamp(1rem, 1.45vw, 1.3rem); }
.home-hero__visual { position: relative; z-index: 2; width: min(100%, 660px); justify-self: end; }
.home-hero__visual picture { aspect-ratio: .82; clip-path: polygon(8% 0,100% 4%,94% 91%,63% 100%,0 93%,3% 15%); }
.home-hero__visual picture img { object-position: 53% center; }
.home-hero__visual .seal { position: absolute; right: -1.2rem; bottom: -2rem; }
.home-hero__visual .vertical-note { top: 3rem; left: -2.2rem; }
.home-hero__line { position: absolute; z-index: 1; left: 0; bottom: -2.4rem; color: var(--olive); opacity: .5; }
.hero-stagger { animation: hero-in .9s var(--ease) both; }
.hero-stagger:nth-child(2) { animation-delay: .1s; }.hero-stagger:nth-child(3) { animation-delay: .2s; }.hero-stagger:nth-child(4),.home-hero__visual { animation-delay: .3s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(25px); } }
.seal { width: 148px; aspect-ratio: 1; display: grid; place-content: center; justify-items: center; border-radius: 50%; background: var(--green); color: var(--ivory); box-shadow: 0 15px 35px rgba(31,48,39,.2); text-align: center; text-transform: uppercase; transform: rotate(-7deg); }
.seal svg { width: 50px; height: 50px; }.seal span { margin-top: .25rem; font-family: var(--serif); font-size: 1.1rem; text-transform: none; }.seal small { font-size: .5rem; letter-spacing: .18em; }
.proof-line { display: flex; min-height: 126px; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.5rem max(1rem, calc((100vw - 1340px) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-line a { display: flex; align-items: center; gap: 1rem; }
.proof-line strong { font-family: var(--serif); font-size: 2.3rem; font-weight: 400; line-height: 1; }.proof-line strong span { color: var(--clay); font-family: var(--sans); font-size: 1.3rem; }.proof-line small { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.proof-line p { display: flex; align-items: center; gap: 1.25rem; margin: 0; font-size: .69rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }.proof-line i, .values-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }
.manifesto { position: relative; display: grid; grid-template-columns: .65fr 1.3fr 1fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; overflow: hidden; }
.manifesto h2 { margin: 0; font-size: clamp(3.5rem, 6.4vw, 7.2rem); }.manifesto h2 em { color: var(--clay); }.manifesto__content { padding-top: 3rem; }.manifesto__content p { margin-bottom: 1.5rem; }.manifesto__content .text-link { margin-top: 1rem; }.manifesto__mark { position: absolute; right: -7rem; bottom: -8rem; width: 290px; opacity: .08; }
.services { background: var(--paper); }
.service-row { display: grid; grid-template-columns: .25fr 1.1fr 1.2fr auto; gap: 2rem; align-items: center; min-height: 150px; border-top: 1px solid var(--line); transition: padding .35s, color .35s, background .35s; }
.service-row:last-child { border-bottom: 1px solid var(--line); }.service-row:hover { padding-inline: 1.5rem; background: var(--green); color: var(--ivory); }.service-row__number { font-size: .68rem; letter-spacing: .14em; }.service-row h3 { margin: 0; font-size: clamp(2.1rem, 3.6vw, 4rem); }.service-row p { max-width: 425px; margin: 0; }.service-row:hover .round-arrow { background: var(--ivory); color: var(--green); transform: rotate(45deg); }
.wedding-feature { min-height: 850px; display: grid; grid-template-columns: 58% 42%; background: var(--green); color: var(--ivory); }
.wedding-feature__image { position: relative; padding: clamp(1rem, 3vw, 3.5rem); padding-right: 0; }.wedding-feature__image picture { height: 100%; min-height: 720px; clip-path: polygon(0 5%,95% 0,100% 92%,5% 100%); }.wedding-feature__image img { object-position: center 43%; }
.wedding-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 8rem); }.wedding-feature__copy h2 { font-size: clamp(4rem, 6.7vw, 7.5rem); }.wedding-feature__copy h2 em { color: var(--rose); }.wedding-feature__copy p { max-width: 420px; margin-bottom: 2rem; }.wedding-feature__copy .button { align-self: start; }
.review-feature { position: relative; display: grid; grid-template-columns: .35fr 1.4fr .65fr; gap: 3rem; align-items: end; }.review-feature blockquote { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 6.4vw, 7.2rem); line-height: .98; }.review-feature > div { display: flex; justify-content: space-between; grid-column: 2; border-top: 1px solid var(--line); padding-top: 1rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; }.review-feature cite { font-style: normal; }.review-feature__aside { max-width: 280px; margin-bottom: 0; }
.jessica-teaser { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--rose); background: color-mix(in srgb, var(--rose) 68%, var(--ivory)); }.jessica-teaser__collage { position: relative; min-height: 620px; }.jessica-teaser__collage picture:first-child { position: absolute; top: 0; left: 0; width: 66%; height: 90%; clip-path: polygon(3% 3%,97% 0,100% 95%,8% 100%,0 28%); }.jessica-teaser__collage picture:nth-child(2) { position: absolute; right: 0; bottom: 0; width: 43%; height: 55%; border: .7rem solid var(--ivory); transform: rotate(4deg); }.jessica-teaser__collage > span { position: absolute; z-index: 3; top: 1rem; right: 12%; color: var(--clay); font-family: var(--serif); font-size: 11rem; line-height: 1; }.jessica-teaser__copy h2 { font-size: clamp(4.5rem, 8vw, 8.5rem); }.jessica-teaser__copy p { max-width: 450px; margin-bottom: 2rem; font-size: 1.1rem; }
.contact-band { display: flex; min-height: 420px; align-items: center; justify-content: space-between; gap: 3rem; padding: 5rem max(1rem, calc((100vw - 1340px) / 2)); background: var(--ivory-dark); }.contact-band h2 { margin: 0; font-size: clamp(4.5rem, 9vw, 9.5rem); }

/* Weddings */
.wedding-hero { min-height: 100svh; display: grid; grid-template-columns: 48% 52%; align-items: center; padding: 9rem 0 3.5rem max(1rem, calc((100vw - 1340px) / 2)); background: var(--green); color: var(--ivory); }.wedding-hero .page-intro { padding-right: clamp(2rem, 5vw, 6rem); }.wedding-hero h1 em { color: var(--rose); }.wedding-hero__image { position: relative; height: calc(100svh - 11rem); min-height: 680px; }.wedding-hero__image picture { height: 100%; clip-path: polygon(5% 0,100% 4%,100% 100%,0 95%); }.wedding-hero__image .vertical-note { left: 0; bottom: 4rem; padding: .6rem .3rem; background: var(--clay); }
.wedding-scope { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6rem; }.wedding-scope h2 { font-size: clamp(3.7rem, 6.5vw, 7.2rem); }.scope-list { display: grid; grid-template-columns: 1fr 1fr; align-content: center; }.scope-list span { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--line); padding: 1.3rem 0; font-family: var(--serif); font-size: 1.5rem; }.scope-list i { font-family: var(--sans); font-size: .6rem; font-style: normal; letter-spacing: .1em; }
.process-video { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 11rem); align-items: center; background: var(--rose); background: color-mix(in srgb, var(--rose) 55%, var(--ivory)); }.process-video__copy h2 { font-size: clamp(4rem, 7vw, 7.7rem); }.process-video__copy p { max-width: 520px; }.quiet-label { display: inline-block; margin-top: 2rem; border-top: 1px solid var(--line); padding-top: .8rem; font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }.process-video__media { width: min(100%, 430px); margin: 0 auto; padding: 1rem; background: var(--ivory); transform: rotate(1.2deg); box-shadow: 0 30px 70px rgba(31,48,39,.18); }.process-video video { width: 100%; aspect-ratio: 9/16; background: var(--green); object-fit: cover; }.process-video figcaption { display: flex; justify-content: space-between; padding: .8rem 0 .1rem; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.natural-process { background: var(--paper); }.natural-process header { display: grid; grid-template-columns: .35fr 1fr; align-items: end; margin-bottom: 5rem; }.natural-process h2 { margin: 0; font-size: clamp(4rem, 7vw, 8rem); }.steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }.steps article { min-height: 290px; border-right: 1px solid var(--line); padding: 1.5rem; }.steps article:first-child { padding-left: 0; }.steps article:last-child { border-right: 0; }.steps span { font-size: .65rem; letter-spacing: .1em; }.steps h3 { margin-top: 4rem; font-size: 2rem; }.steps p { font-size: .9rem; }
.wedding-gallery { overflow: hidden; }.wedding-gallery__grid { display: grid; grid-template-columns: 1.4fr .7fr; grid-template-rows: auto auto; gap: clamp(1rem, 3vw, 3rem); align-items: start; }.wedding-gallery figure { margin: 0; }.wedding-gallery figure:first-child { grid-row: 1/3; }.wedding-gallery figure:nth-child(2) { width: 78%; margin-left: 10%; }.wedding-gallery figure:nth-child(3) { margin-left: -12%; }.wedding-gallery picture { aspect-ratio: .82; }.wedding-gallery figure:nth-child(3) picture { aspect-ratio: 1.2; }.wedding-gallery figcaption { padding-top: .6rem; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }

/* Flowers */
.flowers-hero { min-height: 100svh; display: grid; grid-template-columns: 53% 47%; align-items: center; padding: 9rem max(1rem, calc((100vw - 1340px) / 2)) 4rem; }.flowers-hero h1 { font-size: clamp(3.8rem, 6.8vw, 7.8rem); }.flowers-hero h1 em { color: var(--clay); }.flowers-hero__collage { position: relative; min-height: 690px; }.flowers-hero__collage picture:first-child { position: absolute; top: 0; right: 0; width: 84%; height: 67%; clip-path: polygon(7% 0,100% 5%,94% 100%,0 91%); }.flowers-hero__collage picture:nth-child(2) { position: absolute; left: 0; bottom: 0; width: 48%; height: 42%; border: .7rem solid var(--ivory); transform: rotate(-4deg); }.flowers-hero__collage > span { position: absolute; right: -1rem; bottom: 2rem; font-size: .65rem; font-weight: 600; line-height: 1.5; letter-spacing: .15em; writing-mode: vertical-rl; }
.intentions { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7rem; background: var(--paper); }.intentions h2 { font-size: clamp(3.8rem, 6.5vw, 7rem); }.intention-list > div { display: grid; grid-template-columns: .25fr 1fr; align-items: center; min-height: 100px; border-top: 1px solid var(--line); }.intention-list > div:last-child { border-bottom: 1px solid var(--line); }.intention-list span { font-size: .62rem; }.intention-list h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.1rem); }
.availability-note { display: grid; grid-template-columns: 1.2fr .8fr; gap: 6rem; padding: var(--pad) max(1rem, calc((100vw - 1100px) / 2)); background: var(--clay); color: white; }.availability-note h2 { font-size: clamp(4rem, 6.5vw, 7.2rem); }.availability-note > div:last-child { padding-top: 4rem; }
.bouquet-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 7rem); }.bouquet-gallery figure { margin: 0; }.bouquet-gallery figure:nth-child(even) { margin-top: 9rem; }.bouquet-gallery picture { aspect-ratio: .9; }.bouquet-gallery figure:nth-child(3) picture { aspect-ratio: 1.07; }.bouquet-gallery figcaption { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: .8rem; }.bouquet-gallery figcaption span { font-family: var(--serif); font-size: 1.5rem; }.bouquet-gallery figcaption small { padding-top: .4rem; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.memorial { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7rem; align-items: center; background: var(--ink); color: var(--ivory); }.memorial h2 { font-size: clamp(4rem, 8vw, 8rem); }.memorial__copy p { max-width: 430px; margin-bottom: 2rem; }.memorial__image picture { aspect-ratio: 1.25; filter: saturate(.75); }.memorial__image img { object-position: center 35%; }

/* Plants */
.plants-hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 55% 45%; align-items: center; padding: 9rem max(1rem, calc((100vw - 1340px) / 2)) 5rem; background: var(--green); color: var(--ivory); overflow: hidden; }.plants-hero h1 em { color: #bdcc9e; }.plants-hero__drawing { position: relative; height: 710px; display: grid; place-items: center; }.plants-hero__drawing svg { height: 90%; color: #bdcc9e; }.plants-hero__drawing i { position: absolute; right: 0; bottom: 3rem; color: var(--rose); font-size: .65rem; font-style: normal; font-weight: 600; letter-spacing: .18em; writing-mode: vertical-rl; }.plant-label { position: absolute; top: 5rem; left: 2rem; font-family: var(--serif); font-size: 2rem; line-height: .7; }.plant-label small { font-family: var(--sans); font-size: .52rem; letter-spacing: .13em; text-transform: uppercase; }.plants-hero > .botanical-line { position: absolute; bottom: -1rem; left: 0; opacity: .25; }
.plant-worlds { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }.plant-worlds article { min-height: 480px; border-right: 1px solid var(--line); padding: 1.5rem clamp(1.5rem, 4vw, 4.5rem); }.plant-worlds article:last-child { border-right: 0; }.plant-worlds span { font-size: .65rem; letter-spacing: .1em; }.plant-worlds h2 { margin-top: 9rem; font-size: clamp(3.4rem, 5vw, 5.5rem); }.plant-worlds p { max-width: 310px; }
.botanical-composition { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8rem; align-items: center; background: #d7d5be; }.botanical-composition h2 { font-size: clamp(4rem, 7vw, 7.5rem); }.botanical-composition__copy p { max-width: 450px; }.botanical-composition__image { position: relative; }.botanical-composition__image picture { aspect-ratio: .92; clip-path: ellipse(46% 49% at 50% 50%); }.botanical-composition__image > span { position: absolute; right: -2rem; bottom: 3rem; font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.plant-quote { text-align: center; }.plant-quote blockquote { max-width: 1050px; margin: 2rem auto; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 8rem); line-height: 1; }.plant-quote cite { font-size: .65rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

/* About */
.about-hero { min-height: 100svh; display: grid; grid-template-columns: 58% 42%; align-items: center; padding: 9rem max(1rem, calc((100vw - 1340px) / 2)) 4rem; }.about-hero h1 em { color: var(--clay); }.about-hero__portrait { position: relative; height: 720px; }.about-hero__portrait picture { height: 88%; clip-path: polygon(3% 0,100% 7%,95% 100%,0 94%); }.about-hero__portrait > div { position: absolute; bottom: 0; left: -3rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: var(--green); color: var(--ivory); }.about-hero__portrait svg { width: 60px; }.about-hero__portrait span { font-family: var(--serif); font-size: 1.8rem; line-height: .75; }.about-hero__portrait small { font-family: var(--sans); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.about-story { display: grid; grid-template-columns: .5fr 1.2fr .8fr; gap: 5rem; background: var(--paper); }.about-story h2 { font-size: clamp(3.7rem, 6.3vw, 7rem); }.about-story > div:last-child { padding-top: 5rem; }.values-strip { min-height: 135px; display: flex; align-items: center; justify-content: space-around; gap: 1rem; padding: 1.5rem 4vw; background: var(--clay); color: white; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3rem); }
.reviews-editorial { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; }.reviews-editorial h2 { font-size: clamp(3.6rem, 6vw, 6.7rem); }.reviews-editorial__list blockquote { display: grid; grid-template-columns: .15fr 1fr; border-top: 1px solid var(--line); padding: 1.5rem 0 2.5rem; }.reviews-editorial__list blockquote:last-child { border-bottom: 1px solid var(--line); }.reviews-editorial__list blockquote span { padding-top: .7rem; font-family: var(--sans); font-size: .62rem; }.reviews-editorial__list blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.7rem); line-height: 1.05; }.reviews-editorial__list cite { grid-column: 2; margin-top: 1rem; font-size: .62rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }.google-rating { grid-column: 2; display: flex; width: max-content; align-items: center; gap: 1.2rem; margin-top: 1.5rem; }.google-rating strong { font-family: var(--serif); font-size: 4.8rem; font-weight: 400; }.google-rating > span { color: var(--clay); letter-spacing: .1em; }.google-rating small { display: block; color: var(--green); font-size: .55rem; letter-spacing: .09em; text-transform: uppercase; }
.local-note { display: grid; grid-template-columns: 1.3fr .7fr; gap: 5rem; align-items: end; background: var(--rose); }.local-note h2 { margin: 0; font-size: clamp(4rem, 7vw, 7.7rem); }.local-note > p { max-width: 400px; font-size: 1.15rem; }

/* Contact and 404 */
.contact-page { min-height: 100svh; padding: 10rem max(1rem, calc((100vw - 1340px) / 2)) var(--pad); }.contact-page > header { display: grid; grid-template-columns: .35fr 1fr .7fr; gap: 3rem; align-items: end; }.contact-page h1 { grid-column: 2; margin: 0; font-size: clamp(5rem, 9vw, 10rem); }.contact-page header > p:last-child { margin-bottom: 1.8rem; }.contact-page__details { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; gap: 1px; margin-top: 6rem; background: var(--line); }.contact-page__details > div { min-height: 280px; display: flex; flex-direction: column; align-items: start; background: var(--ivory); padding: 2rem; }.contact-page__details span { margin-bottom: 3rem; font-size: .63rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }.contact-page__details a { border-bottom: 1px solid currentColor; }.contact-page__details .contact-page__large { margin-bottom: .7rem; border: 0; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 4rem); line-height: 1; }.contact-page__details small { font-size: .65rem; }.contact-page__notes { display: grid; grid-template-columns: .25fr 1fr 1fr; gap: 4rem; margin-top: 5rem; border-top: 1px solid var(--line); padding-top: 2rem; }.contact-page__notes svg { width: 90px; }.contact-page__notes h2 { font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.map-band { min-height: 520px; display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: 5rem max(1rem, calc((100vw - 1340px) / 2)); background: var(--green); color: var(--ivory); }.map-band h2 { margin: 0; font-size: clamp(4.5rem, 8vw, 9rem); }
.not-found { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 9rem 1rem 5rem; text-align: center; overflow: hidden; }.not-found > svg:first-child { width: 90px; margin-bottom: 1rem; }.not-found > span { position: absolute; z-index: 0; color: var(--rose); font-family: var(--serif); font-size: 42vw; line-height: 1; opacity: .22; }.not-found h1,.not-found p,.not-found a,.not-found > svg:first-child,.not-found .eyebrow { z-index: 1; }.not-found h1 { margin: 0 0 1.5rem; font-size: clamp(4.5rem, 9vw, 10rem); }.not-found p:not(.eyebrow) { max-width: 480px; }.not-found .button { margin-top: 1rem; }.not-found .botanical-line { position: absolute; bottom: 1rem; opacity: .3; }

/* Editorial CTA */
.editorial-cta { min-height: 520px; display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: 5rem max(1rem, calc((100vw - 1340px) / 2)); background: var(--green); color: var(--ivory); }.editorial-cta h2 { margin: 0; font-size: clamp(4.5rem, 8vw, 9rem); }.editorial-cta h2 em { color: var(--rose); }.editorial-cta--ivory { background: var(--ivory-dark); color: var(--green); }.editorial-cta--ivory h2 em { color: var(--clay); }

/* Footer */
.site-footer { position: relative; padding: 7rem max(1rem, calc((100vw - 1340px) / 2)) 2rem; background: var(--green); color: var(--ivory); overflow: hidden; }.site-footer > .botanical-line { position: absolute; top: -1rem; left: 0; color: var(--rose); opacity: .3; }.site-footer__top { display: flex; align-items: end; justify-content: space-between; gap: 2rem; border-bottom: 1px solid rgba(243,238,229,.22); padding: 4rem 0 5rem; }.site-footer__phrase { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.5rem); line-height: .95; text-align: right; }.site-footer__grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 5rem; padding: 4rem 0; }.site-footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; }.site-footer__grid span { margin-bottom: 1.5rem; color: var(--rose); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }.site-footer__grid p { margin-bottom: .5rem; }.site-footer__grid a { border-bottom: 1px solid transparent; }.site-footer__grid a:hover { border-color: currentColor; }.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(243,238,229,.22); padding-top: 1.5rem; font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; }.site-footer__bottom svg { width: 50px; }

/* Contact sheet */
.contact-modal { position: fixed; z-index: 200; inset: 0; display: flex; justify-content: flex-end; background: rgba(18,27,22,.66); backdrop-filter: blur(5px); animation: modal-fade .3s both; }.contact-sheet { position: relative; width: min(100%, 560px); height: 100%; overflow-y: auto; padding: clamp(2rem, 6vw, 5rem); background: var(--ivory); animation: sheet-in .5s var(--ease) both; }.contact-sheet__close { position: absolute; top: 1.5rem; right: 1.5rem; border: 0; border-bottom: 1px solid; padding: 0 0 .2rem; background: none; cursor: pointer; font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; }.contact-sheet__mark { width: 75px; margin-bottom: 4rem; }.contact-sheet h2 { margin-bottom: 3rem; font-size: clamp(3.6rem, 6vw, 6rem); }.contact-options { border-top: 1px solid var(--line); }.contact-options a { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 1.25rem 0; font-family: var(--serif); font-size: 1.7rem; line-height: 1.2; }.contact-options a > span { display: flex; flex-direction: column; }.contact-options small { margin-bottom: .3rem; font-family: var(--sans); font-size: .56rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }.contact-options a > span + span { font-family: var(--sans); }.contact-sheet__note { margin-top: 3rem; font-size: .78rem; }.contact-options a:hover { color: var(--clay); }.contact-options a > span:last-child { transition: transform .3s; }.contact-options a:hover > span:last-child { transform: rotate(45deg); }
.contact-modal[hidden] { display: none; }
@keyframes modal-fade { from { opacity: 0; } } @keyframes sheet-in { from { transform: translateX(100%); } }

@media (hover: hover) { picture:hover img { transform: scale(1.025); } }

@media (max-width: 980px) {
  .site-header { height: 72px; }.site-header.is-scrolled { height: 62px; }.brand-link svg { width: 40px; }.menu-toggle { position: relative; z-index: 2; display: flex; align-items: center; gap: .8rem; border: 0; background: transparent; cursor: pointer; font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }.menu-toggle__mark { width: 30px; height: 8px; border-top: 1px solid; border-bottom: 1px solid; }
  .main-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; justify-content: center; gap: 2.5rem; padding: 7rem 2rem 2rem; background: var(--green); color: var(--ivory); opacity: 0; transform: translateY(-10px); transition: opacity .35s, transform .35s, visibility .35s; }.main-nav.is-open { visibility: visible; opacity: 1; transform: none; }.main-nav__links { flex-direction: column; align-items: stretch; gap: 0; }.main-nav__links a { border-bottom: 1px solid rgba(243,238,229,.2); padding: .6rem 0; font-family: var(--serif); font-size: clamp(2.6rem, 9vw, 5rem); font-weight: 400; letter-spacing: -.02em; text-transform: none; }.main-nav__links a::after { display: none; }.main-nav > .button { align-self: start; background: var(--clay); }.main-nav__mobile-foot { display: flex; justify-content: space-between; border-top: 1px solid rgba(243,238,229,.2); padding-top: 1rem; font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }.menu-is-open .site-header { color: var(--ivory); }.menu-is-open .brand-link { color: var(--ivory); }
  .home-hero,.wedding-hero,.flowers-hero,.plants-hero,.about-hero { min-height: auto; grid-template-columns: 1fr; gap: 3rem; padding: 8rem 1rem 4rem; }.home-hero__copy { padding-top: 2rem; }.home-hero__visual { width: 86%; }.home-hero__visual picture { aspect-ratio: 1; }.home-hero__visual .seal { right: -12%; }.home-hero__line { bottom: -1rem; }.proof-line { align-items: flex-start; flex-direction: column; padding-block: 2rem; }.manifesto { grid-template-columns: .4fr 1.2fr; }.manifesto__content { grid-column: 2; padding-top: 0; }.service-row { grid-template-columns: .2fr 1fr auto; }.service-row p { grid-column: 2; }.service-row .round-arrow { grid-row: 1/3; grid-column: 3; }.wedding-feature { min-height: auto; grid-template-columns: 1fr; }.wedding-feature__image { padding: 1rem; }.wedding-feature__image picture { min-height: 620px; }.review-feature { grid-template-columns: 1fr; }.review-feature blockquote,.review-feature > div { grid-column: 1; }.review-feature__aside { max-width: 500px; }.jessica-teaser { grid-template-columns: 1fr; }.contact-band,.editorial-cta,.map-band { align-items: flex-start; flex-direction: column; justify-content: center; }
  .wedding-hero { padding-right: 0; }.wedding-hero .page-intro { padding-right: 1rem; }.wedding-hero__image { height: 75svh; min-height: 570px; }.wedding-scope,.process-video,.intentions,.availability-note,.memorial,.botanical-composition,.about-story,.reviews-editorial,.local-note { grid-template-columns: 1fr; gap: 3rem; }.steps { grid-template-columns: 1fr 1fr; }.steps article { border-bottom: 1px solid var(--line); }.natural-process header { grid-template-columns: 1fr; }.process-video__media { width: min(80%,430px); }.intentions { gap: 2rem; }.availability-note > div:last-child,.about-story > div:last-child { padding-top: 0; }.plant-worlds { grid-template-columns: 1fr; }.plant-worlds article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding-block: 4rem; }.plant-worlds h2 { margin-top: 4rem; }.about-hero__portrait { width: 75%; justify-self: end; }.reviews-editorial__list,.google-rating { grid-column: 1; }.contact-page > header { grid-template-columns: 1fr; }.contact-page h1 { grid-column: 1; }.contact-page__details { grid-template-columns: 1fr 1fr; }.contact-page__notes { grid-template-columns: .3fr 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 2rem); --pad: 5.5rem; }
  body { font-size: 15px; }.button { width: 100%; justify-content: space-between; }.button-row { align-items: stretch; flex-direction: column; }.button-row .text-link { align-self: flex-start; }.page-intro h1 { font-size: clamp(3.55rem, 17vw, 5.2rem); }.home-hero { padding-top: 7.5rem; }.home-hero h1 { font-size: clamp(4.5rem, 21vw, 7rem); }.home-hero__lead { margin-bottom: 1.7rem; }.home-hero__visual { width: 92%; margin-top: 1rem; }.home-hero__visual .seal { width: 112px; right: -1%; bottom: -2rem; }.home-hero__visual .seal svg { width: 38px; }.home-hero__visual .vertical-note { left: -1rem; }.proof-line p { flex-wrap: wrap; gap: .7rem; }.proof-line i { display: none; }.manifesto { grid-template-columns: 1fr; }.manifesto .section-number,.manifesto__mark { display: none; }.manifesto__content { grid-column: 1; }.manifesto h2,.section-header h2 { font-size: 3.8rem; }.section-header { align-items: flex-start; flex-direction: column; }.service-row { min-height: 190px; grid-template-columns: .2fr 1fr auto; gap: .8rem; padding-block: 1.5rem; }.service-row h3 { font-size: 2.2rem; }.service-row p { padding-right: .5rem; }.service-row .round-arrow { width: 2.7rem; height: 2.7rem; }.service-row:hover { padding-inline: .5rem; }.wedding-feature__image picture { min-height: 480px; }.wedding-feature__copy { padding: 4rem 1rem 5rem; }.wedding-feature__copy h2 { font-size: 4.2rem; }.review-feature { gap: 1.5rem; }.review-feature blockquote { font-size: 3.6rem; }.jessica-teaser__collage { min-height: 490px; }.jessica-teaser__collage > span { font-size: 8rem; }.jessica-teaser__copy h2 { font-size: 4.5rem; }.contact-band { min-height: 430px; }.contact-band h2 { font-size: 4.6rem; }
  .wedding-hero { padding-top: 8rem; }.wedding-hero__image { height: 68svh; min-height: 510px; }.wedding-scope { gap: 1rem; }.wedding-scope h2 { font-size: 4rem; }.scope-list { grid-template-columns: 1fr; }.process-video { padding-inline: 1rem; }.process-video__copy h2 { font-size: 4.5rem; }.process-video__media { width: 92%; }.steps { grid-template-columns: 1fr; }.steps article { min-height: 230px; border-right: 0; padding-inline: 0; }.steps h3 { margin-top: 2.5rem; }.wedding-gallery__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }.wedding-gallery figure:first-child { grid-column: 1/3; grid-row: auto; }.wedding-gallery figure:nth-child(2) { width: 100%; margin: 0; }.wedding-gallery figure:nth-child(3) { margin: 3rem 0 0; }.wedding-gallery figure:not(:first-child) figcaption { font-size: .53rem; }
  .flowers-hero__collage { min-height: 520px; }.flowers-hero h1 { font-size: 3.65rem; }.intentions h2,.availability-note h2 { font-size: 3.8rem; }.availability-note { padding-inline: 1rem; }.bouquet-gallery { gap: 2.5rem 1rem; }.bouquet-gallery figure:nth-child(even) { margin-top: 5rem; }.bouquet-gallery figcaption { align-items: flex-start; flex-direction: column; }.bouquet-gallery figcaption span { font-size: 1.2rem; }.memorial { padding-inline: 1rem; }.memorial h2 { font-size: 4.5rem; }
  .plants-hero { min-height: 100svh; }.plants-hero__drawing { height: 500px; }.plant-label { left: 0; }.botanical-composition { padding-inline: 1rem; }.botanical-composition h2 { font-size: 4.2rem; }.botanical-composition__image > span { right: 0; }.plant-quote blockquote { font-size: 3.8rem; }
  .about-hero__portrait { width: 92%; height: 560px; }.about-hero__portrait > div { left: -1rem; }.about-story .section-number { display: none; }.about-story h2,.reviews-editorial h2,.local-note h2 { font-size: 3.8rem; }.values-strip { flex-wrap: wrap; min-height: 180px; }.reviews-editorial__list blockquote { grid-template-columns: .12fr 1fr; }.google-rating strong { font-size: 4rem; }
  .contact-page { padding-top: 8rem; }.contact-page h1 { font-size: 4.8rem; }.contact-page__details { grid-template-columns: 1fr; }.contact-page__details > div { min-height: 230px; }.contact-page__notes { grid-template-columns: 1fr; gap: 1.5rem; }.map-band h2 { font-size: 4.5rem; }.editorial-cta { min-height: 500px; }.editorial-cta h2 { font-size: 4.5rem; }.site-footer { padding-top: 5rem; }.site-footer__top { align-items: flex-start; flex-direction: column; }.site-footer__top .wordmark { font-size: 5rem; }.site-footer__phrase { text-align: left; }.site-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }.site-footer__bottom { align-items: flex-start; flex-direction: column; gap: .8rem; }.site-footer__bottom svg { position: absolute; right: 1rem; bottom: 1.2rem; }.contact-sheet { padding: 4.5rem 1.25rem 2rem; }.contact-sheet__mark { margin-bottom: 2.5rem; }.contact-options a { font-size: 1.45rem; }
}

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