:root {
  --lilac: #a579a5;
  --lilac-deep: #785678;
  --lilac-soft: #f3ebf3;
  --gray: #686865;
  --gray-light: #f0eff0;
  --yellow: #ffe108;
  --off-white: #faf9f7;
  --graphite: #292929;
  --white: #ffffff;
  --line: #e5e1e5;
  --success: #527965;
  --shadow: 0 24px 70px rgba(63, 43, 63, 0.1);
  --radius: 22px;
  --container: 1240px;
  --heading: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--off-white); color: var(--graphite); font: 400 1rem/1.65 var(--body); overflow-x: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 5.5vw, 5.6rem); line-height: 0.99; }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1.08; }
h3 { font-size: 1.35rem; line-height: 1.25; }
[hidden] { display: none !important; }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 18px; border-radius: 10px; background: var(--graphite); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(255, 225, 8, 0.95); outline-offset: 3px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 88px; padding: 0 max(28px, calc((100vw - var(--container)) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; background: rgba(250, 249, 247, 0.94); border-bottom: 1px solid rgba(165, 121, 165, 0.15); backdrop-filter: blur(16px); }
.brand { justify-self: start; }
.brand img { width: 194px; height: 58px; object-fit: contain; }
.header-note { display: flex; align-items: center; gap: 10px; color: var(--gray); font-size: 0.8rem; font-weight: 500; }
.header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255, 225, 8, 0.18); }
.header-contact { justify-self: end; padding: 11px 0; border-bottom: 1px solid var(--lilac); color: var(--lilac-deep); font-family: var(--heading); font-size: 0.78rem; font-weight: 700; }

