:root {
  --bg-dark: #11211f;
  --bg-hero-overlay: rgba(9, 24, 24, 0.56);
  --gold: #d3a65a;
  --gold-soft: #f1d5a0;
  --ink: #1f1a17;
  --text-light: #f7f1e8;
  --muted: #70675e;
  --panel: #fffdf8;
  --line: #e6ddcf;
  --shadow: 0 18px 40px rgba(33, 22, 10, 0.12);
  --sage: #25413d;
  --sage-soft: #edf4ef;
  --peach: #f6ebe1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(211, 166, 90, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
  line-height: 1.5;
}

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

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero {
  position: relative;
  z-index: 1000;
  min-height: 760px;
  color: var(--text-light);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(211, 166, 90, 0.18), transparent 32%),
    radial-gradient(circle at 85% 22%, rgba(113, 156, 146, 0.14), transparent 28%),
    #071313;
}

.hero-parallax {
  position: absolute;
  inset: -90px 0 0;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6.4s ease;
}

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

.hero-slider-nav {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1.1rem, 4vw, 2rem);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-slider-dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 241, 201, 0.48);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.hero-slider-dot:hover {
  transform: scale(1.1);
  background: rgba(255, 244, 220, 0.58);
}

.hero-slider-dot.is-active {
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(216, 189, 99, 0.14);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.12), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(211, 166, 90, 0.06) 0,
      rgba(211, 166, 90, 0.06) 2px,
      transparent 2px,
      transparent 72px
    );
  mix-blend-mode: screen;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(211, 166, 90, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(10, 34, 34, 0.22), rgba(6, 12, 12, 0.76));
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-hero-overlay);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  padding: 0.9rem 1.2rem;
  margin-top: 0;
  width: min(1200px, calc(100% - 2.5rem));
  background: rgba(7, 12, 12, 0.92);
  border: 1px solid rgba(241, 213, 160, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.brand {
  color: var(--gold-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 116px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  line-height: 1.05;
  letter-spacing: 0.18em;
  font-size: 0.98rem;
  font-weight: 600;
  color: #e0c465;
}

.brand-text small {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.22rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fdf4e4;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: flex;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.6rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  color: #f1d5a0;
  border-color: rgba(241, 213, 160, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(241, 213, 160, 0.16);
}

.btn-solid {
  color: #172523;
  background: linear-gradient(135deg, #f0d8a6 0%, #d3a65a 100%);
  box-shadow: 0 14px 24px rgba(211, 166, 90, 0.24);
}

.hero-content {
  width: min(1120px, 100%);
  margin-top: 8.2rem;
  padding-bottom: 7rem;
  max-width: 700px;
  padding: 0;
  will-change: transform, opacity;
}

.hero-badge {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: #17302e;
  background: linear-gradient(135deg, #f2ddaf 0%, #d3a65a 100%);
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -25%;
  width: 45%;
  height: 320%;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.46), transparent 70%);
  transform: rotate(22deg) translateX(-200%);
  animation: heroBadgeShine 5.8s ease-in-out infinite;
}

.hero-title {
  min-height: 4.44em;
  max-width: 13ch;
  line-height: 1;
  text-wrap: auto;
}

.typed-text {
  display: block;
  white-space: pre-line;
}

.typing-cursor {
  display: none;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.1em;
  border-radius: 2px;
  background: #e8d39d;
  vertical-align: -0.08em;
  animation: blinkCursor 850ms step-end infinite;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  color: #f6eacb;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.36rem;
  letter-spacing: 0.05em;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.88;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero-scroll-cue:hover {
  transform: translateX(-50%) translateY(-2px);
  opacity: 1;
}

.scroll-mouse {
  width: 1.45rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(247, 229, 183, 0.86);
  position: relative;
}

.scroll-mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.36rem;
  width: 0.24rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #f7e5b7;
  transform: translateX(-50%);
  animation: scrollNudge 1.6s ease-in-out infinite;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.8rem, 5.3vw, 6.1rem);
  max-width: 16ch;
  text-wrap: balance;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero-sub {
  margin: 1.25rem 0 2.1rem;
  color: rgba(247, 241, 232, 0.92);
  font-size: 1.06rem;
  max-width: 48ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
}

.section {
  background: var(--panel);
  padding: clamp(4rem, 6vw, 6.4rem) 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
  color: #1b2724;
  margin-bottom: 2.4rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(211, 166, 90, 0.2), #d3a65a, rgba(37, 65, 61, 0.36));
}

.section-title-left {
  text-align: left;
}

.section-title-left::after {
  margin-inline: 0;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: #9a7a41;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reviews {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eee1d0;
  background:
    radial-gradient(circle at 12% 14%, rgba(211, 166, 90, 0.1), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(37, 65, 61, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #f4ede2 100%);
}

.reviews::before,
.reviews::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.reviews::before {
  inset: 2rem auto auto 4%;
  width: 10rem;
  height: 10rem;
  border-radius: 2rem;
  background: radial-gradient(circle, rgba(241, 213, 160, 0.12), transparent 70%);
}

.reviews::after {
  inset: auto 6% 2rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 65, 61, 0.1), transparent 68%);
}

.reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.review-summary {
  position: relative;
  text-align: left;
  padding: 1.7rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(26, 48, 45, 0.96), rgba(17, 33, 31, 0.96)),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.14), transparent 30%);
  border: 1px solid rgba(241, 213, 160, 0.2);
  border-radius: 32px;
  box-shadow:
    0 26px 40px rgba(12, 18, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.review-summary::before {
  content: "Google Rated";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2dcc0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-title {
  margin: 0;
  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff7e9;
}

.summary-stars {
  margin: 0.45rem 0 0.7rem;
  color: #f3b81e;
  letter-spacing: 0.12em;
  font-size: 2.15rem;
}

.summary-meta {
  margin: 0.1rem 0 1.2rem;
  color: rgba(247, 241, 232, 0.82);
  font-size: 0.98rem;
}

.summary-google {
  margin: 0.35rem 0 0;
}

.summary-google img {
  width: 156px;
  height: auto;
  margin-inline: 0;
  filter: brightness(1.03);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0.3rem 0 0.6rem;
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 1;
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(244, 237, 226, 1), rgba(244, 237, 226, 0));
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(244, 237, 226, 1), rgba(244, 237, 226, 0));
}

.reviews-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: scrollReviews 30s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.g-review-card {
  width: 320px;
  position: relative;
  border: 1px solid rgba(230, 221, 207, 0.95);
  border-radius: 30px 30px 16px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 233, 0.92)),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.12), transparent 30%);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.15rem 1.1rem;
  box-shadow:
    0 18px 32px rgba(35, 23, 11, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 240ms ease;
}

