:root {
  --ivory: #f7f1e9;
  --paper: #fcfaf6;
  --apricot: #e89561;
  --mustard: #e2b44b;
  --rose: #d79da1;
  --blue: #9caeb8;
  --red: #aa6463;
  --charcoal: #323333;
  --muted: #74706b;
  --line: #d9d0c6;
  --white: #fff;
  --font: "Montserrat", Arial, sans-serif;
  --content: min(1220px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--ivory); color: var(--charcoal); font-family: var(--font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: var(--content); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -70px; z-index: 1000; padding: 12px 18px; background: var(--charcoal); color: white; transition: top .2s; }
.skip-link:focus { top: 18px; }

.notice-bar { background: var(--apricot); color: var(--charcoal); border-bottom: 1px solid rgba(50,51,51,.22); }
.notice-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.notice-inner p { margin: 0; }
.notice-inner p:first-child span { display: none; }
.notice-detail { opacity: .72; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,241,233,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.header-inner { min-height: 91px; display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 13px; width: fit-content; }
.brand-symbol { width: 52px; height: 51px; display: flex; align-items: stretch; justify-content: center; gap: 2px; }
.brand-symbol i { width: 8px; display: block; border-radius: 8px 8px 2px 2px; transform-origin: bottom; }
.brand-symbol i:nth-child(1) { height: 36px; margin-top: 10px; background: var(--apricot); transform: skewY(-27deg); }
.brand-symbol i:nth-child(2) { height: 46px; background: var(--mustard); transform: skewY(-20deg); }
.brand-symbol i:nth-child(3) { height: 51px; background: var(--rose); }
.brand-symbol i:nth-child(4) { height: 45px; margin-top: 2px; background: var(--blue); transform: skewY(20deg); }
.brand-symbol i:nth-child(5) { height: 35px; margin-top: 11px; background: var(--charcoal); transform: skewY(28deg); }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-wordmark strong { font-size: 1.04rem; font-weight: 600; letter-spacing: .065em; }
.brand-wordmark small { margin-top: 7px; font-size: .46rem; font-weight: 600; letter-spacing: .22em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 35px); }
.desktop-nav a { position: relative; padding: 11px 0; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--charcoal); transition: right .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 22px; border: 1px solid var(--charcoal); border-radius: 0; background: var(--charcoal); color: white; font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .2s, background .2s; }
.button:hover, .button:focus-visible { background: transparent; color: var(--charcoal); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: .61rem; }
.button-sun { background: var(--mustard); color: var(--charcoal); border-color: var(--mustard); }
.button-sun:hover, .button-sun:focus-visible { background: transparent; color: white; border-color: white; }
.button-light { background: var(--paper); color: var(--charcoal); border-color: var(--paper); }
.button-light:hover, .button-light:focus-visible { background: transparent; color: white; border-color: white; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 5px 0; border-bottom: 1px solid currentColor; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.text-link:hover, .text-link:focus-visible { color: var(--red); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--charcoal); background: transparent; cursor: pointer; }
.menu-toggle span { width: 21px; height: 1px; display: block; margin: 5px auto; background: var(--charcoal); }
.mobile-nav { padding: 12px 24px 25px; border-top: 1px solid var(--line); background: var(--ivory); }
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.mobile-nav .button { width: 100%; margin-top: 17px; }

