@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

:root {
  --cream: #f5f2ec; --cream2: #ede9e0; --white: #ffffff; --ink: #1a1814; --body: #3a3830;
  --mid: #787060; --faint: #b8b0a0; --rule: #ddd8ce; --green: #1f3a28; --green2: #2a4e35;
  --amber: #a06200; --amber-bg: #f8ead6; --dark: #131210; --max: 1100px;
  --pad: clamp(1.5rem, 5vw, 3rem); --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif; --mono: 'DM Mono', 'Courier New', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; font-size: 17px; line-height: 1.72; color: var(--body); background: var(--cream); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 500; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
h1 em { font-style: italic; color: var(--green); }
h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; color: var(--ink); }
h2 em { font-style: italic; color: var(--amber); }
h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.25; color: var(--ink); }
p { font-size: 1rem; line-height: 1.82; color: var(--body); }
.label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); }
.label-amber { color: var(--amber); }
.label-lt { color: rgba(255,255,255,.35); }
.btn { display: inline-block; font-family: var(--sans); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 14px 32px; transition: all .18s ease; cursor: pointer; border: none; outline: none; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green2); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(26,24,20,.25); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline-lt { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-lt:hover { border-color: rgba(255,255,255,.8); color: #fff; }
.site-header { position: sticky; top: 0; z-index: 200; background: var(--cream); border-bottom: 1px solid var(--rule); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.wordmark { display: flex; flex-direction: column; gap: 3px; }
.wordmark__name { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--ink); letter-spacing: 0.01em; line-height: 1; }
.wordmark__sub { font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); }
.nav { display: flex; align-items: center; gap: 0; }
.nav a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: var(--mid); padding: 6px 14px; transition: color .14s; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--ink); }
.nav-cta { background: var(--green) !important; color: #fff !important; padding: 9px 20px !important; border-bottom: none !important; margin-left: 8px; }
.nav-cta:hover { background: var(--green2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
.hero { padding: 90px 0 80px; position: relative; border-bottom: 1px solid var(--rule); overflow: hidden; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(160,98,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(160,98,0,.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: 1fr 340px; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.hero-text .label { display: block; margin-bottom: 1.4rem; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.08rem; line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem; color: var(--body); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); background: var(--white); }
.hstat { padding: 1.75rem 2rem; }
.hstat-n { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--ink); display: block; line-height: 1; margin-bottom: .4rem; letter-spacing: -0.01em; }
.hstat-n em { color: var(--amber); font-style: normal; }
.hstat-l { font-family: var(--mono); font-size: 0.58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--faint); display: block; }
.hstat-div { height: 1px; background: var(--rule); }
.trust-band { background: var(--green); padding: 22px 0; }
.trust-band p { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,.7); text-align: center; }
.trust-band em { color: rgba(255,255,255,.95); font-style: italic; }
.sec { padding: 90px 0; }
.sec--white { background: var(--white); }
.sec--cream { background: var(--cream); }
.sec-hd { margin-bottom: 2.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.sec-hd .label { display: block; margin-bottom: .6rem; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--rule); border-top: 1px solid var(--rule); }
.svc-card { padding: 2.5rem 2rem 2.25rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); position: relative; transition: background .15s; }
.svc-card:hover { background: var(--cream); }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-n { font-family: var(--mono); font-size: 0.56rem; letter-spacing: .2em; color: var(--amber); margin-bottom: 1.2rem; display: block; }
.svc-card h3 { margin-bottom: .75rem; }
.svc-card p { font-size: 0.93rem; line-height: 1.8; }
.process-band { background: var(--ink); padding: 100px 0; position: relative; overflow: hidden; }
.process-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; position: relative; z-index: 1; }
.process-left .label { display: block; margin-bottom: 1.2rem; }
.process-left h2 { color: #fff; margin-bottom: 1.25rem; }
.process-left h2 em { color: var(--amber); }
.process-left > p { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 2rem; }
.path-list { display: flex; flex-direction: column; }
.path-row { display: grid; grid-template-columns: 28px 1fr; gap: 1rem; padding: .8rem 0; border-top: 1px solid rgba(255,255,255,.07); align-items: baseline; }
.path-num { font-family: var(--mono); font-size: 0.54rem; letter-spacing: .15em; color: rgba(255,255,255,.25); }
.path-row span:last-child { font-size: 0.9rem; color: rgba(255,255,255,.4); line-height: 1.5; }
.path-row.winner .path-num { color: var(--amber); }
.path-row.winner span:last-child { color: rgba(255,255,255,.9); font-weight: 500; }
.process-right { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 3rem; }
.process-stat { padding: 2rem 2.25rem; border: 1px solid rgba(255,255,255,.08); border-left: 3px solid rgba(255,255,255,.15); }
.process-stat--green { border-left-color: var(--amber); }
.ps-n { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: #fff; display: block; line-height: 1; margin-bottom: .5rem; letter-spacing: -0.01em; }
.ps-n em { color: var(--amber); font-style: normal; }
.process-stat p { font-size: 0.85rem; color: rgba(255,255,255,.4); line-height: 1.6; }
.pullquote-sec { background: var(--amber-bg); padding: 70px 0; border-top: 1px solid rgba(160,98,0,.15); border-bottom: 1px solid rgba(160,98,0,.15); }
.pullquote-sec blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 300; color: var(--green); line-height: 1.5; max-width: 820px; margin: 0 auto; text-align: center; }
.pullquote-sec blockquote::before { content: '“'; color: var(--amber); }
.pullquote-sec blockquote::after { content: '”'; color: var(--amber); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--rule); border-top: 1px solid var(--rule); }
.exp-card { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; overflow: hidden; }
.exp-img { overflow: hidden; }
.exp-img img { width: 100%; height: 200px; object-fit: cover; filter: saturate(0.45) brightness(0.9); transition: filter .35s, transform .4s; }
.exp-card:hover .exp-img img { filter: saturate(0.7) brightness(1.0); transform: scale(1.03); }
.exp-body { padding: 1.4rem 1.5rem 1.75rem; border-top: 1px solid var(--rule); flex: 1; }
.exp-cat { display: block; margin-bottom: .5rem; color: var(--amber); }
.exp-body h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.exp-body p { font-size: 0.83rem; color: var(--mid); line-height: 1.6; }
.about-sec { position: relative; overflow: hidden; }
.about-photo-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 45%; z-index: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-photo-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(1.1) brightness(1.05) blur(0.5px); opacity: 1.0; }
.about-wash { position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,242,236,1) 0%, rgba(245,242,236,0.85) 20%, rgba(245,242,236,0) 45%); }
.about-inner { position: relative; z-index: 2; padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-left .label { display: block; margin-bottom: .8rem; }
.about-left h2 { margin-bottom: .2rem; }
.about-role { font-family: var(--mono); font-size: 0.55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 1.75rem; }
.about-left p { font-size: 0.98rem; line-height: 1.85; margin-bottom: .9rem; }
.cred-list { display: flex; flex-direction: column; }
.cred-row { display: grid; grid-template-columns: 3px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--rule); align-items: start; }
.cred-row:first-child { border-top: 1px solid var(--rule); }
.cred-bar { background: var(--rule); min-height: 36px; transition: background .18s; }
.cred-row:hover .cred-bar { background: var(--amber); }
.cred-row strong { display: block; font-size: 0.93rem; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.cred-row span { font-size: 0.82rem; color: var(--mid); line-height: 1.55; }
.cta-bar { background: var(--green); padding: 80px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.cta-bar h2 { color: #fff; margin-bottom: .35rem; }
.cta-bar p { color: rgba(255,255,255,.5); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-left .label { display: block; margin-bottom: .8rem; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-intro { font-size: 1rem; line-height: 1.82; margin-bottom: 2rem; max-width: 420px; }
.cf-lbl { font-family: var(--mono); font-size: 0.55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); display: block; margin-top: 1.4rem; margin-bottom: .4rem; }
.cf-lbl:first-of-type { margin-top: 0; }
.cf-in, .cf-ta { width: 100%; background: var(--white); border: 1px solid var(--rule); padding: 12px 14px; font-family: var(--sans); font-size: .97rem; font-weight: 300; color: var(--ink); outline: none; border-radius: 0; -webkit-appearance: none; transition: border-color .14s; }
.cf-in:focus, .cf-ta:focus { border-color: var(--green); }
.cf-ta { min-height: 130px; resize: vertical; }
.cf-submit { margin-top: 1.5rem; }
.cf-note { font-size: 0.82rem; color: var(--faint); margin-top: .75rem; }
.cf-note a { color: var(--amber); }
.contact-right .label { display: block; margin-bottom: 1.2rem; }
.cd-list { display: flex; flex-direction: column; margin-bottom: 2rem; }
.cd { padding: 1rem 0; border-bottom: 1px solid var(--rule); }
.cd:first-child { border-top: 1px solid var(--rule); }
.cd-lbl { font-family: var(--mono); font-size: 0.52rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 4px; }
.cd a, .cd span { font-size: 0.96rem; color: var(--body); transition: color .14s; }
.cd a:hover { color: var(--amber); }
.aside-box { padding: 1.5rem; background: var(--white); border: 1px solid var(--rule); border-left: 3px solid var(--green); }
.aside-box p { font-size: 0.9rem; line-height: 1.78; }
.site-footer { background: var(--dark); padding: 56px 0 28px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 22px; }
.footer-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,.6); display: block; margin-bottom: .6rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.25); line-height: 1.8; }
.footer-col .label { color: var(--amber); display: block; margin-bottom: .9rem; }
.footer-col a, .footer-col span { display: block; font-size: .85rem; color: rgba(255,255,255,.28); margin-bottom: .4rem; transition: color .14s; }
.footer-col a:hover { color: rgba(255,255,255,.75); }
.footer-base p { font-size: .7rem; color: rgba(255,255,255,.18); }
@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; }
  .hstat { flex: 1; }
  .hstat-div { width: 1px; height: auto; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; gap: 4rem; }
  .process-right { padding-top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-bg { width: 42%; top: 0; bottom: 0; height: 100%; right: 0; left: auto; z-index: 1; }
  .about-photo-bg img { object-fit: cover; object-position: 65% 20%; opacity: 1.0; }
  .about-wash { display: none; }
  .about-left, .about-right { position: relative; z-index: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; flex-direction: column; }
  .nav.open { display: flex; position: fixed; top: 66px; left: 0; right: 0; background: var(--cream); padding: 1rem var(--pad) 1.5rem; border-bottom: 1px solid var(--rule); box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 199; }
  .nav.open a { padding: 10px 0; border-bottom: 1px solid var(--rule) !important; width: 100%; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-direction: column; }
  .hstat-div { width: auto; height: 1px; }
  .svc-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-bg { width: 40%; top: 0; bottom: 0; height: 100%; right: 0; left: auto; z-index: 1; }
  .about-photo-bg img { object-fit: cover; object-position: 65% 20%; opacity: 1.0; filter: saturate(1.1) brightness(1.05); }
  .about-wash { display: none; }
  .about-left, .about-right { position: relative; z-index: 2; }
}
.ryan-mobile-img { display: none; }
@media (max-width: 640px) {
  .ryan-mobile-img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    opacity: 1.0;
    z-index: 1;
  }
  .about-photo-bg { display: none; }
  .about-left, .about-right { position: relative; z-index: 2; }
}