@layer reset, base, layout, components, responsive;
@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
  img { display: block; max-width: 100%; }
  button, input { font: inherit; }
  a { color: inherit; text-decoration: none; }
}
@layer base {
  :root { --ivory: #f8f6f0; --paper: #fffdf8; --sand: #eae6dc; --pine: #173c40; --deep: #102f34; --ink: #243c3a; --muted: #586a62; --gold: #ad9159; --gold-light: #d7c49b; --line: #dcded3; --serif: Georgia, 'Times New Roman', serif; --sans: 'Segoe UI', Arial, sans-serif; }
  html { scroll-behavior: smooth; scroll-padding-top: 110px; }
  body { background: var(--ivory); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
  h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
  em { font-weight: 400; }
  button, summary { cursor: pointer; }
  a, button, summary { -webkit-tap-highlight-color: transparent; }
  :focus-visible { outline: 3px solid #806839; outline-offset: 5px; box-shadow: 0 0 0 5px var(--ivory); }
  ::selection { color: white; background: var(--pine); }
  .skip-link { background: var(--pine); color: white; position: fixed; left: 16px; top: -100px; padding: 12px 20px; z-index: 100; }
  .skip-link:focus { top: 12px; }
}
@layer layout {
  .utility-bar { background: var(--deep); color: #d3dbd5; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
  .utility-bar > div { max-width: 1360px; min-height: 31px; padding: 5px 48px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .utility-bar a { color: #e5ddc9; }
  .site-header { background: var(--ivory); border-bottom: 1px solid rgba(36,60,58,.12); position: sticky; top: 0; z-index: 20; }
  .header-inner { max-width: 1440px; min-height: 108px; margin: auto; padding: 14px 56px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
  .brand { display: inline-flex; gap: 14px; align-items: center; flex-shrink: 0; }
  .brand img { width: 65px; height: 65px; mix-blend-mode: multiply; }
  .brand-text { font-family: var(--serif); font-size: 27px; letter-spacing: .105em; line-height: 1.1; display: block; }
  .brand-text > span { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .32em; font-weight: 600; margin-top: 9px; }
  #main-nav { display: flex; align-items: center; gap: 36px; }
  #main-nav ul { padding: 0; list-style: none; display: flex; gap: 30px; align-items: center; }
  #main-nav li a { font-size: 12px; font-weight: 600; display: block; padding: 12px 0; position: relative; }
  #main-nav li a::after { content: ''; position: absolute; height: 1px; width: 0; left: 0; bottom: 7px; background: var(--gold); transition: width .2s; }
  #main-nav li a:hover::after, #main-nav li a[aria-current]::after { width: 100%; }
  .header-cta { border: 1px solid var(--pine); padding: 13px 19px; font-size: 12px; font-weight: 650; display: inline-flex; gap: 22px; align-items: center; transition: background .2s, color .2s; }
  .header-cta:hover { background: var(--pine); color: white; }
  .menu-toggle { display: none; }
  .hero { min-height: 700px; height: min(840px, calc(100svh - 139px)); position: relative; display: flex; align-items: center; justify-content: center; color: white; isolation: isolate; }
  .hero-picture, .hero-picture img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-picture { z-index: -3; }
  .hero-picture img { object-fit: cover; object-position: center 50%; }
  .hero-shade { z-index: -2; background: linear-gradient(180deg,rgba(6,27,31,.1),rgba(6,27,31,.35) 50%,rgba(6,27,31,.62)); }
  .hero-content { text-align: center; max-width: 1000px; padding: 65px 24px 120px; }
  .eyebrow, .section-kicker { font-family: var(--sans); color: #796037; text-transform: uppercase; font-weight: 650; letter-spacing: .2em; font-size: 10px; line-height: 1.6; }
  .eyebrow.light { color: #ecdfbf; }
  .hero h1 { font-size: clamp(64px,7.8vw,118px); letter-spacing: -.06em; line-height: .97; margin: 28px 0; text-shadow: 0 2px 28px rgba(0,0,0,.12); }
  .hero h1 em { color: #eee1c6; }
  .hero-intro { color: #f1f1e9; font-size: 15px; line-height: 1.8; margin: auto; max-width: 520px; }
  .hero-actions { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 34px; }
  .hero-foot { position: absolute; bottom: 28px; left: 56px; right: 56px; border-top: 1px solid #ffffff4d; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; letter-spacing: .035em; color: #f1ecdf; }
  .hero-foot a { display: flex; gap: 28px; align-items: center; }
  .section { width: min(1216px, calc(100% - 112px)); margin: 0 auto; padding: 105px 0; }
  .section-narrow { width: min(820px,calc(100% - 112px)); margin-inline: auto; }
  .section .section { width: 100%; padding: 0; }
  .section + .section:not(.experiences) { border-top: 1px solid var(--line); }
  .section-heading { font-size: clamp(38px,4vw,58px); letter-spacing: -.04em; margin: 18px 0 24px; }
  .section-heading em { color: #6b7b69; }
  .section-intro { color: var(--muted); font-size: 15px; max-width: 620px; }
  .intro-section { text-align: center; max-width: 790px; padding-bottom: 65px; }
  .intro-section .section-intro { margin: 0 auto 28px; }
  .section-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 40px; }
  .section-top .section-heading { margin-bottom: 0; }
  .experience-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px; }
  .experience-card { display: block; }
  .experience-image { position: relative; overflow: hidden; aspect-ratio: 4/4.9; background: var(--sand); margin-bottom: 27px; }
  .experience-image img { object-fit: cover; width: 100%; height: 100%; transition: transform .6s; }
  .experience-card:hover img { transform: scale(1.04); }
  .experience-card:nth-child(2) .experience-image { border-radius: 160px 160px 0 0; }
  .experience-card h3 { font-size: 29px; letter-spacing: -.03em; margin: 13px 0 13px; }
  .experience-card > p:last-child { color: var(--muted); font-size: 14px; max-width: 340px; }
  .round-arrow { width: 44px; height: 44px; background: var(--ivory); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; bottom: 18px; right: 18px; color: var(--pine); font-size: 20px; }
  .story-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--pine); color: var(--ivory); min-height: 620px; }
  .story-section > img { height: 100%; width: 100%; min-height: 620px; object-fit: cover; object-position: center 65%; }
  .story-copy { align-self: center; padding: 70px clamp(40px,7vw,100px); }
  .story-copy h2 { font-size: clamp(37px,3.7vw,56px); letter-spacing: -.04em; margin: 28px 0; }
  .story-copy h2 em { color: var(--gold-light); }
  .story-copy > p:not(.eyebrow) { color: #ccdad5; font-size: 14px; line-height: 1.9; max-width: 460px; margin-bottom: 30px; }
  .practical-section { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
  .practical-list { align-self: center; }
  .practical-list a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border-bottom: 1px solid #cad1c7; }
  .practical-list a:first-child { border-top: 1px solid #cad1c7; }
  .practical-list strong { font-family: var(--serif); font-size: 22px; font-weight: 400; display: block; }
  .practical-list small { display: block; color: var(--muted); font-size: 11px; margin-top: 4px; }
  .practical-list a > span:last-child { font-size: 22px; color: var(--gold); }
  .closing-section { background: #e9eee5; position: relative; overflow: hidden; padding: 94px 24px 100px; text-align: center; }
  .closing-section::after { content: ''; border: 1px solid #bac9b4; border-radius: 50%; position: absolute; width: 940px; height: 940px; top: 60px; left: calc(50% - 470px); opacity: .45; pointer-events: none; }
  .closing-inner { position: relative; z-index: 1; max-width: 640px; margin: auto; }
  .closing-inner h2 { font-size: clamp(50px,6vw,83px); letter-spacing: -.045em; margin: 20px 0 25px; }
  .closing-inner p:not(.section-kicker) { color: #55675c; font-size: 14px; max-width: 450px; margin: auto auto 30px; }
  .page-hero { min-height: 400px; position: relative; isolation: isolate; display: flex; align-items: center; }
  .page-hero > img, .page-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; object-fit: cover; }
  .page-hero-shade { z-index: -1; background: linear-gradient(90deg,rgba(10,37,37,.8),rgba(10,37,37,.42)); }
  .page-hero-copy { width: min(1216px,calc(100% - 112px)); margin: auto; color: white; padding: 75px 0; }
  .page-hero h1 { font-size: clamp(45px,5.6vw,78px); max-width: 20ch; letter-spacing: -.045em; margin: 17px 0 22px; }
  .page-hero-copy > p:last-child { color: #e2e7de; max-width: 620px; font-size: 15px; }
  .site-footer { background: var(--deep); color: #c4d1c9; padding: 76px 56px 28px; }
  .footer-top { max-width: 1216px; margin: auto; display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 42px; }
  .footer-wordmark { color: var(--ivory); font-family: var(--serif); font-size: 32px; letter-spacing: -.03em; }
  .footer-wordmark em { color: var(--gold-light); }
  .footer-brand > p:nth-child(2) { font-size: 13px; line-height: 1.7; margin: 16px 0 22px; }
  .footer-location { color: #8fa99b; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
  .footer-top h2 { font-family: var(--sans); color: #e4d7b6; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin: 10px 0 25px; }
  .footer-top ul { list-style: none; padding: 0; }
  .footer-top li { margin: 10px 0; }
  .footer-top a, .footer-top > div > p:not(.footer-wordmark) { font-size: 12px; line-height: 1.8; }
  .footer-top a:hover { color: white; text-decoration: underline; text-underline-offset: 5px; }
  .footer-phone { display: inline-block; margin-top: 14px; color: #fff4d9; }
  .footer-bottom { max-width: 1216px; margin: 55px auto 0; border-top: 1px solid #365351; padding-top: 25px; display: flex; justify-content: space-between; gap: 20px; font-size: 10px; }
  .footer-bottom > div { display: flex; gap: 22px; }
  .photo-note { max-width: 1216px; margin: 15px auto 0; font-size: 9px; color: #a1b5a8; }
}
@layer components {
  .button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; background: var(--pine); color: white; min-height: 53px; padding: 14px 24px; font-size: 12px; font-weight: 650; letter-spacing: .01em; border: 1px solid var(--pine); transition: background .2s, transform .2s; }
  .button:hover { background: #285358; transform: translateY(-2px); }
  .button-gold { background: #ddcda7; border-color: #ddcda7; color: #203a35; }
  .button-gold:hover { background: #ebdebf; }
  .button-glass { background: rgba(18,43,42,.12); color: white; border: 1px solid #ffffff94; backdrop-filter: blur(3px); }
  .button-glass:hover { background: #ffffff22; }
  .button-secondary { background: transparent; color: var(--pine); }
  .button-secondary:hover { background: #e3e8dc; }
  .text-link { display: inline-flex; gap: 26px; align-items: center; font-size: 12px; font-weight: 650; border-bottom: 1px solid var(--gold); padding: 6px 0 9px; }
  .text-link:hover { color: #7b622f; }
  .light-link { color: #ede5cd; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
  .split-copy h2 { font-size: clamp(33px,3.8vw,50px); letter-spacing: -.04em; margin: 15px 0 23px; }
  .split-copy p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
  .split-copy .section-kicker { color: #806839; font-size: 10px; }
  .photo { width: 100%; height: 370px; object-fit: cover; }
  .photo-tall { height: 540px; border-radius: 250px 250px 0 0; }
  .prose { color: var(--muted); font-size: 15px; }
  .prose h2 { color: var(--ink); font-size: 35px; letter-spacing: -.03em; margin: 44px 0 20px; }
  .prose h2:first-child { margin-top: 0; }
  .prose h3 { color: var(--ink); font-size: 25px; margin: 30px 0 14px; }
  .prose p { margin-bottom: 18px; }
  .prose ul, .prose ol { padding-left: 23px; margin: 18px 0; }
  .prose li { margin-bottom: 8px; }
  .prose a:not(.button) { color: var(--pine); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
  .cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; margin-top: 34px; }
  .card { background: var(--paper); padding: 32px; border-top: 1px solid var(--gold); }
  .card h3 { font-size: 27px; letter-spacing: -.025em; margin: 17px 0; }
  .card h2 { font-size: 29px; letter-spacing: -.025em; margin: 17px 0; }
  .card .text-link { margin-top: 20px; }
  .card p { color: var(--muted); font-size: 14px; }
  .card-number { color: #806839; font-family: var(--serif); font-size: 23px; }
  .callout { background: #e9eee5; border-left: 3px solid var(--gold); padding: 35px 38px; margin-block: 35px; }
  .callout h2, .callout h3 { margin-top: 0; }
  .callout p:last-child { margin-bottom: 0; }
  .callout h2 { font-size: 35px; margin-bottom: 18px; }
  .callout > .button { margin-top: 24px; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 32px; }
  .contact-card { background: #eeede4; padding: 38px; }
  .contact-card h2, .contact-card h3 { font-size: 30px; margin: 12px 0 20px; }
  .contact-card p { color: var(--muted); margin: 12px 0; font-size: 15px; }
  .contact-card a:not(.button) { color: var(--pine); text-decoration: underline; text-underline-offset: 5px; }
  .timeline { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 35px; margin-top: 40px; }
  .timeline-item { padding: 26px 0 0; border-top: 1px solid var(--gold); }
  .timeline-item h3 { margin: 12px 0; font-size: 29px; }
  .timeline-item .section-kicker { color: #806839; font-size: 10px; }
  .timeline-item p { color: var(--muted); font-size: 14px; }
  .faq-list { margin-top: 32px; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item:first-child { border-top: 1px solid var(--line); }
  .faq-item summary { color: var(--pine); font-family: var(--serif); font-size: 25px; line-height: 1.3; list-style: none; padding: 27px 42px 27px 0; position: relative; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; position: absolute; right: 8px; top: 25px; color: var(--gold); font-family: var(--sans); font-size: 25px; }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item p, .faq-item > div { color: var(--muted); max-width: 700px; padding-bottom: 28px; font-size: 15px; }
  .table-wrap { overflow-x: auto; margin: 28px 0; }
  table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
  th,td { padding: 17px 20px; border-bottom: 1px solid var(--line); }
  th { background: var(--pine); color: white; font-size: 12px; }
}
@layer responsive {
  @media (max-width:1200px) {
    .header-inner { padding-inline: 34px; gap: 22px; }
    #main-nav, #main-nav ul { gap: 22px; }
    .brand-text { font-size: 24px; }
    .brand img { width: 57px; height: 57px; }
    .split { gap: 45px; }
  }
  @media (max-width:1000px) {
    .utility-bar > div { padding-inline: 28px; }
    .header-inner { min-height: 94px; padding: 14px 28px; }
    .menu-toggle { display: flex; gap: 10px; align-items: center; border: 0; background: none; color: var(--pine); padding: 13px 0 13px 13px; font-size: 11px; }
    .menu-lines { width: 21px; height: 10px; border-top: 1px solid var(--pine); border-bottom: 1px solid var(--pine); }
    #main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--ivory); padding: 15px 28px 30px; border-bottom: 1px solid var(--line); box-shadow: 0 15px 25px #0c30201a; }
    #main-nav.is-open { display: block; }
    #main-nav ul { display: block; }
    #main-nav li a { padding: 15px 0; font-size: 15px; }
    #main-nav .header-cta { margin-top: 15px; display: flex; justify-content: space-between; }
    .hero { min-height: 670px; height: calc(100svh - 125px); }
    .section { width: calc(100% - 64px); padding: 75px 0; }
    .section-narrow { width: calc(100% - 64px); }
    .experience-grid { gap: 20px; }
    .experience-card h3 { font-size: 24px; }
    .story-copy { padding: 45px 36px; }
    .story-section, .story-section > img { min-height: 550px; }
    .practical-section { gap: 45px; }
    .footer-top { grid-template-columns: 1.2fr 1fr; row-gap: 45px; }
    .cards { gap: 18px; }
    .card { padding: 24px; }
    .page-hero-copy { width: calc(100% - 64px); }
    .timeline { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width:640px) {
    .utility-bar > div { min-height: 28px; padding: 5px 20px; justify-content: center; font-size: 8px; letter-spacing: .12em; }
    .utility-bar a { display: none; }
    .header-inner { min-height: 84px; padding: 12px 20px; gap: 14px; }
    .brand { gap: 8px; }
    .brand img { width: 51px; height: 51px; }
    .brand-text { font-size: 20px; letter-spacing: .055em; }
    .brand-text > span { font-size: 7px; letter-spacing: .23em; margin-top: 6px; }
    .menu-toggle { font-size: 0; padding: 14px 0 14px 14px; }
    #main-nav { padding-inline: 22px; }
    .hero { min-height: 635px; height: calc(100svh - 112px); max-height: 800px; }
    .hero-content { padding: 40px 24px 100px; }
    .hero h1 { font-size: clamp(64px,17vw,85px); letter-spacing: -.055em; margin: 25px 0; }
    .hero-intro { font-size: 13px; max-width: 320px; }
    .hero-actions { flex-direction: column; gap: 11px; margin-top: 28px; }
    .hero-actions .button { width: min(280px,100%); min-height: 49px; font-size: 11px; }
    .hero .eyebrow { font-size: 8px; letter-spacing: .18em; }
    .hero-foot { left: 24px; right: 24px; bottom: 20px; justify-content: center; font-size: 10px; padding-top: 17px; }
    .hero-foot > span { display: none; }
    .section, .section-narrow { width: calc(100% - 44px); padding: 65px 0; }
    .intro-section { padding-bottom: 25px; }
    .section-heading { font-size: 39px; }
    .section-intro { font-size: 14px; }
    .section-top { display: block; margin-bottom: 30px; }
    .section-top .text-link { margin-top: 20px; }
    .experience-grid { grid-template-columns: 1fr; gap: 40px; }
    .experience-image { aspect-ratio: 1/1.06; margin-bottom: 22px; }
    .experience-card h3 { font-size: 29px; }
    .experience-card > p:last-child { max-width: none; }
    .story-section { grid-template-columns: 1fr; min-height: auto; }
    .story-section > img { min-height: auto; height: 390px; }
    .story-copy { padding: 55px 28px 65px; }
    .story-copy h2 { font-size: 39px; }
    .practical-section { grid-template-columns: 1fr; gap: 15px; }
    .practical-list strong { font-size: 21px; }
    .practical-list small { font-size: 10px; }
    .closing-section { padding: 68px 26px 75px; }
    .closing-inner h2 { font-size: 59px; }
    .closing-inner p:not(.section-kicker) { font-size: 13px; }
    .site-footer { padding: 56px 25px 25px; }
    .footer-top { gap: 32px 20px; grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .footer-top > div:last-child { grid-column: 1/-1; }
    .footer-top h2 { font-size: 9px; margin-bottom: 20px; line-height: 1.5; }
    .footer-top a { font-size: 11px; }
    .footer-bottom { margin-top: 35px; flex-direction: column; gap: 15px; font-size: 9px; }
    .footer-bottom > div { gap: 20px; }
    .photo-note { font-size: 8px; line-height: 1.7; }
    .page-hero { min-height: 340px; }
    .page-hero-copy { width: calc(100% - 44px); padding: 60px 0; }
    .page-hero h1 { font-size: 45px; overflow-wrap: anywhere; }
    .page-hero-copy > p:last-child { font-size: 13px; }
    .page-hero .eyebrow { font-size: 9px; }
    .split { grid-template-columns: 1fr; gap: 35px; }
    .photo { height: 290px; }
    .photo-tall { height: 400px; }
    .split-copy h2 { font-size: 37px; }
    .split-copy p { font-size: 14px; }
    .cards { grid-template-columns: 1fr; gap: 19px; }
    .card { padding: 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-card { padding: 28px; }
    .timeline { grid-template-columns: 1fr; gap: 25px; }
    .timeline-item p { font-size: 12px; }
    .prose { font-size: 14px; }
    .prose h2 { font-size: 29px; }
    .callout { padding: 27px; }
    .faq-item summary { font-size: 22px; }
    .faq-item p, .faq-item > div { font-size: 14px; }
    .desktop-break { display: none; }
  }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
}
