/* ==========================================================================
   King of Queens Consulting  |  kingofqueensconsulting.com
   Management Consulting for Owner-Led and Mid-Market Organizations
   --------------------------------------------------------------------------
   Palette: Royal Navy + Gold + Linen
   Confident, modern, senior. Visually distinct from sibling sites.
   ========================================================================== */

:root {
  --royal:         #1B3A57;
  --royal-deep:    #0F2238;
  --royal-soft:    #2F537A;
  --gold:          #C9A24B;
  --gold-deep:     #9A7A2C;
  --gold-soft:     #E6D196;
  --linen:         #F4EFE6;
  --linen-warm:    #EBE2CB;
  --rule:          #D2C7A8;
  --rule-soft:     #E2D9BD;
  --ink:           #1B3A57;
  --ink-soft:      #4F6178;
  --white:         #FFFFFF;

  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(15,34,56,0.06), 0 2px 6px rgba(15,34,56,0.04);
  --shadow-md: 0 4px 14px rgba(15,34,56,0.09), 0 12px 26px rgba(15,34,56,0.07);
  --shadow-lg: 0 20px 44px rgba(15,34,56,0.16);

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Helvetica, Arial, sans-serif;

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--royal);
  text-decoration: none;
  background-image: linear-gradient(to right, var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .25s ease, color .2s ease;
}
a:hover { color: var(--gold-deep); background-size: 100% 1px; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--royal);
  font-weight: 400;
  line-height: 1.14;
  margin: 0 0 .55em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.85rem); }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.65rem); }
h3 { font-size: 1.32rem; font-family: var(--font-display); }
h4 { font-size: 1.04rem; font-family: var(--font-sans); font-weight: 600; }
p  { margin: 0 0 1.1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold-soft); }
.eyebrow.no-rule::before { display: none; }

.section-title {
  text-align: center;
  margin-bottom: 3.4rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-title .eyebrow { justify-content: center; }
.section-title h2 { margin-bottom: .7rem; }
.section-title p {
  font-size: 1.06rem;
  color: var(--ink-soft);
}

/* Buttons: outlined royal with gold hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1.5px solid transparent;
  background-image: none;
}
.btn-primary {
  background: var(--royal);
  color: var(--linen);
  border-color: var(--royal);
}
.btn-primary:hover {
  background: var(--royal-deep);
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn-outline {
  background: transparent;
  color: var(--royal);
  border-color: var(--royal);
}
.btn-outline:hover {
  background: var(--royal);
  color: var(--linen);
  border-color: var(--gold);
}
.btn-outline.on-dark { color: var(--linen); border-color: var(--gold); }
.btn-outline.on-dark:hover { background: var(--gold); color: var(--royal-deep); border-color: var(--gold); }
.btn-large { padding: 16px 34px; font-size: 1rem; }

/* Topbar */
.topbar {
  background: var(--royal-deep);
  color: var(--linen);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(201,162,75,0.18);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
  color: rgba(244,239,230,0.88);
}
.topbar-tagline svg { width: 15px; height: 15px; color: var(--gold-soft); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244,239,230,0.88);
  background-image: none;
}
.topbar-meta a:hover { color: var(--gold-soft); }
.topbar-meta svg { width: 14px; height: 14px; color: var(--gold-soft); }

