/* ==========================================================================
   MuRai — Marketing, Refined
   Premium UI stylesheet
   Palette sourced from the MuRai monogram: aged gold + deep maroon on cream.
   ========================================================================== */

:root{
  /* ---- Brand palette (sampled directly from the MuRai logo artwork) ---- */
  --gold:            #bd9329;
  --gold-bright:     #d2b56c;
  --gold-light:      #e7d8af;
  --gold-pale:       #f7efdc;
  --maroon:          #5a0b17;
  --maroon-bright:   #7a1526;
  --maroon-deep:     #360102;

  --ink:             #1c1512;
  --ink-soft:        #4a3f3a;
  --cream:           #fbf8f2;
  --cream-deep:      #f3ecdd;
  --paper:           #ffffff;

  --line:            rgba(28, 21, 18, 0.1);
  --line-gold:       rgba(189, 147, 41, 0.35);

  --shadow-sm:  0 2px 10px rgba(28, 21, 18, 0.06);
  --shadow:     0 14px 40px -12px rgba(28, 21, 18, 0.18);
  --shadow-lg:  0 28px 70px -20px rgba(28, 21, 18, 0.3);
  --shadow-gold: 0 10px 30px -8px rgba(189, 147, 41, 0.45);

  --gradient-gold:  linear-gradient(120deg, #8f7420 0%, #bd9329 45%, #e7d8af 70%, #bd9329 100%);
  --gradient-dark:  linear-gradient(160deg, #241512 0%, #150c0a 100%);
  --gradient-maroon: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;

  --container: 1180px;
  --nav-height: 84px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------------------------------- Reset ---------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ font-family: var(--font-display); color: var(--ink); margin: 0; font-weight: 500; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea{ font-family: inherit; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.75rem;
}
.container.narrow{ max-width: 780px; }

.section{ padding: 7.5rem 0; position: relative; }
.section-dark{
  background: var(--gradient-dark);
  color: rgba(255,255,255,.92);
}
.section-dark h2, .section-dark h3{ color: #fff; }

.section-label{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-label::before{
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.section-dark .section-label{ color: var(--gold-light); }
.section-dark .section-label::before{ background: var(--gold-light); }

.lede{
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
}
.section-dark .lede{ color: rgba(255,255,255,.72); }

.statement{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--maroon);
  margin-top: 1.5rem;
}

em{
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(120deg, var(--maroon) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------- Buttons ---------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn span{ transition: transform .3s var(--ease); }
.btn:hover span{ transform: translateX(4px); }

.btn-primary{
  background: var(--gradient-maroon);
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(90, 11, 23, .55);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -8px rgba(90, 11, 23, .65);
}

.btn-ghost{
  background: transparent;
  border-color: var(--line-gold);
  color: var(--ink);
}
.btn-ghost:hover{
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-3px);
}
.section-dark .btn-ghost{ border-color: rgba(255,255,255,.28); color: #fff; }
.section-dark .btn-ghost:hover{ border-color: var(--gold-light); background: rgba(189,147,41,.12); }

/* ---------------------------------- Navigation ---------------------------------- */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(251, 248, 242, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
}
.site-nav.is-scrolled{
  background: rgba(251, 248, 242, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  height: 72px;
}

.nav-inner{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo{
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nav-mark{ border-radius: 6px; }
.nav-wordmark{
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .02em;
  color: var(--ink);
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a{
  position: relative;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: .4rem 0;
  transition: color .25s ease;
}
.nav-links a:not(.nav-cta)::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:not(.nav-cta):hover{ color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after{ transform: scaleX(1); transform-origin: left; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .68rem 1.4rem;
  border-radius: 999px;
  background: var(--gradient-maroon);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 8px 20px -8px rgba(90,11,23,.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(90,11,23,.65); }
.nav-cta span{ transition: transform .3s var(--ease); }
.nav-cta:hover span{ transform: translateX(3px); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------- Hero ---------------------------------- */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(189,147,41,.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 100%, rgba(90,11,23,.07), transparent 60%),
    var(--cream);
  text-align: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg svg{ width: 100%; height: 100%; }
.hero-line{ stroke: var(--gold); stroke-width: 1; opacity: .18; }
.hero-dot{ fill: var(--maroon); opacity: .4; }

.hero-inner{
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-inline: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow{
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 1.6rem;
}

.hero-logo{
  width: min(170px, 40vw);
  height: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 12px 28px rgba(90,11,23,.15));
}

.hero-headline{
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.hero-copy{
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------------------------------- Intro ---------------------------------- */
.intro{ text-align: center; padding-top: 6rem; }
.intro .container{ margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.intro h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.4rem; line-height: 1.25; }
.intro .lede{ margin-inline: auto; }
.intro .statement{ margin-top: 1.8rem; font-size: 1.5rem; }

/* ---------------------------------- Approach ---------------------------------- */
.approach h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.approach .lede{ margin-bottom: 3.5rem; }

.approach-track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.approach-step{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.approach-step:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}
.step-number{
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: .8rem;
}
.approach-step h3{ font-size: 1.3rem; margin-bottom: .5rem; }
.step-tags{
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: .8rem;
}
.approach-step p:last-child{ color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------- Services ---------------------------------- */
.services h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 3.5rem; max-width: 620px; }

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover{
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before{ transform: scaleX(1); }
.service-number{
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  width: 40px; height: 40px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 1.3rem;
}
.service-card h3{ font-size: 1.28rem; margin-bottom: .7rem; }
.service-card p{ color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------- Philosophy ---------------------------------- */
.philosophy h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.3rem; line-height: 1.3; }
.philosophy .lede{ margin-bottom: 3.5rem; }

.philosophy-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.philosophy-item{
  background: rgba(255,255,255,.02);
  padding: 2.4rem 1.6rem;
  transition: background .3s ease;
}
.philosophy-item:hover{ background: rgba(189,147,41,.08); }
.philosophy-item h3{
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: .55rem;
}
.philosophy-item p{ color: rgba(255,255,255,.65); font-size: .92rem; }

/* ---------------------------------- Work ---------------------------------- */
.work h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.work .lede{ margin-bottom: 3.5rem; }

.work-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.work-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.work-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.work-visual{
  aspect-ratio: 16 / 9;
  background: var(--gradient-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.work-visual::after{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(189,147,41,.35), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(189,147,41,.2), transparent 55%);
}
.work-visual span{
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: .02em;
}

.work-copy{ padding: 2rem 2rem 2.2rem; }
.work-meta{
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.work-copy h3{ font-size: 1.5rem; margin-bottom: 1.2rem; }
.work-detail{ margin-bottom: 1rem; }
.work-detail:last-child{ margin-bottom: 0; }
.work-detail-label{
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: .3rem;
}
.work-detail p:last-child{ color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }

/* ---------------------------------- Results ---------------------------------- */
.results{ text-align: center; }
.results .container{ display: flex; flex-direction: column; align-items: center; margin-inline: auto; }
.results h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.3rem; line-height: 1.3; }
.results .lede{ margin-inline: auto; margin-bottom: 2.6rem; }

.results-tags{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.results-tags span{
  padding: .6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(189,147,41,.35);
  color: var(--gold-light);
  font-size: .84rem;
  font-weight: 500;
  background: rgba(189,147,41,.06);
}

/* ---------------------------------- Why ---------------------------------- */
.why h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 3.5rem; }

.why-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 3rem;
}
.why-item{
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.why-number{
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2.5rem;
}
.why-item h3{ font-size: 1.25rem; margin-bottom: .5rem; }
.why-item p{ color: var(--ink-soft); font-size: .95rem; }

.closing-statement{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--maroon);
  text-align: center;
  margin-top: 3.5rem;
}

/* ---------------------------------- About ---------------------------------- */
.about{ text-align: center; background: var(--cream-deep); }
.about .container{ display: flex; flex-direction: column; align-items: center; margin-inline: auto; }
.about h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.4rem; line-height: 1.3; }
.about .lede{ margin-inline: auto; margin-bottom: 1.1rem; }
.about .statement{ margin-top: 1.8rem; font-size: 1.5rem; }

/* ---------------------------------- Insights ---------------------------------- */
.insights h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 3.5rem; }

.insights-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.insight-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.insight-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}
.insight-category{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.insight-card h3{ font-size: 1.22rem; margin-bottom: .7rem; line-height: 1.35; }
.insight-card p{ color: var(--ink-soft); font-size: .93rem; }

/* ---------------------------------- Final CTA ---------------------------------- */
.final-cta{
  text-align: center;
  background: var(--gold-pale);
  position: relative;
}
.final-cta::before, .final-cta::after{
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at center, rgba(189,147,41,.14), transparent 70%);
  pointer-events: none;
}
.final-cta::before{ left: 0; }
.final-cta::after{ right: 0; }
.final-cta .container{ display: flex; flex-direction: column; align-items: center; margin-inline: auto; position: relative; }
.final-cta h2{ font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1.2rem; }
.final-cta .lede{ margin-inline: auto; margin-bottom: 2.4rem; }

/* ---------------------------------- Contact ---------------------------------- */
.contact{ background: var(--cream); }
.contact .container{ display: flex; flex-direction: column; align-items: center; margin-inline: auto; }
.contact h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); text-align: center; margin-bottom: 2.6rem; line-height: 1.3; }

.contact-form{
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow);
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-field{ margin-bottom: 1.4rem; }
.form-field label{
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.form-field input,
.form-field textarea{
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(189,147,41,.14);
}
.form-field textarea{ resize: vertical; min-height: 120px; }

.contact-form .btn{ width: 100%; justify-content: center; margin-top: .4rem; }

.form-note{
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 1.1rem;
}
.form-note-success{
  background: #eaf4ec;
  color: #1e6b34;
  border-radius: 10px;
  padding: .9rem 1.2rem;
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.form-note-error{
  background: #fbe9e7;
  color: var(--maroon-bright);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

/* ---------------------------------- Footer ---------------------------------- */
.site-footer{
  background: var(--gradient-dark);
  color: rgba(255,255,255,.72);
  padding: 4rem 0 2rem;
}
.footer-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand{ display: flex; align-items: center; gap: .9rem; }
.footer-mark{ border-radius: 8px; }
.footer-name{ font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.footer-tagline{ font-size: .82rem; color: var(--gold-light); margin-top: .1rem; }

.footer-links{
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.footer-links a{ font-size: .88rem; color: rgba(255,255,255,.68); transition: color .25s ease; }
.footer-links a:hover{ color: var(--gold-light); }

.footer-social{ display: flex; gap: 1.4rem; }
.footer-social a{
  font-size: .84rem;
  color: rgba(255,255,255,.68);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.footer-social a:hover{ color: var(--gold-light); border-color: var(--gold-light); }

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: 1.8rem;
  font-size: .78rem;
}
.footer-strategy{ letter-spacing: .05em; color: rgba(255,255,255,.45); }
.footer-copy{ color: rgba(255,255,255,.5); }

/* ---------------------------------- Floating "back to top" button ---------------------------------- */
.scroll-fab{
  position: fixed;
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-maroon);
  box-shadow: 0 12px 28px -8px rgba(90,11,23,.55), 0 0 0 3px rgba(189,147,41,.28);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(.9);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .3s ease;
}
.scroll-fab.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-fab:hover{
  box-shadow: 0 16px 34px -8px rgba(90,11,23,.65), 0 0 0 3px rgba(189,147,41,.4);
  transform: translateY(-3px) scale(1.04);
}
.scroll-fab svg{
  width: 19px; height: 19px;
  stroke: var(--gold-light);
}

@media (max-width: 560px){
  .scroll-fab{ width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce){
  .scroll-fab{ transition: opacity .2s linear; }
}

/* ---------------------------------- Scroll reveal ---------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

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

/* ---------------------------------- Responsive ---------------------------------- */
@media (max-width: 992px){
  .approach-track{ grid-template-columns: repeat(2, 1fr); }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid{ grid-template-columns: repeat(2, 1fr); }
  .work-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .insights-grid{ grid-template-columns: repeat(2, 1fr); }
  .section{ padding: 5.5rem 0; }
}

@media (max-width: 760px){
  .nav-links{
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.75rem 1.5rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-links.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: var(--shadow);
  }
  .nav-links a{ padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child{ border-bottom: none; }
  .nav-cta{ justify-content: center; margin-top: .8rem; }
  .nav-toggle{ display: flex; }

  .approach-track{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .philosophy-grid{ grid-template-columns: 1fr; }
  .insights-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-top{ flex-direction: column; }
  .contact-form{ padding: 1.8rem; }
  .section{ padding: 4.5rem 0; }
  .hero-actions{ flex-direction: column; width: 100%; }
  .hero-actions .btn{ width: 100%; justify-content: center; }
}

@media (max-width: 420px){
  .container{ padding-inline: 1.25rem; }
  .service-card, .insight-card{ padding: 1.8rem 1.4rem; }
  .approach-step{ padding: 1.8rem 1.4rem; }
  .work-copy{ padding: 1.6rem 1.4rem 1.8rem; }
  .contact-form{ padding: 1.4rem; }
  .hero-headline{ font-size: clamp(2rem, 9vw, 2.6rem); }
  .btn{ padding: .85rem 1.5rem; font-size: .84rem; }
  .nav-wordmark{ font-size: 1.15rem; }
}
