:root {
  --bg: #071012;
  --bg-soft: #0b181b;
  --panel: #102326;
  --panel-2: #162c30;
  --text: #f6fbfb;
  --muted: #a8b7b9;
  --teal: #20e0cc;
  --teal-dark: #0faeaa;
  --cyan: #64f7ff;
  --yellow: #ffd35a;
  --line: rgba(255,255,255,.11);
  --glass: rgba(13, 29, 32, .72);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
  --radius-small: 14px;
  --container: min(1400px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
body.panel-open, body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.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; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 200; 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='.75'/%3E%3C/svg%3E"); }

.page-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; pointer-events: none; transition: visibility 0s linear 1.25s; }
.loader-door { position: absolute; left: 0; width: 100%; height: 50%; background: repeating-linear-gradient(0deg, #102225 0 36px, #193438 37px 40px); transition: transform 1.2s cubic-bezier(.76,0,.24,1); }
.loader-door-top { top: 0; border-bottom: 2px solid rgba(100,247,255,.25); }
.loader-door-bottom { bottom: 0; border-top: 2px solid rgba(100,247,255,.25); }
.loader-mark { position: relative; z-index: 2; font-family: "Archivo Black", sans-serif; font-size: clamp(2rem, 5vw, 5rem); line-height: .85; text-align: center; letter-spacing: -.05em; transition: opacity .35s ease .25s, transform .45s ease .25s; }
.loader-mark span { color: var(--teal); }
.page-loader.loaded .loader-door-top { transform: translateY(-105%); }
.page-loader.loaded .loader-door-bottom { transform: translateY(105%); }
.page-loader.loaded .loader-mark { opacity: 0; transform: scale(.92); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; min-height: 82px; display: flex; align-items: center; gap: 26px; padding: 14px max(20px, calc((100vw - 1400px) / 2)); background: linear-gradient(180deg, rgba(4,12,14,.92), rgba(4,12,14,.64)); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.07); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 220px; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #041214; background: linear-gradient(135deg, var(--teal), var(--cyan)); font-family: "Archivo Black"; font-size: .82rem; box-shadow: 0 0 30px rgba(32,224,204,.25); transform: skew(-6deg); }
.brand-copy { display: grid; line-height: .9; text-transform: uppercase; letter-spacing: -.03em; }
.brand-copy strong { font-family: "Archivo Black"; font-size: 1rem; }
.brand-copy em { color: var(--teal); font-style: normal; font-weight: 800; font-size: .82rem; letter-spacing: .06em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.8vw, 28px); flex: 1; }
.main-nav a { color: #dfe8e9; font-size: .88rem; font-weight: 700; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 12px; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: white; margin: 5px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; color: #041214; background: linear-gradient(135deg, var(--teal), var(--cyan)); font-weight: 800; box-shadow: 0 12px 35px rgba(32,224,204,.18); transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(32,224,204,.28); filter: saturate(1.15); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .86rem; }
.button-ghost { color: white; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); box-shadow: none; backdrop-filter: blur(10px); }
.button-ghost-dark { color: var(--text); background: rgba(255,255,255,.05); border-color: var(--line); box-shadow: none; }
.button-light { color: #071012; background: white; box-shadow: 0 14px 36px rgba(0,0,0,.2); }
.text-link { color: var(--teal); font-weight: 800; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: center; overflow: hidden; padding: 150px 0 90px; isolation: isolate; background: radial-gradient(circle at 72% 32%, rgba(26,167,165,.26), transparent 28%), linear-gradient(135deg, #061012 0%, #0a191c 45%, #071012 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; z-index: -1; background: linear-gradient(transparent, var(--bg)); }
.hero-grid { position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-spray { position: absolute; z-index: -2; width: 620px; aspect-ratio: 1; border-radius: 50%; filter: blur(4px); opacity: .26; background: radial-gradient(circle at center, transparent 0 32%, rgba(32,224,204,.9) 34%, transparent 36% 40%, rgba(100,247,255,.35) 42%, transparent 43%), repeating-radial-gradient(circle, rgba(32,224,204,.5) 0 1px, transparent 2px 9px); }
.spray-one { right: -180px; top: 5%; transform: rotate(18deg); }
.spray-two { left: 30%; bottom: -420px; width: 720px; opacity: .14; }
.hero-orb { position: absolute; z-index: -2; border-radius: 999px; filter: blur(70px); }
.orb-one { width: 300px; height: 300px; background: rgba(0,225,210,.19); right: 21%; top: 29%; }
.orb-two { width: 260px; height: 260px; background: rgba(60,121,255,.12); right: 5%; top: 58%; }
.hero-content { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--teal); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.eyebrow span { display: inline-block; width: 30px; height: 2px; background: currentColor; }
.eyebrow.light { color: white; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Archivo Black", sans-serif; letter-spacing: -.055em; text-transform: uppercase; }
h1 { max-width: 980px; font-size: clamp(3.4rem, 7.8vw, 8.5rem); line-height: .86; margin-bottom: 28px; }
h1 em, h2 em { color: var(--teal); font-style: normal; }
.hero-lead { max-width: 690px; color: #cad6d7; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; gap: 50px; margin-top: 55px; }
.hero-stats div { display: grid; gap: 3px; }
.hero-stats strong { font-family: "Archivo Black"; font-size: 2rem; color: white; }
.hero-stats span { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-art { position: absolute; right: max(3vw, calc((100vw - 1500px)/2)); top: 19%; width: min(42vw, 610px); height: 66%; z-index: 1; perspective: 1200px; }
.art-card { position: absolute; display: flex; align-items: flex-end; padding: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.art-card::before, .design-art::before, .gallery-art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 3%), radial-gradient(circle at 70% 30%, rgba(255,255,255,.18), transparent 2%), linear-gradient(145deg, transparent 0 35%, rgba(255,255,255,.13) 36% 37%, transparent 38% 100%); }
.art-card::after { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 45% 55% 67% 33% / 38% 47% 53% 62%; border: 13px solid rgba(255,255,255,.66); inset: 13% 10% auto auto; transform: rotate(24deg); box-shadow: inset 0 0 60px rgba(0,0,0,.2); }
.art-card span { position: relative; z-index: 2; font-family: "Archivo Black"; font-size: clamp(1.1rem, 2vw, 2rem); letter-spacing: -.04em; }
.card-a { inset: 8% 2% 23% 18%; transform: rotateY(-12deg) rotateZ(3deg); background: linear-gradient(135deg, #099f9b, #112d3d 55%, #182124); }
.card-b { width: 48%; height: 42%; right: 45%; bottom: 0; transform: rotate(-7deg); background: linear-gradient(135deg, #e6b647, #9e4b31 55%, #2e1721); }
.card-c { width: 44%; height: 42%; right: 0; bottom: 3%; transform: rotate(8deg); background: linear-gradient(135deg, #5c33a5, #0e7c8a 55%, #172326); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.scroll-cue i { width: 1px; height: 36px; background: linear-gradient(var(--teal), transparent); animation: scrollPulse 1.8s infinite; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(.4); transform-origin: top; opacity:.4;} 50%{transform: scaleY(1); opacity:1;} }

.section { padding: 120px 0; position: relative; }
.services-section, .designs-section, .why-section, .faq-section { background: #f2f6f5; color: #102124; }
.services-section::before, .designs-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 90% 5%, rgba(16,188,177,.13), transparent 22%); }
.section-heading { margin-bottom: 50px; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.section-heading h2 { font-size: clamp(2.6rem, 5.1vw, 5.7rem); line-height: .92; margin-bottom: 0; }
.section-heading > p, .split-heading > p { color: #5f6e70; line-height: 1.75; max-width: 620px; margin-bottom: 10px; }
.light-heading, .light-heading > p { color: white; }
.light-heading > p { color: #b6c9ca; }
.service-category-tabs, .gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.category-tab, .gallery-filter { border: 1px solid rgba(14,31,34,.13); color: #2c4548; background: rgba(255,255,255,.6); border-radius: 999px; padding: 11px 16px; font-weight: 800; font-size: .82rem; }
.category-tab.active, .gallery-filter.active { background: #0f2528; color: white; border-color: #0f2528; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 265px; position: relative; overflow: hidden; border: 1px solid rgba(15,37,40,.1); border-radius: 22px; padding: 28px; background: rgba(255,255,255,.72); box-shadow: 0 16px 46px rgba(13,39,41,.07); transition: transform .3s ease, box-shadow .3s ease, background .3s ease; cursor: pointer; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(13,39,41,.14); background: white; }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -70px; bottom: -70px; border-radius: 50%; background: radial-gradient(circle, var(--card-color, rgba(32,224,204,.25)), transparent 70%); transition: transform .3s ease; }
.service-card:hover::after { transform: scale(1.3); }
.service-card .service-index { color: #7b9193; font-size: .74rem; font-weight: 800; letter-spacing: .13em; }
.service-card h3 { font-family: "Archivo Black"; font-size: 1.28rem; line-height: 1.05; text-transform: uppercase; margin: 55px 0 14px; }
.service-card p { color: #607174; font-size: .9rem; line-height: 1.55; }
.service-card button { border: 0; padding: 0; background: transparent; color: #087f78; font-weight: 800; position: relative; z-index: 2; }

.promo-band { padding: 90px 0; background: linear-gradient(110deg, #0cb6ab, #14d2c4 45%, #6df5ff); color: #041214; overflow: hidden; }
.promo-band::after { content: ""; position: absolute; width: 500px; height: 500px; border: 80px solid rgba(255,255,255,.13); border-radius: 50%; right: -160px; top: -220px; }
.promo-band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .9fr auto; gap: 50px; align-items: center; }
.promo-band h2 { font-size: clamp(2.4rem, 4vw, 4.6rem); line-height: .92; margin: 0; }
.promo-band p { line-height: 1.7; max-width: 520px; }

.designs-section { overflow: hidden; }
.catalog-toolbar { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 12px; margin-bottom: 18px; }
.catalog-toolbar input, .catalog-toolbar select { width: 100%; height: 50px; border-radius: 14px; border: 1px solid rgba(13,39,41,.13); background: rgba(255,255,255,.78); color: #173033; padding: 0 16px; outline: none; }
.catalog-toolbar input:focus, .catalog-toolbar select:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(32,224,204,.15); }
.catalog-summary { color: #627477; margin: 0 0 20px; font-size: .9rem; }
.design-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.design-card { position: relative; overflow: hidden; background: white; border: 1px solid rgba(13,39,41,.1); border-radius: 22px; box-shadow: 0 14px 40px rgba(13,39,41,.08); transition: transform .25s ease, box-shadow .25s ease; }
.design-card:hover { transform: translateY(-7px); box-shadow: 0 20px 54px rgba(13,39,41,.14); }
.design-art { height: 245px; position: relative; overflow: hidden; background: var(--design-gradient); }
.design-art::after { content: attr(data-short); position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) rotate(-5deg); width: 75%; text-align: center; font-family: "Archivo Black"; font-size: 2rem; line-height: .85; color: rgba(255,255,255,.92); text-shadow: 0 8px 30px rgba(0,0,0,.26); }
.design-number { position: absolute; top: 14px; left: 14px; z-index: 3; padding: 7px 10px; border-radius: 999px; color: white; background: rgba(3,15,17,.55); backdrop-filter: blur(8px); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.favorite-button { position: absolute; top: 12px; right: 12px; z-index: 3; width: 36px; height: 36px; border: 0; border-radius: 50%; color: white; background: rgba(3,15,17,.5); backdrop-filter: blur(8px); font-size: 1rem; }
.favorite-button.active { color: var(--yellow); }
.design-card-body { padding: 20px; }
.design-card-body .design-category { color: #5d7476; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.design-card-body h3 { font-family: "Archivo Black"; font-size: 1.02rem; text-transform: uppercase; margin: 9px 0 14px; }
.design-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.design-card-meta strong { font-size: 1.1rem; color: #087f78; }
.design-card-meta button { border: 0; background: transparent; padding: 0; color: #16373a; font-weight: 800; font-size: .82rem; }
.center-action { display: flex; justify-content: center; margin-top: 40px; }

.gallery-section { background: #0a1719; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,.09); cursor: pointer; }
.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item:nth-child(5n+2) { grid-column: span 2; }
.gallery-art { position: absolute; inset: 0; background: var(--gallery-gradient); transition: transform .45s ease; }
.gallery-item:hover .gallery-art { transform: scale(1.06); }
.gallery-art::after { content: attr(data-mark); position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) rotate(-8deg); font-family: "Archivo Black"; font-size: clamp(2rem, 4vw, 4rem); line-height: .8; color: rgba(255,255,255,.82); text-align: center; }
.gallery-overlay { position: absolute; inset: auto 0 0; padding: 50px 18px 18px; background: linear-gradient(transparent, rgba(2,10,12,.9)); }
.gallery-overlay span { display: block; color: var(--teal); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.gallery-overlay strong { display: block; margin-top: 5px; }

.events-section { background: linear-gradient(150deg, #071012, #0f2528 55%, #0b1719); }
.event-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-package { position: relative; padding: 32px; border-radius: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.featured-package { background: linear-gradient(155deg, rgba(32,224,204,.16), rgba(255,255,255,.06)); border-color: rgba(32,224,204,.45); transform: translateY(-12px); }
.package-label { color: var(--teal); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.event-package h3 { font-family: "Archivo Black"; text-transform: uppercase; font-size: 1.55rem; margin: 16px 0 12px; }
.event-package p { color: #b8c8ca; line-height: 1.65; }
.event-package > strong { display: block; font-size: 1.45rem; color: white; margin: 22px 0; }
.event-package ul { list-style: none; padding: 0; margin: 0 0 26px; color: #c8d6d7; }
.event-package li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.event-package li::before { content: "✓"; color: var(--teal); margin-right: 8px; }
.event-estimator-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; margin-top: 70px; padding: 44px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: rgba(255,255,255,.04); }
.event-estimator-copy h3 { font-family: "Archivo Black"; font-size: 2.2rem; line-height: 1; text-transform: uppercase; }
.event-estimator-copy p { color: #b7c7c9; line-height: 1.7; }
.event-estimator { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.event-estimator label { display: grid; gap: 8px; color: #d9e5e6; font-size: .82rem; font-weight: 700; }
.event-estimator select { height: 50px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: white; background: #102629; padding: 0 14px; }
.checkbox-row { display: flex !important; flex-direction: row !important; align-items: center; gap: 10px !important; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--teal); }
.estimate-output { grid-column: 1/-1; display: grid; padding: 23px; border-radius: 17px; color: #061416; background: linear-gradient(135deg, var(--teal), var(--cyan)); }
.estimate-output span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.estimate-output strong { font-family: "Archivo Black"; font-size: 2.15rem; margin: 5px 0; }
.estimate-output small { opacity: .72; }

.why-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.why-copy h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: .9; }
.why-copy > p { color: #596c6f; line-height: 1.75; font-size: 1.05rem; }
.why-copy .button { margin-top: 20px; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit-grid article { min-height: 240px; padding: 28px; border: 1px solid rgba(13,39,41,.1); border-radius: 22px; background: white; box-shadow: 0 16px 44px rgba(13,39,41,.07); }
.benefit-grid span { color: var(--teal-dark); font-family: "Archivo Black"; }
.benefit-grid h3 { font-family: "Archivo Black"; text-transform: uppercase; margin: 58px 0 10px; }
.benefit-grid p { color: #657679; line-height: 1.6; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { font-size: clamp(2.4rem, 4.1vw, 4.7rem); line-height: .92; }
.faq-intro p { color: #627477; line-height: 1.75; }
.faq-item { border-bottom: 1px solid rgba(13,39,41,.14); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 24px 0; border: 0; background: transparent; color: #112629; text-align: left; font-weight: 800; }
.faq-question span:last-child { width: 34px; height: 34px; display: grid; place-items: center; flex: none; border-radius: 50%; background: #e1eceb; font-size: 1.3rem; transition: transform .25s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 50px 24px 0; color: #617376; line-height: 1.75; }

.contact-section { background: linear-gradient(140deg, #0c8f88, #0dbbb0 46%, #35dce0); color: #061416; overflow: hidden; }
.contact-section::after { content: ""; position: absolute; right: -15%; bottom: -45%; width: 720px; aspect-ratio: 1; border: 110px solid rgba(255,255,255,.12); border-radius: 48% 52% 60% 40%; transform: rotate(30deg); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; position: relative; z-index: 2; }
.contact-copy h2 { font-size: clamp(3rem, 5.8vw, 6.4rem); line-height: .86; }
.contact-copy h2 em { color: white; }
.contact-copy > p { max-width: 560px; line-height: 1.75; }
.contact-details { display: grid; gap: 12px; margin: 34px 0; }
.contact-details div { display: grid; gap: 3px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,.14); }
.contact-details span { font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.discount-card { padding: 22px; border: 1px solid rgba(255,255,255,.45); border-radius: 17px; background: rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.discount-card span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; margin-bottom: 6px; }
.contact-form { display: grid; gap: 16px; padding: 34px; border: 1px solid rgba(255,255,255,.32); border-radius: 26px; background: rgba(5,24,26,.92); color: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #d4e2e3; font-size: .78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: white; background: #10272a; padding: 14px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(32,224,204,.12); }
.file-field { position: relative; padding: 15px; border: 1px dashed rgba(255,255,255,.26); border-radius: 12px; }
.file-field input { position: absolute; opacity: 0; pointer-events: none; }
.file-field span { color: var(--teal); }
.form-status { min-height: 20px; margin: 0; color: var(--teal); font-weight: 700; }
.form-note { color: #8fa5a7; line-height: 1.5; }

.site-footer { background: #050c0e; padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { color: #93a6a8; line-height: 1.7; max-width: 420px; }
.footer-grid h3 { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--teal); }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 12px; }
.footer-grid a:not(.brand) { color: #c1cecf; font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; margin-top: 45px; border-top: 1px solid rgba(255,255,255,.08); color: #718689; font-size: .8rem; }

.garage-panel { position: fixed; top: 0; left: 0; right: 0; height: min(92vh, 900px); z-index: 1000; transform: translateY(-105%); transition: transform .7s cubic-bezier(.78,0,.2,1); overflow-y: auto; color: white; background: #102326; box-shadow: 0 30px 100px rgba(0,0,0,.6); }
.garage-panel.open { transform: translateY(0); }
.garage-slats { position: fixed; inset: 0; pointer-events: none; opacity: .18; background: repeating-linear-gradient(0deg, transparent 0 56px, rgba(255,255,255,.14) 57px 59px); }
.garage-close, .modal-close { position: absolute; z-index: 8; top: 22px; right: 24px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: white; background: rgba(0,0,0,.22); font-size: 1.8rem; }
.garage-content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 90px 0 70px; }
.garage-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.garage-kicker { color: var(--teal); font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.garage-hero h2 { font-size: clamp(3rem, 6vw, 6.8rem); line-height: .86; margin: 16px 0 24px; }
.garage-hero p { color: #c4d0d1; line-height: 1.75; font-size: 1.02rem; }
.garage-art { min-height: 390px; position: relative; overflow: hidden; border-radius: 26px; background: var(--garage-gradient); border: 1px solid rgba(255,255,255,.14); }
.garage-art::before { content: attr(data-title); position: absolute; inset: 50% auto auto 50%; width: 80%; transform: translate(-50%,-50%) rotate(-7deg); color: rgba(255,255,255,.9); font-family: "Archivo Black"; font-size: clamp(2.2rem, 5vw, 5rem); line-height: .8; text-align: center; }
.garage-art::after { content: ""; position: absolute; inset: 12%; border: 16px solid rgba(255,255,255,.28); border-radius: 50% 35% 55% 40%; transform: rotate(20deg); }
.garage-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.garage-info-grid article { padding: 24px; border-radius: 18px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); }
.garage-info-grid h3 { font-family: "Archivo Black"; text-transform: uppercase; font-size: 1rem; }
.garage-info-grid p, .garage-info-grid li { color: #b6c6c7; line-height: 1.6; font-size: .9rem; }
.garage-info-grid ul { padding-left: 18px; }
.panel-backdrop { position: fixed; inset: 0; z-index: 999; background: rgba(1,7,8,.72); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: .35s ease; }
.panel-backdrop.show { opacity: 1; visibility: visible; }

.modal { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 24px; background: rgba(1,7,8,.82); backdrop-filter: blur(9px); opacity: 0; visibility: hidden; transition: .3s ease; }
.modal.open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: min(980px, 100%); max-height: 90vh; overflow-y: auto; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: #0d2023; box-shadow: 0 28px 100px rgba(0,0,0,.55); }
.modal-close { position: fixed; }
.design-modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.design-modal-art { min-height: 520px; position: relative; background: var(--design-gradient); overflow: hidden; }
.design-modal-art::before { content: attr(data-short); position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) rotate(-7deg); width: 75%; text-align: center; font-family: "Archivo Black"; font-size: 4rem; line-height: .82; }
.design-modal-content { padding: 46px; }
.design-modal-content .design-category { color: var(--teal); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.design-modal-content h2 { font-size: 3rem; line-height: .9; margin: 16px 0 18px; }
.design-modal-content > p { color: #b8c7c9; line-height: 1.7; }
.design-modal-price { font-family: "Archivo Black"; font-size: 2rem; color: var(--teal); margin: 24px 0; }
.modal-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
.modal-options label { display: grid; gap: 8px; color: #d8e2e3; font-size: .8rem; font-weight: 700; }
.modal-options select, .modal-options input { height: 46px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #13292c; color: white; padding: 0 12px; }
.gallery-modal-card { width: min(900px, 100%); }
.gallery-modal-art { height: 570px; position: relative; background: var(--gallery-gradient); }
.gallery-modal-art::after { content: attr(data-mark); position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) rotate(-8deg); font-family: "Archivo Black"; font-size: clamp(3rem, 8vw, 7rem); line-height: .8; width: 80%; text-align: center; }
.gallery-modal-copy { padding: 28px 34px 34px; }
.gallery-modal-copy h2 { margin-bottom: 10px; }
.gallery-modal-copy p { color: #b9c8c9; line-height: 1.7; }

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .main-nav { justify-content: flex-end; }
  .hero-art { opacity: .48; right: -8%; width: 54vw; }
  .services-grid, .design-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-band-inner { grid-template-columns: 1fr 1fr; }
  .promo-band-inner .button { grid-column: 1/-1; justify-self: start; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .faq-layout, .contact-grid { gap: 45px; }
}

@media (max-width: 860px) {
  .site-header { min-height: 70px; padding-block: 10px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; top: 70px; left: 16px; right: 16px; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(5,18,20,.97); backdrop-filter: blur(20px); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero-art { display: none; }
  .hero-content { text-align: left; }
  .hero-stats { flex-wrap: wrap; gap: 25px; }
  .split-heading, .promo-band-inner, .event-estimator-wrap, .why-grid, .faq-layout, .contact-grid, .garage-hero { grid-template-columns: 1fr; }
  .services-grid, .design-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1/-1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(5n+2) { grid-column: span 1; }
  .event-package-grid { grid-template-columns: 1fr; }
  .featured-package { transform: none; }
  .event-estimator-wrap { padding: 30px; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .design-modal-grid { grid-template-columns: 1fr; }
  .design-modal-art { min-height: 340px; }
  .garage-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  :root { --container: min(100% - 26px, 1400px); }
  .brand { min-width: auto; }
  .brand-copy { display: none; }
  .section { padding: 82px 0; }
  .hero { padding-top: 120px; min-height: 850px; }
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .scroll-cue { display: none; }
  .services-grid, .design-grid, .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .design-art { height: 280px; }
  .promo-band-inner, .catalog-toolbar, .event-estimator, .form-row, .modal-options { grid-template-columns: 1fr; }
  .catalog-toolbar .button { width: 100%; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }
  .event-estimator-wrap, .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .garage-content { padding-top: 90px; }
  .garage-hero h2 { font-size: 3rem; }
  .garage-art { min-height: 280px; }
  .design-modal-content { padding: 30px 22px; }
  .design-modal-content h2 { font-size: 2.2rem; }
  .gallery-modal-art { height: 380px; }
}
