:root {
  --green: #012b28;
  --green-2: #0f1b16;
  --cream: #f7f2ea;
  --gold: #b09e80;
  --gold-light: #d7c3a3;
  --brown: #6b4f3a;
  --text: #1e140d;
  --muted: #6d5a4d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --title: 'Barlow Condensed', sans-serif;
  --body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(215, 195, 163, 0.12);
  background: rgba(1, 43, 40, 0.84);
  backdrop-filter: blur(18px);
  color: var(--cream);
  transition: padding .3s ease, background .3s ease;
}

.site-header.scrolled {
  padding-block: 14px;
  background: rgba(1, 43, 40, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(215, 195, 163, .45);
  color: var(--gold-light);
  font-family: var(--title);
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text span {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .35em;
}

.brand-text strong {
  margin-top: 5px;
  color: var(--cream);
  font-family: var(--title);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 15px;
  opacity: .78;
  transition: opacity .2s, color .2s;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.header-cta,
.mobile-cta {
  border-radius: 999px;
  background: var(--gold);
  padding: 13px 24px;
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: .25s;
}

.header-cta:hover,
.mobile-cta:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(215, 195, 163, .25);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, .62);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(86vw, 390px);
  height: 100vh;
  background: var(--green);
  color: var(--cream);
  transform: translateX(100%);
  transition: .35s cubic-bezier(.22, .61, .36, 1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(215, 195, 163, .12);
}

.menu-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 195, 163, .25);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu nav {
  padding: 24px;
  display: grid;
  gap: 4px;
}

.mobile-menu nav a {
  border-radius: 20px;
  padding: 17px 18px;
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(247, 242, 234, .82);
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
}

.mobile-cta {
  margin: auto 24px 24px;
  text-align: center;
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
  padding: 160px 24px 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(1, 43, 40, .55), rgba(1, 43, 40, .55)), radial-gradient(circle at center, transparent, rgba(0, 0, 0, .5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.eyebrow {
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .38em;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 700;
}

h1,
h2 {
  font-family: var(--title);
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .02em;
}

h1 {
  margin-top: 24px;
  font-size: clamp(4rem, 10vw, 8.5rem);
}

h2 {
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  color: var(--green);
}

h3 {
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-copy {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(247, 242, 234, .86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(247, 242, 234, .35);
  color: var(--cream);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--green);
  color: var(--cream);
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: min(900px, calc(100% - 32px));
}

.trust-strip span {
  border: 1px solid rgba(215, 195, 163, .25);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 12px 18px;
  color: rgba(247, 242, 234, .9);
  font-size: .9rem;
}

.section-padding {
  padding: clamp(84px, 10vw, 130px) clamp(20px, 5vw, 70px);
}

.split-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 8vw, 90px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.image-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 650px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition: transform .8s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.floating-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 22px;
}

.floating-label span {
  color: var(--gold-light);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .28em;
}

.floating-label strong {
  display: block;
  margin-top: 6px;
  font-family: var(--title);
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1;
}

.section-copy>p:not(.eyebrow),
.section-header p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
  margin-top: 26px;
  max-width: 680px;
}

.muted {
  color: #7a6a5e !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feature-card {
  border: 1px solid rgba(27, 43, 34, .08);
  background: rgba(255, 255, 255, .68);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
  transition: .25s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .1);
}

.feature-card span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--gold-light);
  font-size: 1.45rem;
}

.feature-card h3 {
  margin-top: 22px;
  color: var(--green);
  font-size: 1.4rem;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem;
}

.dark-section {
  position: relative;
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(215, 195, 163, .15), transparent 45%);
  pointer-events: none;
}

.dark-section>* {
  position: relative;
  z-index: 2;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.center p {
  margin-inline: auto;
}

.dark-section h2 {
  color: var(--cream);
}

.services .section-header,
.gallery-section .section-header,
.reviews .section-header,
.location .section-header {
  max-width: 900px;
  margin-inline: auto;
}

.service-list {
  max-width: 1180px;
  margin: 72px auto 0;
}

.service-row {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(215, 195, 163, .16);
  padding: 34px 0;
  transition: .25s;
}

.service-row:last-child {
  border-bottom: 1px solid rgba(215, 195, 163, .16);
}

.service-row:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, .035);
}

