@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #1f2b27;
  --soft-ink: #5b6862;
  --white: #fff;
  --line: #dde3dc;
  --sage: #eef3ed;
  --sage-dark: #b8c8b7;
  --accent: #b54a38;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: 'DM Sans', Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; z-index: 20; left: 12px; top: -60px; padding: 12px 18px; background: var(--white); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.site-header { position: relative; z-index: 5; background: var(--white); }
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; gap: 9px; align-items: center; text-decoration: none; text-transform: uppercase; letter-spacing: -.045em; font-size: 19px; font-weight: 700; line-height: .9; white-space: nowrap; }
.brand small { display: block; margin-top: 4px; font-size: .67em; letter-spacing: .06em; }
.brand-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; }
.brand-mark svg { width: 32px; height: 32px; }
.site-nav { display: flex; gap: clamp(20px, 3vw, 45px); align-items: center; margin-left: auto; }
.site-nav a { font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s; }
.site-nav a:hover, .footer-inner a:hover { color: var(--accent); }
.header-contact { margin-left: 25px; border: 1px solid var(--ink); padding: 13px 20px; text-decoration: none; font-size: 13px; font-weight: 700; transition: background .2s, color .2s; white-space: nowrap; }
.header-contact:hover { background: var(--ink); color: var(--white); }
.header-contact span { margin-left: 20px; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: clamp(620px, 66vw, 790px); overflow: hidden; isolation: isolate; background: #6d8b92; }
.hero-photo, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { object-fit: cover; object-position: center 55%; z-index: -2; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(18, 36, 36, .74) 0%, rgba(21, 42, 42, .37) 49%, rgba(21, 42, 42, .03) 100%), linear-gradient(0deg, rgba(17, 36, 33, .24), transparent 45%); }
.hero-content { position: relative; padding: clamp(80px, 11vw, 140px) clamp(32px, 6vw, 84px) 170px; color: var(--white); max-width: 1000px; }
.hero-kicker { display: inline-block; margin: 0 0 27px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.66); font-size: 15px; font-weight: 600; letter-spacing: .03em; }
.hero h1 { margin: 0; font-size: clamp(54px, 7.2vw, 103px); line-height: .98; letter-spacing: -.065em; font-weight: 500; }
.hero h1 em { letter-spacing: -.075em; }
.hero-content > p:not(.hero-kicker) { max-width: 530px; margin: 28px 0 31px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 40px; min-height: 56px; padding: 15px 20px; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--sage); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #314138; }
.hero-note { position: absolute; right: 31px; bottom: 31px; display: flex; align-items: center; gap: 34px; min-width: 255px; padding: 20px 22px; background: var(--white); color: var(--ink); text-decoration: none; box-shadow: 0 16px 50px rgba(0,0,0,.15); transition: transform .2s; }
.hero-note:hover { transform: translateY(-3px); }
.hero-note-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; font-size: 19px; }
.hero-note small, .hero-note strong { display: block; }
.hero-note small { font-size: 11px; color: var(--soft-ink); margin-bottom: 5px; }
.hero-note strong { font-size: 14px; }

