/* ============================================
   Spirit Events — design tokens & base styles
   ============================================ */

:root {
  --ink: #0b0e14;
  --ink-soft: #1a1f29;
  --cream: #f6f3ed;
  --cream-dim: #efeae0;
  --gold: #c9971e;
  --gold-light: #e8b84b;
  --warm-grey: #5a5347;
  --white: #ffffff;
  --border-soft: rgba(11, 14, 20, 0.1);
  --border-on-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* ---------- Skip link / focus ---------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-block {
  background: var(--ink);
  color: var(--cream);
}
.btn-block:hover {
  background: var(--ink-soft);
}

.btn-header {
  padding: 13px 26px;
  font-size: 0.86rem;
  margin-left: 4px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-on-dark);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding-right: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

.brand-icon-lg {
  height: 58px;
  width: auto;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav ul a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}
.main-nav ul a:hover,
.main-nav ul a[aria-current="page"] {
  color: var(--white);
}
.main-nav ul a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 28px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .main-nav ul a {
    font-size: 1.1rem;
    display: block;
  }
  .main-nav .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 18% 30%, rgba(201, 151, 30, 0.14), transparent 60%),
    radial-gradient(ellipse 900px 600px at 85% 70%, rgba(201, 151, 30, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(11,14,20,0.2) 0%, rgba(11,14,20,0.35) 55%, rgba(11,14,20,0.82) 100%),
    linear-gradient(90deg, rgba(11,14,20,0.1) 0%, rgba(11,14,20,0.85) 38%, rgba(11,14,20,0.85) 62%, rgba(11,14,20,0.1) 100%),
    url("assets/homebanner.png") center 30% / cover no-repeat,
    #0b0e14;
  color: var(--white);
  padding: 90px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 90px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-glow--a {
  width: 340px; height: 340px;
  left: -60px; bottom: -80px;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.35), transparent 70%);
}
.hero-glow--b {
  width: 420px; height: 420px;
  right: -100px; top: -60px;
  background: radial-gradient(circle, rgba(201, 151, 30, 0.22), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.hero-mark {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.hero-tagline {
  margin-top: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.5;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  color: var(--white);
}

.hero-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-locations {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 240px;
}

.hero-location .pin {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-location .pin svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-light);
}

.hero-location strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.hero-location span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

@media (max-width: 640px) {
  .hero { min-height: auto; padding: 64px 0 48px; }
  .hero-locations { justify-content: center; text-align: left; }
}

/* ---------- Section scaffolding ---------- */

.section {
  padding: 96px 0;
}
.section--tight { padding: 72px 0; }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dim {
  background: var(--cream-dim);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--gold-light); }

.section-head {
  max-width: 620px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}
.section-head p {
  margin-top: 16px;
  color: var(--warm-grey);
  font-size: 1rem;
}
.section--dark .section-head p {
  color: rgba(246, 243, 237, 0.72);
}

.section-head--center {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Split layout (text + grid) ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.split .section-head .btn {
  margin-top: 28px;
}

/* ---------- Icon grids ---------- */

.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.icon-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.icon-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.icon-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.icon-card {
  background: var(--cream);
  padding: 30px 22px;
  min-width: 0;
}
.section--dim .icon-card { background: var(--cream-dim); }
.section--dark .icon-grid { background: var(--border-on-dark); border-color: var(--border-on-dark); }
.section--dark .icon-card { background: var(--ink); }

.icon-card svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 18px;
}

.icon-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.55;
}
.section--dark .icon-card p { color: rgba(246, 243, 237, 0.68); }

@media (max-width: 900px) {
  .icon-grid--5, .icon-grid--4, .icon-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .icon-grid { grid-template-columns: 1fr !important; }
}

/* ---------- Feature strip (dark banded, home page) ---------- */

.feature-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 4px;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 40px;
  padding: 56px 44px;
}
.feature-strip .eyebrow { color: var(--gold-light); }
.feature-strip h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.feature-strip .section-head p { margin-top: 14px; }

@media (max-width: 900px) {
  .feature-strip-inner { grid-template-columns: 1fr; padding: 44px 26px; }
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 900px) {
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .feature-list { grid-template-columns: 1fr; }
}

.feature-item svg {
  width: 26px; height: 26px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 14px;
}
.feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.86rem;
  color: rgba(246, 243, 237, 0.68);
}

/* ---------- Values (About page) ---------- */

.value-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  border: 1px solid var(--border-soft);
  padding: 32px 24px;
  text-align: center;
}
.value-card svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  margin: 0 auto 18px;
}
.value-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.87rem;
  color: var(--warm-grey);
}

/* ---------- Expertise list ---------- */

