/* ==========================================================================
   Amaan Interiors — V7 (Bauhaus Orange · Alabaster White · Charcoal)
   ========================================================================== */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
    /* Palette: Hermès-Orange meets Bauhaus */
    --bg:      #fcfbf9;   /* Warm Alabaster White */
    --bg2:     #f4f1ea;   /* Greige Surface */
    --bg3:     #1a1a1a;   /* Charcoal near-black */
    --orange:  #ff531a;   /* Architectural Orange */
    --orange2: #e04010;   /* Deeper Orange hover */
    --text:    #1a1a1a;   /* Charcoal Dark */
    --muted:   #888580;   /* Warm Greige Muted */
    --dim:     #4a4845;   /* Medium Charcoal */
    --border:  rgba(26,26,26,0.08);
    --border2: rgba(26,26,26,0.18);
    --line:    rgba(26,26,26,0.12);

    /* Typography */
    --syne:   'Syne', sans-serif;
    --grotesk:'Space Grotesk', sans-serif;
    --serif:  'Cormorant Garamond', Georgia, serif;
    --mono:   'Share Tech Mono', monospace;

    /* Motion */
    --ease:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease2:  cubic-bezier(0.85, 0, 0.15, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
body { font-family: var(--grotesk); overflow-x: hidden; cursor: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--grotesk); cursor: none; border: none; background: none; }

::selection { background: var(--orange); color: #fff; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); }

/* ─── CUSTOM CURSOR ─────────────────────────────────── */
#cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; }
#cursor-core {
    position: absolute; width: 10px; height: 10px; background: var(--orange); border-radius: 50%;
    transform: translate(-50%,-50%); transition: width .2s var(--ease), height .2s var(--ease);
}
#cursor-orbit {
    position: absolute; width: 40px; height: 40px; border: 1px solid rgba(255,83,26,0.3); border-radius: 50%;
    transform: translate(-50%,-50%); transition: width .5s var(--ease), height .5s var(--ease);
}
#cursor-label {
    position: absolute; transform: translate(-50%,-50%);
    background: var(--orange); color: #fff; font-family: var(--mono); font-size: .5rem;
    letter-spacing: .15em; padding: .25rem .55rem;
    opacity: 0; white-space: nowrap;
    transition: opacity .2s, transform .2s var(--ease);
    transform: translate(-50%,-50%) scale(0.7);
}
.cursor-hover #cursor-core { width: 60px; height: 60px; background: var(--orange); mix-blend-mode: multiply; }
.cursor-hover #cursor-orbit { opacity: 0; }
.cursor-hover #cursor-label { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ─── PRELOADER ──────────────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 9999; overflow: hidden;
}
.loader-slideshow { position: absolute; inset: 0; }
.ls-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--ease); }
.ls-slide.active { opacity: 1; }
.ls-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 2.5s linear; filter: brightness(0.42); }
.ls-slide.active img { transform: scale(1.0); }

/* Orange panels overlay preloader */
.pl-panel { position: absolute; top: 0; height: 100%; width: 51%; background: rgba(26,26,26,0.88); z-index: 10; }
.pl-left { left: 0; border-right: 2px solid var(--orange); }
.pl-right { right: 0; border-left: 2px solid var(--orange); }

/* Preloader UI center stage */
.pl-ui {
    position: absolute; inset: 0; z-index: 20;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.4rem; text-align: center;
}
.pl-brand { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.pl-studio { font-family: var(--syne); font-size: 4rem; font-weight: 800; color: #fff; letter-spacing: .2em; line-height: 1; }
.pl-brand-sub { font-family: var(--mono); font-size: .72rem; color: var(--orange); letter-spacing: .5em; text-transform: uppercase; }
.pl-sub { font-family: var(--mono); font-size: .72rem; color: var(--orange); letter-spacing: .5em; text-transform: uppercase; }
.pl-progress-wrap { width: 240px; display: flex; flex-direction: column; gap: .5rem; }
.pl-progress-bar { height: 2px; background: rgba(255,83,26,.2); position: relative; overflow: hidden; }
.pl-progress-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--orange); transition: width .05s linear; }
#plBar { height: 2px; width: 0; background: var(--orange); transition: width .05s linear; }
.pl-pct-wrap { display: flex; justify-content: flex-end; font-family: var(--mono); font-size: .8rem; color: var(--orange); }
.pl-label { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; color: rgba(255,255,255,.5); text-transform: uppercase; min-height: 18px; }

/* Corner coordinates */
.pl-corner {
    position: absolute; z-index: 20;
    font-family: var(--mono); font-size: .65rem; color: rgba(255,255,255,.35);
    letter-spacing: .1em; text-transform: uppercase;
}
.pl-tl { top: 1.5rem; left: 2rem; }
.pl-tr { top: 1.5rem; right: 2rem; }
.pl-bl { bottom: 1.5rem; left: 2rem; }
.pl-br { bottom: 1.5rem; right: 2rem; color: var(--orange); }