.g-review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(211, 166, 90, 0.18);
  pointer-events: none;
}

.g-review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(211, 166, 90, 0.38);
  box-shadow:
    0 26px 38px rgba(35, 23, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.g-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.35rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25413d 0%, #d3a65a 100%);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.g-head h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.g-head p {
  margin: 0.05rem 0 0;
  color: #77716a;
  font-size: 0.82rem;
}

.g-badge {
  color: #4285f4;
  font-weight: 800;
  font-size: 1.5rem;
}

.stars {
  margin: 0.55rem 0 0.45rem;
  color: #f3b81e;
  letter-spacing: 0.1em;
}

.g-body {
  margin: 0;
  font-size: 0.92rem;
  color: #2d2b28;
  line-height: 1.6;
  min-height: 7.6em;
}

.g-review-card a {
  display: inline-block;
  margin-top: 0.75rem;
  color: #21403c;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.services {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eee1d0;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 65, 61, 0.09), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(211, 166, 90, 0.11), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f3ebe0 100%);
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services::before {
  top: 3rem;
  left: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 2.5rem;
  background: radial-gradient(circle, rgba(241, 213, 160, 0.12), transparent 72%);
}

.services::after {
  right: -4rem;
  bottom: 4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 65, 61, 0.08), transparent 68%);
}

.services .container {
  position: relative;
  z-index: 1;
}