.view { display: none; }
.view.is-active { display: block; }
.intro-view.is-active { display: grid; }
.intro-view { min-height: 100vh; padding: 132px max(28px, calc((100vw - var(--container)) / 2)) 58px; grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr); align-items: center; gap: clamp(48px, 7vw, 100px); background: var(--off-white); }
.intro-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--lilac-deep); font-family: var(--heading); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--yellow); }
.intro-copy h1 { max-width: 720px; margin-bottom: 28px; }
.intro-copy > p { max-width: 590px; margin-bottom: 10px; color: var(--gray); font-size: 1.05rem; }
.button { min-height: 54px; padding: 0 22px; border: 1px solid transparent; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-family: var(--heading); font-size: 0.86rem; font-weight: 800; cursor: pointer; transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.button-primary { background: var(--lilac); color: white; box-shadow: 0 12px 28px rgba(120, 86, 120, 0.2); }
.button-primary:hover { background: var(--lilac-deep); box-shadow: 0 15px 32px rgba(120, 86, 120, 0.26); }
.button-secondary { border-color: rgba(165, 121, 165, 0.48); background: white; color: var(--lilac-deep); box-shadow: none; }
.button-secondary:hover { background: var(--lilac-soft); }
.button-large { min-height: 59px; margin-top: 30px; padding-inline: 28px; }
.support-text { display: block; margin-top: 12px; color: #898586; font-size: 0.78rem; }
.intro-features { margin-top: 58px; padding-top: 26px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.intro-features div { display: flex; flex-direction: column; gap: 3px; }
.intro-features strong { color: var(--lilac-deep); font: 800 1.45rem/1 var(--heading); }
.intro-features span { color: var(--gray); font-size: 0.75rem; }
.intro-visual { position: relative; min-height: 660px; align-self: stretch; overflow: hidden; border-radius: 34px 8px 34px 8px; box-shadow: var(--shadow); }
.intro-visual > img { width: 100%; height: 100%; object-fit: cover; }
.intro-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(41, 41, 41, 0.32)); pointer-events: none; }
.visual-card { position: absolute; z-index: 2; right: 28px; bottom: 28px; width: min(330px, calc(100% - 56px)); padding: 21px 23px; border-radius: 17px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 20px 50px rgba(41, 41, 41, 0.16); backdrop-filter: blur(10px); }
.visual-card span { display: block; margin-bottom: 5px; color: var(--lilac); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.visual-card strong { display: block; font: 800 1.1rem/1.35 var(--heading); }
.yellow-accent { position: absolute; z-index: 3; top: 28px; right: 28px; width: 16px; height: 16px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 10px rgba(255, 225, 8, 0.2); }

.builder { min-height: 100vh; padding: 118px 0 0; background: linear-gradient(180deg, #f7f3f7 0, var(--off-white) 280px); }
.progress-area { width: min(var(--container), calc(100% - 56px)); margin: 0 auto 36px; }
.progress-copy { display: none; }
.progress-track { display: none; }
.progress-steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); }
.progress-steps li { position: relative; }
.progress-steps li::after { content: ""; position: absolute; z-index: 0; top: 19px; left: 50%; width: 100%; height: 1px; background: #d9d3d9; }
.progress-steps li:last-child::after { display: none; }
.progress-steps button { position: relative; z-index: 1; width: 100%; padding: 0; border: 0; background: transparent; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; color: #9b979a; text-align: left; cursor: default; }
.progress-steps li.is-complete button, .progress-steps li.is-active button { color: var(--lilac-deep); cursor: pointer; }
.progress-steps button span { width: 39px; height: 39px; border: 1px solid #d9d3d9; border-radius: 50%; background: var(--off-white); display: grid; place-items: center; font: 700 0.76rem var(--heading); transition: 0.25s ease; }
.progress-steps li.is-complete button span { border-color: var(--lilac); background: var(--lilac-soft); }
.progress-steps li.is-active button span { border-color: var(--lilac); background: var(--lilac); color: white; box-shadow: 0 0 0 6px rgba(165, 121, 165, 0.11); }
.progress-steps button em { font-style: normal; font-size: 0.75rem; font-weight: 600; }

.builder-layout { width: min(var(--container), calc(100% - 56px)); margin: 0 auto 80px; display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 30px; }
.step-surface { min-width: 0; padding: clamp(30px, 4vw, 58px); border: 1px solid rgba(165, 121, 165, 0.14); border-radius: var(--radius); background: white; box-shadow: 0 18px 55px rgba(65, 47, 65, 0.065); }
.step-panel { display: none; animation: step-in 0.42s ease both; }
.step-panel.is-active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step-heading { margin-bottom: 45px; display: grid; grid-template-columns: 55px 1fr; gap: 24px; }
.step-heading.compact { margin-bottom: 36px; }
.step-number { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--lilac-soft); color: var(--lilac-deep); font: 800 0.72rem var(--heading); }
.step-heading .eyebrow { margin-bottom: 13px; }
.step-heading h2 { max-width: 700px; margin-bottom: 14px; }
.step-heading p { max-width: 700px; margin: 0; color: var(--gray); }

fieldset { margin: 0 0 38px; padding: 0; border: 0; }
fieldset:last-child { margin-bottom: 0; }
legend { width: 100%; margin-bottom: 22px; padding: 0 0 12px; border-bottom: 1px solid var(--line); color: var(--lilac-deep); font: 800 0.82rem var(--heading); text-transform: uppercase; letter-spacing: 0.08em; }
.form-grid { display: grid; gap: 19px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
label { min-width: 0; }
label > span:first-child { display: block; margin-bottom: 7px; color: #575456; font-size: 0.78rem; font-weight: 600; }
label > span b { color: var(--lilac); }
input, select, textarea { width: 100%; border: 1px solid #ddd8dd; border-radius: 12px; background: #fdfcfd; color: var(--graphite); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
input, select { height: 52px; padding: 0 15px; }
textarea { min-height: 100px; padding: 14px 15px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #aaa5a9; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--lilac); background: white; box-shadow: 0 0 0 4px rgba(165, 121, 165, 0.11); }
input:user-invalid, select:user-invalid { border-color: #bc6c6c; }
.full-field { display: block; margin-top: 19px; }

.profile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.profile-card { position: relative; min-height: 420px; padding: 28px 24px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--off-white); display: flex; flex-direction: column; align-items: flex-start; color: var(--graphite); text-align: left; cursor: pointer; transition: 0.25s ease; }
.profile-card:hover { transform: translateY(-3px); border-color: rgba(165, 121, 165, 0.6); box-shadow: 0 18px 35px rgba(65, 47, 65, 0.08); }
.profile-card.is-selected { border-color: var(--lilac); background: var(--lilac-soft); box-shadow: inset 0 0 0 1px var(--lilac); }
.profile-card.is-selected::after { content: "✓"; position: absolute; top: 18px; right: 18px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--graphite); font-weight: 800; }
.profile-card.featured { border-top: 3px solid var(--lilac); }
.profile-card .badge { position: absolute; top: -13px; right: 17px; padding: 6px 10px; border-radius: 20px; background: var(--yellow); color: var(--graphite); font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.profile-index { color: var(--lilac); font: 700 0.72rem var(--heading); }
.profile-card h3 { margin: 46px 0 13px; font-size: 1.75rem; }
.profile-card p { color: var(--gray); font-size: 0.9rem; }
.profile-card ul { margin: 10px 0 32px; padding: 0; list-style: none; }
.profile-card li { position: relative; margin: 8px 0; padding-left: 19px; color: var(--gray); font-size: 0.8rem; }
.profile-card li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.profile-card strong { margin-top: auto; color: var(--lilac-deep); font: 800 0.78rem var(--heading); }
.info-note { margin-top: 24px; padding: 16px 18px; border-radius: 13px; background: #f8f5ed; display: flex; align-items: flex-start; gap: 12px; }
.info-note > span { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); font-weight: 800; }
.info-note p { margin: 1px 0 0; color: var(--gray); font-size: 0.78rem; }

.calculation-banner { margin-bottom: 26px; padding: 21px 23px; border-radius: 17px; background: var(--lilac-deep); color: white; display: grid; grid-template-columns: 0.55fr 0.8fr 1.65fr; align-items: center; gap: 18px; }
.calculation-banner > div { display: flex; flex-direction: column; }
.calculation-banner span { color: rgba(255,255,255,.7); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; }
.calculation-banner strong { font: 800 1.05rem var(--heading); }
.calculation-banner p { margin: 0; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.82); font-size: 0.78rem; }
.category-filters { margin-bottom: 24px; display: flex; gap: 9px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 4px; }
.category-filters button { flex: 0 0 auto; min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 24px; background: white; color: var(--gray); font-size: 0.78rem; font-weight: 600; cursor: pointer; }
.category-filters button.is-active { border-color: var(--lilac); background: var(--lilac); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-card { min-height: 178px; padding: 14px; border: 1px solid var(--line); border-radius: 17px; background: white; display: grid; grid-template-columns: 126px 1fr; gap: 18px; align-items: center; text-align: left; cursor: pointer; transition: 0.23s ease; }
.product-card:hover { border-color: rgba(165, 121, 165, .65); transform: translateY(-2px); }
.product-card.is-selected { border-color: var(--lilac); background: var(--lilac-soft); box-shadow: inset 0 0 0 1px var(--lilac); }
.product-image { position: relative; height: 148px; overflow: hidden; border-radius: 12px; background: var(--gray-light); }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-check { position: absolute; right: 9px; top: 9px; width: 27px; height: 27px; border-radius: 50%; border: 2px solid white; background: rgba(41,41,41,.42); color: transparent; display: grid; place-items: center; font-weight: 800; transition: .2s ease; }
.product-card.is-selected .product-check { background: var(--yellow); color: var(--graphite); }
.product-copy { min-width: 0; }
.product-category { color: var(--lilac); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { margin: 9px 0 7px; font-size: 1.05rem; }
.product-price { display: block; margin-bottom: 15px; color: var(--gray); font-size: 0.73rem; }
.product-action { color: var(--lilac-deep); font: 800 .75rem var(--heading); }
.empty-products { padding: 36px; border: 1px dashed #d7d1d7; border-radius: 15px; color: var(--gray); text-align: center; }
.quantity-customizer { margin-top: 35px; padding-top: 30px; border-top: 1px solid var(--line); }
.customizer-head { margin-bottom: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; }
.customizer-head .eyebrow { margin-bottom: 8px; }
.customizer-head h3 { margin: 0; }
.switch { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch > span { position: relative; width: 44px; height: 25px; border-radius: 20px; background: #d4ced4; transition: .2s; }
.switch > span::after { content: ""; position: absolute; left: 3px; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: white; box-shadow: 0 2px 7px rgba(0,0,0,.18); transition: .2s; }
.switch input:checked + span { background: var(--lilac); }
.switch input:checked + span::after { transform: translateX(19px); }
.switch em { font-style: normal; font-size: .76rem; font-weight: 600; }
.selected-quantities { border-top: 1px solid var(--line); }
.quantity-row { min-height: 68px; padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; }
.quantity-row strong { display: block; font-size: .86rem; }
.quantity-row span { color: var(--gray); font-size: .7rem; }
.quantity-row output { color: var(--lilac-deep); font: 800 1rem var(--heading); }
.quantity-row input { width: 96px; height: 44px; text-align: center; }
.quantity-alert { margin-top: 17px; padding: 13px 15px; border-radius: 11px; background: #fff4d1; color: #6f5c22; font-size: .76rem; }

.step-actions { margin-top: 45px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; }
.side-summary { position: sticky; top: 114px; padding: 29px 25px; border-radius: 20px; background: var(--graphite); color: white; box-shadow: 0 20px 50px rgba(41,41,41,.15); }
.summary-label { color: var(--yellow); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.side-summary h2 { margin: 12px 0 26px; font-size: 1.62rem; }
.summary-metrics { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.summary-metrics div { min-height: 74px; padding: 12px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; justify-content: space-between; }
.summary-metrics span { color: #aaa6aa; font-size: .65rem; }
.summary-metrics strong { font: 700 .84rem var(--heading); }
.summary-value { padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; }
.summary-value > span { color: #aaa6aa; font-size: .7rem; }
.summary-value > strong { margin: 4px 0; color: white; font: 800 1.5rem var(--heading); }
.summary-value small { color: #aaa6aa; font-size: .63rem; }
.text-button { width: 100%; padding: 18px 0; border: 0; background: transparent; display: flex; justify-content: space-between; color: var(--yellow); font: 800 .78rem var(--heading); cursor: pointer; }
.saved-note { margin: 10px 0 0; color: #a7a3a7; font-size: .65rem; }
.saved-note span { color: var(--yellow); }
.mobile-summary { display: none; }

.summary-section { margin-top: 20px; padding: 26px; border: 1px solid var(--line); border-radius: 17px; background: var(--off-white); }
.summary-section:first-child { margin-top: 0; }
.summary-section-head { margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.summary-section h3 { margin: 0; }
.summary-section .edit-link { border: 0; background: transparent; color: var(--lilac-deep); font-size: .75rem; font-weight: 700; cursor: pointer; }
.event-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 24px; }
.summary-detail { display: flex; flex-direction: column; }
.summary-detail span { color: #8c878b; font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; }
.summary-detail strong { font-size: .84rem; }
.summary-products { border-top: 1px solid var(--line); }
.summary-product { padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 26px; }
.summary-product strong { font-size: .84rem; }
.summary-product span { color: var(--gray); font-size: .76rem; }
.summary-product b { color: var(--lilac-deep); font: 800 .8rem var(--heading); }
.financial-summary { display: grid; gap: 10px; }
.financial-row { display: flex; justify-content: space-between; gap: 20px; color: var(--gray); font-size: .8rem; }
.financial-total { margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; }
.financial-total span { display: block; color: var(--lilac); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.financial-total strong { font: 800 1.45rem var(--heading); }
.pending-value-note { margin: 15px 0 0; color: var(--gray); font-size: .72rem; }

.send-card { margin-bottom: 24px; padding: 25px; border-radius: 17px; background: var(--lilac-soft); display: flex; align-items: center; gap: 20px; }
.send-icon { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); }
.send-icon svg, .success-check svg { width: 25px; fill: none; stroke: var(--graphite); stroke-width: 2; }
.send-card span { color: var(--lilac-deep); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.send-card strong { display: block; font: 800 1.2rem var(--heading); }
.send-card p { margin: 4px 0 0; color: var(--gray); font-size: .75rem; }
.consent { padding: 20px; border: 1px solid var(--line); border-radius: 14px; display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent input { flex: 0 0 21px; width: 21px; height: 21px; accent-color: var(--lilac); }
.consent span { margin: 0 !important; color: var(--gray) !important; font-size: .78rem !important; font-weight: 400 !important; }
.consent a { color: var(--lilac-deep); text-decoration: underline; }
.commercial-notice { margin-top: 18px; padding: 18px 20px; border-left: 3px solid var(--yellow); background: #fbf8ef; }
.commercial-notice strong { font-size: .78rem; }
.commercial-notice p { margin: 4px 0 0; color: var(--gray); font-size: .75rem; }
.send-error { margin-top: 17px; padding: 14px 16px; border-radius: 11px; background: #fff0f0; color: #8c4545; font-size: .78rem; }

.success-view { min-height: 100vh; padding: 150px 24px 80px; background: linear-gradient(145deg, var(--lilac-soft), var(--off-white)); }
.success-card { width: min(680px, 100%); margin: 0 auto; padding: clamp(35px, 6vw, 70px); border-radius: 28px; background: white; text-align: center; box-shadow: var(--shadow); }
.success-check { width: 78px; height: 78px; margin: 0 auto 28px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); }
.success-check svg { width: 38px; }
.success-card .eyebrow { justify-content: center; }
.success-card h2 { margin-bottom: 18px; }
.success-card > p { color: var(--gray); }
.success-number { margin: 30px 0; padding: 18px; border-radius: 13px; background: var(--lilac-soft); display: flex; flex-direction: column; }
.success-number span { color: var(--lilac-deep); font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; }
.success-number strong { font: 800 1.3rem var(--heading); }

.site-footer { padding: 60px max(28px, calc((100vw - var(--container)) / 2)) 24px; background: var(--graphite); color: white; display: grid; grid-template-columns: 1.25fr 1fr .7fr; gap: 65px; }
.footer-brand img { width: 210px; height: 74px; object-fit: contain; filter: brightness(1.25); }
.footer-brand p, .footer-contact, .site-footer nav { color: #bbb7bb; font-size: .76rem; }
.footer-contact, .site-footer nav { display: flex; flex-direction: column; gap: 6px; }
.footer-contact strong, .site-footer nav strong { margin-bottom: 7px; color: var(--yellow); font: 800 .68rem var(--heading); text-transform: uppercase; letter-spacing: .09em; }
.footer-contact address { font-style: normal; }
.site-footer a:hover { color: white; }
.footer-copy { grid-column: 1 / -1; margin: 25px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #8f8b8f; font-size: .65rem; }

@media (max-width: 1100px) {
  .site-header { padding-inline: 28px; }
  .intro-view { padding-inline: 28px; grid-template-columns: 1fr 1fr; gap: 44px; }
  .intro-visual { min-height: 570px; }
  .builder-layout { grid-template-columns: minmax(0, 1fr) 280px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card { min-height: 0; }
  .profile-card h3 { margin-top: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .three-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { height: 76px; grid-template-columns: 1fr auto; }
  .brand img { width: 160px; }
  .header-note { display: none; }
  .intro-view { min-height: auto; padding-top: 116px; grid-template-columns: 1fr; }
  .intro-copy { max-width: 720px; }
  .intro-visual { min-height: 520px; }
  .builder { padding-top: 98px; padding-bottom: 90px; }
  .builder-layout { grid-template-columns: 1fr; }
  .side-summary { display: none; }
  .mobile-summary { position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 14px; min-height: 68px; padding: 10px 11px 10px 17px; border-radius: 17px; background: var(--graphite); color: white; display: flex; align-items: center; justify-content: space-between; gap: 15px; box-shadow: 0 16px 45px rgba(41,41,41,.25); }
  .mobile-summary div { display: flex; flex-direction: column; }
  .mobile-summary strong { font: 800 .82rem var(--heading); }
  .mobile-summary span { color: #aaa6aa; font-size: .66rem; }
  .mobile-summary button { min-height: 46px; padding: 0 17px; border: 0; border-radius: 11px; background: var(--yellow); color: var(--graphite); font: 800 .72rem var(--heading); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: .96rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.45rem); }
  .site-header { padding-inline: 16px; }
  .brand img { width: 145px; }
  .header-contact { font-size: .68rem; }
  .intro-view { padding: 104px 16px 48px; gap: 36px; }
  .intro-copy > p { font-size: .95rem; }
  .button-large, .intro-copy .button { width: 100%; }
  .intro-features { margin-top: 40px; gap: 12px; }
  .intro-features strong { font-size: 1.15rem; }
  .intro-features span { font-size: .64rem; line-height: 1.4; }
  .intro-visual { min-height: 430px; border-radius: 24px 7px 24px 7px; }
  .visual-card { right: 16px; bottom: 16px; width: calc(100% - 32px); }
  .builder { padding-top: 88px; }
  .progress-area, .builder-layout { width: calc(100% - 24px); }
  .progress-area { margin-bottom: 18px; }
  .progress-copy { margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
  .progress-copy span { color: var(--lilac); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
  .progress-copy strong { font: 800 .78rem var(--heading); }
  .progress-track { height: 5px; border-radius: 4px; background: #ddd6dd; display: block; overflow: hidden; }
  .progress-track span { display: block; height: 100%; width: 20%; border-radius: inherit; background: var(--lilac); transition: width .3s ease; }
  .progress-steps { display: none; }
  .step-surface { padding: 27px 18px; border-radius: 18px; }
  .step-heading, .step-heading.compact { margin-bottom: 30px; grid-template-columns: 1fr; gap: 13px; }
  .step-number { width: 42px; height: 42px; }
  .step-heading .eyebrow { margin-bottom: 10px; }
  .two-columns, .three-columns { grid-template-columns: 1fr; }
  fieldset { margin-bottom: 30px; }
  input, select { height: 50px; }
  .profile-card { padding: 24px 20px; }
  .calculation-banner { grid-template-columns: 1fr 1fr; }
  .calculation-banner p { grid-column: 1 / -1; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .product-card { min-height: 150px; grid-template-columns: 100px 1fr; gap: 13px; }
  .product-image { height: 122px; }
  .customizer-head { align-items: flex-start; flex-direction: column; }
  .switch em { font-size: .72rem; }
  .quantity-row { gap: 10px; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .summary-section { padding: 20px 16px; }
  .event-summary-grid { grid-template-columns: 1fr 1fr; }
  .summary-product { grid-template-columns: 1fr auto; gap: 7px 15px; }
  .summary-product b { grid-column: 1 / -1; }
  .send-card { align-items: flex-start; }
  .site-footer { padding: 52px 22px 95px; grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 390px) {
  .header-contact { display: none; }
  .site-header { grid-template-columns: 1fr; }
  .intro-features { grid-template-columns: 1fr 1fr; }
  .intro-features div:last-child { grid-column: 1 / -1; }
  .intro-visual { min-height: 370px; }
  .product-card { grid-template-columns: 84px 1fr; padding: 10px; }
  .product-image { height: 112px; }
  .product-card h3 { font-size: .94rem; }
  .event-summary-grid { grid-template-columns: 1fr; }
}

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

.live-message { margin: 24px 0 0; padding: 14px 16px; border-radius: 12px; background: rgba(120,86,120,.1); color: var(--deep-lilac); font-size: .88rem; font-weight: 700; }
.live-message.error { background: #fff0ee; color: #8b3228; }
.image-disclaimer { margin: 14px 0 0; color: var(--gray); font-size: .76rem; line-height: 1.55; }
.product-description { display: -webkit-box; overflow: hidden; color: var(--gray); font-size: .76rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.quantity-totals { display: flex; justify-content: space-between; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid #e4dfe4; color: var(--gray); font-size: .78rem; }
.quantity-totals strong { color: var(--graphite); }

@media (max-width: 620px) {
  .quantity-totals { flex-direction: column; gap: 6px; }
}

@media print {
  .site-header, .progress-area, .side-summary, .mobile-summary, .step-actions, .edit-link, .site-footer { display: none !important; }
  body, .builder, .step-surface { background: #fff !important; }
  .builder { display: block !important; padding: 0; }
  .builder-layout { display: block; width: 100%; }
  .step-surface { box-shadow: none; padding: 0; }
  .step-panel { display: none !important; }
  .step-panel[data-step="4"] { display: block !important; }
  .summary-section { break-inside: avoid; }
}