.expertise-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.expertise-list li:first-child { padding-top: 0; }
.expertise-list svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.expertise-list h3 {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.expertise-list p {
  font-size: 0.88rem;
  color: var(--warm-grey);
}

/* ---------- Sectors grid ---------- */

.sector-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (max-width: 900px) {
  .sector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sector-card {
  background: var(--cream);
  padding: 28px 18px;
  text-align: center;
}
.sector-card svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  margin: 0 auto 16px;
}
.sector-card h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.sector-card p {
  font-size: 0.8rem;
  color: var(--warm-grey);
  line-height: 1.5;
}

/* ---------- Quote block ---------- */

.quote-block {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0;
}
.quote-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.quote-inner p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.quote-attribution {
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--warm-grey);
}
.quote-attribution strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

/* ---------- Services page ---------- */

.service-block {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-block:first-of-type { padding-top: 0; }
.service-block:last-of-type { border-bottom: none; }

.service-icon {
  width: 62px; height: 62px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.service-copy h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-copy p {
  color: var(--warm-grey);
  max-width: 640px;
  margin-bottom: 14px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.service-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream-dim);
  border: 1px solid var(--border-soft);
  padding: 6px 12px;
  border-radius: 20px;
}

@media (max-width: 640px) {
  .service-block { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

.office-card {
  display: flex;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-soft);
}
.office-card:last-child { border-bottom: none; }
.office-card .pin {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.office-card .pin svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
}
.office-card strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.office-card span {
  display: block;
  font-size: 0.9rem;
  color: var(--warm-grey);
}
.office-card a {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
}
.office-card a:hover { border-color: var(--gold); }

.phone-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  margin-bottom: 28px;
  background: var(--ink);
  border-radius: var(--radius);
}
.phone-callout-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 75, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.phone-callout-icon svg {
  width: 20px;
  height: 20px;
}
.phone-callout strong {
  display: block;
  color: rgba(246, 243, 237, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.phone-callout a {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.phone-callout a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  border-radius: var(--radius);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-note {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { color: #2f6b3a; }
.form-status.is-error { color: #a13a3a; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 151, 30, 0.22), transparent 70%);
  filter: blur(20px);
}
.page-hero .eyebrow { position: relative; }
.page-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  max-width: 680px;
}
.page-hero p {
  position: relative;
  margin-top: 16px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--gold);
  color: var(--ink);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 560px;
  margin: 0 auto;
}
.cta-band p {
  margin-top: 14px;
  color: rgba(11, 14, 20, 0.72);
}
.cta-band .btn-group {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(246, 243, 237, 0.7);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-on-dark);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-brand .brand-logo { height: 50px; }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.88rem;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(246, 243, 237, 0.7);
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-bottom a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---------- Solution cards (home) ---------- */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (max-width: 560px) {
  .solution-grid { grid-template-columns: 1fr; }
}

.solution-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.solution-photo {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(201,151,30,0.16), rgba(11,14,20,0.06)),
    repeating-linear-gradient(45deg, rgba(11,14,20,0.05) 0px, rgba(11,14,20,0.05) 2px, transparent 2px, transparent 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.solution-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.solution-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-body {
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.solution-body h3 {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.solution-body p:not(.solution-number) {
  font-size: 0.86rem;
  color: var(--warm-grey);
  line-height: 1.55;
  flex: 1;
}

.solution-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.solution-link:hover {
  color: var(--gold);
}

/* ---------- Client logos strip ---------- */

.clients-strip {
  background: var(--cream-dim);
}

.client-logos {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.client-logo {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  min-height: 130px;
}
.client-logo img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.2s ease;
}
.client-logo:hover img {
  filter: grayscale(0) opacity(1);
}
.client-logo:hover .client-logo-word {
  color: var(--ink);
}
.client-logo-word {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-grey);
  transition: color 0.2s ease;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ---------- Legal pages ---------- */

.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--warm-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 12px;
}
.legal-content p:first-of-type { margin-top: 0; }
.legal-content ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}
.legal-content li {
  color: var(--warm-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content strong {
  color: var(--ink);
}
.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  font-weight: 600;
}
.legal-content a:hover { border-color: var(--gold); }

/* ---------- Agency page ---------- */

.agency-intro {
  max-width: 760px;
}
.agency-intro p {
  margin-top: 18px;
  color: var(--warm-grey);
  font-size: 1rem;
  line-height: 1.7;
}
.agency-intro p:first-of-type { margin-top: 24px; }

.approach-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .approach-grid { grid-template-columns: 1fr; }
}
.approach-card {
  border: 1px solid var(--border-soft);
  padding: 28px 22px;
}
.approach-card .solution-number { margin-bottom: 14px; }
.approach-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.approach-card p {
  font-size: 0.87rem;
  color: var(--warm-grey);
  line-height: 1.55;
}

.founder-block {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .founder-block { grid-template-columns: 1fr; gap: 32px; }
}

.founder-photo {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(201,151,30,0.18), rgba(11,14,20,0.5)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 14px);
  border: 1px solid var(--border-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,243,237,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
.founder-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-quote {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 2px solid var(--gold-light);
  background: rgba(255,255,255,0.03);
}
.founder-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--white);
}
.founder-quote span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(246,243,237,0.65);
}

.closing-quote {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.closing-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
