:root {
  --bg: #f6f1e9;
  --black: #090909;
  --black-soft: #171717;
  --panel: #121212;
  --gold: #b8934f;
  --gold-soft: #e5c17d;
  --gold-bg: #e6c17d;
  --gold-card: #ddb66f;
  --cream: #f8f5ef;
  --text: #1a1a1a;
  --muted: #7f7a72;
  --light-line: rgba(255, 255, 255, 0.08);
  --dark-line: rgba(0, 0, 0, 0.08);
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 36px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  color: var(--text);
  background: var(--cream);
}

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

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

p,
li {
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 1.08;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 9, 9, 0.96);
  border-bottom: 1px solid var(--light-line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
}

.brand,
.footer__brand {
  display: inline-grid;
  gap: 5px;
  color: var(--gold-soft);
  text-align: center;
  text-transform: uppercase;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Marcellus", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.brand-text {
  font-family: "Marcellus", serif;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: white;
}

.nav a:not(.button) {
  font-size: 1.06rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #c49c55;
}

.button--nav {
  min-height: 46px;
}

.button--hero {
  min-width: 220px;
}

.button--card {
  width: fit-content;
  background: #a57d3d;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.84), rgba(255, 249, 239, 0.62) 40%, rgba(255, 249, 239, 0.32)),
    var(--slide-image) center/cover no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 850ms ease, transform 4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 70px 0 130px;
}

.hero__copy {
  max-width: 660px;
  text-align: center;
  margin-inline: auto;
}

.hero__copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 20px;
}

.hero__lead {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #3c372f;
  font-size: 1.12rem;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 120px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.is-active {
  background: white;
}

.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -82px;
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.9fr;
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 34px 38px;
}

.intro-card h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.intro-card p,
.intro-card li {
  margin: 0;
}

.intro-card--dark {
  background: #9a7a44;
  color: white;
}

.intro-card--mid {
  background: #b49a60;
  color: white;
}

.intro-card--gold {
  background: #e5c17d;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-card--gold a {
  margin-top: 16px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.section-heading--dark .eyebrow {
  color: rgba(0, 0, 0, 0.48);
}

.section-copy {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 760px;
  align-items: stretch;
}

.about__media {
  background: #ece4d8;
  display: grid;
  place-items: center;
  padding: 50px;
}

.about__media img {
  width: min(100%, 720px);
  aspect-ratio: 1.15 / 0.82;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about__content {
  background: var(--black);
  color: white;
  padding: 86px min(6vw, 72px);
}

.about__content h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 16px;
}

.about__content .section-copy {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 40px;
}

.feature-list {
  display: grid;
  gap: 32px;
}

.feature-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
}

.feature-item__check {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
  font-size: 1.6rem;
  color: white;
  position: relative;
}

.feature-item__check::after {
  content: "✓";
  transform: rotate(-45deg);
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.services {
  background: white;
}

.service-grid,
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card,
.procedure-card {
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-card {
  padding-bottom: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  margin-bottom: 18px;
}

.service-card h3,
.procedure-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.service-card p,
.procedure-card p {
  margin: 0 auto;
  width: min(86%, 360px);
  color: var(--muted);
}

.procedures {
  background: var(--gold-bg);
}

.procedure-card {
  padding: 28px 24px 34px;
  background: rgba(234, 199, 129, 0.45);
}

.procedure-card img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 50%;
}

.gallery {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.map-section {
  background: var(--black);
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 470px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(0.98);
}

.footer {
  background: #1f1f1f;
  color: #ddd3bf;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 64px 0 34px;
}

.footer__column h3 {
  margin-bottom: 14px;
  color: white;
  font-size: 2rem;
}

.footer__column p {
  margin: 0 0 8px;
  color: #d4c9b4;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a89c87;
}

@media (max-width: 1040px) {
  .intro-strip__grid,
  .about,
  .footer__top,
  .service-grid,
  .procedure-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__content,
  .about__media {
    min-height: auto;
  }

  .intro-card--gold {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid var(--light-line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__inner {
    min-height: 88px;
  }

  .hero,
  .hero__content {
    min-height: 600px;
  }

  .hero__content {
    padding-bottom: 150px;
  }

  .hero__dots {
    bottom: 130px;
  }
}

@media (max-width: 640px) {
  .intro-strip__grid,
  .service-grid,
  .procedure-grid,
  .gallery-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero__copy h1 {
    font-size: 2.7rem;
  }

  .section,
  .about__content {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-item__check {
    margin: 0 auto 8px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .gallery-grid img {
    height: 240px;
  }
}
