:root {
  --ink: #f5f7ff;
  --muted: #a5adbd;
  --blue: #2878ff;
  --blue-bright: #58a1ff;
  --violet: #7b42ff;
  --panel: #0c111c;
  --panel-2: #111827;
  --line: rgba(255,255,255,.12);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #05070c;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 99; background: white; color: #05070c; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 3rem), var(--max));
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { width: 320px; height: 215px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; }
.brand-logo-crop { display: block; width: 100%; overflow: hidden; }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 5px 24px rgba(29,111,255,.24)); }
.brand-subline { margin-top: .2rem; color: #b9c9e8; font-size: .64rem; font-weight: 700; letter-spacing: .16em; line-height: 1; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { text-decoration: none; font-weight: 600; font-size: .92rem; color: #d9deea; }
.nav a:hover { color: white; }
.nav a.nav-cta { padding: .9rem 1.65rem; border: 1px solid #73a7ff; border-radius: 999px; background: linear-gradient(135deg, #347cff, #6d4cff); color: #fff; font-size: 1rem; font-weight: 800; text-align: center; box-shadow: 0 10px 28px rgba(52,124,255,.28); transition: transform .2s ease, box-shadow .2s ease; }
.nav a.nav-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 13px 34px rgba(52,124,255,.4); }
.menu-button { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-button span { display: block; height: 2px; background: white; margin: 7px 0; }

.hero {
  min-height: 840px;
  height: 100vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 28%, rgba(40,120,255,.25), transparent 25%),
    radial-gradient(circle at 72% 62%, rgba(123,66,255,.14), transparent 30%),
    #05070c;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,7,13,.98) 0%, rgba(4,7,13,.72) 52%, rgba(4,7,13,.18)),
    linear-gradient(rgba(88,161,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,161,255,.07) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}
.hero-content { width: min(calc(100% - 3rem), var(--max)); margin: 80px auto 0; }
.eyebrow { margin: 0 0 1.1rem; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: #c2c9d8; display: flex; align-items: center; gap: .75rem; }
.eyebrow span { width: 34px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--violet)); box-shadow: 0 0 12px var(--blue); }
h1, h2, h3 { font-family: Manrope, Inter, sans-serif; line-height: 1.05; margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 1.5rem; font-size: clamp(4rem, 7.1vw, 7.4rem); letter-spacing: -.065em; }
h1 em { color: transparent; -webkit-text-stroke: 1.5px #7baaff; font-style: normal; text-shadow: 0 0 30px rgba(40,120,255,.25); }
.hero-copy { max-width: 600px; font-size: 1.12rem; color: #bdc5d4; line-height: 1.75; }
.hero-actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.25rem; }
.button { display: inline-flex; align-items: center; gap: 1.25rem; min-height: 54px; padding: .75rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--blue), #1352d6); box-shadow: 0 12px 36px rgba(25,102,242,.27); }
.button-primary:hover { background: linear-gradient(135deg, var(--blue-bright), var(--blue)); }
.button-quiet { border: 1px solid var(--line); color: #dfe4ef; }
.button-quiet:hover { border-color: rgba(255,255,255,.35); }
.hero-proof { position: absolute; bottom: 2.5rem; right: max(1.5rem, calc((100% - var(--max))/2)); display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); backdrop-filter: blur(14px); background: rgba(6,9,16,.55); }
.hero-proof div { min-width: 150px; padding: 1rem 1.2rem; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong { font-family: Manrope; display: block; font-size: 1.15rem; color: #75a8ff; }
.hero-proof span { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.section { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; padding: 8rem 0; }
.intro { position: relative; }
.intro::before { content: ""; position: absolute; width: 440px; height: 440px; top: 2rem; right: -22rem; border-radius: 50%; background: var(--blue); filter: blur(160px); opacity: .13; pointer-events: none; }
.section-heading h2 { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.055em; margin-bottom: 0; }
.intro > .section-heading { display: inline-block; }
.intro-copy { float: right; max-width: 460px; margin: 4.5rem 0 0; color: var(--muted); font-size: 1.06rem; }
.collection-grid { clear: both; padding-top: 5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.collection-card { min-height: 430px; padding: 1.75rem; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(18,25,41,.9), rgba(8,12,21,.88)); position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.collection-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -100px; top: 45px; background: var(--card-glow, var(--blue)); filter: blur(65px); opacity: .22; }
.card-number { color: #6d7584; font-size: .75rem; letter-spacing: .15em; }
.card-icon { font-size: 5rem; color: #4f8cff; text-shadow: 0 0 25px rgba(56,128,255,.42); line-height: 1; }
.collection-card h3 { font-size: 1.65rem; margin-bottom: .75rem; }
.collection-card p { color: var(--muted); }
.collection-card ul { list-style: none; padding: 1.15rem 0 0; margin: 1.5rem 0 0; border-top: 1px solid var(--line); }
.collection-card li { color: #d2d8e4; font-size: .86rem; padding: .35rem 0 .35rem 1.1rem; position: relative; }
.collection-card li::before { content: ""; position: absolute; left: 0; top: .85rem; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-bright); }
.auto { --card-glow: #d78b32; }
.auto .card-icon { color: #dca15c; }

.crystal-showcase { margin-top: 1rem; padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,23,38,.98), rgba(5,8,14,.98)); }
.crystal-showcase-heading { display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.crystal-showcase-heading h3 { max-width: 720px; margin: 0; font-size: clamp(2rem, 3.8vw, 3.5rem); letter-spacing: -.045em; }
.crystal-showcase-heading > p { margin: 0; color: var(--muted); }
.crystal-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.crystal-photo { position: relative; min-width: 0; margin: 0; border: 1px solid var(--line); background: #07090d; overflow: hidden; }
.crystal-photo img { display: block; width: 100%; height: 360px; object-fit: contain; transition: transform .55s ease; }
.crystal-photo:hover img { transform: scale(1.025); }
.crystal-photo figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.15); background: rgba(5,7,12,.78); color: #e8edf7; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }

.portrait-showcase { margin-top: 1rem; padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid rgba(106,158,255,.3); background: radial-gradient(circle at 18% 15%, rgba(40,120,255,.14), transparent 35%), linear-gradient(145deg, rgba(14,21,35,.98), rgba(5,8,14,.98)); }
.portrait-showcase-heading { display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.portrait-showcase-heading h3 { max-width: 720px; margin: 0; font-size: clamp(2rem, 3.8vw, 3.5rem); letter-spacing: -.045em; }
.portrait-showcase-heading > p { margin: 0; color: var(--muted); }
.portrait-gallery { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 1rem; }
.portrait-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #07090d; }
.portrait-photo img { display: block; width: 100%; height: 520px; object-fit: cover; transition: transform .55s ease; }
.portrait-photo:hover img { transform: scale(1.02); }
.portrait-photo figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.15); background: rgba(5,7,12,.8); color: #e8edf7; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }

.led-offer { margin-top: 1rem; padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid rgba(106,158,255,.34); background: linear-gradient(135deg, rgba(20,30,51,.96), rgba(7,11,19,.96)); overflow: hidden; }
.led-offer-heading { display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.led-offer-heading h3 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -.045em; }
.led-offer-heading > p { margin: 0; color: var(--muted); }
.led-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.led-option { border: 1px solid var(--line); background: rgba(7,11,19,.72); overflow: hidden; }
.led-option-media { min-height: 350px; display: grid; place-items: center; padding: 1.5rem; background: radial-gradient(circle, rgba(69,133,255,.25), transparent 65%); }
.led-option-media img { display: block; width: min(100%, 430px); max-height: 330px; object-fit: contain; filter: drop-shadow(0 28px 42px rgba(0,0,0,.5)); }
.led-option-copy { padding: 1.6rem; }
.led-label { margin: 0 0 .45rem; color: #9ec0ff; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.led-option-copy h4 { margin: 0 0 .7rem; font-size: 1.65rem; }
.led-option-copy > p:not(.led-label) { color: var(--muted); }
.led-price { margin: 1.4rem 0 0; display: flex; align-items: baseline; gap: 1rem; }
.led-price strong { color: #fff; font: 800 clamp(2rem, 3.5vw, 3rem)/1 Manrope, sans-serif; letter-spacing: -.05em; }
.led-price span { color: #9ec0ff; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.led-offer-footer { display: flex; justify-content: space-between; gap: 2rem; align-items: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.led-offer-footer p { max-width: 700px; margin: 0; color: #929daf; font-size: .86rem; }
.led-offer-footer .button { flex: 0 0 auto; }

.photo-note { margin-top: 1rem; padding: 2.2rem; border: 1px solid rgba(88,161,255,.42); background: linear-gradient(120deg, rgba(40,120,255,.16), rgba(12,17,28,.92) 55%); display: grid; grid-template-columns: 110px 1fr; gap: 2rem; align-items: center; }
.photo-note-mark { font: 800 3rem/1 Manrope, sans-serif; letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 1px #78aaff; text-align: center; text-shadow: 0 0 28px rgba(40,120,255,.35); }
.photo-note .eyebrow { margin-bottom: .7rem; }
.photo-note h3 { margin-bottom: .65rem; font-size: clamp(1.45rem, 2.6vw, 2.15rem); }
.photo-note p:last-child { max-width: 790px; margin: 0; color: #bcc5d5; }

.font-styles { margin-top: 1rem; padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,23,38,.98), rgba(5,8,14,.98)); }
.font-styles-heading { display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.font-styles-heading h3 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -.045em; }
.font-styles-heading > p { margin: 0; color: var(--muted); }
.font-styles-heading strong { color: #eef4ff; }
.font-styles-visual { margin: 0; overflow: hidden; border: 1px solid rgba(106,158,255,.26); background: #e9e4dc; }
.font-styles-visual img { width: 100%; height: auto; }
.font-styles-visual figcaption { padding: .85rem 1rem; background: #090e18; color: #aeb8ca; font-size: .82rem; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7%; align-items: start; padding-top: 2rem; }
.about-intro h2 { margin-bottom: 1.5rem; font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.055em; }
.about-intro > p:last-child { max-width: 550px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.about-promises { display: grid; gap: 1rem; }
.promise-card { padding: 2rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,23,38,.96), rgba(7,11,19,.96)); }
.promise-number { display: block; margin-bottom: 2.5rem; color: #6f9fff; font: 700 .72rem/1 Manrope, sans-serif; letter-spacing: .14em; }
.promise-card h3 { margin-bottom: .75rem; font-size: 1.4rem; }
.promise-card p { margin: 0; color: var(--muted); }

.ideas {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(40,120,255,.08) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(40,120,255,.08) 1px, transparent 1px) 0 0 / 84px 84px,
    radial-gradient(circle at 18% 20%, rgba(40,120,255,.18), transparent 31%),
    #080c15;
}
.ideas-inner { width: min(calc(100% - 3rem), var(--max)); margin: auto; padding: 7rem 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; align-items: start; }
.ideas .section-heading { position: sticky; top: 2rem; }
.ideas-lead { max-width: 450px; margin-top: 1.8rem; color: var(--muted); }
.idea-list { border-top: 1px solid var(--line); }
.idea-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 1.35rem; align-items: start; padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.idea-index { color: #699cff; font: 700 .72rem/1.5 Manrope, sans-serif; letter-spacing: .12em; padding-top: .25rem; }
.idea-item h3 { margin-bottom: .45rem; font-size: 1.35rem; }
.idea-item p { margin: 0; max-width: 520px; color: var(--muted); font-size: .95rem; }
.idea-tag { align-self: center; border: 1px solid rgba(106,158,255,.35); border-radius: 999px; padding: .35rem .7rem; color: #a9c8ff; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }

.process { width: 100%; padding: 2rem 0 8rem; }
.process-panel { width: min(calc(100% - 3rem), 1360px); margin: auto; padding: 7rem max(1.5rem, calc((100% - var(--max))/2)); display: grid; grid-template-columns: .95fr 1.05fr; gap: 8%; background: radial-gradient(circle at 5% 10%, rgba(51,119,255,.18), transparent 36%), #0a0f19; border: 1px solid var(--line); }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 1.4rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.step-number { width: 46px; height: 46px; border: 1px solid rgba(82,145,255,.6); border-radius: 50%; display: grid; place-items: center; color: #79aaff; font-size: .72rem; }
.steps h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.steps p { margin: 0; color: var(--muted); }

.faq { padding-top: 1rem; }
.faq-heading { max-width: 820px; margin-bottom: 3rem; }
.faq-heading h2 { margin-bottom: 1.2rem; font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.055em; }
.faq-heading > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.faq-card { min-height: 245px; padding: 1.75rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,23,38,.96), rgba(7,11,19,.96)); }
.faq-card > span { display: block; margin-bottom: 2.7rem; color: #6f9fff; font: 700 .72rem/1 Manrope, sans-serif; letter-spacing: .14em; }
.faq-card h3 { margin-bottom: .75rem; font-size: 1.3rem; }
.faq-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.policies { padding-top: 1rem; }
.policies-heading { max-width: 850px; margin-bottom: 3rem; }
.policies-heading h2 { margin-bottom: 1.2rem; font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.055em; }
.policies-heading > p:last-child { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.policy-card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,23,38,.96), rgba(7,11,19,.96)); }
.policy-card summary { min-height: 82px; padding: 1.45rem 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #eef4ff; cursor: pointer; list-style: none; font: 700 1.12rem/1.3 Manrope, sans-serif; }
.policy-card summary::-webkit-details-marker { display: none; }
.policy-card summary span { color: #79aaff; font-size: 1.8rem; font-weight: 400; transition: transform .2s ease; }
.policy-card[open] summary span { transform: rotate(45deg); }
.policy-copy { padding: 0 1.6rem 1.6rem; border-top: 1px solid var(--line); }
.policy-copy h3 { margin: 1.45rem 0 .5rem; font-size: 1rem; color: #e8eef9; }
.policy-copy p { margin: 0; color: var(--muted); font-size: .9rem; }
.policy-copy a { color: #9fc2ff; }

.enquire { min-height: 520px; position: relative; display: grid; place-items: center; text-align: center; overflow: hidden; }
.enquire::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: var(--blue); filter: blur(170px); opacity: .2; }
.enquire-mark { position: absolute; font: 800 clamp(15rem, 35vw, 33rem)/1 Manrope; letter-spacing: -.12em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055); user-select: none; }
.enquire-content { position: relative; max-width: 720px; display: grid; justify-items: center; }
.enquire h2 { font-size: clamp(3.8rem, 7vw, 7rem); letter-spacing: -.07em; margin-bottom: 1rem; }
.enquire p:not(.eyebrow) { max-width: 650px; color: var(--muted); margin: 0 0 2rem; }
.enquire-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.button-whatsapp { border-color: #45d47c; background: linear-gradient(135deg, #20a85a, #0b7b42); color: #fff; box-shadow: 0 12px 30px rgba(32,168,90,.24); }
.button-whatsapp:hover { border-color: #74eda4; box-shadow: 0 15px 36px rgba(32,168,90,.34); }

.whatsapp-float { position: fixed; z-index: 20; right: 1.5rem; bottom: 1.5rem; display: inline-flex; align-items: center; gap: .55rem; min-height: 52px; padding: .8rem 1.15rem; border: 1px solid rgba(139,255,185,.5); border-radius: 999px; background: linear-gradient(135deg, #24b963, #08773d); color: #fff; text-decoration: none; font-weight: 800; font-size: .92rem; box-shadow: 0 14px 38px rgba(0,0,0,.38), 0 8px 24px rgba(32,168,90,.25); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float span { color: #c9ffdc; font-size: .75rem; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,0,0,.42), 0 10px 30px rgba(32,168,90,.34); }
.whatsapp-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

footer { width: min(calc(100% - 3rem), var(--max)); margin: auto; padding: 3rem 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 2rem; color: #858e9f; font-size: .8rem; }
.footer-brand { width: 290px; display: grid; justify-items: center; gap: .4rem; color: #9eb5dd; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-logo-crop { display: block; width: 100%; height: 188px; overflow: hidden; }
.footer-logo-crop img { width: 100%; height: auto; }
.footer-contact { display: grid; gap: .35rem; }
.footer-contact a { color: #c6d8ff; text-decoration: none; width: fit-content; }
.footer-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .35rem; }
.copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 901px) {
  .hero { align-items: flex-start; }
  .hero-content { margin: clamp(270px, 28vh, 340px) auto 0; }
}

@media (max-width: 900px) {
  .site-header { height: 165px; }
  .brand { width: 230px; height: 160px; }
  .brand-logo-crop { height: auto; }
  .brand-subline { font-size: .5rem; }
  .menu-button { display: block; }
  .nav { position: absolute; display: none; top: 155px; right: 0; padding: 1.3rem; flex-direction: column; align-items: stretch; min-width: 220px; background: rgba(8,12,21,.98); border: 1px solid var(--line); }
  .nav.open { display: flex; }
  .hero { min-height: 780px; align-items: flex-end; }
  .hero-overlay { background: linear-gradient(0deg, #05070c 0%, rgba(4,7,13,.65) 68%, rgba(4,7,13,.75)); }
  .hero-content { margin: 0 auto 12rem; }
  h1 { font-size: clamp(3.3rem, 12vw, 5.6rem); }
  .hero-proof { left: 1.5rem; right: 1.5rem; bottom: 2rem; }
  .hero-proof div { min-width: 0; padding: .8rem; }
  .intro-copy { float: none; margin-top: 2rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 420px; }
  .crystal-showcase-heading { grid-template-columns: 1fr; }
  .crystal-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crystal-photo img { height: 340px; }
  .portrait-showcase-heading { grid-template-columns: 1fr; }
  .portrait-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portrait-photo-featured { grid-column: 1 / -1; }
  .portrait-photo-featured img { height: 620px; object-fit: contain; }
  .led-offer-heading { grid-template-columns: 1fr; }
  .font-styles-heading { grid-template-columns: 1fr; }
  .led-options { grid-template-columns: 1fr; }
  .led-option-media { min-height: 300px; }
  .led-offer-footer { align-items: flex-start; flex-direction: column; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .ideas-inner { grid-template-columns: 1fr; gap: 4rem; }
  .ideas .section-heading { position: static; }
  .process-panel { grid-template-columns: 1fr; gap: 4rem; }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .copyright { text-align: center; }
}

@media (max-width: 540px) {
  .site-header, .hero-content, .section, footer { width: calc(100% - 2rem); }
  .site-header { height: 165px; }
  .brand { width: 210px; height: 160px; justify-content: flex-start; }
  .brand-logo-crop { height: auto; }
  .brand-subline {
    margin-top: .45rem;
    font-size: .68rem;
    letter-spacing: .09em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav { top: 155px; }
  .hero { min-height: 760px; }
  .hero-content { margin-bottom: 11.5rem; }
  h1 { font-size: 3.45rem; }
  h1 em { -webkit-text-stroke-width: 1px; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
  .enquire-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .button { justify-content: center; }
  .whatsapp-float { right: 1rem; bottom: 1rem; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); left: 1rem; right: 1rem; }
  .hero-proof strong { font-size: 1rem; }
  .hero-proof span { font-size: .58rem; }
  .section { padding: 6rem 0; }
  .ideas-inner { width: calc(100% - 2rem); padding: 5rem 0; }
  .idea-item { grid-template-columns: 34px 1fr; gap: .8rem; }
  .idea-tag { grid-column: 2; justify-self: start; }
  .photo-note { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .photo-note-mark { text-align: left; }
  .font-styles { padding: 1rem; }
  .about { padding-top: 1rem; }
  .promise-card { padding: 1.5rem; }
  .crystal-showcase { padding: 1rem; }
  .crystal-gallery { grid-template-columns: 1fr; }
  .crystal-photo img { height: auto; aspect-ratio: 4 / 3; object-fit: contain; }
  .crystal-photo-tall img { aspect-ratio: 3 / 4; }
  .portrait-showcase { padding: 1rem; }
  .portrait-gallery { grid-template-columns: 1fr; }
  .portrait-photo-featured { grid-column: auto; }
  .portrait-photo img, .portrait-photo-featured img { height: auto; aspect-ratio: 2 / 3; object-fit: cover; }
  .led-offer { padding: 1rem; }
  .led-option-media { min-height: 250px; padding: 1rem; }
  .led-option-copy { padding: 1.25rem; }
  .led-price { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .section-heading h2 { font-size: 3rem; }
  .process-panel { width: 100%; border-left: 0; border-right: 0; padding: 5rem 1rem; }
  .steps li { gap: .8rem; grid-template-columns: 46px 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card { min-height: 0; }
  .policies-heading h2 { font-size: 3rem; }
  .policy-card summary { padding: 1.2rem; }
  .policy-copy { padding: 0 1.2rem 1.2rem; }
  .enquire h2 { font-size: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
  .crystal-photo img { transition: none; }
  .portrait-photo img { transition: none; }
}
