:root {
  --navy: #0a1e3a;
  --navy-deep: #061528;
  --ivory: #f5f1e8;
  --ivory-soft: #ebe5d6;
  --brass: #b08d57;
  --brass-deep: #8c6f3f;
  --ink: #1a1a1a;
  --rule: rgba(10, 30, 58, 0.18);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  letter-spacing: 0.005em;
  font-feature-settings: "ss01", "ss02";
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.04; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.1; }
h3 { font-size: 1.45rem; line-height: 1.25; }
h1 em { font-style: italic; color: var(--brass); }

p { margin: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass-deep);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  background: rgba(245, 241, 232, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; color: var(--navy); }
.brand-mark { width: 38px; height: 38px; color: var(--navy); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; letter-spacing: 0.01em; }
.brand-sub { font-family: var(--sans); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.36em; color: var(--brass-deep); margin-top: 0.32rem; }
.site-nav { display: flex; gap: 2.2rem; align-items: center; }
.site-nav a { text-decoration: none; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--navy); padding: 0.4rem 0; position: relative; transition: color 0.2s; }
.site-nav a:hover { color: var(--brass-deep); }
.site-nav a.nav-cta {
  border: 1px solid var(--navy);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.site-nav a.nav-cta:hover { background: var(--navy); color: var(--ivory); }

@media (max-width: 640px) {
  .site-header { padding: 1rem 1.2rem; }
  .site-nav { gap: 1.2rem; }
  .site-nav a:not(.nav-cta) { display: none; }
}

/* HERO */
.hero {
  position: relative;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.hero h1 {
  max-width: 16ch;
  margin: 1rem 0 1.8rem;
}
.hero-sub {
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--ivory);
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--sans);
  font-weight: 400;
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--brass-deep); }
.btn-block { width: 100%; }

.hero-rule {
  max-width: var(--container);
  margin: 5rem auto 0;
  height: 1px;
  background: var(--rule);
}

/* SECTIONS */
section {
  padding: 6.5rem 2rem;
}
.section-head {
  max-width: var(--container);
  margin: 0 auto 4rem;
}
.section-head h2 { max-width: 22ch; }

/* SERVICES */
.services {
  background: var(--ivory-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.service-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}
.service {
  padding: 2rem 0 2rem;
  border-top: 1px solid var(--rule);
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass-deep);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.service h3 { margin-bottom: 0.9rem; }
.service p {
  color: rgba(26, 26, 26, 0.74);
  line-height: 1.7;
  max-width: 42ch;
}

@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; gap: 0; }
}

/* APPROACH */
.approach-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.approach h2 { margin: 1rem 0 2.4rem; max-width: 18ch; }
.approach-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  max-width: 64ch;
  color: rgba(26, 26, 26, 0.82);
}
.creed {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  gap: 1rem;
}
.creed li {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--navy);
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
}
.creed li span {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--brass);
  font-style: normal;
  font-size: 1.3rem;
}

/* CONTACT */
.contact {
  background: var(--navy);
  color: var(--ivory);
  border-top: 1px solid var(--rule);
}
.contact h2 { color: var(--ivory); margin: 1rem 0 1.8rem; }
.contact .eyebrow { color: var(--brass); }
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-lede {
  font-size: 1.1rem;
  color: rgba(245, 241, 232, 0.78);
  margin-bottom: 3rem;
  max-width: 56ch;
  line-height: 1.7;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.6rem;
  margin-bottom: 2rem;
}
.field { display: flex; flex-direction: column; gap: 0.6rem; }
.field-full { grid-column: 1 / -1; }
.field > span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 232, 0.6);
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 241, 232, 0.28);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.contact-form .btn-primary {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--navy);
  grid-column: 1 / -1;
  margin-top: 1rem;
}
.contact-form .btn-primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); color: var(--ivory); }
.form-note {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--brass);
  min-height: 1.2rem;
}
.direct {
  margin-top: 2.6rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(245, 241, 232, 0.78);
}
.direct a { color: var(--ivory); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--brass); }

@media (max-width: 640px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* FOOTER */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 241, 232, 0.7);
  padding: 3rem 2rem 4rem;
  text-align: center;
}
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 0.6rem; }
.footer-mark { font-family: var(--serif); font-size: 1.2rem; color: var(--ivory); }
.footer-meta { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); }
.footer-fine { font-size: 0.78rem; color: rgba(245, 241, 232, 0.5); margin-top: 1rem; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* iOS input zoom prevention */
input, textarea, select, button { font-size: 16px !important; }