/* Nav */
.nav {
  background: var(--linen);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--royal);
  background-image: none;
}
.brand-mark {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--royal);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  border-radius: var(--radius);
  letter-spacing: 0;
  border: 1px solid var(--royal);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(230,209,150,0.35);
  border-radius: 1px;
  pointer-events: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.18; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--royal);
  letter-spacing: 0;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--royal);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 8px 0;
  position: relative;
  background-image: none;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--gold-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--royal);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15,34,56,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--linen);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--royal);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer ul a {
  display: block;
  padding: 13px 6px;
  color: var(--royal);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--rule);
  background-image: none;
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.drawer-meta strong { color: var(--royal); font-family: var(--font-display); font-weight: 400; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 25%, rgba(201,162,75,0.22) 0%, transparent 55%),
    linear-gradient(155deg, var(--royal-deep) 0%, var(--royal) 60%, var(--royal-soft) 100%);
  color: var(--linen);
  padding: 120px 0 130px;
  overflow: hidden;
}
.hero-glyph {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.18;
  pointer-events: none;
  color: var(--gold-soft);
}
.hero-glyph svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
  color: var(--linen);
  margin-bottom: 1.3rem;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero-lead {
  color: rgba(244,239,230,0.88);
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.6rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
  color: rgba(244,239,230,0.78);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { width: 16px; height: 16px; color: var(--gold-soft); }

/* Sections */
.section-light { background: var(--linen); padding: 100px 0; }
.section-warm  { background: var(--linen-warm); padding: 100px 0; }
.section-cream { background: #FAF6EC; padding: 100px 0; }
.section-dark  { background: var(--royal-deep); color: var(--linen); padding: 100px 0; position: relative; overflow: hidden; }
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(201,162,75,0.16), transparent 55%);
  pointer-events: none;
}
.section-dark h2,
.section-dark h3 { color: var(--linen); }
.section-dark h2 .accent { color: var(--gold-soft); font-style: italic; }
.section-dark p { color: rgba(244,239,230,0.82); }
.section-dark .section-title p { color: rgba(244,239,230,0.82); }
.section-dark > .container { position: relative; z-index: 2; }

/* Trust strip */
.trust {
  background: var(--linen-warm);
  padding: 48px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--royal);
  margin-bottom: 4px;
}
.trust-item .desc {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Services, 2-col paired layout with crown-mark tile */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--linen);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 36px 34px;
  display: flex;
  gap: 22px;
  position: relative;
  transition: all .25s ease;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.section-warm .service-card { background: var(--linen); }
.section-cream .service-card { background: var(--linen); }
.service-mark {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  background: var(--linen-warm);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  position: relative;
}
.service-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(154,122,44,0.25);
  border-radius: 1px;
  pointer-events: none;
}
.service-mark svg { width: 26px; height: 26px; }
.service-body { flex: 1; }
.service-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.97rem; margin-bottom: 14px; }
.service-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card .chips li {
  font-size: 0.76rem;
  background: var(--linen-warm);
  color: var(--royal);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule-soft);
}

/* Audiences (Who we work with): 3 cards */
.audiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.audience-card {
  background: var(--linen);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border-top: 3px solid var(--gold);
}
.audience-card .audience-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.audience-card .audience-icon svg { width: 30px; height: 30px; }
.audience-card h3 { margin-bottom: 10px; }
.audience-card p { font-size: 0.96rem; margin: 0; }

/* Engagement formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.format {
  background: var(--linen);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
  position: relative;
  padding-top: 38px;
}
.format::before {
  content: "";
  position: absolute;
  top: 0; left: 32px;
  width: 36px; height: 4px;
  background: var(--gold);
}
.format .duration {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.format h3 { margin-bottom: 10px; font-size: 1.22rem; }
.format p { margin: 0; font-size: 0.95rem; }

/* Process on royal-deep */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.process-step {
  position: relative;
  padding: 32px 28px;
  background: rgba(244,239,230,0.04);
  border: 1px solid rgba(201,162,75,0.32);
  border-radius: var(--radius-md);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 { margin-bottom: 8px; color: var(--linen); }
.process-step p { font-size: 0.93rem; margin: 0; color: rgba(244,239,230,0.78); }

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  background: var(--linen);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--royal);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  padding-right: 60px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold-deep);
  transition: transform .2s ease;
  font-weight: 400;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,162,75,0.18) 0%, transparent 60%),
    linear-gradient(160deg, var(--royal-deep) 0%, var(--royal) 100%);
  color: var(--linen);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--linen);
  max-width: 780px;
  margin: 0 auto 1rem;
}
.cta-banner h2 .accent { color: var(--gold-soft); font-style: italic; }
.cta-banner p {
  color: rgba(244,239,230,0.84);
  max-width: 660px;
  margin: 0 auto 2.2rem;
  font-size: 1.06rem;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; }

