/* =========================================================
   PRANAAM BUILDERS — pranaam.css
   Heritage-Navy palette · Lora + Inter Tight
   Linen #F7F5F0 · Admiral #1A2B3A · Gold #9C7C46 · Terracotta #C4604A
   ========================================================= */

:root {
  /* Brand world tokens */
  --linen:        #F7F5F0;
  --linen-2:      #E9E5DC;
  --linen-soft:   #FCFAF5;
  --admiral:      #1A2B3A;
  --admiral-2:    #101D29;
  --gold:         #9C7C46;
  --gold-2:       #B89A66;
  --gold-soft:    #D6C29A;
  --slate:        #4F544C;
  --slate-2:      #757A72;
  --terracotta:   #C4604A;

  /* structural aliases */
  --paper:        #F7F5F0;
  --paper-2:      #E9E5DC;
  --paper-soft:   #FCFAF5;
  --ink:          #1A2B3A;
  --ink-2:        #101D29;
  --accent:       #9C7C46;
  --accent-2:     #B89A66;
  --accent-soft:  #D6C29A;
  --spot:         #5A6B4E;
  --muted:        #4F544C;
  --muted-2:      #757A72;
  --line:         rgba(26,43,58,.12);
  --line-2:       rgba(26,43,58,.05);

  /* Type stack */
  --f-display: "Lora", Georgia, serif;
  --f-ui:      "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "Inter Tight", monospace;

  /* Scale */
  --container:        1320px;
  --container-narrow: 1040px;
  --gutter:  clamp(20px, 4vw, 56px);
  --ease:    cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px -16px rgba(0,0,0,.12);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.06), 0 24px 48px -20px rgba(0,0,0,.18);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
*::selection { background: var(--admiral); color: var(--linen); }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body); font-size: 16px; line-height: 1.65;
  font-weight: 400; color: var(--admiral); background: var(--linen);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
section, header, footer { max-width: 100vw; overflow-x: clip; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- FILM GRAIN (house signature) ---- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: -.015em; line-height: 1.06; color: var(--admiral);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
p  { color: var(--slate); }
em { font-style: italic; font-family: var(--f-display); }

/* Eyebrow — Inter Tight with gold rule (house signature) */
.eyebrow {
  font-family: var(--f-ui); text-transform: uppercase;
  letter-spacing: .38em; font-size: 10.5px; font-weight: 500;
  color: var(--admiral); display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 26px; height: 1px;
  background: var(--gold); margin-right: 13px; vertical-align: middle;
}
.label {
  font-family: var(--f-ui); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--slate-2);
}

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--dark { background: var(--admiral); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--linen); }
.section--dark p { color: rgba(247,245,240,.68); }
.section--dark .eyebrow { color: var(--linen); }
.section--chalk2 { background: var(--linen-2); }
.section--soft { background: var(--linen-soft); }
.grid { display: grid; gap: clamp(24px, 4vw, 56px); }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 56px; }
.center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-ui); font-size: 10.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  padding: 16px 34px; border: 1px solid var(--admiral);
  background: var(--admiral); color: var(--linen);
  transition: all .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--admiral); opacity: 1; }
