:root {
  --ink: #142326;
  --muted: #5b6869;
  --pine: #163f35;
  --pine-2: #0d2c2f;
  --paper: #faf7f1;
  --cream: #efe3d1;
  --white: #ffffff;
  --gold: #e2ac43;
  --brick: #b94a35;
  --sky: #dbe9e6;
  --line: rgba(20, 35, 38, 0.14);
  --shadow: 0 18px 48px rgba(20, 35, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.top-strip {
  background: var(--pine-2);
  color: var(--white);
  font-size: 0.875rem;
}

.top-strip__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip__links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 245px;
}

.brand__mark {
  height: 48px;
  border: 1px solid rgba(20, 35, 38, 0.18);
  border-radius: 6px;
  object-fit: cover;
}

.brand__name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.brand__place {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.77rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav__link {
  border-radius: 6px;
  padding: 10px 11px;
  color: #263739;
  font-size: 0.91rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.is-active {
  background: var(--cream);
  color: var(--pine-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle__lines::before {
  top: -7px;
}

.menu-toggle__lines::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.btn--primary {
  background: var(--brick);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(185, 74, 53, 0.26);
}

.btn--primary:hover {
  background: #a43f2d;
}

.btn--secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn--secondary:hover {
  border-color: rgba(20, 35, 38, 0.34);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.section {
  padding: 86px 0;
}

.section--tight {
  padding: 58px 0;
}

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

.section--pine {
  background: var(--pine);
  color: var(--white);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section--pine .eyebrow,
.home-hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 4.35rem;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.section--pine .lede,
.home-hero .lede {
  color: rgba(255, 255, 255, 0.78);
}

.home-hero {
  position: relative;
  min-height: 665px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pine-2);
  color: var(--white);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 44, 47, 0.9) 0%, rgba(13, 44, 47, 0.72) 42%, rgba(13, 44, 47, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 44, 47, 0.2), rgba(13, 44, 47, 0.2));
  content: "";
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-proof__item {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.quick-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-band__item {
  min-height: 116px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.quick-band__item:last-child {
  border-right: 0;
}

.quick-band__label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-band__value {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.split--top {
  align-items: start;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sky);
  box-shadow: var(--shadow);
}

.media-frame img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-frame--short img {
  min-height: 320px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  border-top: 3px solid var(--gold);
  padding-top: 14px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(20, 35, 38, 0.08);
}

.card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__meta {
  margin-bottom: 8px;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
}

.rate-card {
  position: relative;
  padding: 30px;
}

.rate-card__price {
  margin: 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.rate-card__price span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 26px;
}

.clean-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature {
  min-height: 145px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.feature strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.feature span {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--pine-2);
  color: var(--white);
}

.page-hero__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 52px;
  padding: 70px 0;
}

.page-hero__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.policy-grid,
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.policy,
.nearby-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.nearby-item {
  min-height: 170px;
}

.nearby-item__type {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 6px;
  padding: 6px 9px;
  background: var(--cream);
  color: var(--pine-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item h3 {
  font-size: 1.08rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sky);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review {
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 22px;
}

.review p {
  color: inherit;
  font-size: 1.05rem;
}

.review cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.section--pine .review cite {
  color: rgba(255, 255, 255, 0.65);
}

.cta-band {
  background: var(--pine-2);
  color: var(--white);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
}

.contact-panel h3 {
  margin-bottom: 18px;
}

.contact-detail {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-detail:first-of-type {
  border-top: 0;
}

.contact-detail span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-panel {
  min-height: 470px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 35, 38, 0.78), rgba(22, 63, 53, 0.64)),
    url("img/dsc_0012.jpg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-panel__content {
  padding: 30px;
  background: linear-gradient(0deg, rgba(13, 44, 47, 0.92), rgba(13, 44, 47, 0));
}

.site-footer {
  background: #0f1e21;
  color: var(--white);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 72px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .brand {
  margin-bottom: 26px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.footer-group h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-group__links {
  display: grid;
  gap: 10px;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-address {
  margin-bottom: 4px;
}

.utility-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1166px) {
  .site-header__inner {
    min-height: 78px;
  }

  .nav {
    position: fixed;
    inset: 120px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav__link {
    padding: 13px 14px;
  }

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

  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 920px) {
  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__inner > span {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .quick-band__grid,
  .split,
  .card-grid,
  .card-grid--two,
  .feature-grid,
  .page-hero__inner,
  .policy-grid,
  .nearby-grid,
  .review-grid,
  .cta-band__inner,
  .contact-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .quick-band__item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-band__item:last-child {
    border-bottom: 0;
  }

  .page-hero__inner {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band__inner {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .top-strip__inner,
  .site-header__inner,
  .container,
  .narrow,
  .home-hero__content,
  .page-hero__inner,
  .site-footer__inner {
    width: min(100% - 28px, 1180px);
  }

  .top-strip__links {
    gap: 10px;
    font-size: 0.78rem;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand {
    grid-template-columns: 58px minmax(0, 1fr);
    min-width: 0;
  }

  .brand__mark {
    height: 40px;
  }

  .brand__name {
    font-size: 1.02rem;
  }

  .brand__place {
    font-size: 0.7rem;
  }

  .nav {
    inset: 112px 14px auto 14px;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero__content {
    padding: 66px 0;
  }

  .home-hero__content,
  .home-hero .lede,
  .home-hero__actions,
  .hero-proof {
    max-width: 340px;
  }

  .menu-toggle {
    flex: 0 0 auto;
    background: var(--pine-2);
    color: var(--white);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lede {
    font-size: 1.03rem;
  }

  .section {
    padding: 64px 0;
  }

  .section--tight {
    padding: 46px 0;
  }

  .home-hero__actions,
  .hero-proof {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    min-height: 300px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-panel,
  .card__body,
  .rate-card,
  .policy,
  .nearby-item,
  .faq-item {
    padding: 20px;
  }
}