.about-story {
  border-top: 1px solid #eee1d0;
  background:
    radial-gradient(circle at 14% 18%, rgba(211, 166, 90, 0.09), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f7f0e7 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.about-copy p:not(.section-kicker) {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4e463d;
  max-width: 58ch;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: auto auto -1.2rem -1.2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(37, 65, 61, 0.12), rgba(211, 166, 90, 0.22));
  z-index: 0;
}

.about-visual img {
  position: relative;
  z-index: 1;
  min-height: 460px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 24px 44px rgba(35, 22, 10, 0.16);
}

.philosophy-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eee1d0;
  background:
    radial-gradient(circle at 14% 18%, rgba(211, 166, 90, 0.08), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(37, 65, 61, 0.08), transparent 22%),
    linear-gradient(rgba(255, 249, 241, 0.9), rgba(255, 249, 241, 0.9)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=80")
      center center / cover no-repeat;
}

.philosophy-section::before,
.philosophy-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.philosophy-section::before {
  top: 2.5rem;
  left: -3rem;
  width: 11rem;
  height: 11rem;
  border-radius: 2.2rem;
  background: radial-gradient(circle, rgba(241, 213, 160, 0.12), transparent 72%);
}

.philosophy-section::after {
  right: -4rem;
  bottom: 2rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 65, 61, 0.1), transparent 70%);
}

.philosophy-panel {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  padding: 2.8rem 2.2rem;
  border-radius: 34px;
  border: 1px solid rgba(214, 197, 168, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 232, 0.9)),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.14), transparent 34%);
  box-shadow:
    0 24px 42px rgba(33, 24, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.philosophy-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
  margin-top: 1.35rem;
}

.philosophy-copy p {
  margin: 0;
  max-width: none;
  padding: 1.1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(214, 197, 168, 0.28);
  color: #645b51;
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.72;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.gallery-section {
  border-top: 1px solid #eee1d0;
  background:
    radial-gradient(circle at 88% 20%, rgba(37, 65, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f4ede3 100%);
}

.gallery-kicker {
  text-align: center;
}

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

.gallery-card {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(35, 22, 10, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(35, 22, 10, 0.18);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(10, 16, 16, 0.62) 100%);
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.gallery-card:hover::after {
  opacity: 0.96;
}

.gallery-card img {
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.gallery-card-hint {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff7ea;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card:hover .gallery-card-hint,
.gallery-card:focus-visible .gallery-card-hint {
  transform: translateY(0);
  opacity: 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 11, 11, 0.92);
  padding: 2rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  margin: 0;
  width: min(100%, 1100px);
}

.gallery-lightbox-image {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.gallery-lightbox-close {
  top: 1.3rem;
  right: 1.3rem;
  min-height: 2.8rem;
  padding: 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.6rem;
}

.gallery-lightbox-prev {
  left: 1.3rem;
}

.gallery-lightbox-next {
  right: 1.3rem;
}

.gallery-open .nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(225, 214, 198, 0.88);
  border-radius: 34px 18px 34px 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f5ede2 100%),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.12), transparent 30%);
  box-shadow:
    0 20px 36px rgba(38, 28, 13, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(37, 65, 61, 0.16), transparent 40%),
    radial-gradient(circle at 100% 0, rgba(211, 166, 90, 0.2), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 360ms ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-14px);
  border-color: rgba(37, 65, 61, 0.3);
  box-shadow:
    0 30px 46px rgba(33, 25, 14, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.service-card img {
  aspect-ratio: 14 / 11;
  object-fit: cover;
  transform: scale(1);
  transition: transform 780ms ease, filter 360ms ease;
}

.service-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.service-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.3rem 1.2rem 1.2rem;
}

.service-body h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 0.98;
  margin-bottom: 0.6rem;
  color: #1b2724;
}

.service-body p {
  margin: 0;
  color: #4c453d;
  font-size: 0.94rem;
  line-height: 1.68;
  flex: 1;
}

.card-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.btn-small {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.95rem;
  transition:
    transform 220ms ease,
    box-shadow 240ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.btn-small::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -32%;
  width: 54%;
  height: 320%;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42), transparent 65%);
  transform: rotate(22deg) translateX(-210%);
  transition: transform 620ms ease;
  pointer-events: none;
}

.btn-small:hover::after {
  transform: rotate(22deg) translateX(320%);
}

.btn-small:hover {
  transform: translateY(-2px);
}

.btn-small:active {
  transform: translateY(0);
}

