:root {
  --green: #173e32;
  --green-deep: #0c2d25;
  --green-soft: #e8f0e6;
  --accent: #ee6846;
  --accent-dark: #d95334;
  --cream: #f7f5ef;
  --white: #ffffff;
  --ink: #1e2824;
  --muted: #6c756f;
  --line: #dfe4df;
  --shadow: 0 24px 60px rgba(13, 45, 37, .12);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.utility-bar { color: rgba(255,255,255,.82); background: var(--green-deep); }
.utility-inner { width: min(1180px, calc(100% - 48px)); min-height: 40px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.utility-inner p { margin: 0; }
.utility-inner p span { margin: 0 8px; color: var(--accent); }
.utility-inner a { font-weight: 700; }
.utility-inner a span { margin-left: 7px; color: var(--accent); }
.utility-links { display: flex; align-items: center; gap: 22px; }
.utility-links a { transition: color .2s; }
.utility-links a:hover { color: white; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { width: min(1180px, calc(100% - 48px)); height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { width: 112px; height: 34px; flex: 0 0 auto; display: block; }
.brand img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; padding: 10px 0; font-size: 13px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { min-height: 44px; padding: 0 19px; display: inline-flex; align-items: center; border-radius: 3px; color: white; background: var(--green); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; transition: .25s ease; }
.header-cta:hover { background: var(--accent); }
.header-cta span { margin-left: 13px; }
.menu-toggle { display: none; width: 38px; height: 38px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { width: 100%; height: 2px; margin: 4px 0; display: block; background: var(--green); transition: .25s; }

.hero { min-height: 690px; position: relative; display: flex; align-items: center; color: white; background: var(--green-deep) url("tax-planning.jpg") center 44% / cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,37,30,.94) 0%, rgba(8,37,30,.84) 42%, rgba(8,37,30,.35) 72%, rgba(8,37,30,.15) 100%); }
.hero-content { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0 155px; position: relative; z-index: 2; }
.hero-kicker, .section-label { margin: 0 0 20px; display: flex; align-items: center; gap: 12px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker span { width: 34px; height: 2px; background: currentColor; }
.hero h1 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 6.4vw, 94px); font-weight: 400; line-height: .99; letter-spacing: -.05em; }
.hero h1 em { color: #f39875; font-weight: 400; }
.hero-content > p:not(.hero-kicker) { max-width: 620px; margin: 27px 0 0; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.75; }
.hero-actions { margin-top: 36px; display: flex; gap: 12px; }
.button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: .25s ease; }
.button span { margin-left: 14px; transition: transform .25s; }
.button:hover span { transform: translate(3px, -2px); }
.button-accent { color: white; background: var(--accent); }
.button-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.button-ghost { border: 1px solid rgba(255,255,255,.48); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-assurance { width: min(1180px, calc(100% - 48px)); min-height: 108px; padding: 0 30px; position: absolute; left: 50%; bottom: -54px; z-index: 3; transform: translateX(-50%); display: grid; grid-template-columns: repeat(3, 1fr); color: var(--ink); background: white; box-shadow: var(--shadow); }
.hero-assurance div { padding: 27px 30px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.hero-assurance div:last-child { border: 0; }
.hero-assurance strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.hero-assurance span { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.45; }

.intro-strip { max-width: 960px; margin: 0 auto; padding: 145px 24px 105px; text-align: center; }
.intro-strip .section-label { justify-content: center; }
.intro-strip h2, .section-head h2, .about-content h2, .process-copy h2, .contact-card h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.intro-strip h2 { font-size: clamp(39px, 4.2vw, 58px); line-height: 1.13; }
.intro-strip > p:last-child { max-width: 680px; margin: 24px auto 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.section { padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
.services { background: var(--cream); }
.section-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 9vw; }
.section-head h2 { max-width: 670px; font-size: clamp(43px, 4.7vw, 66px); line-height: 1.08; }
.section-head > p { max-width: 430px; margin: 0 0 7px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.service-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 355px; padding: 28px; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease, border-color .3s; }
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 18px 45px rgba(13,45,37,.09); }
.service-primary { background: var(--green-soft); }
.service-dark { color: white; background: var(--green); border-color: var(--green); }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-index { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.service-symbol { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(23,62,50,.25); border-radius: 50%; color: var(--green); font-family: var(--serif); font-size: 13px; }
.service-dark .service-symbol { color: white; border-color: rgba(255,255,255,.3); }
.service-card h3 { margin: 42px 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.68; }
.service-dark p { color: rgba(255,255,255,.62); }
.service-card a { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-dark a { color: white; border-color: rgba(255,255,255,.2); }
.service-card a span { float: right; color: var(--accent); }

.about { display: grid; grid-template-columns: .92fr 1.08fr; gap: 8vw; align-items: center; }
.about-image { min-height: 640px; position: relative; }
.about-image > img { width: 100%; height: 640px; display: block; object-fit: cover; object-position: center; }
.image-badge { width: 170px; height: 150px; padding: 22px; position: absolute; right: -32px; bottom: -25px; display: flex; flex-direction: column; justify-content: end; color: white; background: var(--accent); box-shadow: 0 15px 35px rgba(217,83,52,.23); }
.image-badge strong { font-family: var(--serif); font-size: 38px; font-weight: 400; }
.image-badge span { margin-top: 5px; font-size: 10px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.about-content h2 { max-width: 620px; font-size: clamp(43px, 4.5vw, 63px); line-height: 1.08; }
.about-content > p:not(.section-label) { color: var(--muted); font-size: 14px; line-height: 1.8; }
.about-content .about-lead { margin-top: 28px; color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.5; }
.check-list { margin: 30px 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.check-list li { color: #4c5852; font-size: 14px; line-height: 1.5; }
.check-list span { width: 23px; height: 23px; margin-right: 8px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 10px; }
.inline-link { padding-bottom: 6px; display: inline-block; border-bottom: 2px solid var(--accent); color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inline-link span { margin-left: 16px; }

.process { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; color: white; background: var(--green-deep); }
.section-label-light { color: #f39875; }
.process-copy h2 { font-size: clamp(43px, 4.5vw, 63px); line-height: 1.08; }
.process-copy > p:last-child { max-width: 480px; margin: 25px 0 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; }
.process-steps { border-top: 1px solid rgba(255,255,255,.18); }
.process-steps article { padding: 34px 0; display: grid; grid-template-columns: 65px 1fr; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-steps article > span { padding-top: 3px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.process-steps h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.process-steps p { max-width: 480px; margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }

.contact { min-height: 650px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 7vw; position: relative; background: var(--cream); }
.contact::before { content: ""; width: 330px; height: 330px; position: absolute; left: -150px; bottom: -160px; border: 1px solid rgba(23,62,50,.1); border-radius: 50%; box-shadow: 0 0 0 60px rgba(23,62,50,.025), 0 0 0 120px rgba(23,62,50,.018); }
.contact-card { position: relative; z-index: 1; align-self: center; }
.contact-card h2 { font-size: clamp(45px, 4.7vw, 67px); line-height: 1.06; }
.contact-card > p:not(.section-label) { max-width: 530px; margin: 24px 0 30px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-alternative { margin-top: 35px; padding-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; border-top: 1px solid var(--line); }
.contact-alternative > span { color: var(--muted); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.contact-alternative a { color: var(--green); font-size: 14px; font-weight: 750; }
.contact-alternative b { margin-left: 8px; color: var(--accent); }
.contact-details { margin: 30px 0 5px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-details a { padding: 13px 15px; display: grid; grid-template-columns: 70px 1fr; align-items: center; background: rgba(255,255,255,.66); }
.contact-details span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { color: var(--green); font-size: 14px; font-weight: 700; line-height: 1.5; }
.contact-form { padding: 40px; position: relative; z-index: 2; background: white; border-top: 4px solid var(--green); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 28px; padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.form-heading > span { font-family: var(--serif); font-size: 25px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field > span { color: #4d5853; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 51px; padding: 0 14px; border: 1px solid #d7ddd8; border-radius: 2px; outline: none; color: var(--ink); background: #fbfcfa; font: 15px var(--sans); transition: border-color .2s, box-shadow .2s, background .2s; }
.form-field textarea { min-height: 125px; padding-top: 14px; resize: vertical; line-height: 1.55; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9aa29d; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(23,62,50,.09); }
.form-field-wide { grid-column: 1 / -1; }
.form-actions { margin-top: 24px; display: flex; align-items: center; gap: 20px; }
.form-submit { min-height: 52px; padding: 0 23px; flex: 0 0 auto; border: 0; border-radius: 3px; color: white; background: var(--accent); font: 800 12px var(--sans); letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .2s; }
.form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.form-submit span { margin-left: 15px; }
.form-actions p { max-width: 280px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.form-status { min-height: 18px; margin: 15px 0 0; color: var(--green); font-size: 13px; font-weight: 700; }

.site-footer { padding: 75px max(24px, calc((100vw - 1180px) / 2)) 25px; color: rgba(255,255,255,.68); background: #08231d; }
.footer-top { display: grid; grid-template-columns: 1.5fr .65fr .85fr 1.15fr; gap: 55px; }
.footer-brand img { width: 112px; height: 34px; display: block; object-fit: contain; object-position: left; mix-blend-mode: screen; filter: brightness(1.8); }
.footer-brand p, .footer-contact p { max-width: 320px; margin: 22px 0 0; font-size: 14px; line-height: 1.75; }
.footer-top h3 { margin: 0 0 22px; color: white; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-contact a { margin-top: 18px; display: inline-block; color: #f39875; font-size: 13px; font-weight: 700; }
.footer-contact a span { margin-left: 8px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list a { margin: 0; display: block; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.55; font-weight: 500; }
.footer-contact-list a:hover { color: white; }
.footer-contact-list a span { margin: 0 0 4px; display: block; color: #f39875; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-hours { padding-top: 2px; }
.footer-hours > span { display: block; color: #f39875; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-hours p { margin: 5px 0 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
.footer-bottom { margin-top: 60px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 960px) {
  .header-inner { height: 74px; }
  .menu-toggle { margin-left: auto; display: block; }
  .site-nav { padding: 25px; position: absolute; left: 24px; right: 24px; top: 74px; display: none; flex-direction: column; align-items: flex-start; gap: 11px; background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 0; }
  .header-cta { display: none; }
  .menu-toggle.active span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .section-head, .about, .process { grid-template-columns: 1fr; }
  .section-head { gap: 28px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about { gap: 75px; }
  .about-image, .about-image > img { min-height: 540px; height: 540px; }
  .about-content { max-width: 750px; }
  .process { gap: 60px; }
  .contact { grid-template-columns: 1fr; gap: 55px; }
  .contact-card { max-width: 720px; }
  .contact-form { width: min(100%, 760px); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .utility-inner { width: calc(100% - 32px); min-height: 34px; justify-content: center; }
  .utility-inner p { display: none; }
  .header-inner { width: calc(100% - 32px); }
  .brand { width: 100px; height: 30px; }
  .site-nav { left: 16px; right: 16px; }
  .hero { min-height: 650px; background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,37,30,.94), rgba(8,37,30,.69)); }
  .hero-content { width: calc(100% - 38px); padding: 80px 0 180px; }
  .hero h1 { font-size: clamp(48px, 14vw, 64px); }
  .hero-content > p:not(.hero-kicker) { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-assurance { width: calc(100% - 38px); min-height: auto; padding: 0 18px; bottom: -116px; grid-template-columns: 1fr; }
  .hero-assurance div { padding: 18px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-assurance strong { font-size: 18px; }
  .hero-assurance span { margin-top: 5px; }
  .intro-strip { padding-top: 190px; padding-bottom: 80px; }
  .intro-strip h2 { font-size: 40px; }
  .section { padding: 85px 20px; }
  .section-head h2, .about-content h2, .process-copy h2, .contact-card h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .service-card { min-height: 330px; }
  .about { gap: 58px; }
  .about-image, .about-image > img { min-height: 440px; height: 440px; }
  .image-badge { width: 140px; height: 120px; right: -5px; bottom: -25px; }
  .check-list { grid-template-columns: 1fr; }
  .process-steps article { grid-template-columns: 48px 1fr; }
  .contact { grid-template-columns: 1fr; padding: 80px 20px; }
  .contact-form { padding: 25px 20px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

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

/* Multi-page layouts */
.page-hero { min-height: 460px; position: relative; display: flex; align-items: center; overflow: hidden; color: white; background: var(--green-deep); }
.page-hero::before { content: "R&C"; position: absolute; right: -30px; bottom: -120px; color: rgba(255,255,255,.035); font: 330px/.8 var(--serif); letter-spacing: -.12em; }
.page-hero::after { content: ""; width: 400px; height: 400px; position: absolute; right: 9%; top: -240px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.page-hero-inner { width: min(1180px, calc(100% - 48px)); margin: auto; padding: 95px 0 75px; position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; margin: 0; font: 400 clamp(52px, 6vw, 82px)/1 var(--serif); letter-spacing: -.045em; }
.page-hero-inner > p:not(.hero-kicker) { max-width: 670px; margin: 24px 0 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.75; }
.breadcrumbs { margin-top: 45px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs b { color: #f39875; font-weight: 700; }

.page-main { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 7vw; }
.page-article > .section-label { margin-bottom: 24px; }
.page-article > h2 { max-width: 850px; margin: 0; font: 400 clamp(34px, 3.5vw, 50px)/1.2 var(--serif); letter-spacing: -.03em; }
.page-copy { margin-top: 35px; padding-bottom: 65px; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; border-bottom: 1px solid var(--line); }
.page-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.content-heading { margin: 65px 0 28px; display: grid; grid-template-columns: 52px 1fr; }
.content-heading > span { padding-top: 7px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.content-heading h2 { margin: 0; font: 400 34px/1.15 var(--serif); letter-spacing: -.025em; }
.content-heading p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.detail-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.detail-list li { min-height: 68px; padding: 17px 18px; display: flex; align-items: center; border: 1px solid var(--line); color: #46534d; background: white; font-size: 14px; line-height: 1.5; }
.detail-list li span { width: 27px; height: 27px; margin-right: 12px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 9px; font-weight: 800; }
.detail-list-light li { background: var(--cream); border-color: transparent; }
.detail-list-light li span { color: white; background: var(--green); }
.mini-process { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.mini-process > div { min-height: 210px; padding: 27px; border-right: 1px solid var(--line); }
.mini-process > div:last-child { border: 0; }
.mini-process b { color: var(--accent); font-size: 11px; letter-spacing: .12em; }
.mini-process h3 { margin: 40px 0 10px; font: 400 24px var(--serif); }
.mini-process p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.page-sidebar { position: sticky; top: 110px; }
.sidebar-box { padding: 32px; color: white; background: var(--green); box-shadow: var(--shadow); }
.sidebar-box > p { margin: 0 0 20px; color: #f39875; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.sidebar-box h2 { margin: 0; font: 400 31px/1.18 var(--serif); }
.sidebar-box > a { min-height: 49px; margin-top: 28px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; color: var(--green); background: white; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.sidebar-links { margin-top: 20px; padding: 26px; border: 1px solid var(--line); }
.sidebar-links h3 { margin: 0 0 15px; color: var(--muted); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.sidebar-links a { padding: 14px 0; display: grid; grid-template-columns: 1fr 15px; border-top: 1px solid var(--line); }
.sidebar-links small { grid-column: 1 / -1; color: var(--accent); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.sidebar-links span { margin-top: 5px; font: 400 16px/1.3 var(--serif); }
.sidebar-links b { align-self: end; color: var(--green); font-size: 10px; }

.page-directory { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.directory-card { min-height: 190px; padding: 23px; display: grid; grid-template-columns: 38px 1fr 18px; border: 1px solid var(--line); background: white; transition: transform .25s, box-shadow .25s, border-color .25s; }
.directory-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 16px 40px rgba(13,45,37,.08); }
.directory-card > span { color: var(--accent); font-size: 10px; font-weight: 800; }
.directory-card small { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.directory-card h3 { margin: 13px 0 8px; font: 400 21px/1.2 var(--serif); }
.directory-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.directory-card > b { color: var(--green); font-size: 10px; }
.page-contact-form { margin: 45px 0 70px; box-shadow: 0 18px 48px rgba(13,45,37,.1); }
.location-panel { margin: 70px 0 20px; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 440px; background: var(--green-deep); }
.location-details { padding: 52px; color: white; }
.location-details h2 { margin: 0; font: 400 clamp(34px, 3.5vw, 50px)/1.12 var(--serif); letter-spacing: -.03em; }
.location-list { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.16); }
.location-list a { padding: 16px 0; display: grid; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.16); }
.location-list span { color: #f39875; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-list strong { color: rgba(255,255,255,.86); font-size: 14px; font-weight: 600; line-height: 1.55; }
.hours-panel { margin-top: 30px; }
.hours-panel h3 { margin: 0 0 10px; color: #f39875; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hours-panel > div { padding: 7px 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.11); }
.hours-panel > div span { color: rgba(255,255,255,.67); font-size: 13px; }
.hours-panel > div strong { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 700; }
.map-frame { min-height: 440px; background: #dfe5df; }
.map-frame iframe { width: 100%; height: 100%; min-height: 440px; display: block; border: 0; filter: saturate(.72) contrast(.96); }
.home-location {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  background: var(--green-deep);
}
.home-location .location-details {
  padding: clamp(52px, 6vw, 100px) clamp(40px, 7vw, 120px);
}

.page-cta { min-height: 320px; padding: 70px max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 50px; color: white; background: var(--green); }
.page-cta h2 { max-width: 760px; margin: 0; font: 400 clamp(38px, 4.5vw, 60px)/1.08 var(--serif); letter-spacing: -.035em; }

@media (max-width: 960px) {
  .page-main { grid-template-columns: 1fr; }
  .page-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .sidebar-links { margin-top: 0; }
  .location-panel { grid-template-columns: 1fr; }
  .home-location { grid-template-columns: 1fr; }
  .location-details { padding: 45px; }
  .home-location .location-details { padding: 45px; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 420px; }
  .page-hero-inner { width: calc(100% - 38px); padding: 75px 0 55px; }
  .page-hero h1 { font-size: 48px; }
  .page-main { padding-top: 80px; padding-bottom: 80px; }
  .page-copy, .detail-list, .page-directory { grid-template-columns: 1fr; }
  .content-heading { grid-template-columns: 42px 1fr; }
  .mini-process { grid-template-columns: 1fr; }
  .mini-process > div { min-height: 175px; border-right: 0; border-bottom: 1px solid var(--line); }
  .page-sidebar { grid-template-columns: 1fr; }
  .page-cta { align-items: flex-start; flex-direction: column; }
  .utility-links { width: 100%; justify-content: space-between; gap: 12px; }
  .utility-links a { font-size: 10px; }
  .contact-details a { grid-template-columns: 1fr; gap: 5px; }
  .location-panel { margin-top: 50px; }
  .location-details { padding: 38px 22px; }
  .home-location .location-details { padding: 38px 22px; }
  .map-frame, .map-frame iframe { min-height: 340px; }
}
