/* ============================================================
   KHODAL REALTY — Ultra-luxury real estate landing
   ============================================================ */

:root {
  --bg:        #0a0e16;
  --bg-2:      #0d1320;
  --bg-3:      #111a2b;
  --ink:       #f4efe4;
  --ink-soft:  #b9bdc6;
  --ink-mute:  #7d828d;
  --gold:      #c9a45c;
  --gold-2:    #e8cd8f;
  --gold-deep: #9a7b3f;
  --line:      rgba(201,164,92,.18);
  --line-soft: rgba(255,255,255,.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", system-ui, sans-serif;
  --ease:  cubic-bezier(.22,1,.36,1);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold-2); }

::selection { background: var(--gold); color: #0a0e16; }

/* ---------- Shared typography ---------- */
.section-eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.01em;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__logo { width: clamp(150px, 30vw, 200px); height: auto; margin: 0 auto; }
.preloader__bar {
  width: 200px; height: 2px;
  background: var(--line-soft);
  margin: 1.4rem auto .9rem;
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2));
}
.preloader__label {
  font-size: .7rem; letter-spacing: .45em;
  color: var(--ink-mute);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  z-index: 9998; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.6);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: #fff; }
.cursor.is-hover {
  width: 70px; height: 70px;
  background: rgba(255,255,255,.12);
  border-color: transparent;
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem);
  transition: padding .4s var(--ease), background .4s var(--ease),
              border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding-top: 1rem; padding-bottom: 1rem;
  background: rgba(10,14,22,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: .8rem; }
.nav__logo { height: 40px; width: auto; display: block; transition: height .4s var(--ease); }
.nav.is-scrolled .nav__logo { height: 34px; }
.nav__name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  letter-spacing: .02em;
}
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: .6rem 1.4rem; border-radius: 100px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--bg) !important; }
.nav__toggle { display: none; background: none; border: 0; width: 32px; height: 24px; position: relative; cursor: none; }
.nav__toggle span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink);
  transition: .35s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { bottom: 4px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { bottom: 11px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.15);
  filter: brightness(.5) saturate(1.05);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(201,164,92,.10), transparent 60%),
    linear-gradient(180deg, rgba(10,14,22,.55) 0%, rgba(10,14,22,.78) 60%, var(--bg) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__content { position: relative; z-index: 3; max-width: 880px; }
.hero__eyebrow {
  font-size: .78rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .98; letter-spacing: -.02em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span,
.hero__title .line > em { display: inline-block; }
.hero__sub {
  margin-top: 1.8rem; max-width: 540px;
  font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7;
}
.hero__actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--ink-mute);
}
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-2); animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse { to { top: 100%; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.1rem; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 500; overflow: hidden; border-radius: 100px; cursor: none;
  border: 1px solid transparent;
}
.btn span { position: relative; z-index: 2; transition: color .4s var(--ease); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #1a1206; }
.btn--gold::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: #fff; transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.btn--gold:hover::before { transform: scaleX(1); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.btn--ghost:hover span { color: var(--bg); }
.btn--ghost:hover::before { transform: scaleX(1); }
.btn--full { width: 100%; margin-top: .8rem; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip { padding: 5rem 0; background: var(--bg); overflow: hidden; }
.strip__track {
  display: flex; gap: 1.4rem; width: max-content;
  padding: 0 .7rem; will-change: transform;
}
.strip__track + .strip__track { margin-top: 1.4rem; }
.strip__card {
  position: relative; width: clamp(260px, 32vw, 420px); aspect-ratio: 4/3;
  overflow: hidden; border-radius: 6px; flex: 0 0 auto;
  border: 1px solid var(--line-soft);
}
.strip__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); filter: brightness(.8);
}
.strip__card:hover img { transform: scale(1.07); filter: brightness(1); }
.strip__card::after {
  content: attr(data-label); position: absolute; left: 1rem; bottom: .9rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: rgba(10,14,22,.55); backdrop-filter: blur(6px);
  padding: .35rem .8rem; border-radius: 100px; border: 1px solid var(--line-soft);
}

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 5rem clamp(1.25rem, 5vw, 4rem); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat { text-align: center; padding: 1rem; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
  background: var(--line-soft);
}
.stat__num {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600;
  color: var(--ink); line-height: 1; display: flex; justify-content: center; align-items: baseline;
}
.stat__num i { color: var(--gold); font-style: normal; font-size: .55em; margin-left: .1em; }
.stat__label {
  margin-top: .7rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  max-width: var(--maxw); margin: 0 auto;
  padding: 7rem clamp(1.25rem, 5vw, 4rem);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 8px;
  border: 1px solid var(--line);
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) brightness(.92); transition: transform 1s var(--ease); }
.about__img-wrap:hover img { transform: scale(1.05); }
.about__img-badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem; right: 1.1rem;
  background: rgba(10,14,22,.6); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 6px; padding: .9rem 1.1rem;
  display: flex; flex-direction: column;
}
.about__img-badge-top { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
.about__img-badge-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.about__p { color: var(--ink-soft); margin-top: 1.3rem; max-width: 560px; }
.about__p strong { color: var(--ink); font-weight: 500; }
.about__list { list-style: none; margin-top: 2rem; display: grid; gap: 1rem; }
.about__list li { display: flex; align-items: center; gap: .9rem; color: var(--ink-soft); font-size: .98rem; }
.about__list i {
  width: 8px; height: 8px; flex: 0 0 auto; transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1.25rem,5vw,4rem); }