.btn-dark {
  border: 1px solid #17302e;
  background: linear-gradient(180deg, #25413d 0%, #142725 100%);
  color: #fff;
  box-shadow: 0 8px 14px rgba(20, 39, 37, 0.24);
}

.btn-dark:hover {
  background: linear-gradient(180deg, #30524d 0%, #17302e 100%);
  box-shadow: 0 12px 20px rgba(20, 39, 37, 0.3);
}

.btn-outline-dark {
  border: 1px solid rgba(23, 48, 46, 0.18);
  color: #17302e;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(2px);
}

.btn-outline-dark:hover {
  border-color: #d3a65a;
  color: #17302e;
  background: linear-gradient(180deg, #f8e8cb 0%, #efd7a6 100%);
  box-shadow: 0 10px 18px rgba(108, 85, 27, 0.19);
}

.appointment-hub {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(241, 213, 160, 0.08), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(211, 166, 90, 0.14), transparent 24%),
    linear-gradient(135deg, #11211f 0%, #1a302d 48%, #132321 100%);
  border-top: 1px solid rgba(241, 213, 160, 0.14);
  border-bottom: 1px solid rgba(241, 213, 160, 0.14);
}

.appointment-hub::before,
.appointment-hub::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.appointment-hub::before {
  width: 24rem;
  height: 24rem;
  top: -8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(241, 213, 160, 0.12), transparent 66%);
}

.appointment-hub::after {
  width: 20rem;
  height: 20rem;
  right: -6rem;
  bottom: -5rem;
  background: radial-gradient(circle, rgba(37, 65, 61, 0.34), transparent 68%);
}

.appointment-hub .container {
  position: relative;
  z-index: 1;
}

.appointment-hub .section-title {
  color: #fff6ea;
}

.appointment-hub .section-title::after {
  background: linear-gradient(90deg, rgba(241, 213, 160, 0.1), #f1d5a0, rgba(241, 213, 160, 0.1));
}

.why-choose {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 65, 61, 0.1), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(211, 166, 90, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f2ebe2 100%);
  border-top: 1px solid #e6ddcf;
}

.why-choose::before,
.why-choose::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.why-choose::before {
  left: -4rem;
  top: 4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 2.5rem;
  background: radial-gradient(circle, rgba(241, 213, 160, 0.14), transparent 72%);
}

.why-choose::after {
  right: -5rem;
  bottom: 3rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 65, 61, 0.08), transparent 68%);
}

.why-choose .container {
  position: relative;
  z-index: 1;
}

.why-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 340px);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.7rem;
}

.why-lead {
  margin: 0.35rem 0 0;
  max-width: 50ch;
  color: #5d554b;
  font-size: 1.02rem;
  line-height: 1.72;
}

.why-highlight {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.45rem;
  align-content: center;
  min-height: 100%;
  padding: 1.45rem 1.35rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, #17302e 0%, #25413d 100%),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.16), transparent 34%);
  border: 1px solid rgba(241, 213, 160, 0.14);
  box-shadow: 0 22px 36px rgba(16, 22, 21, 0.18);
}

.why-highlight::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 213, 160, 0.16), transparent 70%);
}

.why-highlight-value {
  position: relative;
  z-index: 1;
  color: #fff8ec;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 5vw, 5rem);
  line-height: 0.9;
  font-weight: 700;
}

.why-highlight-label {
  position: relative;
  z-index: 1;
  color: rgba(247, 241, 232, 0.86);
  font-size: 0.98rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-card {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f0e7 100%),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.1), transparent 32%);
  border: 1px solid #ddd2c3;
  border-radius: 34px 20px 34px 20px;
  text-align: left;
  padding: 1.55rem 1.2rem 1.3rem;
  box-shadow:
    0 18px 30px rgba(28, 22, 14, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 260ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 189, 99, 0.2), transparent 48%),
    linear-gradient(140deg, rgba(37, 65, 61, 0.08), transparent 58%);
  opacity: 0;
  transition: opacity 300ms ease, transform 320ms ease;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-12px);
  border-color: rgba(184, 144, 45, 0.45);
  box-shadow:
    0 26px 38px rgba(27, 20, 12, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.why-card:hover::before {
  opacity: 1;
  transform: scale(1.03);
}

.why-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 0 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2f5550 0%, #d3a65a 100%);
  color: #fff;
  box-shadow:
    0 10px 16px rgba(117, 90, 30, 0.22),
    0 0 0 8px rgba(241, 213, 160, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.why-card:hover .why-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 20px rgba(117, 90, 30, 0.34);
}

.why-icon svg {
  width: 1.26rem;
  height: 1.26rem;
  fill: currentColor;
}

.why-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  margin-bottom: 0.5rem;
  line-height: 0.98;
  color: #17120d;
  transition: color 220ms ease;
}

