/* =========================================
   Ace & Co., Warm British Editorial
   ========================================= */

:root {
  --ink: #1A1A1A;
  --ink-soft: #3D3936;
  --terracotta: #B8553A;
  --terracotta-deep: #7E3522;
  --terracotta-soft: #E3A287;
  --bone: #F2EDE3;
  --bone-warm: #E8DFC9;
  --rule: #C9BFA8;

  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-sans: 'Work Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  --container: 1180px;
  --gutter: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--terracotta-deep);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--terracotta); }

::selection { background: var(--terracotta-soft); color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-style: italic;
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--terracotta);
}
.eyebrow.on-dark { color: var(--terracotta-soft); }
.eyebrow.on-dark::before { background: var(--terracotta-soft); }
.eyebrow.no-rule { padding-left: 0; }
.eyebrow.no-rule::before { display: none; }

.accent {
  color: var(--terracotta);
  font-style: italic;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  border-radius: 0;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--bone);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: var(--bone);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bone);
}
.btn-outline.on-dark {
  color: var(--bone);
  border-color: var(--bone-warm);
}
.btn-outline.on-dark:hover {
  background: var(--bone);
  color: var(--ink);
}

.btn-large { padding: 16px 32px; font-size: 0.92rem; }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--ink);
  color: var(--bone-warm);
  font-size: 0.82rem;
  border-bottom: 1px solid #2a2a2a;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 18px;
}
.topbar-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}
.topbar-tagline svg { width: 16px; height: 16px; color: var(--terracotta-soft); }
.topbar-meta {
  display: flex;
  gap: 24px;
}
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-meta svg { width: 14px; height: 14px; color: var(--terracotta-soft); }

@media (max-width: 880px) {
  .topbar-tagline { font-size: 0.74rem; }
  .topbar-meta { display: none; }
}

/* ---------- Nav ---------- */

.nav {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
}
.nav-menu a:hover { color: var(--terracotta); }
.nav-menu a.active { color: var(--ink); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--ink);
}
.hamburger svg { width: 22px; height: 22px; margin: 0 auto; }

@media (max-width: 920px) {
  .nav-menu { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- Drawer ---------- */

.scrim {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: var(--bone);
  z-index: 100;
  padding: 30px 28px;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--rule);
  width: 40px; height: 40px;
  cursor: pointer;
  color: var(--ink);
}
.drawer-close svg { width: 18px; height: 18px; margin: 0 auto; }
.drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}
.drawer ul a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.drawer ul a:hover { color: var(--terracotta); }
.drawer-cta { width: 100%; margin-top: 12px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  line-height: 1.7;
}
.drawer-meta strong { color: var(--ink); font-weight: 600; }

/* ---------- Hero ---------- */

.hero {
  background: var(--bone);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--terracotta);
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0 auto 1.4rem;
  max-width: 18ch;
  color: var(--ink);
}
.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 2.4rem;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--terracotta); }

.hero-ornament {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.2rem;
  color: var(--terracotta);
}
.hero-ornament svg { width: 30px; height: 14px; }

/* ---------- Page hero (about / services / contact) ---------- */

.page-hero {
  background: var(--bone);
  padding: 80px 0 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--terracotta);
}
.page-hero h1 {
  max-width: 22ch;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.page-hero p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}
.page-hero .eyebrow {
  display: block;
  text-align: center;
  margin: 0 auto 1.4rem;
  width: fit-content;
}

/* ---------- Sections ---------- */

section { padding: 96px 0; }

.section-light { background: var(--bone); }
.section-warm { background: var(--bone-warm); }
.section-dark {
  background: var(--ink);
  color: var(--bone-warm);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--bone); }

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-title .eyebrow {
  display: inline-block;
}
.section-title h2 {
  margin-bottom: 1.1rem;
}
.section-title p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.section-dark .section-title p { color: var(--bone-warm); }

/* ---------- Trust strip ---------- */

.trust {
  background: var(--ink);
  color: var(--bone-warm);
  padding: 38px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid var(--terracotta);
}
.trust-item .label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bone);
}
.trust-item .desc {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--bone-warm);
  opacity: 0.85;
}
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- Services (unboxed editorial) ---------- */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}
.service-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service-item:last-child { border-bottom: 1px solid var(--rule); }
.service-item .service-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 8px;
}
.service-item h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
}
.service-item h3 .colon-mark {
  color: var(--terracotta);
  font-style: italic;
}
.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .service-item { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .service-item h3 { font-size: 1.5rem; }
}