.section { padding-block: clamp(80px, 10vw, 145px); }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--accent); }
h2 { margin: 0; font-size: clamp(39px, 5vw, 67px); font-weight: 500; line-height: 1.07; letter-spacing: -.06em; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 44px; }
.section-heading > p { max-width: 390px; margin: 0 0 6px; color: var(--soft-ink); font-size: 16px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.service-card { position: relative; background: var(--white); }
.service-image { overflow: hidden; aspect-ratio: 1.45; background: var(--sage); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.service-card:hover img { transform: scale(1.035); }
.service-copy { padding: 26px 4px 16px; }
.service-number { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--accent); }
.service-copy h3 { margin: 13px 0 8px; font-size: clamp(27px, 2.75vw, 36px); font-weight: 500; letter-spacing: -.045em; }
.service-copy p { margin: 0 0 22px; color: var(--soft-ink); font-size: 15px; line-height: 1.6; }
.service-copy a { display: inline-flex; align-items: center; gap: 28px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); text-decoration: none; font-size: 13px; font-weight: 700; }
.service-copy a:hover { color: var(--accent); border-color: var(--accent); }
.service-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.12fr .88fr; align-items: stretch; margin-top: 16px; background: var(--sage); }
.service-card-wide .service-image { aspect-ratio: auto; min-height: 365px; }
.service-card-wide .service-image img { object-position: center 60%; }
.service-card-wide .service-copy { display: flex; flex-direction: column; justify-content: center; align-items: start; padding: 52px clamp(35px, 5vw, 84px); }
.service-card-wide h3 { max-width: 390px; margin-block: 20px 14px; font-size: clamp(36px, 4.2vw, 56px); line-height: 1.05; }
.service-card-wide p { max-width: 380px; }
.image-disclosure { margin: 24px 0 0; color: #77837d; font-size: 11px; }

.about { background: var(--sage); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 110px); }
.about-art { min-height: 390px; display: grid; place-items: center; }
.about-art img { width: 100%; max-height: 460px; object-fit: contain; }
.about-copy h2 { max-width: 640px; }
.about-copy > p:not(.eyebrow) { max-width: 530px; margin: 23px 0 31px; color: var(--soft-ink); font-size: 16px; line-height: 1.7; }
.steps { max-width: 560px; border-top: 1px solid var(--sage-dark); }
.steps > div { display: flex; gap: 25px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--sage-dark); }
.steps span { color: var(--accent); font-size: 12px; font-weight: 700; }
.steps p { margin: 0; font-size: 14px; font-weight: 600; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.contact-intro { position: sticky; top: 45px; }
.contact-intro h2 { max-width: 520px; }
.contact-intro > p:not(.eyebrow) { max-width: 420px; margin: 26px 0 43px; color: var(--soft-ink); font-size: 16px; line-height: 1.7; }
.direct-contact { max-width: 450px; }
.direct-contact a { display: block; padding: 17px 0; border-top: 1px solid var(--line); text-decoration: none; }
.direct-contact a:last-child { border-bottom: 1px solid var(--line); }
.direct-contact a > span:first-child { display: block; margin-bottom: 8px; color: var(--soft-ink); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.direct-contact a strong { font-size: clamp(15px, 1.6vw, 21px); font-weight: 500; letter-spacing: -.025em; overflow-wrap: anywhere; }
.direct-contact a strong span { font-size: 16px; }
.direct-contact a:hover strong { color: var(--accent); }
.contact-form { padding: clamp(26px, 4vw, 52px); background: #f7f9f5; }
.form-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 25px; border-bottom: 1px solid var(--line); font-size: 27px; font-weight: 500; letter-spacing: -.05em; }
.form-heading span:last-child { font-size: 22px; }
.form-fields { display: flex; flex-direction: column; padding-top: 27px; }
.form-fields label { margin-bottom: 10px; font-size: 12px; font-weight: 700; }
.form-fields label span:not(.optional) { color: var(--accent); }
.optional { margin-left: 5px; font-weight: 400; color: var(--soft-ink); }
.form-fields input, .form-fields select, .form-fields textarea { width: 100%; margin-bottom: 25px; padding: 14px 15px; border: 1px solid #cbd5cc; border-radius: 0; background: var(--white); color: var(--ink); font-size: 14px; outline: none; }
.form-fields input, .form-fields select { min-height: 48px; }
.form-fields textarea { resize: vertical; min-height: 110px; }
.form-fields input:focus, .form-fields select:focus, .form-fields textarea:focus { border-color: var(--ink); outline: 2px solid #dbe8dc; outline-offset: 1px; }
.form-fields input::placeholder, .form-fields textarea::placeholder { color: #88938b; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row > div { display: flex; flex-direction: column; }
.form-fields .button { width: 100%; }
.form-note { margin: 18px 0 0; color: var(--soft-ink); font-size: 11px; line-height: 1.6; }
.form-note a { text-underline-offset: 3px; }
.honeypot { position: absolute; left: -10000px; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; min-height: 110px; padding-block: 26px; }
.footer-inner > span { margin-right: auto; font-size: 18px; font-weight: 700; letter-spacing: -.04em; }
.footer-inner div { display: flex; gap: 25px; }
.footer-inner a { font-size: 12px; font-weight: 600; text-decoration: none; }
.footer-inner small { width: 100%; color: var(--soft-ink); font-size: 11px; }

.simple-page { max-width: 760px; min-height: calc(100vh - 202px); padding-block: 100px; }
.simple-page h1 { margin: 0 0 25px; font-size: clamp(44px, 6vw, 78px); font-weight: 500; letter-spacing: -.06em; line-height: 1.05; }
.simple-page p, .simple-page li { color: var(--soft-ink); font-size: 16px; line-height: 1.7; }
.simple-page .button { margin-top: 24px; }
.simple-page h2 { margin-top: 45px; font-size: 26px; letter-spacing: -.03em; }

@media (max-width: 980px) {
  .header-inner { gap: 20px; }
  .site-nav { gap: 18px; }
  .header-contact { margin-left: 0; }
  .hero { min-height: 660px; }
  .hero-note { right: 24px; bottom: 24px; }
  .about-grid { gap: 30px; }
  .contact { gap: 45px; }
}

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 29px; height: 29px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .header-contact { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; width: 36px; height: 36px; padding: 5px; border: 0; background: none; cursor: pointer; }
  .menu-toggle span { width: 100%; height: 1.5px; background: var(--ink); }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 72px; margin: 0; padding: 18px 24px 24px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(20,35,30,.08); }
  .site-nav.is-open { display: flex; flex-direction: column; align-items: start; gap: 20px; }
  .site-nav a { font-size: 15px; }
  .hero { min-height: 690px; }
  .hero-photo { object-position: 60% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(16,32,29,.62) 0%, rgba(16,32,29,.33) 50%, rgba(16,32,29,.1) 100%), linear-gradient(90deg, rgba(16,32,29,.24), transparent); }
  .hero-content { padding: 78px 27px 180px; }
  .hero-kicker { font-size: 12px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(51px, 10vw, 79px); }
  .hero-content > p:not(.hero-kicker) { max-width: 440px; font-size: 17px; }
  .hero-note { left: 24px; right: 24px; min-width: 0; bottom: 23px; justify-content: space-between; }
  .section { padding-block: 85px; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { max-width: 600px; margin-top: 20px; }
  .service-grid { gap: 26px 16px; }
  .service-card-wide { grid-template-columns: 1fr; margin-top: 0; }
  .service-card-wide .service-image { min-height: 320px; }
  .service-card-wide .service-copy { padding: 28px 24px 35px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { min-height: 0; order: 2; }
  .about-art img { max-height: 365px; }
  .about-copy { order: 1; }
  .contact { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .direct-contact { max-width: none; }
}

@media (max-width: 560px) {
  .hero { min-height: 720px; }
  .hero-photo { object-position: 58% center; }
  .hero-content { padding: 65px 24px 190px; }
  .hero h1 { font-size: clamp(49px, 13vw, 71px); }
  .hero-content > p:not(.hero-kicker) { margin-top: 22px; font-size: 16px; }
  .hero-note { left: 18px; right: 18px; }
  .section { padding-block: 70px; }
  h2 { font-size: clamp(42px, 10vw, 55px); }
  .service-grid { grid-template-columns: 1fr; gap: 35px; }
  .service-image { aspect-ratio: 1.28; }
  .service-card-wide { grid-column: auto; }
  .service-card-wide .service-image { min-height: 0; aspect-ratio: 1.28; }
  .service-card-wide .service-copy { padding: 25px 22px 31px; }
  .service-card-wide h3 { font-size: 37px; }
  .about-copy > p:not(.eyebrow) { font-size: 15px; }
  .contact { gap: 42px; }
  .contact-intro > p:not(.eyebrow) { margin-bottom: 31px; }
  .contact-form { padding: 25px 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { align-items: start; }
  .footer-inner > span { width: 100%; }
  .simple-page { padding-block: 75px; }
}

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