.why-card:hover h3 {
  color: #2f2312;
}

.why-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4a433a;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 220ms ease;
}

.why-card:hover p {
  color: #3b342b;
}

.why-card-wide {
  grid-column: span 2;
}

.why-card-accent {
  background:
    linear-gradient(135deg, rgba(24, 48, 45, 0.98), rgba(37, 65, 61, 0.96)),
    radial-gradient(circle at top right, rgba(241, 213, 160, 0.12), transparent 34%);
  border-color: rgba(241, 213, 160, 0.14);
}

.why-card-accent h3,
.why-card-accent p {
  color: #fff5e8;
}

.why-card-accent p {
  color: rgba(247, 241, 232, 0.84);
}

.stats-strip {
  margin-top: 1.8rem;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 10%, rgba(241, 213, 160, 0.12), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(241, 213, 160, 0.12), transparent 24%),
    linear-gradient(135deg, #102624 0%, #17302e 45%, #25413d 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.2rem;
  box-shadow: 0 28px 40px rgba(14, 23, 22, 0.18);
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.stat-item {
  position: relative;
  text-align: left;
  color: #fff;
  padding: 1.25rem 1.15rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(241, 213, 160, 0.08);
  backdrop-filter: blur(6px);
}

.stat-item strong {
  display: block;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff8ec;
}

.stat-item span {
  display: block;
  font-size: 0.95rem;
  margin-top: 0.55rem;
  color: rgba(247, 241, 232, 0.82);
  line-height: 1.45;
}

.safety-box {
  margin-top: 1.55rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 236, 223, 0.96)),
    radial-gradient(circle at 10% 14%, rgba(37, 65, 61, 0.1), transparent 30%);
  border: 1px solid rgba(190, 177, 154, 0.34);
  border-radius: 40px;
  text-align: left;
  padding: 3.1rem 2rem 2.2rem;
  box-shadow:
    0 24px 42px rgba(39, 31, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 340ms ease, box-shadow 340ms ease, border-color 280ms ease;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.safety-copy {
  min-width: 0;
}

.safety-points {
  display: grid;
  gap: 0.95rem;
}

.safety-point {
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(190, 177, 154, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.safety-point strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #1d1813;
  font-size: 1rem;
}

.safety-point span {
  display: block;
  color: #5d544a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.safety-box::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -3.2rem;
  top: -6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 189, 99, 0.24), rgba(216, 189, 99, 0.02) 66%, transparent 72%);
  animation: safetyGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.safety-box::after {
  content: "CERTIFIED CARE";
  position: absolute;
  left: 2rem;
  top: 1.1rem;
  transform: none;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 154, 66, 0.45);
  background: linear-gradient(180deg, #e9f0ea 0%, #cddfd3 100%);
  color: #1c3935;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  box-shadow: 0 10px 20px rgba(98, 74, 21, 0.2);
}

.safety-box:hover {
  transform: translateY(-7px);
  border-color: rgba(184, 144, 45, 0.58);
  box-shadow:
    0 28px 52px rgba(35, 27, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.safety-box h3 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  margin-bottom: 0.95rem;
  color: #1a130d;
  text-wrap: balance;
  line-height: 1.02;
  max-width: 12ch;
}

.safety-box p {
  margin: 0;
  max-width: 70ch;
  color: #3f3730;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

@keyframes safetyGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }

  50% {
    transform: translate3d(-18px, 16px, 0) scale(1.12);
    opacity: 1;
  }
}

@keyframes hubIconFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -4px, 0);
  }
}

.appointment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.hub-icon {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #25413d 0%, #d3a65a 100%);
  color: #fff;
  margin-bottom: 1rem;
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.18),
    0 0 0 8px rgba(241, 213, 160, 0.06);
  transition: transform 320ms ease, box-shadow 320ms ease;
  animation: hubIconFloat 4.8s ease-in-out infinite;
}

