@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');
:root {
  --ink: #17211d;
  --paper: #f4f1ea;
  --white: #fff;
  --sage: #9eaa9f;
  --gold: #c6a66b;
  --line: rgba(23,33,29,.16);
  --serif: "Playfair Display",Georgia,serif;
  --sans: "DM Sans",Arial,sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 7vw;
  right: 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
  transition: top .35s ease;
}
.site-header.scrolled {
  top: 10px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  pointer-events: auto;
}
.site-header>.brand {
  width: 104px;
  height: 101.6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: hidden;
  transition: width .35s ease,height .35s ease;
}
.site-header.scrolled>.brand {
  width: 52px;
  height: 50.8px;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 64px;
  padding: 7px 8px 7px 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 18px;
  background: rgba(244,241,234,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 45px rgba(10,18,14,.1);
  pointer-events: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: color .2s,background .2s;
}
.site-header nav a:hover, .site-header nav a.active {
  color: #806432;
  background: rgba(198,166,107,.13);
}
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: .25s;
}
.header-cta {
  gap: 16px;
  padding: 13px 19px;
  background: var(--ink);
  color: white;
  font-size: 12px;
}
.header-cta:hover {
  background: #2d3a34;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
}
.section {
  position: relative;
  padding: 130px 7vw;
}
.hero {
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  background: var(--ink) url("../images/hero.jpg") center center/cover no-repeat;
  color: white;
  padding-top: 160px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,rgba(12,13,11,.765) 0%,rgba(12,13,11,.612) 42%,rgba(12,13,11,.204) 72%,rgba(12,13,11,.119) 100%),linear-gradient(0deg,rgba(12,13,11,.408),transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: #987941;
  margin: 0 0 25px;
}
.hero .eyebrow {
  color: #d4bd90;
}
.hero h1, .section h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(56px,8vw,112px);
}
.hero h1 em {
  color: #cdb586;
}
.lead {
  font-size: clamp(18px,2vw,24px);
  max-width: 680px;
  color: rgba(255,255,255,.82);
  margin: 35px 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  padding: 15px 25px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #18201d;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #d5b87d;
}
.btn-ghost {
  border-color: rgba(255,255,255,.45);
  color: white;
  background: rgba(12,13,11,.2);
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  margin-top: 85px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.22);
  max-width: 800px;
}
.hero-meta strong, .hero-meta span {
  display: block;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 25px;
}
.hero-meta span {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.hero-art {
  display: none;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 7vw;
  bottom: 40px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.scroll-cue span {
  margin-left: 10px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: 70px;
}
.section-heading .eyebrow {
  grid-column: 1;
}
.section-heading h2 {
  grid-column: 2;
  font-size: clamp(48px,6.2vw,86px);
}
.section-heading>p:last-child {
  grid-column: 2;
  max-width: 650px;
  font-size: 18px;
  color: rgba(255,255,255,.6);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.profile-card {
  padding: 22px;
  background: #fff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  box-shadow: 0 16px 50px rgba(23,33,29,.06);
}
.portrait {
  min-height: 260px;
  display: grid;
  place-items: end start;
  padding: 20px;
  border-radius: 16px;
  color: white;
  font-family: var(--serif);
  font-size: 44px;
  background: linear-gradient(145deg,#34453d,#a28e69);
}
.portrait-p {
  background: linear-gradient(145deg,#6c766e,#24322c);
}
.role {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 600;
  color: #92713b;
}
.profile-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin: 10px 0 20px;
}
.profile-card p:last-child {
  color: #59615d;
  font-size: 14px;
}
.insurance {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.insurance p {
  margin: 0;
}
.insurance-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}
.services {
  background: var(--ink);
  color: white;
}
.light h2 {
  color: white;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}
.service-card {
  background: var(--ink);
  padding: 0;
  transition-delay: 0s;
}
.service-card:nth-child(2) {
  transition-delay: .07s;
}
.service-card:nth-child(3) {
  transition-delay: .14s;
}
.service-card:nth-child(4) {
  transition-delay: .21s;
}
.service-card:nth-child(5) {
  transition-delay: .28s;
}
.service-card:nth-child(6) {
  transition-delay: .35s;
}
.service-card summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 45px 1fr 35px;
  align-items: center;
  padding: 32px;
  transition: background .3s ease;
}
.service-card summary:hover {
  background: rgba(255,255,255,.035);
}
.service-card summary::-webkit-details-marker {
  display: none;
}
.service-card summary span {
  font-size: 12px;
  color: #a88b58;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0;
}
.service-card summary b {
  font-size: 28px;
  font-weight: 300;
  transition: transform .35s ease;
}
.service-card[open] summary b {
  transform: rotate(45deg);
}
.service-card>div {
  padding: 0 32px 30px 77px;
  color: rgba(255,255,255,.64);
  overflow: hidden;
  will-change: height,opacity;
}
.service-card>div p {
  margin: 0;
}
.links {
  background: #e7e2d8;
}
.link-list {
  border-top: 1px solid var(--line);
}
.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(22px,3vw,40px);
  transition: .25s;
}
.link-list a:hover {
  padding-left: 20px;
  color: #876a38;
}
.link-list b {
  font-family: var(--sans);
  font-size: 22px;
}
.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  background: #fff;
}
.contact h2 {
  font-size: clamp(50px,6.5vw,90px);
}
.contact .lead {
  color: #68706c;
}
.contact address {
  font-style: normal;
  margin: 30px 0;
  font-size: 17px;
}
.contact-cards {
  display: grid;
  align-content: center;
  gap: 18px;
}
.contact-card {
  padding: 35px;
  border-radius: 22px;
  background: var(--paper);
}
.contact-card a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px,2.5vw,32px);
  line-height: 1.35;
  margin-top: 8px;
}
.contact-card a:hover {
  color: #92713b;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 5vw;
  background: var(--ink);
  color: white;
}
footer p {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
footer>a:last-child {
  font-size: 13px;
}
.footer-brand {
  width: 105px;
  padding: 6px;
  background: #f4f1ea;
}
.footer-brand .brand-logo {
  width: 100%;
  height: auto;
}
.site-header>.brand {
  position: relative;
}
.site-header .brand-logo {
  position: absolute;
  inset: 0;
  transition: opacity .3s ease,transform .35s ease;
}
.site-header .brand-logo-full {
  opacity: 1;
  transform: scale(1);
}
.site-header .brand-logo-compact {
  opacity: 0;
  transform: scale(.88);
}
.site-header.scrolled .brand-logo-full {
  opacity: 0;
  transform: scale(.88);
}
.site-header.scrolled .brand-logo-compact {
  opacity: 1;
  transform: scale(1);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease,transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media(max-width:900px) {
  .site-header {
    top: 10px;
    left: 24px;
    right: 24px;
  }
  .site-header>.brand {
    width: 76.8px;
    height: 75.2px;
    padding: 0;
    border-radius: 0;
  }
  .site-header.scrolled>.brand {
    width: 38.4px;
    height: 37.6px;
  }
  .header-menu {
    min-height: 58px;
    padding: 5px;
    border-radius: 999px;
  }
  .site-header nav {
    position: absolute;
    z-index: 5;
    top: 104px;
    left: auto;
    right: 0px;
    width: calc(100vw - 48px);
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px;
    border: 1px solid rgba(23,33,29,.18);
    border-radius: 16px;
    background: #f4f1ea;
    color: #17211d;
    box-shadow: 0 22px 60px rgba(8,14,11,.28);
    transition: opacity .2s,transform .2s,visibility .2s;
  }
  .site-header nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .site-header nav a {
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 58px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(23,33,29,.14);
    border-radius: 0;
    color: #17211d;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    background: transparent;
  }
  .site-header nav a:last-child {
    border-bottom: 0;
  }
  .site-header nav a:hover, .site-header nav a.active {
    padding-left: 16px;
    color: #6f5427;
    background: #e9dfcc;
    border-radius: 0;
  }
  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
  }
  .menu-toggle span {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: transform .25s,top .25s;
  }
  .menu-toggle span:first-child {
    top: 20px;
  }
  .menu-toggle span:last-child {
    top: 27px;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 24px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 24px;
    transform: rotate(-45deg);
  }
  .header-cta {
    display: none;
  }
  .section {
    padding: 100px 24px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 50px;
  }
  .about-grid, .service-grid, .contact {
    grid-template-columns: 1fr;
  }
  .profile-card {
    grid-template-columns: 1fr;
  }
  .portrait {
    min-height: 220px;
  }
  .hero-meta {
    gap: 25px;
    flex-wrap: wrap;
  }
  .contact {
    gap: 60px;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
}
@media(max-width:560px) {
  .site-header>.brand {
    width: 70.4px;
    height: 68.8px;
  }
  .site-header.scrolled>.brand {
    width: 35.2px;
    height: 34.4px;
  }
  .site-header nav {
    top: 96px;
  }
  .hero {
    background-position: 62% center;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-meta {
    margin-top: 60px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card summary {
    padding: 25px 18px;
  }
  .service-card>div {
    padding-right: 18px;
    padding-left: 63px;
  }
  .service-card[open]>div {
    padding-bottom: 25px;
  }
  .profile-card {
    padding: 15px;
  }
  .contact-card {
    padding: 25px;
  }
  .contact-card a {
    font-size: 21px;
  }
}
.site-header>.brand {
  width: 114.4px;
  height: 111.76px;
  border-radius: 5px;
}
.site-header.scrolled>.brand {
  width: 57.2px;
  height: 55.88px;
}
.header-menu, .footer-brand {
  border-radius: 5px;
}
@media(max-width:900px) {
  .site-header>.brand {
    width: 84.48px;
    height: 82.72px;
    border-radius: 5px;
  }
  .site-header.scrolled>.brand {
    width: 42.24px;
    height: 41.36px;
  }
  .site-header nav {
    position: fixed;
    top: 104px;
    left: 50%;
    right: auto;
    width: calc(100vw - 48px);
    border-radius: 5px;
    transform: translate(-50%, -8px);
  }
  .site-header nav.open {
    transform: translate(-50%, 0);
  }
  .header-menu {
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }
  .menu-toggle {
    border: 3px solid #fff;
  }
  .menu-toggle span {
    left: 11px;
  }
  .menu-toggle span:first-child {
    top: 17px;
  }
  .menu-toggle span:last-child {
    top: 24px;
  }
  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
  }
}
@media(max-width:560px) {
  .site-header>.brand {
    width: 77.44px;
    height: 75.68px;
  }
  .site-header.scrolled>.brand {
    width: 38.72px;
    height: 37.84px;
  }
  .site-header nav {
    top: 96px;
  }
}
.hero {
  background-image: url("../images/hero.jpg");
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