.btn--brass { background: var(--gold); border-color: var(--gold); color: var(--linen); }
.btn--brass:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--terra { background: var(--terracotta); border-color: var(--terracotta); color: var(--linen); }
.btn--terra:hover { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn--ghost { background: transparent; color: var(--admiral); }
.btn--ghost:hover { background: var(--admiral); color: var(--linen); }
.btn--light { border-color: var(--linen); color: var(--linen); background: transparent; }
.btn--light:hover { background: var(--linen); color: var(--admiral); }

/* ---- ANNOUNCE BAR ---- */
.announce {
  background: var(--admiral-2); text-align: center; padding: 11px 20px;
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .34em;
  text-transform: uppercase; color: rgba(247,245,240,.55);
}
.announce span { color: var(--gold-2); }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px; padding: 20px var(--gutter);
  background: color-mix(in srgb, var(--linen) 94%, transparent);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.nav.scrolled { padding-top: 12px; padding-bottom: 12px; }
.nav-brand {
  font-family: var(--f-display); font-size: 1.12rem;
  letter-spacing: .06em; color: var(--admiral);
}
.nav-brand em { font-style: italic; color: var(--slate-2); font-size: .9em; }
.nav-links {
  display: flex; gap: 34px; list-style: none; justify-self: center;
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-cta { justify-self: end; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--admiral); transition: .3s var(--ease); }

/* ---- HERO (full-bleed) ---- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(16,29,41,.92) 0%,
    rgba(16,29,41,.68) 55%,
    rgba(16,29,41,.25) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(156,124,70,.12); border: 1px solid rgba(156,124,70,.36);
  padding: 8px 16px; margin-bottom: 28px;
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-2);
}
.hero-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero h1 { color: var(--linen); margin-bottom: 20px; }
.hero-tag {
  color: rgba(247,245,240,.7); font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 46ch; margin-bottom: 32px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: clamp(24px, 3vw, 40px); right: var(--gutter);
  z-index: 2; font-family: var(--f-ui); font-size: 8.5px; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(247,245,240,.35);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px;
}
.hero-scroll::before { content: ""; width: 1px; height: 44px; background: rgba(156,124,70,.45); flex-shrink: 0; }

/* ---- MARQUEE ---- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 14px 0; background: var(--linen-2); }
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap; width: max-content;
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--slate-2); animation: marq 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .dot { color: var(--gold); font-size: .6em; }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- TRUST BAR ---- */
.trust-bar { padding: clamp(48px, 6vw, 80px) 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(36px, 4vw, 56px) 0;
  text-align: center;
}
.trust-num {
  font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--admiral); line-height: 1; margin-bottom: 8px;
}
.trust-num em { color: var(--gold); }
.trust-label { font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--slate-2); }

/* ---- PORTFOLIO CARDS ---- */
.portfolio-section { padding: 0; }
.portfolio-header { padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 5vw, 72px); }
.portfolio-list { display: flex; flex-direction: column; }
.project-card { display: grid; grid-template-columns: 1.35fr 1fr; border-bottom: 1px solid var(--line); }
.project-card:nth-child(even) .project-card-img { order: 2; }
.project-card:nth-child(even) .project-card-info { order: 1; }
.project-card-img { position: relative; overflow: hidden; min-height: 420px; aspect-ratio: 4/3; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.project-card:hover .project-card-img img { transform: scale(1.04); }
.project-card-info {
  padding: clamp(40px, 5vw, 72px); display: flex;
  flex-direction: column; justify-content: center; background: var(--linen-soft);
}
.project-type {
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; display: block;
}
.project-card-info h3 { margin-bottom: 14px; line-height: 1.2; }
.project-card-info p { font-size: .9rem; }
.project-meta {
  margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.project-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
}
.project-meta-row .k { color: var(--slate-2); }
.project-meta-row .v { color: var(--slate); }

/* ---- PROCESS ---- */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2px, .3vw, 4px); margin-top: clamp(56px, 7vw, 96px);
}
.process-step {
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--line);
  background: var(--linen-soft);
}
.process-num {
  font-family: var(--f-display); font-size: 3.8rem; color: var(--gold-soft);
  line-height: 1; margin-bottom: 18px; letter-spacing: -.02em;
}
.process-step h3 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin-bottom: 10px; }
.process-step p { font-size: .875rem; }