.hero { position: relative; overflow: hidden; background: var(--ivory); border-bottom: 1px solid var(--line); }
.hero-dots, .scallop, .hero-scribble { display: none; }
.hero-grid { width: 100%; max-width: 1480px; display: grid; grid-template-columns: minmax(460px, .82fr) minmax(0, 1.18fr); align-items: stretch; gap: 0; margin: 0 auto; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 92px max(48px, 6vw) 92px max(42px, calc((100vw - 1220px)/2)); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--red); font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; display: block; background: currentColor; }
.hero h1, .section-heading h2, .reservation-copy h2, .story-copy h2, .wedding h2, .closing-cta h2 { margin: 0; font-family: var(--font); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.hero h1 { max-width: 640px; font-size: clamp(3.5rem, 6vw, 6.65rem); }
.hero h1 em, .reservation-copy h2 em, .wedding h2 em, .closing-cta h2 em { display: inline-block; color: var(--apricot); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 550px; margin: 28px 0 31px; color: #68635e; font-size: 1rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 29px; }
.trust-list { display: grid; grid-template-columns: repeat(3, auto); gap: 19px; margin: 42px 0 0; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; font-size: .62rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.trust-list span { margin-right: 5px; color: var(--red); }
.hero-visual { min-width: 0; position: relative; border-left: 1px solid var(--line); background: #f9f3ea; }
.hero-photo-wrap { height: 680px; overflow: hidden; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-sticker { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 112px; height: 112px; border: 1px solid var(--charcoal); border-radius: 50%; background: rgba(247,241,233,.93); color: var(--charcoal); text-align: center; text-transform: uppercase; }
.hero-sticker strong { font-size: 1.05rem; font-weight: 600; }
.hero-sticker span { max-width: 76px; font-size: .5rem; font-weight: 600; letter-spacing: .1em; }
.sticker-coral { right: 28px; top: 31px; }
.sticker-sun { left: 31px; bottom: 31px; background: var(--mustard); }
.sticker-sun strong { font-size: .77rem; letter-spacing: .03em; }

.quick-choice { border-bottom: 1px solid var(--line); background: var(--paper); }
.quick-choice-grid { width: 100%; max-width: 1480px; display: grid; grid-template-columns: repeat(3, 1fr); }
.choice-card { min-width: 0; min-height: 128px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 28px clamp(24px, 4vw, 55px); border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--charcoal); text-align: left; cursor: pointer; transition: background .2s; }
.choice-card:last-child { border-right: 0; }
.choice-card:hover, .choice-card:focus-visible { background: var(--ivory); }
.choice-number { align-self: start; color: var(--red); font-size: .6rem; font-weight: 700; }
.choice-copy { min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.choice-copy strong { font-size: .9rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.choice-copy small { margin-top: 7px; color: var(--muted); font-size: .67rem; }
.choice-arrow { font-size: 1.2rem; font-weight: 300; }

.product-world { background: var(--paper); }
.heading-row { display: grid; grid-template-columns: 1fr 390px; align-items: end; gap: 60px; margin-bottom: 53px; }
.section-heading h2 { font-size: clamp(3.2rem, 5.5vw, 6rem); font-weight: 500; text-transform: uppercase; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: .95rem; line-height: 1.8; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.product-card { min-width: 0; background: var(--paper); border-right: 1px solid var(--line); transition: background .2s; }
.product-card:last-child { border-right: 0; }
.product-card:hover { background: var(--ivory); }
.product-image { height: 330px; overflow: hidden; position: relative; border-bottom: 1px solid var(--line); background: var(--ivory); }
.product-image img { width: 300%; max-width: none; height: 100%; object-fit: cover; transition: transform .5s; }
.cake-focus img { object-position: left center; transform: translateX(0); }
.praline-focus img { object-position: center; transform: translateX(-33.333%); }
.vitrine-focus img { object-position: right center; transform: translateX(-66.666%); }
.product-card:hover .product-image img { scale: 1.025; }
.product-pill { position: absolute; left: 18px; top: 18px; padding: 8px 11px; border: 1px solid rgba(50,51,51,.35); background: rgba(252,250,246,.9); font-size: .55rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.product-content { padding: 29px 29px 32px; }
.product-kicker { margin: 0 0 9px; color: var(--red); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.product-content h3 { margin: 0; font-size: 1.55rem; font-weight: 500; letter-spacing: -.025em; text-transform: uppercase; }
.product-content p:not(.product-kicker) { min-height: 78px; margin: 17px 0 22px; color: var(--muted); font-size: .83rem; line-height: 1.75; }
.card-link { padding: 5px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--charcoal); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.card-link span { margin-left: 8px; }

.flavor-strip { padding: 0 0 110px; background: var(--paper); }
.flavor-grid { display: grid; grid-template-columns: 1.55fr repeat(6, 1fr); border: 1px solid var(--line); }
.flavor-intro, .flavor-card { min-height: 150px; border-right: 1px solid var(--line); }
.flavor-card:last-child { border-right: 0; }
.flavor-intro { display: flex; flex-direction: column; justify-content: center; padding: 25px; }
.flavor-intro small { color: var(--red); font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.flavor-intro strong { margin-top: 10px; font-size: .88rem; font-weight: 600; line-height: 1.45; text-transform: uppercase; }
.flavor-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: var(--ivory); }
.flavor-card small { font-size: .54rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.flavor-dot { width: 46px; height: 46px; display: block; border-radius: 50%; box-shadow: inset -8px -10px 14px rgba(50,51,51,.07); }
.vanilla { background: #eadbb6; }.chocolate { background: #755044; }.strawberry { background: #d9979c; }.pistachio { background: #abb38c; }.mango { background: #e9b94f; }.hazelnut { background: #b9a086; }

.reservation-showcase { position: relative; overflow: hidden; background: var(--charcoal); color: white; }
.reservation-showcase::before { content: "RESERVIEREN"; position: absolute; right: -18px; top: 5px; color: rgba(255,255,255,.03); font-size: 8.5rem; font-weight: 700; letter-spacing: -.06em; }
.reservation-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 85px; }
.eyebrow-light { color: var(--apricot); }
.reservation-copy h2 { color: white; font-size: clamp(3.4rem, 5.5vw, 6rem); text-transform: uppercase; }
.reservation-copy h2 em { color: var(--mustard); }
.reservation-copy > p:not(.eyebrow) { max-width: 480px; margin: 28px 0; color: rgba(255,255,255,.65); font-size: .95rem; }
.steps-list { margin: 37px 0 39px; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.steps-list li { display: flex; align-items: center; gap: 17px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.steps-list li > span { width: 27px; flex: 0 0 auto; color: var(--mustard); font-size: .65rem; font-weight: 700; }
.steps-list div { display: flex; flex-direction: column; line-height: 1.35; }
.steps-list strong { font-size: .71rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.steps-list small { margin-top: 4px; color: rgba(255,255,255,.48); font-size: .66rem; }
.reservation-preview { position: relative; border: 1px solid rgba(255,255,255,.38); background: var(--paper); color: var(--charcoal); }
.preview-topbar { min-height: 68px; display: flex; align-items: center; gap: 13px; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.preview-logo { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--apricot); color: white; font-size: .67rem; }
.preview-secure { margin-left: auto; color: var(--muted); font-size: .52rem; }
.preview-body { padding: 37px 43px 42px; }
.preview-progress { display: flex; align-items: center; }
.preview-progress span { width: 30px; height: 30px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: .62rem; }
.preview-progress span.active { border-color: var(--apricot); background: var(--apricot); color: white; }
.preview-progress i { height: 1px; flex: 1; background: var(--line); }
.preview-step-label { margin: 29px 0 6px; color: var(--red); font-size: .55rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.preview-body h3 { max-width: 440px; margin: 0 0 23px; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; text-transform: uppercase; }
.preview-options { display: grid; gap: 8px; }
.preview-option { min-height: 67px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 10px 14px; border: 1px solid var(--line); }
.preview-option.selected { border-color: var(--red); background: #f7e9e7; }
.option-swatch { width: 38px; height: 38px; display: block; }
.coral { background: var(--apricot); }.sun { background: var(--mustard); }.blue { background: var(--blue); }
.preview-option div { display: flex; flex-direction: column; line-height: 1.3; }
.preview-option strong { font-size: .69rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.preview-option small { color: var(--muted); font-size: .61rem; }
.preview-option b { color: var(--red); font-size: .7rem; }
.preview-button { width: 100%; min-height: 50px; display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding: 0 18px; border: 1px solid var(--charcoal); background: var(--charcoal); color: white; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.preview-note { position: absolute; right: 0; bottom: -33px; color: rgba(255,255,255,.5); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }

.story { background: var(--ivory); }
.story-grid { display: grid; grid-template-columns: .66fr 1.25fr .72fr; align-items: center; gap: 70px; }
.story-year { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--mustard); }
.story-year > span { font-size: .62rem; font-weight: 700; letter-spacing: .25em; }
.story-year strong { margin-top: 12px; font-size: 6rem; font-weight: 500; letter-spacing: -.09em; line-height: .65; text-align: center; }
.story-sun { display: none; }
.story-copy h2 { font-size: clamp(2.5rem, 4.2vw, 4.7rem); text-transform: uppercase; }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.text-link-dark { margin-top: 12px; }
.story blockquote { position: relative; margin: 0; padding: 47px 31px 35px; border: 1px solid var(--line); background: var(--paper); }
.story blockquote > span { position: absolute; top: -3px; left: 22px; color: var(--apricot); font-size: 4.2rem; font-weight: 300; line-height: 1; }
.story blockquote p { margin: 17px 0; font-size: 1.35rem; font-weight: 500; line-height: 1.3; }
.story blockquote cite { color: var(--muted); font-size: .55rem; font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.wedding { padding: 95px 0; background: var(--apricot); color: var(--charcoal); border-block: 1px solid rgba(50,51,51,.22); }
.wedding-inner { display: grid; grid-template-columns: 130px 1fr 420px; align-items: center; gap: 42px; }
.wedding-rings { width: 112px; height: 90px; position: relative; }
.wedding-rings span { position: absolute; width: 65px; height: 65px; border: 1px solid var(--charcoal); border-radius: 50%; }
.wedding-rings span:first-child { left: 3px; top: 4px; }.wedding-rings span:last-child { right: 4px; bottom: 0; }
.wedding .eyebrow { color: var(--charcoal); }
.wedding h2 { font-size: clamp(3rem, 5vw, 5.3rem); text-transform: uppercase; }
.wedding h2 em { color: var(--paper); }
.wedding-copy p { margin: 0 0 27px; font-size: .93rem; }

.locations { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.location-card { min-height: 265px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; gap: 10px 27px; padding: 34px; border-right: 1px solid var(--line); }
.location-card:last-child { border-right: 0; }
.location-main { background: #f4e5cf; }.location-secondary { background: #e4eaec; }
.location-index { grid-row: 1/3; color: var(--red); font-size: .6rem; font-weight: 700; }
.location-label { margin: 0 0 8px; font-size: .56rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.location-card h3 { margin: 0 0 14px; font-size: 2.1rem; font-weight: 500; letter-spacing: -.035em; text-transform: uppercase; }
.location-card address { color: var(--muted); font-size: .82rem; font-style: normal; }
.location-actions { grid-column: 2; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 19px; border-top: 1px solid rgba(50,51,51,.2); }
.location-actions a { border-bottom: 1px solid currentColor; font-size: .59rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.closing-cta { padding: 110px 0 120px; position: relative; overflow: hidden; background: var(--rose); text-align: center; }
.closing-scoop { display: none; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing-cta .eyebrow { color: var(--charcoal); }
.closing-cta h2 { font-size: clamp(3.1rem, 6vw, 6.5rem); text-transform: uppercase; }
.closing-cta h2 em { color: var(--paper); }
.closing-cta .button { margin-top: 39px; }

.site-footer { padding: 80px 0 25px; background: var(--charcoal); color: rgba(255,255,255,.67); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1.2fr; gap: 56px; }
.footer-logo { display: flex; align-items: center; gap: 13px; color: white; }
.footer-logo .brand-symbol { scale: .9; }
.footer-brand p { max-width: 250px; margin: 21px 0 0; font-size: .71rem; }
.site-footer h3 { margin: 0 0 19px; color: white; font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.site-footer a { width: fit-content; display: block; margin: 9px 0; font-size: .66rem; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--mustard); }
.footer-news p { margin: 0 0 17px; font-size: .7rem; }
.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,.4); }
.newsletter-form input { width: 100%; min-width: 0; padding: 11px 4px; border: 0; outline: 0; background: transparent; color: white; font-size: .72rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.42); }
.newsletter-form button { width: 40px; border: 0; background: transparent; color: var(--mustard); cursor: pointer; }
.newsletter-message { min-height: 1.3em; margin-top: 10px !important; color: #f1d78e; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .58rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 25px; }.footer-bottom a { display: inline; margin: 0; font-size: inherit; }

.reservation-modal { width: min(820px, calc(100% - 28px)); max-height: min(850px, calc(100vh - 28px)); padding: 0; overflow: auto; border: 0; border-radius: 0; background: var(--paper); color: var(--charcoal); box-shadow: 0 45px 120px rgba(0,0,0,.28); }
.reservation-modal::backdrop { background: rgba(35,35,35,.72); backdrop-filter: blur(5px); }
.modal-shell { padding: 35px 42px 40px; }
.modal-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.modal-kicker { color: var(--red); font-size: .56rem; font-weight: 700; letter-spacing: .15em; }
.modal-top h2 { margin: 7px 0 0; font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; text-transform: uppercase; }
.modal-close { width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid var(--charcoal); border-radius: 0; background: transparent; font-size: 1.45rem; font-weight: 300; cursor: pointer; }
.modal-progress { display: flex; align-items: center; margin: 34px 0 31px; }
.modal-progress > span { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; position: relative; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: .64rem; }
.modal-progress > span.active { border-color: var(--apricot); background: var(--apricot); color: white; }.modal-progress > span.complete { border-color: var(--charcoal); background: var(--charcoal); color: white; }
.modal-progress small { position: absolute; top: 44px; color: var(--charcoal); font-size: .5rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.modal-progress i { height: 1px; flex: 1; background: var(--line); }
.form-step { display: none; padding: 18px 0 4px; }.form-step.active { display: block; animation: enter .22s ease both; }
@keyframes enter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.form-step fieldset { margin: 0; padding: 0; border: 0; }
.modal-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.modal-product-card { min-height: 160px; display: flex; flex-direction: column; align-items: flex-start; position: relative; padding: 17px; border: 1px solid var(--line); cursor: pointer; transition: border-color .2s, background .2s; }
.modal-product-card:hover { border-color: var(--charcoal); }.modal-product-card:has(input:checked) { border-color: var(--red); background: #f7e9e7; }
.modal-product-card input { position: absolute; opacity: 0; pointer-events: none; }
.modal-product-color { width: 48px; height: 48px; display: block; }
.modal-product-card > span:nth-of-type(2) { display: flex; flex-direction: column; margin-top: 18px; line-height: 1.3; }
.modal-product-card strong { font-size: .77rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }.modal-product-card small { color: var(--muted); font-size: .62rem; }
.modal-product-card b { position: absolute; right: 13px; top: 13px; display: none; color: var(--red); font-size: .75rem; }.modal-product-card:has(input:checked) b { display: block; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-step label:not(.modal-product-card):not(.check-label) { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; font-size: .63rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.form-step input:not([type="radio"]):not([type="checkbox"]), .form-step select, .form-step textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: white; color: var(--charcoal); font-size: .8rem; }
.form-step textarea { min-height: 105px; resize: vertical; }.form-step input:focus, .form-step select:focus, .form-step textarea:focus { border-color: var(--red); }
.form-hint { margin: 3px 0; padding: 13px 14px; border: 1px solid #c9d1d5; background: #e9eef0; font-size: .66rem; }
.check-label { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; color: var(--muted); font-size: .67rem; cursor: pointer; }.check-label input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--red); }
.form-navigation { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: 31px; padding-top: 23px; border-top: 1px solid var(--line); }
.button-back { padding: 9px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: .61rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }.button-next { margin-left: auto; }
.success-step { padding: 22px 15px 10px; text-align: center; }.success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--apricot); color: white; font-size: 1.5rem; }.success-step h3 { margin: 8px 0 13px; font-size: 2rem; font-weight: 500; line-height: 1.1; text-transform: uppercase; }.success-step p:not(.modal-kicker) { max-width: 540px; margin: 0 auto 27px; color: var(--muted); font-size: .82rem; }.success-step .modal-finish { margin: 0 auto; }

@media (max-width: 1080px) {
  :root { --content: min(100% - 44px, 940px); }
  .header-inner { grid-template-columns: 220px 1fr auto; gap: 20px; }.desktop-nav { gap: 16px; }.desktop-nav a { font-size: .61rem; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }.hero-copy { padding-left: 40px; padding-right: 38px; }.hero-photo-wrap { height: 620px; }
  .flavor-grid { grid-template-columns: 1.4fr repeat(3,1fr); }.flavor-intro { grid-row: span 2; }.flavor-card:nth-child(4) { border-right: 0; }.flavor-card:nth-child(n+5) { border-top: 1px solid var(--line); }
  .story-grid { grid-template-columns: .65fr 1.35fr; }.story blockquote { grid-column: 2; }.wedding-inner { grid-template-columns: 100px 1fr 340px; }
}

@media (max-width: 840px) {
  :root { --content: min(100% - 32px, 680px); }
  .section { padding: 90px 0; }.header-inner { grid-template-columns: 1fr auto; min-height: 79px; }.desktop-nav, .header-cta { display: none; }.menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }.hero-copy { padding: 75px max(28px, calc((100vw - 680px)/2)) 65px; }.hero h1 { max-width: 630px; }.hero-visual { border-left: 0; border-top: 1px solid var(--line); }.hero-photo-wrap { height: min(620px, 75vw); }
  .quick-choice-grid { grid-template-columns: 1fr; }.choice-card { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line); }.choice-card:last-child { border-bottom: 0; }
  .heading-row { grid-template-columns: 1fr; gap: 23px; }.product-grid { grid-template-columns: 1fr; }.product-card { border-right: 0; border-bottom: 1px solid var(--line); }.product-card:last-child { border-bottom: 0; }.product-content p:not(.product-kicker) { min-height: 0; }
  .flavor-strip { padding-bottom: 90px; }.reservation-grid { grid-template-columns: 1fr; gap: 62px; }.reservation-copy { max-width: 590px; }.reservation-preview { max-width: 630px; }
  .story-grid { grid-template-columns: 1fr 1.35fr; }.story blockquote { grid-column: 1/-1; max-width: 420px; justify-self: center; }.story-year { min-height: 350px; }
  .wedding-inner { grid-template-columns: 1fr; text-align: center; }.wedding-rings { margin-inline: auto; }.wedding .eyebrow { justify-content: center; }.wedding-copy { max-width: 500px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand, .footer-news { grid-column: 1/-1; }
}

@media (max-width: 590px) {
  :root { --content: min(100% - 24px, 500px); }.notice-inner { min-height: 34px; justify-content: center; text-align: center; font-size: .58rem; }.notice-detail { display: none; }
  .brand-symbol { width: 45px; height: 45px; }.brand-symbol i { width: 7px; }.brand-symbol i:nth-child(3) { height: 45px; }.brand-wordmark strong { font-size: .9rem; }
  .hero-copy { padding: 58px 20px 51px; }.hero h1 { font-size: clamp(3.1rem, 15.5vw, 4.8rem); }.hero-lead { font-size: .9rem; }.hero-actions { align-items: stretch; flex-direction: column; width: 100%; }.hero-actions .button { width: 100%; }.hero-actions .text-link { align-self: center; }.trust-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-photo-wrap { height: 104vw; max-height: 490px; }.hero-photo-wrap img { object-position: 62% center; }.hero-sticker { width: 88px; height: 88px; }.sticker-coral { top: 17px; right: 16px; }.sticker-sun { left: 16px; bottom: 17px; }
  .choice-card { padding: 22px 18px; gap: 15px; }.choice-copy strong { font-size: .79rem; }.section { padding: 75px 0; }.section-heading h2 { font-size: 3.1rem; }.heading-row { margin-bottom: 36px; }
  .product-image { height: 260px; }.product-content { padding: 24px 21px 27px; }.product-content h3 { font-size: 1.35rem; }
  .flavor-strip { padding-bottom: 74px; }.flavor-grid { grid-template-columns: repeat(2,1fr); }.flavor-intro { grid-column: 1/-1; grid-row: auto; min-height: 115px; border-right: 0; border-bottom: 1px solid var(--line); }.flavor-card { min-height: 120px; border-top: 1px solid var(--line); }.flavor-card:nth-child(2), .flavor-card:nth-child(3) { border-top: 0; }.flavor-card:nth-child(odd) { border-right: 0; }.flavor-card:nth-child(even) { border-right: 1px solid var(--line); }
  .reservation-copy h2 { font-size: 3.45rem; }.preview-topbar { padding: 11px 12px; }.preview-secure { display: none; }.preview-body { padding: 28px 19px 31px; }.preview-body h3 { font-size: 1.8rem; }.preview-option { padding: 9px; }
  .story-grid { grid-template-columns: 1fr; gap: 42px; }.story-year { width: min(290px,80vw); min-height: 330px; margin-inline: auto; }.story-year strong { font-size: 5rem; }.story-copy { text-align: center; }.story-copy .eyebrow { justify-content: center; }.story-copy h2 { font-size: 2.7rem; }.story blockquote { grid-column: auto; }
  .wedding { padding: 73px 0; }.wedding h2 { font-size: 3.35rem; }.location-grid { grid-template-columns: 1fr; }.location-card { padding: 26px 20px; border-right: 0; border-bottom: 1px solid var(--line); gap: 8px 15px; }.location-card:last-child { border-bottom: 0; }.location-card h3 { font-size: 1.8rem; }.location-actions { align-items: flex-start; flex-direction: column; }
  .closing-cta { padding: 84px 0 92px; }.closing-cta h2 { font-size: 3.45rem; }.footer-grid { gap: 40px 24px; }.footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal-shell { padding: 25px 20px 28px; }.modal-product-grid { grid-template-columns: 1fr; }.modal-product-card { min-height: 86px; flex-direction: row; align-items: center; gap: 15px; }.modal-product-card > span:nth-of-type(2) { margin-top: 0; }.modal-product-color { width: 46px; height: 46px; flex: 0 0 auto; }.field-grid { grid-template-columns: 1fr; gap: 0; }.modal-progress small { display: none; }
}

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

/* WordPress/Astra integration */
body.opa-peters-site { overflow-x: hidden; }
.opa-peters-site #page, .opa-peters-site .site-content { max-width: none; padding: 0; }
.opa-peters-site .site-header { margin: 0; }
.admin-bar .site-header { top: 32px; }
.custom-logo-wrap .custom-logo-link { display: block; }
.custom-logo-wrap img { width: auto; max-height: 66px; }
.reservation-live { color: var(--charcoal); }
.plugin-hint { padding: 45px; border: 1px solid rgba(255,255,255,.35); background: var(--paper); }
.plugin-hint h3 { margin-top: 0; font-size: 2rem; font-weight: 500; text-transform: uppercase; }
.standard-content { min-height: 55vh; }
.standard-content h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; line-height: 1; text-transform: uppercase; }
.reservation-modal .modal-close { position: sticky; top: 14px; z-index: 4; float: right; background: var(--paper); }
.reservation-modal .modal-content { clear: both; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }
