:root {
  --navy: #14213D;
  --copper: #B87333;
  --sand: #DCCBB5;
  --terracotta: #C97A5D;
  --graphite: #404040;
  --warm-white: #FAF8F4;
  --muted: #6B7280;
  --brown: #8B6F47;
  --border: rgba(20, 33, 61, .14);
  --shadow: 0 24px 70px rgba(20, 33, 61, .10);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--graphite);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sand); color: var(--navy); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 248, 244, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(20, 33, 61, .06);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--copper); border-radius: 50%;
  font-family: "Playfair Display", serif; color: var(--copper); font-size: 20px;
}
.brand-name { letter-spacing: .24em; font-size: 15px; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 600; color: var(--navy); }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px;
  background: var(--copper); transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid var(--navy); padding: 10px 18px; transition: .25s ease; }
.nav-cta:hover { background: var(--navy); color: var(--warm-white); }
.menu-toggle { display: none; background: none; border: 0; padding: 6px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s ease; }

.hero {
  min-height: 860px; display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 170px;
}
.hero::before {
  content: ""; position: absolute; width: 46vw; height: 46vw; min-width: 540px; min-height: 540px;
  border-radius: 50%; right: -10vw; top: 90px; border: 1px solid rgba(184,115,51,.25);
}
.hero-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit-one { width: 210px; height: 210px; right: 22vw; top: 190px; background: rgba(220,203,181,.45); }
.orbit-two { width: 100px; height: 100px; right: 10vw; bottom: 130px; border: 1px solid rgba(201,122,93,.6); }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 24px; color: var(--copper); text-transform: uppercase; letter-spacing: .18em;
  font-size: 12px; font-weight: 700;
}
.eyebrow.light { color: var(--sand); }
h1, h2, h3, blockquote { font-family: "Playfair Display", Georgia, serif; }
h1 { margin: 0; color: var(--navy); font-size: clamp(52px, 6.2vw, 94px); line-height: .98; letter-spacing: -.045em; font-weight: 600; }
h1 em, h2 em { color: var(--copper); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 670px; margin: 34px 0 0; font-size: 21px; color: #5A5A5A; line-height: 1.6; }
.hero-actions { margin-top: 40px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 0; cursor: pointer; font-weight: 700; letter-spacing: .01em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--warm-white); box-shadow: 0 14px 30px rgba(20,33,61,.16); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(20,33,61,.24); }
.text-link { color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--copper); padding-bottom: 3px; }
.hero-card { background: rgba(250,248,244,.78); backdrop-filter: blur(12px); border: 1px solid var(--border); padding: 36px; box-shadow: var(--shadow); }
.hero-card-line { width: 64px; height: 2px; background: var(--copper); margin-bottom: 28px; }
.card-kicker { margin: 0; color: var(--copper); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 700; }
.hero-card blockquote { margin: 20px 0 34px; color: var(--navy); font-size: 27px; line-height: 1.35; }
.signature-row { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.signature-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); }

.statement { border-top: 1px solid var(--border); }
.statement-grid { display: grid; grid-template-columns: 120px 1fr; gap: 60px; }
.section-index { font-family: "Playfair Display", serif; color: var(--copper); font-size: 17px; }
.statement-copy { max-width: 930px; }
h2 { margin: 0; color: var(--navy); font-size: clamp(42px, 4.6vw, 68px); line-height: 1.08; letter-spacing: -.035em; font-weight: 600; }
.statement-copy > p:last-child { max-width: 790px; margin: 32px 0 0; font-size: 20px; }
.values-row { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 14px 34px; color: var(--navy); }
.values-row span::before { content: "•"; color: var(--copper); margin-right: 10px; }

.services { background: #F3EFE8; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-heading > p { font-size: 19px; margin: 0 0 8px; }
.service-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(20,33,61,.18); border-bottom: 1px solid rgba(20,33,61,.18); }
.service-card { position: relative; padding: 42px 36px 46px; min-height: 340px; border-right: 1px solid rgba(20,33,61,.18); transition: background .3s ease, transform .3s ease; }
.service-card:first-child { border-left: 1px solid rgba(20,33,61,.18); }
.service-card:hover { background: var(--warm-white); transform: translateY(-7px); }
.service-number { color: var(--copper); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.service-card h3 { color: var(--navy); font-size: 31px; line-height: 1.15; margin: 50px 0 18px; }
.service-card p { margin: 0; font-size: 17px; }
.card-arrow { position: absolute; right: 30px; bottom: 24px; color: var(--copper); font-size: 24px; }

.approach { background: var(--navy); color: var(--warm-white); position: relative; overflow: hidden; }
.approach::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(220,203,181,.2); right: -180px; bottom: -240px; }
.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; position: relative; z-index: 1; }
.approach h2 { color: var(--warm-white); }
.approach-intro > p:last-child { margin-top: 30px; max-width: 500px; font-size: 19px; color: rgba(250,248,244,.75); }
.approach-steps { border-top: 1px solid rgba(250,248,244,.2); }
.step { display: grid; grid-template-columns: 74px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid rgba(250,248,244,.2); }
.step > span { color: var(--copper); font-weight: 700; }
.step h3 { font-size: 28px; margin: 0 0 8px; color: var(--warm-white); }
.step p { margin: 0; color: rgba(250,248,244,.70); font-size: 17px; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.art-frame { height: 560px; background: #F0E9DF; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.copper-arc { position: absolute; width: 430px; height: 430px; border-radius: 50%; border: 56px solid var(--copper); left: -190px; top: 60px; opacity: .88; }
.sand-disc { position: absolute; width: 250px; height: 250px; border-radius: 50%; background: var(--sand); right: 40px; top: 80px; }
.navy-block { position: absolute; width: 210px; height: 250px; background: var(--navy); right: 70px; bottom: 0; }
.fine-line { position: absolute; width: 420px; height: 1px; background: rgba(20,33,61,.5); transform-origin: left; }
.line-a { left: 50px; top: 200px; transform: rotate(38deg); }
.line-b { left: 100px; top: 420px; transform: rotate(-28deg); }
.about-copy > p:not(.eyebrow) { font-size: 18px; margin-top: 26px; }
.archetypes { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; }
.archetypes span { border: 1px solid var(--sand); padding: 8px 14px; color: var(--navy); font-size: 14px; }

.manifesto { background: var(--sand); }
.manifesto-text { margin: 0; color: var(--navy); font-family: "Playfair Display", serif; font-size: clamp(48px, 6vw, 86px); line-height: 1.08; letter-spacing: -.04em; }
.manifesto-text em { color: var(--copper); font-style: italic; }

.contact { background: var(--navy); color: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contact h2 { color: var(--warm-white); }
.contact-copy > p:last-child { margin-top: 28px; font-size: 19px; color: rgba(250,248,244,.72); max-width: 530px; }
.contact-form { padding: 38px; background: rgba(250,248,244,.04); border: 1px solid rgba(250,248,244,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--sand); margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; border: 0; border-bottom: 1px solid rgba(250,248,244,.36); background: transparent; color: var(--warm-white); padding: 10px 2px; outline: none; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--copper); }
.btn-copper { background: var(--copper); color: white; margin-top: 4px; }
.form-note { min-height: 24px; margin: 14px 0 0; color: var(--sand); font-size: 14px; }

.site-footer { background: #0D172C; color: rgba(250,248,244,.72); padding: 70px 0 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 50px; }
.footer-brand { color: var(--warm-white); }
.footer-top p { margin: 20px 0 0; }
.footer-top nav { display: grid; grid-template-columns: repeat(2, minmax(100px, 1fr)); gap: 14px 40px; align-content: start; }
.footer-top nav a:hover { color: var(--warm-white); }
.footer-bottom { border-top: 1px solid rgba(250,248,244,.14); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section-pad { padding: 90px 0; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed; inset: 0 0 auto 0; background: var(--warm-white); padding: 110px 24px 34px;
    display: grid; gap: 18px; transform: translateY(-110%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { font-size: 20px; }
  .nav-cta { justify-self: start; font-size: 16px !important; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-card { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 1px solid rgba(20,33,61,.18); border-left: 1px solid rgba(20,33,61,.18); border-bottom: 1px solid rgba(20,33,61,.18); }
  .about-art { order: 2; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section-pad { padding: 72px 0; }
  .nav-wrap { height: 74px; }
  .hero { padding-top: 130px; }
  .hero::before { min-width: 360px; min-height: 360px; }
  h1 { font-size: clamp(46px, 14vw, 70px); }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .hero-lead { font-size: 18px; }
  .hero-card { padding: 28px; }
  .hero-card blockquote { font-size: 24px; }
  .statement-grid { grid-template-columns: 1fr; gap: 18px; }
  .values-row { margin-top: 50px; }
  .service-card { min-height: 300px; padding: 32px 26px; }
  .approach-grid { gap: 50px; }
  .step { grid-template-columns: 48px 1fr; }
  .art-frame { height: 440px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-top nav { grid-template-columns: 1fr 1fr; }
}

/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.brand-symbol { width: 42px; height: 42px; object-fit: contain; display: block; }
.brand-wordmark { width: 148px; height: auto; object-fit: contain; display: block; }
.footer-brand .brand-symbol { filter: brightness(0) invert(1); opacity: .92; }
.footer-brand .brand-wordmark { filter: brightness(0) invert(1); opacity: .92; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
@media (max-width: 680px) {
  .brand-symbol { width: 36px; height: 36px; }
  .brand-wordmark { width: 122px; }
}

.contact-direct{display:flex;flex-wrap:wrap;gap:12px 22px;margin-top:28px}.contact-direct a{color:var(--warm-white);text-decoration:none;border-bottom:1px solid rgba(250,248,244,.38);padding-bottom:3px;transition:opacity .2s ease,border-color .2s ease}.contact-direct a:hover{opacity:.75;border-color:var(--copper)}