/* ---- THE FIRM ---- */
.firm-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.firm-image-wrap { position: relative; }
.firm-image-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.firm-award {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--admiral); color: var(--linen);
  padding: 22px 24px; text-align: center; min-width: 160px;
}
.firm-award-yr { font-family: var(--f-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.firm-award-lbl { font-family: var(--f-ui); font-size: 8px; letter-spacing: .24em; text-transform: uppercase; margin-top: 6px; color: rgba(247,245,240,.65); line-height: 1.5; }
.firm-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.founder-card { padding: 22px 24px; border: 1px solid var(--line); }
.founder-name { font-family: var(--f-display); font-size: 1.05rem; margin-bottom: 3px; }
.founder-role { font-family: var(--f-ui); font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--terracotta); }
.founder-bio { margin-top: 12px; font-size: .835rem; color: var(--slate-2); line-height: 1.6; }

/* ---- NRI / GULF BUYERS SECTION ---- */
.walkthrough-section { background: var(--admiral); padding: clamp(80px, 10vw, 130px) 0; }
.walkthrough-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.walkthrough-screen {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  border: 1px solid rgba(156,124,70,.25);
}
.walkthrough-screen img { width: 100%; height: 100%; object-fit: cover; }
.walkthrough-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(16,29,41,.4); transition: background .3s var(--ease);
}
.walkthrough-screen:hover .walkthrough-play { background: rgba(16,29,41,.2); }
.walkthrough-play-btn {
  width: 72px; height: 72px; border: 1px solid rgba(156,124,70,.5);
  display: flex; align-items: center; justify-content: center;
  background: rgba(156,124,70,.14);
  transition: all .35s var(--ease);
}
.walkthrough-play-btn:hover { background: var(--gold); border-color: var(--gold); cursor: pointer; }
.walkthrough-play-btn svg { width: 22px; height: 22px; fill: var(--linen); margin-left: 5px; }
.walkthrough-copy h2 { color: var(--linen); }
.walkthrough-copy p { color: rgba(247,245,240,.7); }
.walkthrough-features { list-style: none; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.walkthrough-features li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .9rem; color: rgba(247,245,240,.68); line-height: 1.55;
}
.walkthrough-features li::before {
  content: ""; flex-shrink: 0; width: 18px; height: 1px;
  background: var(--gold); margin-top: .7em;
}
.walkthrough-flags {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px;
}
.wt-flag {
  padding: 8px 16px; border: 1px solid rgba(156,124,70,.3);
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-2);
}

/* ---- ENQUIRY / CTA CARDS ---- */
.pricing-intro { max-width: 58ch; margin-top: 20px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 18px); margin-top: clamp(52px, 6vw, 80px);
}
.pricing-card {
  padding: clamp(28px, 3.5vw, 46px);
  border: 1px solid rgba(247,245,240,.1);
  background: var(--admiral-2);
  display: flex; flex-direction: column;
}
.pricing-card--featured { border-color: var(--gold); background: rgba(156,124,70,.07); }
.pricing-tag {
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.pricing-card h3 { color: var(--linen); font-size: clamp(1.2rem, 1.8vw, 1.6rem); margin-bottom: 6px; }
.pricing-from {
  font-family: var(--f-display); font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--linen); margin: 18px 0 4px; line-height: 1;
}
.pricing-from sup { font-size: .5em; font-family: var(--f-ui); color: var(--gold); vertical-align: super; }
.pricing-sub { font-size: .8rem; color: rgba(247,245,240,.42); margin-bottom: 20px; font-family: var(--f-ui); letter-spacing: .08em; }
.pricing-divider { border: none; border-top: 1px solid rgba(247,245,240,.1); margin-bottom: 20px; }
.pricing-includes { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.pricing-includes li {
  font-size: .85rem; color: rgba(247,245,240,.68);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.pricing-includes li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.pricing-disclaimer {
  margin-top: clamp(32px, 4vw, 48px); padding: 20px 24px;
  border: 1px solid rgba(247,245,240,.1); text-align: center;
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(247,245,240,.38); line-height: 1.7;
}
.pricing-disclaimer a { color: var(--gold-2); }

/* ---- NETWORK ---- */
.network-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px); margin-top: clamp(52px, 6vw, 80px);
}
.network-card { padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); background: var(--linen-soft); }
.network-card-hd { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.network-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(156,124,70,.4);
  display: flex; align-items: center; justify-content: center;
}
.network-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.network-card h3 { font-size: clamp(1rem, 1.4vw, 1.2rem); margin-bottom: 0; }
.network-award-tag {
  display: inline-block; margin-top: 16px; padding: 7px 14px;
  background: var(--admiral); color: var(--gold);
  font-family: var(--f-ui); font-size: 8.5px; letter-spacing: .26em; text-transform: uppercase;
}