/* Form / contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p { font-size: 1.02rem; margin-bottom: 1.4rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.contact-row strong {
  display: block;
  color: var(--royal);
  font-weight: 400;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}
.contact-row span { color: var(--ink-soft); font-size: 0.95rem; }
.form-card {
  background: var(--linen);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 770px;
  display: block;
}

/* Page hero (interior pages) */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201,162,75,0.18) 0%, transparent 55%),
    linear-gradient(155deg, var(--royal-deep) 0%, var(--royal) 60%, var(--royal-soft) 100%);
  color: var(--linen);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 90%, rgba(201,162,75,0.12), transparent 50%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--linen); margin-bottom: 1rem; }
.page-hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.page-hero p {
  color: rgba(244,239,230,0.88);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Prose blocks for About */
.prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.04rem;
}
.prose h2 { margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 22px; margin-bottom: 1.5rem; }
.prose ul li { margin-bottom: 0.55rem; }
.prose strong { color: var(--royal); }
.prose blockquote {
  margin: 2rem 0;
  padding: 22px 28px;
  background: var(--linen-warm);
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--royal);
  line-height: 1.45;
  font-style: italic;
}

/* Service detail (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service-detail:first-of-type { border-top: 0; padding-top: 0; }
.service-detail-head .service-num { margin-bottom: 14px; }
.service-detail-head h3 { font-size: 1.55rem; }
.service-detail-body p { font-size: 1rem; }
.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.service-detail-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.94rem;
  color: var(--royal);
}
.service-detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.spec-card {
  background: var(--linen);
  border: 1px solid var(--rule);
  padding: 30px 28px;
  border-radius: var(--radius-md);
}
.spec-card .spec-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.spec-card .spec-mark svg { width: 18px; height: 18px; }
.spec-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.spec-card p { font-size: 0.94rem; margin: 0; }

/* Delivery panel */
.delivery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.delivery-item {
  padding: 28px 26px;
  background: var(--linen);
  border-left: 2px solid var(--gold);
}
.delivery-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.delivery-item p { margin: 0; font-size: 0.94rem; }

/* Footer */
.footer {
  background: var(--royal-deep);
  color: rgba(244,239,230,0.75);
  padding: 76px 0 30px;
}
.footer h4 {
  color: var(--linen);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer .brand .brand-name,
.footer .brand .brand-sub { color: var(--linen); }
.footer .brand .brand-sub { color: rgba(244,239,230,0.65); }
.footer .brand .brand-mark { background: var(--gold); color: var(--royal-deep); border-color: var(--gold); }
.footer .brand .brand-mark::after { border-color: rgba(15,34,56,0.25); }
.footer p { color: rgba(244,239,230,0.7); font-size: 0.94rem; margin: 16px 0; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { color: rgba(244,239,230,0.72); font-size: 0.92rem; background-image: none; }
.footer ul a:hover { color: var(--gold-soft); }
.footer-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(244,239,230,0.7);
}
.footer-meta-row svg { width: 16px; height: 16px; color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(244,239,230,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(244,239,230,0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .service-detail { grid-template-columns: 1fr; gap: 16px; }
  .service-detail-body ul { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 90px 0 100px; }
  .hero-glyph { opacity: 0.1; width: 380px; height: 380px; }
  .section-light, .section-warm, .section-cream, .section-dark { padding: 76px 0; }
  .service-card { flex-direction: column; padding: 30px 26px; }
  .service-mark { width: 48px; height: 48px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .topbar-meta { gap: 14px; }
  .topbar-meta span:first-child { display: none; }
  .brand-sub { display: none; }
}