/* ─── HEADER ─────────────────────────────────────────── */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 2rem 4.5%; background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .6s var(--ease), border-color .6s var(--ease), padding .4s var(--ease);
}
#header.scrolled { background: rgba(252,251,249,0.95); backdrop-filter: blur(20px); border-bottom-color: var(--line); padding: 1.2rem 4.5%; }
.logo { font-family: var(--syne); font-size: 1.6rem; font-weight: 800; color: var(--text); }
.logo em { color: var(--orange); font-style: normal; }
#nav { display: flex; gap: 2.8rem; }
#nav a { font-size: .82rem; font-weight: 500; letter-spacing: .06em; color: var(--dim); transition: color .25s; text-transform: uppercase; }
#nav a:hover { color: var(--orange); }
.btn-reserve {
    font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
    padding: .75rem 1.6rem; background: var(--orange); color: #fff;
    transition: background .3s var(--ease);
}
.btn-reserve:hover { background: var(--orange2); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.8rem; font-family: var(--grotesk); font-size: .82rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
    background: var(--orange); color: #fff; border: 2px solid var(--orange);
    transition: background .35s var(--ease), color .35s;
}
.btn-primary:hover { background: transparent; color: var(--orange); }
.btn-primary.full { width: 100%; }
.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.8rem; font-family: var(--grotesk); font-size: .82rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
    background: transparent; color: var(--text); border: 2px solid var(--border2);
    transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-text-arrow {
    font-family: var(--grotesk); font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.65);
    display: inline-flex; align-items: center; gap: .5rem;
    transition: color .25s, gap .25s;
}
.btn-text-arrow:hover { color: #fff; gap: .9rem; }
.btn-text-arrow span { color: var(--orange); font-size: 1.2rem; }

.magnetic { position: relative; }
.tag-label { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; color: var(--orange); text-transform: uppercase; display: block; margin-bottom: 1.4rem; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.section-title { font-family: var(--syne); font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.04; letter-spacing: -.025em; color: var(--text); }
.i-serif { font-family: var(--serif); font-style: italic; font-weight: 300; letter-spacing: -.01em; }
.body-text { font-size: 1.1rem; color: var(--dim); font-weight: 300; line-height: 1.75; }
.line-wrap { overflow: hidden; }
.line { display: block; transform: translateY(100%); }

/* ─── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 4.5%; }
section { padding: 11rem 0; }
.center { text-align: center; }

/* ─── HERO — FULL BLEED SLIDES ───────────────────────── */
#hero { position: relative; height: 100vh; overflow: hidden; background: #000; }
.hero-slides { position: relative; width: 100%; height: 100%; }

/* Base: every slide fills the viewport */
.hslide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    display: flex; align-items: flex-end; overflow: hidden;
    opacity: 0; pointer-events: none;
}
.hslide.active { opacity: 1; pointer-events: all; z-index: 2; }
.hslide-bg { position: absolute; inset: 0; z-index: 0; }
.hslide-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.45); will-change: transform; }

/* Veils for Split direction (Slide A) */
.hslide-veil {
    position: absolute; left: 0; right: 0; z-index: 3; background: var(--bg3);
    height: 50%; pointer-events: none;
}
.veil-top { top: 0; transform-origin: top; }
.veil-bot { bottom: 0; transform-origin: bottom; }

/* Hammer panel (Slide B) */
.hammer-panel {
    position: absolute; left: -80%; top: 5%; width: 60%; height: 70%; z-index: 5;
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    transform-origin: top left;
}
.hammer-text { font-family: var(--syne); font-size: 5rem; font-weight: 800; color: #fff; white-space: nowrap; transform: rotate(-8deg); }

/* Diagonal wipe (Slide C) */
.hslide-diagonal-wipe {
    position: absolute; inset: 0; z-index: 3;
    background: var(--bg3);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Zoom BG (Slide D) */
.hslide-bg-zoom img { transform: scale(2); filter: brightness(.45); will-change: transform; }

/* Content areas in slides */
.hslide-content {
    position: relative; z-index: 10; padding: 6rem 4.5%; max-width: 680px;
    display: flex; flex-direction: column; gap: 1.5rem;
}
.pos-left { align-self: flex-end; margin-bottom: 5rem; }
.pos-right { align-self: flex-end; margin-left: auto; margin-right: 4.5%; margin-bottom: 5rem; }
.pos-center { margin: auto; text-align: center; }

.hs-tag { font-family: var(--mono); font-size: .7rem; letter-spacing: .25em; color: var(--orange); text-transform: uppercase; }
.hs-title { font-family: var(--syne); font-size: clamp(3.5rem, 8vw, 7.5rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: #fff; }
.hs-title em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--orange); }
.hs-body { font-size: 1.1rem; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.65; max-width: 420px; }
.hs-cta-row { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.hslide-index {
    position: absolute; bottom: 2rem; right: 2.5%; z-index: 10;
    font-family: var(--mono); font-size: .72rem; color: rgba(255,255,255,.3); letter-spacing: .15em;
}

/* Hero dots navigation */
.hero-nav {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 1rem; z-index: 20;
}
.hn-dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3);
    transition: background .3s, width .35s var(--ease);
}
.hn-dot.active { background: var(--orange); width: 28px; border-radius: 4px; }

/* Hero scroll hint */
.hero-scroll {
    position: absolute; bottom: 3rem; left: 4.5%; z-index: 20;
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    font-family: var(--mono); font-size: .6rem; letter-spacing: .25em; color: rgba(255,255,255,.3);
    opacity: 0;
}
.hs-scroll-line { width: 1px; height: 45px; background: rgba(255,255,255,.15); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .2; } 50% { opacity: .8; } }