/* ---- TESTIMONIAL ---- */
.testimonial-section { padding: clamp(80px, 10vw, 130px) 0; }
.testimonial-section blockquote { max-width: 70ch; margin: 0 auto; text-align: center; }
.testimonial-section blockquote p {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  color: var(--admiral); line-height: 1.5;
}
.testimonial-section blockquote cite {
  display: block; margin-top: 22px;
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--slate-2); font-style: normal;
}

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.contact-detail { margin-bottom: 22px; }
.contact-detail .label { margin-bottom: 5px; display: block; }
.contact-detail a { font-size: 1.05rem; color: var(--admiral); }
.contact-detail a:hover { color: var(--gold); opacity: 1; }
form input, form textarea, form select {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  border: 1px solid var(--line); background: var(--linen-soft);
  font-family: var(--f-body); font-size: .9rem; color: var(--admiral);
  outline: none; transition: border-color .2s var(--ease); -webkit-appearance: none;
}
form input:focus, form textarea:focus, form select:focus { border-color: var(--gold); }
form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.whatsapp-note {
  margin-top: 14px; padding: 12px 16px;
  border: 1px solid rgba(156,124,70,.3); background: rgba(156,124,70,.05);
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .12em;
  color: var(--slate-2); text-align: center; line-height: 1.6;
}
.whatsapp-note a { color: var(--gold); }

/* ---- FOOTER ---- */
.footer { background: var(--admiral); padding: clamp(64px, 8vw, 100px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 56px); }
.footer-brand-name { font-family: var(--f-display); font-size: 1.3rem; color: var(--linen); margin-bottom: 12px; }
.footer-brand-name em { font-style: italic; color: var(--gold); }
.footer-tagline { font-size: .85rem; color: rgba(247,245,240,.5); max-width: 30ch; line-height: 1.6; }
.footer-col-ttl { font-family: var(--f-ui); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-list li, .footer-col-list a { font-size: .85rem; color: rgba(247,245,240,.55); }
.footer-col-list a:hover { color: var(--gold-2); opacity: 1; }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px;
  border-top: 1px solid rgba(247,245,240,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(247,245,240,.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(247,245,240,.4); }
.footer-bottom a:hover { color: var(--gold); opacity: 1; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in, .no-js .reveal, .reveal.reveal--shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- IMAGE FALLBACK ---- */
.img-fallback { display: flex; align-items: center; justify-content: center; background: var(--linen-2); border: 1px solid var(--line); min-height: 280px; }
.img-fallback-cap { font-family: var(--f-ui); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--slate-2); padding: 20px; text-align: center; }

/* ---- BRIDGE / ALIAS CLASSES (for pranaam index.html) ---- */

.section--paper2 { background: var(--linen-2); }

.section-intro { max-width: 58ch; color: var(--slate); margin-top: 14px; font-size: 1.05rem; line-height: 1.7; }
.section--dark .section-intro { color: rgba(247,245,240,.65); }

.serif  { font-family: var(--f-display); }
.label-mono {
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--slate-2);
  display: block; margin-bottom: 4px;
}
.section--dark .label-mono { color: rgba(247,245,240,.45); }
.mb-s { margin-bottom: 14px; }

/* Hero */
.hero-meta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(247,245,240,.5);
}
.hero-meta-row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-title { color: var(--linen); }
.hero-grid { width: 100%; }

/* Nav aliases */
.nav-left { }
.nav-logo {
  font-family: var(--f-display); font-size: 1.2rem; letter-spacing: .04em;
  color: var(--admiral); justify-self: center;
}

/* Trust bar (self-contained grid) */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(36px, 4vw, 56px) 0;
  gap: clamp(20px, 3vw, 40px);
}
.trust-item { }
.trust-stat {
  font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--admiral); line-height: 1; margin-bottom: 8px;
}
.trust-label {
  font-family: var(--f-ui); font-size: 9.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--slate-2);
}