.services__head { max-width: 620px; margin-bottom: 3.5rem; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service {
  position: relative; padding: 2.6rem 2rem; border: 1px solid var(--line-soft);
  border-radius: 8px; background: linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden; transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(201,164,92,.14), transparent 70%);
  transition: opacity .5s var(--ease);
}
.service:hover { transform: translateY(-8px); border-color: var(--line); }
.service:hover::before { opacity: 1; }
.service > * { position: relative; z-index: 1; }
.service__no {
  font-family: var(--serif); font-size: 1rem; color: var(--gold); letter-spacing: .1em;
}
.service h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin: 1rem 0 .8rem; }
.service p { color: var(--ink-soft); font-size: .96rem; }
.service__tags {
  display: block; margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: .76rem; letter-spacing: .08em; color: var(--ink-mute); text-transform: uppercase;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1.25rem,5vw,4rem); }
.portfolio__head { max-width: 680px; margin-bottom: 3rem; }
.portfolio__note { color: var(--ink-mute); margin-top: 1rem; font-size: .92rem; }
.portfolio__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.pcard {
  position: relative; overflow: hidden; border-radius: 8px; border: 1px solid var(--line-soft);
  min-height: 240px;
}
.pcard:nth-child(1) { grid-column: span 8; }
.pcard:nth-child(2) { grid-column: span 4; }
.pcard:nth-child(3) { grid-column: span 4; }
.pcard:nth-child(4) { grid-column: span 8; }
.pcard:nth-child(5) { grid-column: span 6; }
.pcard:nth-child(6) { grid-column: span 6; }
.pcard img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1s var(--ease); filter: brightness(.72); }
.pcard:hover img { transform: scale(1.08); filter: brightness(.85); }
.pcard__info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem;
  background: linear-gradient(0deg, rgba(10,14,22,.85), transparent);
  transform: translateY(8px); opacity: .9; transition: .5s var(--ease);
}
.pcard:hover .pcard__info { transform: translateY(0); opacity: 1; }
.pcard__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.pcard__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-top: .2rem; }

/* ============================================================
   INSTAGRAM CTA
   ============================================================ */