/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee-row { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); padding: 1.1rem 0; }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marqueeScroll 34s linear infinite; font-family: var(--syne); font-weight: 600; font-size: 1rem; color: var(--dim); letter-spacing: .06em; text-transform: uppercase; }
.marquee-track .mdot { color: var(--orange); }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ─── ABOUT ──────────────────────────────────────────── */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 8rem; align-items: center; }
.about-left { display: flex; flex-direction: column; gap: 2rem; }
.about-left .section-title { margin-bottom: .5rem; }
.pull-quote {
    font-family: var(--serif); font-style: italic; font-size: 1.45rem; line-height: 1.5;
    border-left: 3px solid var(--orange); padding-left: 1.6rem; color: var(--dim); font-weight: 300;
}
.stats-row { display: flex; gap: 3.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--syne); font-size: 3.2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-plus { font-family: var(--syne); font-size: 2rem; color: var(--orange); }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-top: .4rem; font-weight: 500; }
.img-reveal-mask { overflow: hidden; clip-path: inset(100% 0 0 0); border: none; aspect-ratio: 3/4; }
.img-reveal-inner { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.img-caption { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; color: var(--muted); margin-top: 1rem; text-transform: uppercase; }

/* ─── SHOWCASE — HORIZONTAL SCROLL ───────────────────── */
#showcase { background: var(--bg3); overflow: hidden; }
.showcase-pin { position: relative; }
.showcase-track { display: flex; height: 100vh; }

.showcase-intro-card {
    min-width: 40vw; height: 100%; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 7rem 5rem 7rem 4.5%;
    border-right: 1px solid rgba(255,255,255,.08);
    gap: 1.5rem;
}
.showcase-intro-card .section-title { color: #fff; }
.showcase-intro-card .tag-label { color: var(--orange); }
.showcase-intro-card p { color: rgba(255,255,255,.45); font-size: .95rem; max-width: 280px; line-height: 1.6; }
.showcase-arrow { font-size: 3rem; color: var(--orange); font-family: var(--syne); font-weight: 800; }

.sc-slide {
    min-width: 65vw; height: 100%; position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
    border-right: 1px solid rgba(255,255,255,.06);
}
.sc-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.sc-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); transform: scale(1.1); will-change: transform; }
.sc-info {
    position: relative; z-index: 5; padding: 5rem 4rem;
    display: flex; flex-direction: column; gap: .4rem;
}
.sc-num { font-family: var(--mono); font-size: .75rem; color: var(--orange); letter-spacing: .2em; margin-bottom: .4rem; }
.sc-title { font-family: var(--syne); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.1; }
.sc-meta { font-size: .85rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }

/* ─── OFFER — THE RISK-FREE VISION ───────────────────── */
#offer { background: var(--bg); overflow: hidden; }

.offer-head { max-width: 780px; margin-bottom: 5rem; }

.offer-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.offer-card {
    position: relative;
    background: var(--bg2);
    border: 2px solid var(--border);
    padding: 0;
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.offer-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(255,83,26,.08), 0 8px 20px rgba(0,0,0,.04);
}

.offer-card-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    width: 100%;
}

