:root {
  --obsidian: #171716;
  --espresso: #292724;
  --copper: #b76843;
  --copper-light: #cf835d;
  --bone: #f4f0e8;
  --sand: #d5c2a5;
  --saguaro: #5c675a;
  --white: #fcfbf8;
  --muted: #716b63;
  --border: rgba(41, 39, 36, 0.14);
  --shadow: 0 22px 70px rgba(23, 23, 22, 0.10);
  --container: 1220px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--bone);
  color: var(--obsidian);
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.top-copper-rule {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
  z-index: 900;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 800;
  top: 2px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px max(24px, calc((100vw - var(--container)) / 2));
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  background: rgba(23, 23, 22, .93);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}
.brand img { width: 196px; height: auto; }
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(183, 104, 67, .9);
  color: var(--white);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.header-contact:hover,
.header-contact:focus-visible {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 790px;
  height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian);
  color: var(--white);
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center 53%;
  transform: scale(1.015);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, .93) 0%, rgba(15, 15, 14, .79) 34%, rgba(15, 15, 14, .38) 63%, rgba(15, 15, 14, .18) 100%),
    linear-gradient(0deg, rgba(23, 23, 22, .30), rgba(23, 23, 22, .08));
}
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-content h1 {
  max-width: 760px;
  margin: 10px 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6.2vw, 6.05rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.035em;
}
.hero-rule { width: 68px; height: 2px; margin: 32px 0 24px; background: var(--copper); }
.hero-copy {
  max-width: 665px;
  margin: 0;
  color: rgba(252, 251, 248, .88);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.85;
}
.hero-edge {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--copper); }