.hub-icon svg {
  width: 1.34rem;
  height: 1.34rem;
  fill: currentColor;
}

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 233, 219, 0.96)),
    linear-gradient(135deg, rgba(241, 213, 160, 0.12), transparent 50%);
  border: 1px solid rgba(241, 213, 160, 0.22);
  border-radius: 32px;
  text-align: left;
  padding: 1.5rem 1.3rem 1.35rem;
  box-shadow:
    0 22px 34px rgba(5, 12, 12, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 340ms ease, box-shadow 340ms ease, border-color 260ms ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(211, 166, 90, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(37, 65, 61, 0.08), transparent 58%);
  opacity: 0.85;
  transition: opacity 300ms ease, transform 340ms ease;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto 1.3rem 0.9rem auto;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 65, 61, 0.08), transparent 70%);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-12px);
  border-color: rgba(241, 213, 160, 0.36);
  box-shadow:
    0 28px 44px rgba(5, 12, 12, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.contact-card:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.contact-card:hover .hub-icon {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 20px 28px rgba(116, 88, 27, 0.3),
    0 0 0 10px rgba(241, 213, 160, 0.08);
}

.contact-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 2.8vw, 2.9rem);
  margin-bottom: 0.26rem;
  color: #1b2724;
}

.contact-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  min-height: 2.8em;
  font-size: 1rem;
  color: #5a5148;
  line-height: 1.45;
}

.hub-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  min-height: 52px;
  border: 1px solid rgba(211, 166, 90, 0.78);
  border-radius: 999px;
  text-decoration: none;
  color: #18302d;
  background: linear-gradient(180deg, #f4e4c2 0%, #ddb66e 100%);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 20px rgba(108, 85, 27, 0.18);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.hub-btn::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -32%;
  width: 54%;
  height: 320%;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42), transparent 66%);
  transform: rotate(22deg) translateX(-220%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.hub-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(108, 85, 27, 0.27);
  filter: brightness(1.05);
}

.hub-btn:hover::after {
  transform: rotate(22deg) translateX(330%);
}

.hub-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(108, 85, 27, 0.2);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(245, 232, 205, 0.98) 0%, rgba(226, 196, 130, 0.98) 100%);
  border: 1px solid rgba(241, 213, 160, 0.42);
  border-radius: 34px 34px 20px 34px;
  text-align: left;
  padding: 1.7rem 1.35rem 1.35rem;
  box-shadow:
    0 22px 34px rgba(6, 12, 12, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 340ms ease, box-shadow 340ms ease, border-color 260ms ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 0, rgba(255, 255, 255, 0.5), transparent 42%),
    linear-gradient(145deg, rgba(37, 65, 61, 0.08), transparent 58%);
  opacity: 0.9;
  transition: opacity 260ms ease, transform 340ms ease;
  pointer-events: none;
}

.offer-card:hover {
  transform: translateY(-12px) rotate(-0.3deg);
  border-color: rgba(241, 213, 160, 0.62);
  box-shadow:
    0 30px 42px rgba(6, 12, 12, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.offer-card:hover::before {
  opacity: 0.92;
  transform: scale(1.03);
}

.offer-card:hover .hub-icon {
  transform: translateY(-5px) scale(1.08);
}

.js-motion .g-review-card,
.js-motion .service-card,
.js-motion .why-card,
.js-motion .contact-card,
.js-motion .offer-card {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease;
  will-change: transform, opacity;
}

.js-motion .g-review-card.is-revealed,
.js-motion .service-card.is-revealed,
.js-motion .why-card.is-revealed,
.js-motion .contact-card.is-revealed,
.js-motion .offer-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--reveal-delay, 0ms);
}

.offer-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.25rem, 3vw, 3.1rem);
  margin-bottom: 1rem;
  line-height: 0.98;
  color: #1d1814;
}

.offer-tag {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 1px solid rgba(138, 107, 39, 0.22);
  background: rgba(255, 248, 232, 0.42);
  backdrop-filter: blur(4px);
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2a220f;
}

.hub-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1.1rem;
  justify-content: center;
}

.hub-cta {
  position: relative;
  overflow: hidden;
  min-width: 240px;
  min-height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease, color 240ms ease;
}

.appointment-hub .hub-actions .hub-cta {
  min-width: 260px;
}