.service-row span {
  color: rgba(215, 195, 163, .6);
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .25em;
}

.service-row h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white);
}

.service-row p {
  margin-top: 6px;
  color: rgba(247, 242, 234, .62);
  line-height: 1.6;
}

.service-row strong {
  color: var(--gold-light);
  font-size: 2rem;
  transition: .25s;
}

.service-row:hover strong {
  transform: translateX(8px);
}

.gallery-grid {
  max-width: 1240px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.25fr .8fr;
  grid-auto-rows: 310px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(1, 43, 40, .78));
}

.gallery-card div {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 24px;
  color: var(--white);
}

.gallery-card span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold-light);
}

.gallery-card h3 {
  margin-top: 6px;
  font-size: 1.75rem;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

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

.review-grid {
  max-width: 1240px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(107, 79, 58, .1);
  border-radius: 36px;
  padding: 38px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .05);
  transition: .25s;
}

.review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .11);
}

.stars {
  color: var(--green);
  letter-spacing: .08em;
}

.review-card p {
  margin-top: 24px;
  color: #5f5147;
  line-height: 1.7;
  font-size: 1.05rem;
}

.review-card strong {
  display: block;
  margin-top: 26px;
  border-top: 1px solid rgba(30, 20, 13, .1);
  padding-top: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hour-row.today {
  background: #012B28;
  color: white;
}

.hour-row.today strong {
  color: white;
}

.today-label {
  margin-left: 8px;
  color: #d7c3a3;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact h2 {
  margin-top: 18px;
}

.contact-copy>p:not(.eyebrow) {
  color: rgba(247, 242, 234, .75);
  line-height: 1.75;
  font-size: 1.1rem;
  margin-top: 24px;
  max-width: 560px;
}

.contact-lines {
  margin-top: 46px;
  display: grid;
  gap: 18px;
}

.contact-lines a {
  border-left: 1px solid rgba(215, 195, 163, .45);
  padding-left: 22px;
  color: var(--cream);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 800;
  transition: .2s;
}

.contact-lines a:hover {
  color: var(--gold-light);
}

.contact-form {
  background: var(--cream);
  color: var(--text);
  border-radius: 40px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 26px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--green);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid rgba(30, 20, 13, .18);
  background: transparent;
  padding: 14px 0;
  outline: none;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--body);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.location-grid {
  max-width: 1180px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.location-card {
  background: var(--green);
  color: var(--cream);
  border-radius: 36px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.location-card h3,
.hours-card h3 {
  font-size: 2.1rem;
}

.location-card p {
  margin: 28px 0;
  color: rgba(247, 242, 234, .84);
  line-height: 1.75;
  font-size: 1.15rem;
}

.location-card strong {
  color: var(--gold-light);
}

.hours-card {
  background: var(--white);
  border: 1px solid rgba(107, 79, 58, .1);
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .05);
}

.hours-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--cream);
  border-radius: 18px;
  padding: 15px 18px;
  margin-top: 10px;
}

.hours-card span {
  font-family: var(--title);
  text-transform: uppercase;
  color: var(--brown);
  letter-spacing: .12em;
  font-weight: 700;
}

.hours-card strong {
  color: var(--text);
}

.footer {
  background: var(--green);
  color: rgba(247, 242, 234, .65);
  padding: 56px 20px;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 20px;
}

.footer .brand-mark {
  width: 64px;
  height: 64px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 1000px) {

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .split-section,
  .contact,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card img {
    min-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .gallery-card.large {
    grid-row: span 1;
  }

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

  .service-row {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .service-row span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: .9rem;
  }

  .brand-text span {
    font-size: 9px;
    letter-spacing: .25em;
  }

  .brand-text strong {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 42px;
  }

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

  .service-row {
    padding: 28px 0;
  }

  .contact-form,
  .location-card,
  .hours-card {
    border-radius: 28px;
    padding: 28px;
  }

  .hours-card div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}