:root {
  --gold: #c9b07a;
  --gold-btn: #d4bc8b;
  --gold-deep: #b8955a;
  --ink: #2a2218;
  --cream: #f4efe6;
  --paper: #faf7f1;
  --brown: #3d3328;
  --brown-dark: #16110d;
  --overlay: rgba(18, 13, 10, 0.42);
  --header-h: 5.5rem;
  --page-max: 1280px;
  --page-inline: 1.2rem;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  background: var(--brown-dark);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--gold-btn);
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  max-width: var(--page-max);
  width: 100%;
  margin-inline: auto;
  padding: 0 var(--page-inline);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo-link img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  opacity: 0.82;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #1a1410;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.38) 0%, rgba(14, 10, 8, 0.28) 32%, rgba(16, 11, 8, 0.36) 58%, rgba(18, 12, 9, 0.86) 100%),
    linear-gradient(90deg, rgba(12, 8, 6, 0.55) 0%, rgba(12, 8, 6, 0.32) 42%, rgba(12, 8, 6, 0.12) 68%, transparent 88%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10.2rem var(--page-inline) 1.35rem;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
}

.hero-copy {
  max-width: min(38rem, 100%);
}

.hero h1.breadcrumb {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #cbb892;
}

.hero h1.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.hero h1.breadcrumb a:hover,
.hero h1.breadcrumb a:focus-visible {
  color: #e0d0a8;
}

.hero-lead {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7.6vw, 3.1rem);
  font-weight: 400;
  line-height: 1.26;
  overflow-wrap: break-word;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-rule {
  width: 3.4rem;
  height: 2px;
  margin: 1.15rem 0 0;
  background: var(--gold);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.35rem;
  padding-top: 2.5rem;
}

.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  text-align: center;
}

.pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: #f3ead9;
}

.pill svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.pill span {
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.35;
  font-weight: 400;
}

@media (max-width: 767px) {
  .hero-inner {
    padding: 8.8rem var(--page-inline) 1.2rem;
  }

  .hero h1.breadcrumb {
    font-size: 0.85rem;
  }

  .hero-lead {
    font-size: 1.85rem;
    line-height: 1.3;
  }

  .pills {
    gap: 0.2rem;
  }

  .pill svg {
    width: 28px;
    height: 28px;
  }

  .pill span {
    font-size: 0.48rem;
    letter-spacing: 0.05em;
  }

  .geo-facts > div {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.6rem;
  background: var(--gold-btn);
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cta:hover,
.cta:focus-visible {
  background: #ead4a4;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 244, 214, 0.45);
}

.cta:hover svg,
.cta:focus-visible svg {
  transform: translateX(4px);
}

.cta-hero {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.section {
  background: var(--paper);
  color: var(--ink);
  padding: 3.4rem 1.25rem;
}

.section-alt {
  background: #efe8db;
}

.wrap {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.45rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.section p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.local-note {
  padding: 1rem 1.1rem;
  background: rgba(201, 176, 122, 0.14);
  border-left: 3px solid var(--gold-deep);
  font-size: 0.98rem;
}

.geo-answer {
  font-size: 1.05rem;
}

.geo-facts {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(61, 51, 40, 0.08);
  border-radius: 14px;
}

.geo-facts > div {
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  gap: 0.6rem;
  align-items: baseline;
}

.geo-facts dt {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-facts dd {
  margin: 0;
  font-size: 0.98rem;
}

.geo-facts a {
  color: #6b5428;
}

.nearby {
  margin-top: 2.4rem;
}

.nearby h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.nearby ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.nearby a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(61, 51, 40, 0.1);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}

.nearby a:hover,
.nearby a:focus-visible {
  border-color: var(--gold-deep);
  color: #6b5428;
}

.services {
  display: grid;
  gap: 0.85rem;
  margin: 1.8rem 0 0;
}

.service {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  padding: 1rem 1rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(61, 51, 40, 0.08);
  border-radius: 14px;
}

.service h3,
.service strong {
  display: block;
  margin: 0 0 0.2rem;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
}

.service p {
  margin: 0;
  color: var(--brown);
  font-size: 0.95rem;
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 149, 90, 0.45);
  border-radius: 50%;
  color: var(--gold-deep);
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(61, 51, 40, 0.08);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.faq-item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item .answer {
  padding: 0 1.1rem 1.1rem;
  color: var(--brown);
}

.answer a {
  color: #6b5428;
}

.final-cta {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  padding: 3.4rem 1.25rem 3.6rem;
}

.final-cta h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 500;
}

.final-cta p {
  margin: 0 auto 1.5rem;
  max-width: 38rem;
}

.site-footer {
  background: #100c09;
  color: rgba(244, 239, 230, 0.72);
  padding: 1.4rem 1.25rem 1.8rem;
  text-align: center;
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer-social {
  margin-top: 0.55rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(201, 176, 122, 0.5);
  border-radius: 50%;
  color: var(--gold);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--gold);
  color: #100c09;
  text-decoration: none;
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

.site-footer p {
  margin: 0.25rem 0;
}

@media (min-width: 768px) {
  :root {
    --page-inline: 2.2rem;
  }

  .hero-inner {
    padding: 9.4rem var(--page-inline) 2rem;
  }

  .hero h1.breadcrumb {
    font-size: 1.05rem;
  }

  .hero-lead {
    font-size: 3.05rem;
    max-width: 15em;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .hero-photo {
    object-position: 62% 46%;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  .pills {
    width: min(720px, 100%);
    gap: 1.5rem;
  }

  .pill svg {
    width: 38px;
    height: 38px;
  }

  .pill span {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .cta-hero {
    width: auto;
    min-width: 22rem;
    padding-inline: 2.4rem;
  }

  .section {
    padding: 5rem 2rem;
  }

  .geo-facts {
    grid-template-columns: 1fr 1fr;
  }

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

  .final-cta {
    padding: 4.5rem 2rem;
  }
}

@media (min-width: 1100px) {
  .hero-lead {
    max-width: 15.4em;
    font-size: 3.35rem;
  }

  .hero-photo {
    object-position: 68% 42%;
  }
}