/* Project rows */
.project-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line); margin-top: clamp(40px, 5vw, 64px);
}
.project-row--flip .project-image { order: 2; }
.project-row--flip .project-info  { order: 1; }
.project-image { overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; aspect-ratio: 4/3; transition: transform .9s var(--ease); }
.project-row:hover .project-image img { transform: scale(1.04); }
.project-info {
  padding: clamp(36px, 4.5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--linen-soft);
}
.project-info h3 { margin-bottom: 12px; }
.project-specs { list-style: none; margin: 18px 0; display: flex; flex-direction: column; gap: 7px; }
.project-specs li {
  font-size: .875rem; color: var(--slate); line-height: 1.5;
  padding-left: 16px; position: relative;
}
.project-specs li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--gold); }

/* Process step-num */
.step-num {
  font-family: var(--f-display); font-size: 3.4rem; color: var(--gold-soft);
  line-height: 1; margin-bottom: 16px; letter-spacing: -.02em; display: block;
}

/* Firm section */
.firm-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.firm-image { overflow: hidden; }
.firm-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.firm-copy { }
.firm-detail { padding-top: 18px; border-top: 1px solid var(--line); }

/* NRI section */
.nri-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.nri-card {
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid rgba(247,245,240,.1);
  text-align: center;
}
.nri-icon {
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(156,124,70,.3);
  display: inline-block; padding: 5px 12px; margin-bottom: 14px;
}
.nri-card h3 { color: var(--linen); font-size: 1.05rem; margin-bottom: 5px; }
.nri-card p  { color: rgba(247,245,240,.5); font-size: .84rem; }
.nri-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.nri-feature { padding: clamp(20px, 2.5vw, 30px); border: 1px solid rgba(247,245,240,.1); }
.nri-feature p { font-size: .875rem; color: rgba(247,245,240,.55); margin-top: 8px; }

/* Enquiry cards */
.enquiry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 20px); }
.enquiry-card {
  padding: clamp(28px, 3.5vw, 46px);
  border: 1px solid var(--line); background: var(--linen-soft);
  display: flex; flex-direction: column;
}
.enquiry-card h3 { margin-bottom: 10px; }
.enquiry-card > p { font-size: .9rem; margin-bottom: 14px; }
.enquiry-card ul { list-style: none; flex: 1; margin-bottom: 20px; }
.enquiry-card ul li {
  font-size: .85rem; color: var(--slate);
  padding: 7px 0; border-bottom: 1px solid var(--line-2);
  display: flex; align-items: flex-start; gap: 10px;
}
.enquiry-card ul li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* Contact aliases */
.contact-info  { }
.contact-form  { }
.contact-form h3 { margin-bottom: 18px; }

/* Footer aliases */
.footer-brand  { }
.footer-logo {
  font-family: var(--f-display); font-size: 1.4rem; color: var(--linen);
  margin-bottom: 12px; letter-spacing: .04em;
}
.footer-credit {
  grid-column: 1 / -1;
  padding-top: 24px; border-top: 1px solid rgba(247,245,240,.1);
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,245,240,.28); text-align: center; line-height: 1.8;
}
.footer-credit a { color: rgba(247,245,240,.4); }
.footer-credit a:hover { color: var(--gold); opacity: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .firm-award { right: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .walkthrough-grid { grid-template-columns: 1fr; }
  .nri-grid { grid-template-columns: repeat(2, 1fr); }
  .nri-features { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column;
    background: var(--linen); padding: 28px var(--gutter); gap: 22px;
    border-bottom: 1px solid var(--line); z-index: 99;
  }
  .project-card { grid-template-columns: 1fr; }
  .project-card:nth-child(even) .project-card-img,
  .project-card:nth-child(even) .project-card-info { order: 0; }
  .project-card-img { min-height: 260px; aspect-ratio: 16/9; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .firm-grid { grid-template-columns: 1fr; }
  .firm-founders { grid-template-columns: 1fr; }
  .firm-award { position: static; margin-top: 12px; display: inline-block; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-credit { grid-column: 1; }
  .hero-scroll { display: none; }
  .project-row { grid-template-columns: 1fr; }
  .project-row--flip .project-image,
  .project-row--flip .project-info { order: 0; }
  .nri-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .walkthrough-flags { gap: 8px; }
  .nri-grid { grid-template-columns: 1fr 1fr; }
}
