:root {
  --ink: #201518;
  --espresso: #3a2326;
  --plum: #4a2c3a;
  --clay: #9b6045;
  --rose: #c8968a;
  --cream: #fff8ef;
  --linen: #f3e6d8;
  --sage: #687766;
  --champagne: #dcc49a;
  --muted: #766166;
  --line: rgba(32, 21, 24, 0.14);
  --dark-line: rgba(255, 248, 239, 0.18);
  --shadow: 0 30px 90px rgba(32, 21, 24, 0.2);
  --radius: 8px;
  --max: 1180px;
  --header-height: 74px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid transparent;
  color: var(--cream);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-light {
  border-color: var(--line);
  background: rgba(255, 248, 239, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-seal {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 248, 239, 0.08);
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.site-header.is-scrolled .brand-seal,
.site-header.nav-light .brand-seal {
  background: var(--espresso);
  color: var(--cream);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.1;
}

.brand-mark small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(90deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(108px, 14vw, 172px) clamp(18px, 6vw, 76px) clamp(38px, 7vw, 76px);
  background: var(--espresso);
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.03);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 21, 24, 0.92) 0%, rgba(32, 21, 24, 0.72) 44%, rgba(32, 21, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(32, 21, 24, 0.56), rgba(32, 21, 24, 0.14));
  content: "";
}

.hero-inner,
.intro-inner,
.section-heading,
.services-grid,
.finder-shell,
.photo-section,
.visit-steps,
.contact-card,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(26px, 5vw, 68px);
  align-items: end;
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow,
.panel-label {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--champagne);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.05rem, 11vw, 9.2rem);
  line-height: 0.87;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.1;
  font-weight: 500;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 248, 239, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.panel-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.panel-cta:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.panel-cta:focus-visible,
.goal-tab:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.service-item:focus-visible {
  outline: 3px solid rgba(220, 196, 154, 0.82);
  outline-offset: 3px;
}

.button-primary,
.panel-cta {
  background: var(--clay);
  color: var(--cream);
}

.button-primary:hover,
.panel-cta:hover {
  background: #82452c;
}

.button-ghost {
  border-color: rgba(255, 248, 239, 0.46);
  background: rgba(255, 248, 239, 0.08);
  color: var(--cream);
}

.button-outline {
  border-color: rgba(255, 248, 239, 0.28);
  background: transparent;
  color: var(--cream);
}

.hero-photo-card {
  padding: 10px;
  border: 1px solid rgba(255, 248, 239, 0.25);
  background: rgba(255, 248, 239, 0.1);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 280ms ease;
}

.hero-photo-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% center;
}

.hero-photo-card dl {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  margin: 10px 0 0;
  background: rgba(255, 248, 239, 0.14);
}

.hero-photo-card div {
  padding: 14px;
  background: rgba(32, 21, 24, 0.45);
}

.hero-photo-card dt {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo-card dd {
  margin: 4px 0 0;
  color: rgba(255, 248, 239, 0.88);
}

.intro-section,
.services-section,
.finder-section,
.photo-section,
.visit-section,
.contact-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 56px);
}

.intro-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.38fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-kicker {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--clay);
  color: var(--sage);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy p,
.photo-copy p,
.visit-steps p,
.panel-content p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.services-section {
  background: var(--linen);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  min-height: 92px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--espresso);
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  font-weight: 800;
  text-decoration: none;
}

.service-item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.service-item span {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-item:hover,
.service-featured {
  color: var(--clay);
}

.finder-section {
  background: var(--cream);
}

.finder-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
}

.goal-tabs {
  display: grid;
  gap: 8px;
}

.goal-tab {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.74);
  color: var(--espresso);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  padding: 14px 16px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.goal-tab:hover,
.goal-tab.is-active {
  border-color: rgba(155, 96, 69, 0.42);
  background: var(--espresso);
  color: var(--cream);
}

.goal-panel {
  display: grid;
  min-height: 300px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(32, 21, 24, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 150, 138, 0.24), rgba(243, 230, 216, 0.9)),
    var(--cream);
  box-shadow: var(--shadow);
}

.panel-cta {
  width: fit-content;
}

.photo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--cream);
}

.photo-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(3deg);
}

.photo-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.photo-copy {
  max-width: 560px;
}

.visit-section {
  background: var(--linen);
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin-block: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.visit-steps li {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--cream);
}

.visit-steps span {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(58, 35, 38, 0.98), rgba(32, 21, 24, 0.99)),
    var(--espresso);
  color: var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.contact-card h2 {
  max-width: 820px;
}

.contact-card p {
  max-width: 650px;
  color: rgba(255, 248, 239, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 56px);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  font-weight: 850;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-bg img {
    object-position: 72% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(32, 21, 24, 0.93), rgba(32, 21, 24, 0.64)),
      linear-gradient(0deg, rgba(32, 21, 24, 0.7), rgba(32, 21, 24, 0.16));
  }

  .hero-inner,
  .intro-inner,
  .finder-shell,
  .photo-section,
  .visit-steps,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    transform: none;
  }

  .hero-photo-card:hover {
    transform: translateY(-3px);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .contact-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .button,
  .panel-cta {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .brand-mark small {
    display: none;
  }

  .brand-seal {
    width: 38px;
    height: 38px;
    font-size: 0.76rem;
  }

  .hero,
  .intro-section,
  .services-section,
  .finder-section,
  .photo-section,
  .visit-section,
  .contact-section {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(3.48rem, 18vw, 5.6rem);
  }

  .hero-photo-card img {
    aspect-ratio: 16 / 11;
  }

  .service-item {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 76px;
  }

  .visit-steps li {
    min-height: 0;
  }

  .visit-steps span {
    margin-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-photo-card,
  .photo-wrap,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