/* Service detail (services page), gives each service deeper copy */
.service-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 50px 0;
  border-top: 1px solid var(--rule);
}
.service-detail:last-child { border-bottom: 1px solid var(--rule); }
.service-detail .service-aside {
  padding-top: 6px;
}
.service-detail .service-aside .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--terracotta);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.service-detail .service-aside .tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.service-detail h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.service-detail p { margin-bottom: 1em; line-height: 1.75; }
.service-detail .chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.service-detail .chips li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 5px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bone);
}
@media (max-width: 760px) {
  .service-detail { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
}

/* ---------- Formats ---------- */

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.format {
  padding: 30px 0 30px 24px;
  border-left: 1px solid var(--terracotta);
}
.format .duration {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.format h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--ink);
}
.format p { font-size: 0.98rem; line-height: 1.7; }
@media (max-width: 880px) {
  .formats-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Process ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.process-num {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bone);
  border: 1px solid var(--terracotta);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 24px;
  border-radius: 50%;
}
.section-warm .process-num { background: var(--bone-warm); }
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step p { font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; gap: 32px; }
  .process::before { display: none; }
}

/* ---------- Capability themes ---------- */

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}
.theme {
  background: var(--bone);
  padding: 42px 36px;
  border-top: 3px solid var(--terracotta);
}
.section-light .theme { background: var(--bone-warm); }
.theme .theme-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: block;
}
.theme h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--ink);
}
.theme p {
  font-size: 0.98rem;
  line-height: 1.7;
}
.theme ul {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.theme li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 5px 0;
  display: flex;
  gap: 10px;
}
.theme li::before {
  content: '–';
  color: var(--terracotta);
  font-weight: 500;
}
@media (max-width: 880px) {
  .themes-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- Pull quote ---------- */

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 30px;
}
.pull-quote::before,
.pull-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto 36px;
}
.pull-quote::after { margin: 36px auto 0; }
.pull-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 24px;
}

/* ---------- FAQ ---------- */

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-top: 1px solid var(--rule);
  padding: 6px 0;
}
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  position: relative;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--terracotta);
  transition: transform .3s ease;
  line-height: 1;
}
.faq[open] summary::after { content: '–'; }
.faq summary:hover { color: var(--terracotta-deep); }
.faq-body {
  padding: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 68ch;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--ink);
  color: var(--bone-warm);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--terracotta-soft);
}
.cta-banner h2 {
  color: var(--bone);
  max-width: 22ch;
  margin: 0 auto 1.4rem;
  font-style: italic;
}
.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--bone-warm);
  max-width: 56ch;
  margin: 0 auto 2.4rem;
}
.cta-banner .hero-actions { margin-bottom: 0; }

/* ---------- Editorial two-column prose ---------- */

.prose-two {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 50px 0;
  border-top: 1px solid var(--rule);
}
.prose-two:last-of-type { border-bottom: 1px solid var(--rule); margin-bottom: 0; }
.prose-two .prose-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 6px;
}
.prose-two h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 22px;
  color: var(--ink);
}
.prose-two p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1em;
  color: var(--ink-soft);
}
.prose-two p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}
.prose-two ul {
  list-style: none;
  margin-top: 18px;
}
.prose-two ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  border-bottom: 1px dotted var(--rule);
}
.prose-two ul li:last-child { border-bottom: none; }
.prose-two ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--terracotta);
  font-size: 1.2rem;
}
@media (max-width: 760px) {
  .prose-two { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
  .prose-two h2 { font-size: 1.6rem; }
  .prose-two p:first-of-type::first-letter { font-size: 2.6rem; }
}

/* ---------- Contact ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 32px;
  color: var(--ink-soft);
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.contact-row:last-of-type { border-bottom: 1px solid var(--rule); }
.contact-row svg {
  width: 22px; height: 22px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.contact-row span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.45;
}

.form-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 6px;
  min-height: 770px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 3px;
  background: var(--terracotta);
}

@media (max-width: 920px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: var(--bone-warm);
  padding: 80px 0 32px;
}
.footer .brand-name { color: var(--bone); }
.footer .brand-sub { color: var(--bone-warm); opacity: 0.7; }
.footer .brand-mark { color: var(--terracotta-soft); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--bone-warm);
  opacity: 0.85;
  margin: 16px 0 22px;
  max-width: 38ch;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2a2a2a;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--bone-warm);
  font-size: 0.92rem;
  opacity: 0.85;
}
.footer ul a:hover { color: var(--bone); opacity: 1; }

.footer-meta { margin-top: 18px; }
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--bone-warm);
  opacity: 0.85;
}
.footer-meta-row svg { width: 16px; height: 16px; color: var(--terracotta-soft); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--bone-warm);
  opacity: 0.75;
  font-family: var(--font-serif);
  font-style: italic;
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- Utility ---------- */

@media (max-width: 760px) {
  section { padding: 70px 0; }
  .hero { padding: 70px 0 90px; }
  .page-hero { padding: 60px 0; }
  .cta-banner { padding: 80px 0; }
  .section-title { margin-bottom: 48px; }
}
