/* ============================================================
   BADASS CONSULTING & COMMUNITY — styles.css
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Palette */
  --bg-deep:    #060b06;
  --bg-dark:    #0a110a;
  --bg-alt:     #0f180f;
  --bg-card:    #131e13;
  --bg-card-hv: #172017;

  --gold:       #C8A96A;
  --gold-light: #dbbe84;
  --gold-dim:   #9f8148;
  --gold-fade:  rgba(200, 169, 106, 0.18);
  --gold-glow:  rgba(200, 169, 106, 0.08);

  --text:       #ddd8cc;
  --text-soft:  #a89e90;
  --text-dim:   #6a6256;
  --white:      #f4f0e8;

  --border:     rgba(200, 169, 106, 0.18);
  --border-hv:  rgba(200, 169, 106, 0.45);

  /* Typography */
  --font-display: 'Gilda Display', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --nav-h:    72px;
  --container: 1180px;
  --pad-x:    clamp(24px, 5vw, 80px);
  --section-py: clamp(72px, 10vw, 140px);

  /* Radii */
  --r-sm:   6px;
  --r-md:   16px;
  --r-lg:   32px;
  --r-pill: 999px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t-fast:    0.18s var(--ease);
  --t-base:    0.32s var(--ease);
  --t-slow:    0.6s var(--ease-out);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── Grain Overlay ──────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
}
.section-alt {
  background: var(--bg-alt);
}
.text-center { text-align: center; }

/* ── Typography ─────────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.section-rule {
  width: 52px;
  height: 1px;
  background: var(--gold-dim);
  margin: 20px 0 32px;
}
.rule-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--t-base), color var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn-gold:hover::before,
.btn-gold:focus-visible::before {
  transform: scaleX(1);
}
.btn-gold span,
.btn-gold {
  position: relative;
  z-index: 1;
}
.btn-gold:hover,
.btn-gold:focus-visible {
  color: var(--bg-deep);
  box-shadow: 0 0 32px rgba(201, 160, 96, 0.25);
  outline: none;
}

/* ── Photo Frames ───────────────────────────────────────────── */
.photo-frame {
  overflow: hidden;
  position: relative;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.photo-frame:hover img {
  transform: scale(1.03);
}
.photo-oval {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px var(--border), 0 24px 64px rgba(0,0,0,0.5);
}
.photo-tall {
  border-radius: var(--r-pill) var(--r-pill) var(--r-lg) var(--r-lg);
  aspect-ratio: 3 / 4;
  max-width: 340px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.photo-portrait {
  border-radius: var(--r-lg);
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.photo-portrait img {
  object-position: center 70%;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}
#navbar.scrolled {
  background: rgba(6, 11, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  outline: none;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Toggle */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  transition: color var(--t-fast);
  padding: 6px 2px;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn .lang-divider { color: var(--text-dim); }
.lang-btn.sv-active .lang-sv,
.lang-btn.en-active .lang-en { color: var(--gold); font-weight: 500; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-soft);
  transition: transform var(--t-base), opacity var(--t-fast), background var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--gold); }

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: rgba(6, 11, 6, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open {
  max-height: 400px;
}
.mobile-link {
  display: block;
  padding: 16px var(--pad-x);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(201,160,96,0.08);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-link:hover { color: var(--gold); background: var(--gold-glow); }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  min-height: 100vh;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(15, 30, 15, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 160, 96, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding-left: 28px;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--gold-dim);
}
.hero-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-heading-line {
  display: block;
  overflow: hidden;
}
.hero-heading-line span {
  display: block;
  animation: lineReveal 0.9s var(--ease-out) both;
}
.hero-heading-line:nth-child(1) span { animation-delay: 0.2s; }
.hero-heading-line:nth-child(2) span { animation-delay: 0.4s; }
.hero-heading-line:nth-child(3) span { animation-delay: 0.55s; }

@keyframes lineReveal {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-soft);
  max-width: 400px;
  line-height: 1.65;
  animation: fadeIn 1s 0.8s both;
}
.hero-text .btn-gold {
  animation: fadeIn 1s 1s both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1.1s 0.3s both;
}
.hero-arch {
  position: relative;
  width: min(360px, 42vw);
  aspect-ratio: 2 / 3;
  border-radius: var(--r-pill) var(--r-pill) var(--r-lg) var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(201, 160, 96, 0.06);
}
.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-visual-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--gold-fade);
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  animation: rotateRing 30s linear infinite;
  pointer-events: none;
}
@keyframes rotateRing {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Scroll cue */
.scroll-cue {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about-photo {
  display: flex;
  justify-content: center;
}
.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.about-paragraphs p,
.about-body > p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.75;
}
.about-combiner {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.trait-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.trait-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.55;
}
.trait-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-style: normal;
}
.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gold-dim);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-top {
  margin-bottom: clamp(40px, 5vw, 72px);
}
.services-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.5;
}
.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.services-photo {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.services-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card {
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-dim);
  background: var(--bg-card);
  position: relative;
  cursor: default;
  transition: border-left-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.service-card + .service-card {
  border-top: none;
}
.service-card:hover {
  border-left-color: var(--gold);
  background: var(--bg-card-hv);
  box-shadow: inset 3px 0 20px rgba(201, 160, 96, 0.04);
}
.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.2;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gold-fade);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  margin-top: 5px;
  transition: color var(--t-base);
}
.service-card:hover .service-num {
  color: var(--gold-dim);
}
.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-divider {
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.72rem;
  top: 1px;
  transition: color var(--t-base), transform var(--t-base);
}
.service-card:hover .service-list li::before {
  color: var(--gold);
  transform: translateX(2px);
}