.section { padding: 112px 0; }
.section-light { background: var(--white); }
.section-bone { background: var(--bone); }
.section-dark { background: var(--obsidian); color: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 11vw;
  align-items: start;
}
.section-heading h2,
.center-heading h2,
.phoenix-copy h2,
.opportunity h2,
.contact-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.section-heading h2 { font-size: clamp(2.7rem, 4.3vw, 4.5rem); }
.intro-copy { padding-top: 24px; color: #57524d; }
.intro-copy p { max-width: 660px; margin: 0 0 20px; }
.intro-copy .lead { color: var(--espresso); font-size: 1.28rem; line-height: 1.7; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 56px 52px 60px;
  background: rgba(252, 251, 248, .88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--copper);
  transition: height .35s ease;
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(183, 104, 67, .45);
  border-radius: 50%;
}
.service-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--copper); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.card-kicker { margin: 0 0 14px; color: var(--copper); font-size: .69rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.service-card h3 { max-width: 510px; margin: 0 0 20px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 500; line-height: 1.12; }
.service-card p:last-child { max-width: 590px; margin-bottom: 0; color: #5f5952; }

.center-heading { max-width: 760px; margin: 0 auto 68px; text-align: center; }
.center-heading h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.approach-item { min-height: 225px; padding: 18px 48px 18px 40px; border-left: 1px solid rgba(213, 194, 165, .22); }
.approach-item:first-child { border-left: 0; }
.approach-number { display: block; margin-bottom: 40px; color: var(--copper); font-size: .72rem; letter-spacing: .2em; }
.approach-item h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.approach-item p { max-width: 300px; margin: 0; color: rgba(252, 251, 248, .72); }

.phoenix { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(430px, .8fr); min-height: 620px; background: var(--white); }
.phoenix-image { position: relative; min-height: 620px; overflow: hidden; background: var(--obsidian); }
.phoenix-image picture, .phoenix-image img { width: 100%; height: 100%; }
.phoenix-image img { object-fit: cover; object-position: center; }
.phoenix-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,23,22,.05), rgba(183,104,67,.08));
  pointer-events: none;
}
.phoenix-copy { display: flex; align-items: center; padding: 80px clamp(44px, 6vw, 110px); }
.phoenix-copy-inner { max-width: 540px; }
.phoenix-copy h2 { margin-bottom: 28px; font-size: clamp(2.7rem, 4vw, 4.5rem); }
.phoenix-copy p:last-child { margin: 0; color: #5e5851; font-size: 1.05rem; }

.opportunity { padding: 88px 0; border-top: 1px solid rgba(183, 104, 67, .65); border-bottom: 1px solid rgba(183, 104, 67, .65); }
.opportunity-grid { display: grid; grid-template-columns: 1.25fr .95fr auto; gap: 64px; align-items: center; }
.opportunity h2 { font-size: clamp(2.5rem, 4.1vw, 4.1rem); }
.opportunity-copy { margin: 0; color: rgba(252, 251, 248, .72); }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-copper { background: var(--copper); color: #fff; border-color: var(--copper); }
.button-copper:hover, .button-copper:focus-visible { background: #9f5837; border-color: #9f5837; }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; align-items: start; }
.contact-intro h2 { margin-bottom: 26px; font-size: clamp(2.8rem, 4.5vw, 4.5rem); }
.contact-intro > p:not(.eyebrow) { max-width: 500px; margin-bottom: 36px; color: #625d56; }
.contact-direct { display: flex; flex-direction: column; gap: 6px; margin: 36px 0 28px; }
.contact-direct span, .contact-location span:first-child { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.contact-direct a { color: var(--copper); font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.contact-direct a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-location { display: flex; flex-direction: column; gap: 2px; }
.contact-location span:last-child { color: #625d56; }

.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { color: #55504a; font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.field label span { color: #8c857d; font-weight: 400; letter-spacing: 0; text-transform: none; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(41, 39, 36, .2);
  border-radius: 0;
  outline: none;
  background: rgba(244, 240, 232, .52);
  color: var(--espresso);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input { height: 54px; padding: 0 16px; }
.field textarea { min-height: 166px; padding: 16px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(183,104,67,.09); background: #fff; }
.field-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; gap: 24px; }
.form-note { max-width: 420px; margin: 0; color: #7a736c; font-size: .77rem; line-height: 1.55; }
.form-note a { color: var(--espresso); text-underline-offset: 3px; }
.form-status { min-height: 1.7em; margin: 0; font-size: .88rem; }
.form-status.is-success { color: #385b45; }
.form-status.is-error { color: #98412e; }

.site-footer { position: relative; padding: 60px 0 28px; background: var(--obsidian); color: rgba(252, 251, 248, .72); }
.footer-rule { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--copper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 40px; }
.footer-brand img { width: 175px; }
.footer-location { display: flex; flex-direction: column; font-size: .84rem; }
.footer-location a { color: var(--copper-light); text-decoration: none; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; }
.footer-links a { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-links svg { width: 18px; height: 18px; fill: currentColor; }
.copyright { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(213,194,165,.14); color: rgba(252,251,248,.44); font-size: .74rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-image { opacity: .01; transform: scale(1.015); transition: opacity 1s ease, transform 1.2s ease; }
.reveal-image.is-visible { opacity: 1; transform: scale(1); }

@media (max-width: 1050px) {
  .site-header { padding-inline: 28px; }
  .brand img { width: 170px; }
  .hero { min-height: 720px; }
  .intro-grid { gap: 60px; }
  .approach-item { padding-inline: 28px; }
  .phoenix { grid-template-columns: 1fr; }
  .phoenix-image { min-height: 520px; }
  .phoenix-copy { padding: 72px 8vw; }
  .opportunity-grid { grid-template-columns: 1.1fr .9fr; gap: 36px; }
  .opportunity-grid .button { grid-column: 2; justify-self: start; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { padding: 14px 18px; }
  .site-header.is-scrolled { padding: 10px 18px; }
  .brand img { width: 137px; }
  .header-contact { min-height: 42px; padding-inline: 14px; font-size: .64rem; }
  .hero { height: auto; min-height: 760px; align-items: flex-end; }
  .hero-media img { object-position: 56% center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(15,15,14,.96) 0%, rgba(15,15,14,.78) 46%, rgba(15,15,14,.35) 100%),
      linear-gradient(90deg, rgba(15,15,14,.30), rgba(15,15,14,.10));
  }
  .hero-content { padding: 150px 0 88px; }
  .hero-content h1 { font-size: clamp(3rem, 13vw, 4.75rem); }
  .hero-copy { font-size: .98rem; line-height: 1.75; }
  .section { padding: 82px 0; }
  .intro-grid, .service-grid, .approach-grid, .contact-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 38px; }
  .intro-copy { padding-top: 0; }
  .service-card { padding: 42px 30px 46px; }
  .approach-grid { gap: 0; }
  .approach-item { min-height: 0; padding: 28px 0; border-left: 0; border-top: 1px solid rgba(213,194,165,.18); }
  .approach-item:first-child { border-top: 0; }
  .approach-number { margin-bottom: 18px; }
  .phoenix-image { min-height: 420px; }
  .phoenix-copy { padding: 68px 24px 74px; }
  .opportunity { padding: 72px 0; }
  .opportunity-grid { grid-template-columns: 1fr; gap: 30px; }
  .opportunity-grid .button { grid-column: auto; justify-self: start; }
  .contact-grid { gap: 60px; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 28px; }
  .footer-links { justify-content: flex-start; }
  .copyright { margin-top: 30px; }
}

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


/* Contact form security disclosures */
.form-disclosures {
  display: grid;
  gap: 0.35rem;
}

.recaptcha-note {
  margin: 0;
  max-width: 34rem;
  color: #81786f;
  font-size: 0.68rem;
  line-height: 1.55;
}

.recaptcha-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

/* Google permits the badge to be hidden when the required disclosure is visible. */
.grecaptcha-badge {
  visibility: hidden !important;
}
