:root {
  --ivory: #f8f5ef; --paper: #fffdfa; --champagne: #e8dcc8; --beige: #d5c2a7;
  --brown: #49352c; --brown-2: #6d574b; --gold: #a27b45; --charcoal: #282522;
  --muted: #716d67; --line: rgba(73, 53, 44, .16); --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif; --sans: "Manrope", Arial, sans-serif;
  --container: 1200px; --radius: 22px; --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(56, 41, 32, .12); --space: clamp(4.5rem, 9vw, 8rem);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--ivory); color: var(--charcoal); font-family: var(--sans); font-size: 15px; line-height: 1.75; overflow-x: hidden; }
body.modal-open, body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { color: inherit; font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #bd8b43; outline-offset: 3px; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; transform: translateY(-150%); background: var(--charcoal); color: var(--white); padding: .65rem 1rem; border-radius: 6px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--space); }
.eyebrow { margin: 0 0 .7rem; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.light { color: #e9d5b5; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.04; }
h1 { max-width: 720px; margin-bottom: 1.35rem; font-size: clamp(3.35rem, 7vw, 6.65rem); font-weight: 600; letter-spacing: -.045em; }
h1 em { color: var(--gold); font-weight: 500; }
h2 { margin-bottom: 1rem; font-size: clamp(2.75rem, 5vw, 4.8rem); font-weight: 600; letter-spacing: -.035em; }
h3 { font-size: 1.8rem; font-weight: 600; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid var(--brown); border-radius: 100px; background: var(--brown); color: var(--white); font-size: .76rem; font-weight: 700; letter-spacing: .025em; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); background: var(--gold); border-color: var(--gold); }
.button-small { min-height: 42px; padding: .58rem 1rem; font-size: .7rem; }
.button-outline { background: transparent; color: var(--brown); }
.button-outline:hover { color: var(--white); }
.button-light { border-color: var(--paper); background: var(--paper); color: var(--brown); }
.button-light:hover { border-color: var(--champagne); background: var(--champagne); color: var(--brown); }
.text-link { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .1rem; border-bottom: 1px solid var(--brown); color: var(--brown); font-size: .78rem; font-weight: 700; }
.text-link:hover { color: var(--gold); border-color: var(--gold); }
.light-link { border-color: rgba(255,255,255,.5); color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.centered-row { justify-content: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header { position: fixed; z-index: 100; top: 0; width: 100%; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(248,245,239,.92); box-shadow: 0 6px 30px rgba(50,38,31,.07); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; min-height: 78px; align-items: center; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--brown); line-height: 1; }
.brand-mark { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--brown); border-radius: 50%; font-family: var(--serif); font-size: 1.25rem; font-weight: 700; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 1.25rem; letter-spacing: .01em; }
.brand small { margin-top: .23rem; font-size: .55rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.primary-nav { display: none; }
.header-cta { display: none; margin-left: auto; }
.menu-toggle { position: relative; width: 46px; height: 46px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.5); }
.menu-toggle span { position: absolute; left: 13px; width: 18px; height: 1.5px; background: var(--brown); transition: transform .25s, top .25s; }
.menu-toggle span:first-child { top: 18px; } .menu-toggle span:last-child { top: 25px; }
.menu-toggle.open span:first-child { top: 22px; transform: rotate(45deg); } .menu-toggle.open span:last-child { top: 22px; transform: rotate(-45deg); }
.primary-nav.open { position: fixed; inset: 78px 0 0; display: flex; flex-direction: column; padding: 1.25rem; background: var(--ivory); }
.primary-nav.open a { padding: .75rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.75rem; }

.hero { position: relative; min-height: 760px; padding: 7.5rem 0 3.5rem; overflow: hidden; background: radial-gradient(circle at 15% 20%, #fff 0, transparent 36%), var(--ivory); }
.hero-grid { display: grid; gap: 3.5rem; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 620px; margin-bottom: 1.7rem; color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1rem; margin: 2rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); color: var(--brown-2); font-size: .68rem; font-weight: 600; list-style: none; }
.trust-list li::before { content: "◇"; margin-right: .45rem; color: var(--gold); }
.hero-visual { position: relative; min-height: 480px; }
.hero-photo { position: absolute; inset: 0 2rem 1.5rem 0; overflow: hidden; border-radius: 180px 180px 24px 24px; box-shadow: var(--shadow); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(42,31,24,.18)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.phone-mockup { position: absolute; z-index: 2; right: 0; bottom: 0; width: 42%; min-width: 150px; max-width: 205px; padding: 6px; border: 2px solid #2a2420; border-radius: 30px; background: #211b18; box-shadow: 0 25px 60px rgba(30,22,18,.34); transform: rotate(3deg); }
.phone-screen { display: flex; aspect-ratio: 9/18; align-items: center; justify-content: center; flex-direction: column; padding: 1rem; border-radius: 23px; background: linear-gradient(rgba(45,31,23,.22), rgba(45,31,23,.58)), url("../images/portfolio/willy-emma.webp") center/cover; color: var(--white); text-align: center; }
.phone-kicker { margin-bottom: .55rem; font-family: var(--serif); font-size: .7rem; }.phone-screen strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: .8; }.phone-screen i { font-size: 1rem; font-weight: 400; }.phone-screen small { margin: .8rem 0; font-size: .48rem; letter-spacing: .15em; }.phone-cta { padding: .32rem .55rem; border: 1px solid rgba(255,255,255,.65); border-radius: 100px; font-size: .45rem; }
.visual-note { position: absolute; z-index: 3; bottom: .5rem; left: 1rem; padding: .7rem 1rem; border-radius: 100px; background: var(--paper); box-shadow: 0 10px 30px rgba(38,28,23,.12); color: var(--brown); font-family: var(--serif); font-size: .85rem; }
.hero-orbit { position: absolute; border: 1px solid rgba(162,123,69,.22); border-radius: 50%; pointer-events: none; }.orbit-one { width: 420px; height: 420px; right: -200px; top: 80px; }.orbit-two { width: 160px; height: 160px; left: -90px; bottom: 20px; }

.section-heading { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-heading > p { max-width: 640px; margin-bottom: 0; color: var(--muted); }
.section-heading.centered { max-width: 820px; margin-inline: auto; text-align: center; }.section-heading.centered > p { margin-inline: auto; }
.split-heading { display: grid; gap: 1rem; }.split-heading h2 { margin: 0; }.split-heading > p { align-self: end; }
.featured-section { background: var(--paper); }
.featured-grid { display: grid; gap: 2rem; }
.portfolio-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .35s, box-shadow .35s; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.portfolio-media { position: relative; display: block; width: 100%; aspect-ratio: 4/5; overflow: hidden; padding: 0; border: 0; background: var(--champagne); }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }.portfolio-card:hover .portfolio-media img { transform: scale(1.025); }
.portfolio-media.image-fallback::after { content: "Gambar tema belum tersedia"; position: absolute; inset: 0; display: grid; place-items: center; padding: 2rem; color: var(--brown); font-family: var(--serif); font-size: 1.5rem; text-align: center; }
.card-badge, .status-badge { position: absolute; top: 1rem; left: 1rem; padding: .4rem .7rem; border-radius: 100px; background: var(--paper); color: var(--brown); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-badge { top: auto; bottom: 1rem; background: rgba(45,35,30,.82); color: var(--white); backdrop-filter: blur(8px); }
.portfolio-body { padding: 1.35rem; }.portfolio-meta { display: flex; justify-content: space-between; margin-bottom: .75rem; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.portfolio-body h3 { margin-bottom: .55rem; }.portfolio-body > p { color: var(--muted); font-size: .84rem; line-height: 1.65; }
.chip-list { display: flex; flex-wrap: wrap; gap: .35rem; }.chip { display: inline-flex; padding: .3rem .55rem; border: 1px solid var(--line); border-radius: 100px; color: var(--brown-2); font-size: .58rem; font-weight: 600; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: 1.2rem; }.theme-order { color: var(--brown); font-size: .65rem; font-weight: 700; }.theme-order:hover { color: var(--gold); }

.catalog-section { background: #f2ece3; }
.catalog-tools { display: grid; gap: .75rem; margin-bottom: 1rem; }
.search-box { display: flex; min-height: 52px; align-items: center; gap: .7rem; padding: 0 1rem; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,.7); }.search-box svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }.search-box input { width: 100%; border: 0; outline: 0; background: transparent; font-size: .78rem; }.search-box input::placeholder { color: #817970; }
.sort-box select { width: 100%; min-height: 52px; padding: 0 2.5rem 0 1rem; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,.7); font-size: .75rem; }
.filter-scroll { display: flex; gap: .5rem; padding: .5rem 0 1rem; overflow-x: auto; scrollbar-width: none; }.filter-scroll::-webkit-scrollbar { display: none; }.filter-button { flex: 0 0 auto; padding: .55rem .9rem; border: 1px solid var(--line); border-radius: 100px; background: transparent; font-size: .68rem; font-weight: 600; }.filter-button.active, .filter-button:hover { border-color: var(--brown); background: var(--brown); color: var(--white); }
.catalog-count { margin: .25rem 0 1.25rem; color: var(--muted); font-size: .7rem; }
.catalog-grid { display: grid; gap: 1.25rem; }.empty-state { padding: 4rem 1rem; text-align: center; }.empty-state > span { font-family: var(--serif); font-size: 4rem; }.empty-state h3 { margin-bottom: .5rem; }.empty-state p { color: var(--muted); }

.features-section { background: var(--brown); color: var(--white); }.features-section .section-heading > p { color: #cdbfb6; }.feature-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }.feature-card { min-height: 140px; padding: 1.25rem; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }.feature-card h3 { margin: 2.2rem 0 0; font-family: var(--sans); font-size: .75rem; line-height: 1.4; }.feature-icon { color: #d8bd93; font-family: var(--serif); font-size: .8rem; }.section-note { margin: 1.25rem 0 0; color: #cdbfb6; font-size: .7rem; }

.packages-section { background: var(--paper); }.package-grid { display: grid; gap: 1rem; }.package-card { position: relative; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); }.package-label { margin-bottom: .6rem; color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }.package-card h3 { margin-bottom: .8rem; font-size: 2.2rem; }.package-card > p:not(.package-label) { color: var(--muted); font-size: .8rem; }.price { padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .7rem; }.price strong { display: block; color: var(--brown); font-family: var(--serif); font-size: 2rem; line-height: 1.2; }.package-card ul { flex: 1; margin: 1.5rem 0; padding: 0; list-style: none; }.package-card li { position: relative; margin: .5rem 0; padding-left: 1.3rem; color: var(--brown-2); font-size: .73rem; }.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }.featured-package { background: var(--brown); color: var(--white); transform: none; }.featured-package .package-label, .featured-package li::before { color: #e0c092; }.featured-package > p:not(.package-label), .featured-package li, .featured-package .price { color: #d2c7bf; }.featured-package .price { border-color: rgba(255,255,255,.15); }.featured-package .price strong { color: var(--white); }.package-badge { position: absolute; top: 1.2rem; right: 1.2rem; padding: .35rem .6rem; border-radius: 100px; background: #d6b27c; color: var(--brown); font-size: .55rem; font-weight: 700; text-transform: uppercase; }.pricing-note { max-width: 720px; margin: 1.5rem auto 0; color: var(--muted); font-size: .68rem; text-align: center; }

.bundling-section { background: #e7ded2; }.bundling-card { display: grid; overflow: hidden; border-radius: var(--radius); background: var(--brown); color: var(--white); box-shadow: var(--shadow); }.bundling-image { min-height: 380px; }.bundling-image img { width: 100%; height: 100%; object-fit: cover; }.bundling-copy { padding: clamp(2rem, 5vw, 4rem); }.bundling-copy > p:not(.eyebrow) { color: #d4c8bf; }.dual-service { display: grid; gap: 1rem; margin: 1.8rem 0; }.dual-service div { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.15); }.dual-service span, .dual-service strong, .dual-service small { display: block; }.dual-service span { color: #d2b789; font-family: var(--serif); }.dual-service strong { margin: .35rem 0; font-family: var(--serif); font-size: 1.45rem; }.dual-service small { color: #cfc3bb; line-height: 1.6; }.bundling-benefits { padding: 0; columns: 1; list-style: none; }.bundling-benefits li { margin: .6rem 0; color: #d8ccc4; font-size: .72rem; }.bundling-benefits li::before { content: "◇"; margin-right: .55rem; color: #d2b789; }

.process-section { background: var(--ivory); }.timeline { display: grid; margin: 0; padding: 0; list-style: none; }.timeline li { position: relative; padding: 1.5rem 0 1.5rem 3.5rem; border-bottom: 1px solid var(--line); }.timeline span { position: absolute; left: 0; color: var(--gold); font-family: var(--serif); font-size: 1rem; }.timeline h3 { margin-bottom: .45rem; font-size: 1.6rem; }.timeline p { margin: 0; color: var(--muted); font-size: .75rem; }.center-action { margin-top: 2rem; text-align: center; }
.why-section { background: var(--paper); }.why-grid { display: grid; gap: 3rem; }.why-copy { align-self: center; }.why-copy p:not(.eyebrow) { color: var(--muted); }.why-list { border-top: 1px solid var(--line); }.why-list div { display: grid; grid-template-columns: 42px 1fr; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }.why-list span { color: var(--gold); font-family: var(--serif); }.why-list p { margin: 0; color: var(--brown); font-family: var(--serif); font-size: 1.3rem; line-height: 1.35; }
.testimonial-section { background: #eee6da; }.placeholder-testimonial { max-width: 820px; margin: 0 auto; text-align: center; }.placeholder-testimonial > span { color: var(--gold); font-family: var(--serif); font-size: 5rem; line-height: .5; }.placeholder-testimonial > p { margin: 1.5rem 0; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.25; }.placeholder-testimonial strong, .placeholder-testimonial small { display: block; }.placeholder-testimonial small { margin-top: .25rem; color: var(--muted); font-size: .65rem; }
.faq-section { background: var(--paper); }.faq-grid { display: grid; gap: 3rem; }.faq-intro { align-self: start; }.faq-intro > p:not(.eyebrow) { color: var(--muted); }.faq-item { border-bottom: 1px solid var(--line); }.faq-item h3 { margin: 0; }.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border: 0; background: transparent; text-align: left; }.faq-question span { font-family: var(--sans); font-size: .8rem; font-weight: 700; line-height: 1.5; }.faq-question i { color: var(--gold); font-family: var(--serif); font-size: 1.5rem; font-style: normal; }.faq-answer p { margin: 0; padding: 0 2.5rem 1.25rem 0; color: var(--muted); font-size: .75rem; }
.final-cta { position: relative; padding: var(--space) 0; overflow: hidden; background: var(--brown); color: var(--white); }.final-cta::before { content: ""; position: absolute; width: 440px; height: 440px; top: -250px; left: 50%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: translateX(-50%); }.final-cta-inner { position: relative; max-width: 880px; text-align: center; }.final-cta-inner > p:not(.eyebrow) { max-width: 610px; margin: 0 auto 1.7rem; color: #d4c9c1; }

.site-footer { padding: 4rem 0 1.5rem; background: #211c19; color: #cfc4bc; }.footer-grid { display: grid; gap: 2rem; }.footer-grid > div:first-child p { max-width: 320px; margin-top: 1rem; font-size: .7rem; }.footer-brand { color: var(--white); }.footer-brand .brand-mark { border-color: #cfc4bc; }.footer-grid h2 { margin-bottom: 1rem; color: #e7ddd6; font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }.footer-grid > div:not(:first-child) a { display: block; margin: .5rem 0; color: #a99c94; font-size: .68rem; }.footer-grid a:hover { color: var(--white); }.footer-bottom { display: flex; flex-direction: column; gap: .7rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .6rem; }.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 1rem; }
.floating-wa { position: fixed; z-index: 90; right: 1rem; bottom: 1rem; display: flex; min-width: 52px; height: 52px; align-items: center; justify-content: center; gap: .5rem; padding: 0 .9rem; border-radius: 100px; background: #2a6a4a; box-shadow: 0 10px 30px rgba(26,75,51,.28); color: var(--white); }.floating-wa svg { width: 24px; fill: currentColor; }.floating-wa span { display: none; font-size: .64rem; font-weight: 700; }

.modal { position: fixed; z-index: 500; inset: 0; display: none; align-items: end; justify-content: center; padding: 0; }.modal.open { display: flex; }.modal-backdrop { position: absolute; inset: 0; background: rgba(28,23,20,.7); backdrop-filter: blur(8px); }.modal-dialog { position: relative; display: grid; width: 100%; max-height: 92vh; overflow: auto; border-radius: 22px 22px 0 0; background: var(--paper); box-shadow: var(--shadow); }.modal-close { position: absolute; z-index: 3; top: .7rem; right: .7rem; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--brown); font-family: var(--serif); font-size: 1.7rem; }.modal-image { min-height: 300px; max-height: 42vh; overflow: hidden; }.modal-image img { width: 100%; height: 100%; object-fit: cover; }.modal-content { padding: 1.5rem; }.modal-content h2 { font-size: 2.8rem; }.modal-content > p:not(.eyebrow) { color: var(--muted); }.modal-content .button-row { margin-top: 1.5rem; }.coming-note { width: 100%; color: var(--gold); font-size: .7rem; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .container { width: min(calc(100% - 4rem), var(--container)); }
  .catalog-tools { grid-template-columns: minmax(0, 1fr) 220px; }
  .catalog-grid, .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .dual-service { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2 / 3; }
  .floating-wa span { display: inline; }
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }.hero-visual { min-height: 600px; }.hero-photo { inset: 1rem 2rem 2rem 0; }
  .split-heading { grid-template-columns: 1.15fr .85fr; }.featured-card .portfolio-body { padding: 1.7rem; }
  .package-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }.featured-package { transform: translateY(-1rem); }
  .bundling-card { grid-template-columns: .88fr 1.12fr; }.bundling-image { min-height: 700px; }
  .timeline { grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }.timeline li { padding: 4rem 1.5rem 0 0; border: 0; }.timeline li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }.timeline span { top: 1rem; }
  .why-grid, .faq-grid { grid-template-columns: .8fr 1.2fr; }.faq-intro { position: sticky; top: 120px; }
  .footer-grid { grid-template-columns: 1.8fr repeat(3, 1fr); }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { flex-direction: row; justify-content: space-between; }
  .modal { align-items: center; padding: 2rem; }.modal-dialog { grid-template-columns: .85fr 1.15fr; max-width: 960px; border-radius: var(--radius); overflow: hidden; }.modal-image { max-height: none; }.modal-content { display: flex; justify-content: center; flex-direction: column; padding: 3rem; }
}
@media (min-width: 1024px) {
  .site-header .nav-wrap { min-height: 86px; }.primary-nav { display: flex; align-items: center; gap: clamp(.65rem, 1.3vw, 1.2rem); margin-left: auto; }.primary-nav a { position: relative; font-size: .62rem; font-weight: 700; }.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -.35rem; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }.primary-nav a:hover::after { transform: scaleX(1); }.menu-toggle { display: none; }.header-cta { display: inline-flex; margin-left: .5rem; }
  .hero { min-height: 820px; padding: 9rem 0 4rem; }.hero-grid { gap: 4rem; }.hero-photo { inset: 0 2.5rem 0 0; }.hero-visual { min-height: 660px; }.trust-list { grid-template-columns: repeat(4, auto); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }.feature-grid { grid-template-columns: repeat(4, 1fr); }.feature-card { min-height: 165px; padding: 1.5rem; }
  .bundling-benefits { columns: 2; }.why-grid, .faq-grid { grid-template-columns: 1fr 1.1fr; gap: 8rem; }
}
@media (min-width: 1366px) { .hero-grid { grid-template-columns: 1.08fr .92fr; }.hero-copy { padding-left: 2rem; }.featured-grid { gap: 2.5rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; } }
.legal-page { display: grid; min-height: 100vh; place-items: center; padding: 2rem; background: radial-gradient(circle at 20% 20%, #fff 0, transparent 38%), var(--ivory); }.legal-card { width: min(100%, 820px); padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,250,.92); box-shadow: var(--shadow); }.legal-card h1 { font-size: clamp(3rem, 8vw, 5.5rem); }.legal-card h2 { margin-top: 2rem; font-size: 2rem; }.legal-card p { color: var(--muted); }