/* Differentiators */
.differentiators {
  border-top: 1px solid var(--border);
  padding-top: clamp(36px, 4vw, 64px);
}
.diff-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 400;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
}
.diff-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 300;
}
.diff-dash {
  color: var(--gold-dim);
  flex-shrink: 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ── PROCESS ────────────────────────────────────────────────── */
.section-process {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  background: transparent;
}
.process-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.process-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 11, 6, 0.97) 0%,
    rgba(6, 11, 6, 0.88) 50%,
    rgba(6, 11, 6, 0.96) 100%
  );
}
.process-content {
  position: relative;
  z-index: 1;
}
.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 72px);
  gap: 8px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  background: var(--bg-deep);
  flex-shrink: 0;
  transition: background var(--t-base), box-shadow var(--t-base);
  position: relative;
  z-index: 1;
}
.process-step:hover .step-circle {
  background: var(--gold-glow);
  box-shadow: 0 0 24px rgba(201, 160, 96, 0.2);
}
.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 32px);
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
}
.process-step p {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 120px;
}

/* ── MATCH ──────────────────────────────────────────────────── */
.match-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.match-photo {
  display: flex;
  justify-content: center;
}
.match-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.match-col-heading {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 18px;
}
.match-mantra {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.3;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-body > p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.contact-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.55rem) !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  margin-bottom: 36px !important;
  line-height: 1.45 !important;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color var(--t-fast);
}
.contact-detail-link:hover { color: var(--gold); }
.contact-icon {
  font-size: 0.85rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-group label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.field-group:focus-within label {
  color: var(--gold);
}
.field-group input,
.field-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t-base), background var(--t-base);
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}
.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(201, 160, 96, 0.03);
}
.field-group textarea {
  min-height: 120px;
}
.form-success {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: -8px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo img {
  height: 72px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--t-base);
}
.footer-logo:hover img { opacity: 1; }
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.footer-links a {
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-sep {
  color: var(--gold-dim);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ── PORTFOLIO ───────────────────────────────────────────────── */
.achievement-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
}
.achievement-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.55;
}
.testimonials-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t-base);
}
.testimonial-card:hover {
  border-color: var(--border-hv);
}
.testimonial-quote {
  font-size: clamp(0.88rem, 1.1vw, 0.97rem);
  color: var(--text-soft);
  line-height: 1.8;
  flex: 1;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.testimonial-title {
  font-size: 0.76rem;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ── RESPONSIVE — Tablet (≤ 900px) ─────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 48px;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-text {
    align-items: center;
    order: 2;
  }
  .hero-eyebrow { padding-left: 0; }
  .hero-eyebrow::before { display: none; }
  .hero-visual { order: 1; }
  .hero-arch {
    width: min(260px, 55vw);
  }
  .hero-visual-deco { display: none; }
  .hero-tagline { max-width: 100%; }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .about-photo { width: 100%; }
  .section-rule { margin-left: auto; margin-right: auto; }
  .about-paragraphs { text-align: left; }
  .trait-list { text-align: left; }

  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-photo {
    position: static;
    display: flex;
    justify-content: center;
  }
  .photo-tall { width: 100%; max-width: 240px; }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-track {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(200,169,106,0.08);
    align-items: center;
  }
  .step-connector {
    display: none;
  }
  .process-step p {
    max-width: none;
    font-size: 0.95rem;
  }

  .match-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .match-photo { display: flex; justify-content: center; width: 100%; }
  .photo-portrait { max-width: 280px; }
  .match-columns {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .match-col { text-align: left; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE — Mobile (≤ 560px) ─────────────────────────── */
@media (max-width: 560px) {
  :root {
    --pad-x: 20px;
    --section-py: 60px;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .hero-arch {
    width: min(220px, 65vw);
  }

  .about-grid { gap: 36px; }
  .photo-oval { max-width: 280px; }

  .service-card {
    padding: 24px 24px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-sep { display: none; }
}

/* ── Focus Visible ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-dim);
  outline-offset: 3px;
}

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: var(--gold-fade);
  color: var(--gold-light);
}