.igcta {
  position: relative; margin: 2rem clamp(1.25rem,5vw,4rem); padding: clamp(3rem,6vw,5rem) 1.5rem;
  border: 1px solid var(--line); border-radius: 16px; text-align: center; overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,164,92,.12), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.igcta::before, .igcta::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  filter: blur(70px); opacity: .22; pointer-events: none;
}
.igcta::before { background: #ee2a7b; top: -120px; left: -80px; }
.igcta::after  { background: #6228d7; bottom: -140px; right: -60px; }
.igcta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.igcta__icon {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 18px;
  color: #fff; margin-bottom: 1.6rem;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
  box-shadow: 0 12px 30px rgba(238,42,123,.3);
}
.igcta__icon svg { width: 34px; height: 34px; }
.igcta .section-title { margin: 0 auto; }
.igcta__sub { color: var(--ink-soft); margin: 1.2rem auto 2rem; max-width: 520px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1.25rem,5vw,4rem); }
.process__head { max-width: 620px; margin-bottom: 3.5rem; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pstep {
  padding: 2.2rem 1.6rem; border-top: 2px solid var(--line);
  transition: border-color .5s var(--ease);
}
.pstep:hover { border-color: var(--gold); }
.pstep__no { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); display: block; }
.pstep h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: .8rem 0 .6rem; }
.pstep p { color: var(--ink-soft); font-size: .92rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { max-width: var(--maxw); margin: 0 auto; padding: 5rem clamp(1.25rem,5vw,4rem); }
.testi__head { max-width: 620px; margin-bottom: 3.5rem; }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tcard {
  position: relative; padding: 2.4rem 2rem 2rem; border: 1px solid var(--line-soft);
  border-radius: 10px; background: linear-gradient(180deg, var(--bg-2), var(--bg));
  margin: 0; overflow: hidden; transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.tcard::before {
  content: "\201C"; position: absolute; top: -.4rem; right: 1.2rem;
  font-family: var(--serif); font-size: 6rem; color: var(--gold); opacity: .14; line-height: 1;
}
.tcard:hover { transform: translateY(-6px); border-color: var(--line); }
.tcard__stars { color: var(--gold); letter-spacing: .25em; font-size: .9rem; margin-bottom: 1.1rem; }
.tcard blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.tcard figcaption { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .2rem; }
.tcard__name { font-weight: 500; letter-spacing: .03em; }
.tcard__role { font-size: .8rem; color: var(--ink-mute); letter-spacing: .05em; }

/* ============================================================
   ENQUIRY
   ============================================================ */
.enquiry {
  max-width: var(--maxw); margin: 0 auto;
  padding: 6rem clamp(1.25rem,5vw,4rem);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.enquiry__lead { color: var(--ink-soft); margin-top: 1.4rem; max-width: 420px; }
.enquiry__contacts { margin-top: 2.5rem; display: grid; gap: 1.2rem; }
.enquiry__contact {
  border: 1px solid var(--line-soft); border-radius: 8px; padding: 1.1rem 1.3rem;
  display: flex; flex-direction: column; gap: .25rem; transition: border-color .4s var(--ease), background .4s var(--ease);
}
.enquiry__contact:hover { border-color: var(--gold); background: rgba(201,164,92,.05); }
.enquiry__contact-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.enquiry__contact-val { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }

.form {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form__row--single { grid-template-columns: 1fr; }
.form__row[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: .55rem; }
.field label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.02); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: .95rem 1.1rem; color: var(--ink);
  font-family: var(--sans); font-size: .96rem; font-weight: 300;
  transition: border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  width: 100%; cursor: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: .65; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201,164,92,.04); box-shadow: 0 0 0 3px rgba(201,164,92,.08);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-60%) rotate(45deg);
  width: 8px; height: 8px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  pointer-events: none;
}
.field select { appearance: none; -webkit-appearance: none; cursor: none; }
.field select option { background: var(--bg-3); color: var(--ink); }
#subTypeRow { transition: opacity .4s var(--ease); }
.form__hint { margin-top: 1rem; font-size: .8rem; color: var(--ink-mute); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); margin-top: 3rem; padding: 4.5rem clamp(1.25rem,5vw,4rem) 2rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft);
}
.footer__logo { width: 150px; height: auto; margin-bottom: 1.3rem; }
.footer__brand h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.footer__tagline { font-family: var(--serif); font-style: italic; color: var(--gold-2) !important; font-size: 1.1rem; margin-top: .35rem !important; }
.footer__brand p { color: var(--ink-mute); margin-top: .7rem; max-width: 340px; font-size: .92rem; }
.footer__col h4 { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer__col a, .footer__col span { display: block; color: var(--ink-soft); font-size: .92rem; margin-bottom: .7rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--maxw); margin: 1.6rem auto 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .8rem; color: var(--ink-mute);
}

/* ============================================================
   FLOATING SOCIAL
   ============================================================ */
.floats { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 950; display: flex; flex-direction: column; gap: .9rem; }
.float {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.4); position: relative; cursor: none;
  transition: transform .4s var(--ease);
}
.float svg { width: 28px; height: 28px; }
.float--wa { background: linear-gradient(135deg, #25d366, #128c4b); }
.float--ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7); }
.float:hover { transform: translateY(-4px) scale(1.06); }
.float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; opacity: .5; animation: pulseRing 2.4s ease-out infinite;
}
.float--wa::before { color: #25d366; }
.float--ig::before { color: #ee2a7b; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(140%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #1a1206;
  padding: .9rem 1.6rem; border-radius: 100px; font-size: .9rem; font-weight: 500;
  z-index: 999; transition: transform .5s var(--ease); box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.toast.is-show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   REVEAL ANIMATION HELPERS
   ============================================================ */
.reveal-up { opacity: 0; transform: translateY(30px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about, .enquiry { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .services__grid, .process__steps, .testi__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .portfolio__grid .pcard { grid-column: span 6 !important; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center;
    background: rgba(10,14,22,.98); backdrop-filter: blur(20px);
    gap: 2rem; transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: block; z-index: 10; }
  .services__grid, .process__steps, .footer__top, .testi__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .portfolio__grid .pcard { grid-column: span 12 !important; min-height: 220px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-up { opacity: 1; transform: none; }
}