.offer-card-inner {
    padding: 3rem 2.8rem 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.offer-pillar-num {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .25em;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 600;
}

.offer-card-title {
    font-family: var(--syne);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

.offer-card-divider {
    width: 48px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.offer-card-body {
    font-size: 1rem;
    color: var(--dim);
    line-height: 1.75;
    font-weight: 300;
}
.offer-card-body strong {
    color: var(--orange);
    font-weight: 600;
}

.offer-card-highlights {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: .5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.offer-highlight {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .9rem;
    color: var(--dim);
}

.offer-check {
    color: var(--orange);
    font-size: .85rem;
    flex-shrink: 0;
}

.offer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.offer-cta-sub {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .15em;
    color: var(--muted);
    text-transform: uppercase;
}

/* ─── PLANNER WIZARD ─────────────────────────────────── */
#planner { background: var(--bg2); }
.planner-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 7rem; align-items: start; }
.planner-left { display: flex; flex-direction: column; gap: 2rem; }
.planner-perks { display: flex; flex-direction: column; gap: 1.1rem; }
.perk { display: flex; gap: 1rem; font-size: .95rem; color: var(--dim); }
.perk span:first-child { color: var(--orange); font-size: 1rem; }
.planner-right { background: var(--bg); border: 2px solid var(--border); padding: 3.5rem; }
.wizard-steps { display: flex; justify-content: space-between; position: relative; margin-bottom: 3rem; }
.wizard-steps::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: var(--border); transform: translateY(-50%); }
.wz-step { width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--syne); font-size: .82rem; font-weight: 700; color: var(--muted); position: relative; z-index: 2; transition: all .4s var(--ease); }
.wz-step.active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 0 20px rgba(255,83,26,.4); }
.wz-step.done { background: var(--dim); border-color: var(--dim); color: #fff; }
.wz-pane { display: none; }
.wz-pane.active { display: flex; flex-direction: column; gap: 1.6rem; }
.pane-q { font-family: var(--syne); font-size: 1.4rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.wz-opts { display: flex; flex-direction: column; gap: .8rem; }
.wz-opt { border: 2px solid var(--border); padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .2rem; transition: border-color .3s; background: var(--bg2); }
.wz-opt:hover { border-color: rgba(255,83,26,.35); }
.wz-opt.selected { border-color: var(--orange); background: rgba(255,83,26,.03); }
.wz-opt b { font-family: var(--syne); font-size: 1.05rem; font-weight: 700; }
.wz-opt span { font-size: .82rem; color: var(--dim); }
.wz-actions { display: flex; gap: 1rem; }
.wz-actions button { flex: 1; }
.tier-badge { background: var(--bg2); border: 2px dashed var(--border2); padding: 1rem; text-align: center; }
.tier-label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-bottom: .4rem; }
.tier-val { display: block; font-family: var(--syne); font-size: 1.3rem; font-weight: 700; color: var(--orange); }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); font-weight: 600; }
.form-field input, .form-field textarea { background: var(--bg2); border: 2px solid var(--border); padding: .9rem 1rem; font-family: var(--grotesk); font-size: .95rem; color: var(--text); transition: border-color .25s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--orange); }
.wizard-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; padding: 2rem 0; }
.wizard-success svg { color: var(--orange); }

/* ─── FOOTER ─────────────────────────────────────────── */
#footer { background: var(--bg3); padding: 9rem 4.5% 3rem; }
.footer-big { font-family: var(--syne); font-size: clamp(4rem, 11vw, 9rem); font-weight: 800; line-height: 1; color: #fff; letter-spacing: -.04em; margin-bottom: 3.5rem; }
.footer-big .line { transform: translateY(100%); }
.footer-big .i-serif { color: var(--orange); font-family: var(--serif); font-style: italic; font-weight: 300; }
.footer-btn { margin-bottom: 7rem; }
.footer-bottom { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3.5rem; border-top: 1px solid rgba(255,255,255,.06); padding-top: 4rem; margin-bottom: 2rem; }
.footer-brand { font-family: var(--syne); font-size: 1.6rem; font-weight: 800; color: #fff; }
.footer-brand em { color: var(--orange); font-style: normal; }
.footer-links { display: flex; flex-direction: column; gap: .85rem; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.45); transition: color .25s; text-transform: uppercase; letter-spacing: .06em; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact span { font-size: .9rem; color: rgba(255,255,255,.45); }
.footer-phone { font-family: var(--mono); color: var(--orange) !important; letter-spacing: .08em; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.2); letter-spacing: .05em; border-top: 1px solid rgba(255,255,255,.04); padding-top: 1.5rem; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid, .planner-wrap, .offer-pillars { grid-template-columns: 1fr; gap: 4rem; }
    .footer-bottom { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    #cursor { display: none; }
    #nav { display: none; }
    section { padding: 6rem 0; }
    .hs-title { font-size: 3rem; }
    .footer-bottom { grid-template-columns: 1fr; }
    .hs-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hammer-text { font-size: 2.5rem; }
    .offer-pillars { grid-template-columns: 1fr; }
    .offer-card-inner { padding: 2rem 1.8rem 2.4rem; }
    .offer-card-title { font-size: 1.4rem; }
}