.hub-cta::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -28%;
  width: 48%;
  height: 320%;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.45), transparent 70%);
  transform: rotate(22deg) translateX(-240%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.hub-cta:hover {
  transform: translateY(-3px);
}

.hub-cta:hover::after {
  transform: rotate(22deg) translateX(350%);
}

.hub-cta-outline {
  border: 2px solid rgba(37, 65, 61, 0.7);
  color: #21403c;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 18px rgba(37, 65, 61, 0.1);
}

.hub-cta-outline:hover {
  color: #10211f;
  background: linear-gradient(180deg, #eef4ef 0%, #dceae1 100%);
  box-shadow: 0 16px 24px rgba(37, 65, 61, 0.18);
}

.hub-cta-solid {
  background: linear-gradient(180deg, #264540 0%, #17302e 100%);
  border: 2px solid #264540;
  color: #fff8ef;
  box-shadow: 0 12px 20px rgba(37, 65, 61, 0.24);
}

.hub-cta-solid:hover {
  background: linear-gradient(180deg, #315953 0%, #1b3834 100%);
  box-shadow: 0 18px 28px rgba(37, 65, 61, 0.28);
}

.footer {
  position: relative;
  background:
    linear-gradient(rgba(10, 25, 24, 0.82), rgba(10, 25, 24, 0.9)),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
  color: #ede4d7;
  padding: 4.2rem 0 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.2rem;
  align-items: stretch;
}

.contact-panel {
  padding: 0.3rem 0.2rem;
}

.contact-panel h2 {
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.contact-icon {
  width: 2rem;
  min-width: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
}

.contact-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: currentColor;
}

.contact-item h3 {
  color: var(--gold-soft);
  font-size: 2.1rem;
  margin-bottom: 0.2rem;
}

.contact-item p {
  margin: 0;
  font-size: 1.02rem;
  color: #f3ebe0;
  max-width: 44ch;
}

.contact-item a {
  color: #f3ebe0;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-soft);
}

.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-row a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2dcb2 0%, #d3a65a 100%);
  color: #10211f;
  text-decoration: none;
}

.social-row a svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.booking-panel {
  background: rgba(9, 20, 20, 0.9);
  border-radius: 2rem;
  padding: 1.65rem 2rem 2rem;
  border: 1px solid rgba(241, 213, 160, 0.14);
  backdrop-filter: blur(8px);
}

.booking-panel h2 {
  color: var(--gold-soft);
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  margin-bottom: 0.8rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(241, 213, 160, 0.18);
  background: rgba(249, 245, 238, 0.94);
  font-size: 1rem;
  color: #1e1e1e;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
}

.booking-btn {
  margin-top: 0.32rem;
  width: 220px;
  min-height: 64px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d8a6 0%, #d3a65a 100%);
  color: #17302e;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 14px 24px rgba(211, 166, 90, 0.22);
}

.booking-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

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

.animate-rise {
  animation: rise 800ms ease both;
}

.animate-fade {
  animation: fade 760ms ease both;
}

.delay-1 {
  animation-delay: 140ms;
}

.delay-2 {
  animation-delay: 260ms;
}

.delay-3 {
  animation-delay: 380ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes blinkCursor {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@keyframes scrollNudge {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  60% {
    transform: translate(-50%, 0.54rem);
    opacity: 0.52;
  }
}

@keyframes heroBadgeShine {
  0%,
  80% {
    transform: rotate(22deg) translateX(-220%);
  }

  100% {
    transform: rotate(22deg) translateX(380%);
  }
}

@media (max-width: 1080px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    top: 0.85rem;
    padding-inline: 1rem;
    row-gap: 0.6rem;
  }

  .nav-cta .btn {
    min-height: 42px;
    font-size: 0.9rem;
    padding-inline: 1.15rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.05rem;
    padding-top: 0.36rem;
  }

  .hero-content {
    margin-top: 8.8rem;
    max-width: 700px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    order: 2;
  }

  .about-visual {
    order: 1;
  }

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

  .philosophy-copy {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-summary {
    padding: 1.4rem 1.15rem;
  }

  .why-header {
    grid-template-columns: 1fr;
  }

  .why-card-wide {
    grid-column: span 1;
  }

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .booking-btn {
    width: 200px;
    min-height: 58px;
    font-size: 1.7rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 1.3rem));
  }

  .hero {
    min-height: 640px;
  }

  .hero-parallax {
    inset: -40px 0 0;
    transform: translate3d(0, 0, 0) scale(1.12);
  }

  .hero-slider-nav {
    right: 1rem;
    bottom: 1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-mark {
    width: 96px;
    height: 62px;
  }

  .nav {
    top: 0.65rem;
    width: calc(100% - 1.3rem);
    padding: 0.9rem 0.7rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-cta .btn {
    min-height: 40px;
    font-size: 0.86rem;
    flex: 1;
    min-width: 126px;
    padding-inline: 0.8rem;
  }

  .nav-links a {
    font-size: 0.74rem;
  }

  .hero-content {
    text-align: left;
    margin-top: 10.6rem;
    padding: 0 0 3.2rem;
  }

  h1 {
    max-width: 18ch;
  }

  .hero-title {
    min-height: auto;
  }

  .typing-cursor,
  .hero-scroll-cue {
    display: none;
  }

  .hero-slider-dot {
    width: 0.7rem;
    height: 0.7rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
    min-height: 48px;
  }

  .reviews-carousel {
    padding: 0.2rem 0;
  }

  .g-review-card {
    width: 284px;
  }

  .summary-google img {
    margin-inline: auto;
  }

  .review-summary {
    text-align: center;
  }

  .g-body {
    min-height: 0;
  }

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

  .service-card {
    border-radius: 28px 16px 28px 16px;
  }

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

  .service-body {
    padding: 1.15rem 1rem 1rem;
  }

  .service-body h3 {
    font-size: 1.9rem;
  }

  .service-body p {
    font-size: 0.92rem;
  }

  .card-actions {
    flex-wrap: wrap;
  }

  .card-actions .btn-small {
    flex: 1;
    min-width: 140px;
  }

  .section-title-left {
    text-align: center;
  }

  .section-title-left::after {
    margin-inline: auto;
  }

  .section-kicker {
    text-align: center;
  }

  .about-copy p:not(.section-kicker) {
    font-size: 0.98rem;
  }

  .about-visual img {
    min-height: 320px;
    border-radius: 24px;
  }

  .philosophy-panel {
    padding: 2.4rem 1rem;
    border-radius: 24px;
  }

  .philosophy-copy {
    margin-top: 1.2rem;
  }

  .philosophy-copy p {
    padding: 1rem;
    font-size: 0.98rem;
  }

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

  .gallery-card-hint {
    transform: none;
    opacity: 1;
    font-size: 0.76rem;
  }

  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox-nav {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.25rem;
  }

  .gallery-lightbox-prev {
    left: 0.75rem;
  }

  .gallery-lightbox-next {
    right: 0.75rem;
  }

  .gallery-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

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

  .contact-card,
  .offer-card {
    text-align: center;
    padding-inline: 1rem;
  }

  .contact-card p {
    min-height: 0;
  }

  .hub-icon {
    margin-inline: auto;
  }

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

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

  .why-copy,
  .why-highlight,
  .why-card {
    text-align: center;
  }

  .why-icon {
    margin-inline: auto;
  }

  .why-highlight {
    justify-items: center;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    border-radius: 16px;
    padding: 1.5rem 1rem;
  }

  .stat-item {
    text-align: center;
  }

  .contact-card h3,
  .offer-card h3,
  .why-card h3 {
    font-size: 2.3rem;
  }

  .offer-tag {
    padding: 0.85rem 0.8rem;
    font-size: 0.9rem;
  }

  .safety-box {
    border-radius: 18px;
    padding: 2.8rem 1rem 1.35rem;
    text-align: center;
  }

  .safety-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .safety-box::after {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.34rem 0.65rem;
    top: 0.45rem;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .safety-box h3,
  .safety-box p {
    max-width: none;
  }

  .hub-actions {
    flex-direction: column;
    align-items: center;
  }

  .hub-cta {
    width: min(100%, 340px);
    min-width: 0;
  }

  .footer {
    padding: 3rem 0;
  }

  .contact-panel h2 {
    font-size: 2.3rem;
  }

  .contact-item h3 {
    font-size: 1.9rem;
  }

  .booking-panel {
    border-radius: 1.15rem;
    padding: 1.2rem 1rem 1.4rem;
  }

  .booking-panel h2 {
    font-size: 2.1rem;
  }

  .booking-form input,
  .booking-form select {
    min-height: 50px;
    font-size: 0.95rem;
  }

  .booking-btn {
    width: 170px;
    min-height: 52px;
    font-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
