:root {
  --bg-cream: #f5efe6;
  --bg-beige: #ecdfcf;
  --bg-latte: #d7c2aa;
  --bg-lavender: #ddd4ea;
  --ink-soft: #231d1a;
  --ink-muted: #594c42;
  --gold: #c5a26d;
  --gold-deep: #9f7844;
  --line-soft: rgba(72, 54, 38, 0.14);
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: rgba(255, 252, 248, 0.94);
  --shadow-soft: 0 24px 80px rgba(55, 38, 20, 0.15);
  --shadow-card: 0 20px 48px rgba(51, 36, 23, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
  --header-offset: 4.25rem;
  --ticker-height: 2.75rem;
  --marquee-offset: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at top left, rgba(221, 212, 234, 0.9), transparent 36%),
    radial-gradient(circle at top right, rgba(244, 227, 203, 0.86), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, #f4eadf 52%, #f6efe7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.page-aura {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.page-aura-left {
  left: -7rem;
  top: 8rem;
  background: rgba(221, 212, 234, 0.7);
}

.page-aura-right {
  right: -8rem;
  top: 28rem;
  background: rgba(219, 186, 131, 0.34);
}

.site-shell {
  width: min(calc(100% - clamp(2rem, 5vw, 4rem)), var(--max-width));
  margin: 0 auto;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(35, 29, 26, 0.92), rgba(71, 56, 43, 0.9), rgba(35, 29, 26, 0.92));
  backdrop-filter: blur(14px);
  height: var(--ticker-height);
}

.announcement-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  color: #f7eee3;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 100%;
  animation: marquee 38s linear infinite;
}

.announcement-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
}

.announcement-group span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.announcement-group span::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(229, 199, 155, 0.9);
  box-shadow: 0 0 0 6px rgba(229, 199, 155, 0.12);
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

.site-header {
  position: sticky;
  top: var(--ticker-height);
  z-index: 35;
  transition: transform 220ms ease;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    padding 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    margin-top 220ms ease;
}

.site-header.is-scrolled .header-shell {
  margin-top: 0.55rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 248, 241, 0.9);
  border-color: rgba(197, 162, 109, 0.22);
  box-shadow: 0 20px 48px rgba(49, 34, 19, 0.12);
}

.site-header.is-scrolled .brand-mark {
  width: 2.65rem;
  height: 2.65rem;
}

.site-header.is-scrolled .brand-copy strong {
  font-size: 1.22rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  padding: 0.35rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(232, 217, 193, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 30px rgba(70, 49, 31, 0.12);
  transition: width 220ms ease, height 220ms ease;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-copy strong,
.eyebrow,
.section-kicker,
.button,
.contact-label,
.announcement-track {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: font-size 220ms ease;
}

.brand-copy small {
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions,
.hero-actions,
.hero-badges,
.card-grid,
.gallery-grid,
.testimonial-grid,
.contact-grid {
  display: flex;
}

.desktop-nav {
  align-items: center;
  gap: clamp(0.8rem, 1.25vw, 1.2rem);
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(197, 162, 109, 0.86), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.hero-badges,
.card-grid,
.gallery-grid,
.testimonial-grid,
.contact-grid {
  gap: 1rem;
}

.header-actions {
  align-items: center;
  flex: 0 0 auto;
}

.header-actions .button {
  min-height: 2.9rem;
  padding-inline: 1.15rem;
  font-size: 0.88rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8f0;
  background: linear-gradient(135deg, #b9925c 0%, #8d673d 100%);
  box-shadow: 0 12px 28px rgba(140, 101, 56, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(140, 101, 56, 0.34), 0 0 26px rgba(217, 179, 121, 0.26);
}

.button-secondary {
  color: var(--ink-soft);
  background: rgba(255, 251, 245, 0.82);
  border-color: rgba(160, 123, 73, 0.2);
  box-shadow: 0 14px 28px rgba(84, 63, 42, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(159, 120, 68, 0.35);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 16px 32px rgba(84, 63, 42, 0.12);
}

.button-ghost {
  color: var(--ink-soft);
  background: transparent;
  border-color: rgba(84, 63, 42, 0.14);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.76);
  box-shadow: 0 12px 24px rgba(76, 55, 36, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-soft);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  padding: clamp(5rem, 7vw, 7rem) 0 clamp(5rem, 7vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 4rem 0 auto;
  height: 28rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(223, 212, 236, 0.7), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(241, 219, 184, 0.82), transparent 27%),
    linear-gradient(135deg, rgba(255, 251, 246, 0.62), rgba(249, 239, 226, 0.14));
  filter: blur(6px);
  pointer-events: none;
  transform: translateY(calc(var(--hero-shift, 0px) * 0.25));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(31rem, 0.96fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.hero-visual-card h2,
.info-card h3,
.feature-item strong,
.faq-item h3 {
  font-family: "Cormorant Garamond", "Georgia", serif;
}

.hero-copy h1 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(3.1rem, 5vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 40rem;
  margin: 0;
  color: #51463d;
  font-size: 1.08rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 123, 73, 0.54), rgba(160, 123, 73, 0.94));
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 2.15rem;
  gap: 0.85rem;
}

.hero-badges {
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-badges span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.64);
  color: var(--ink-muted);
  box-shadow: 0 10px 22px rgba(83, 62, 41, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 36rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  background: #d8c5ad;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(calc(var(--hero-shift, 0px) * -0.12));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 42%);
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-visual:hover .hero-photo {
  transform: scale(1.035);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(25, 20, 17, 0.04), rgba(25, 20, 17, 0.2)),
    linear-gradient(90deg, rgba(44, 32, 22, 0.12), transparent 58%);
  pointer-events: none;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card-primary {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  max-width: 18rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 249, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(16px);
}

.card-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(235, 219, 196, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-primary strong,
.card-primary small {
  display: block;
}

.card-primary strong {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.card-primary small {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.card-floating {
  position: absolute;
  width: 14.5rem;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(16px);
  background: rgba(255, 252, 248, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.card-floating strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.card-floating span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.card-left {
  left: 1.4rem;
  bottom: 1.4rem;
}

.card-right {
  right: 1.4rem;
  top: 4rem;
}

.moon-halo {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: radial-gradient(circle at 35% 35%, rgba(255, 251, 247, 0.8), rgba(225, 208, 183, 0.26));
  animation: softFloat 10s ease-in-out infinite;
}

.moon-halo-large {
  right: 2rem;
  bottom: 3rem;
  width: 9rem;
  height: 9rem;
}

.moon-halo-small {
  top: 2rem;
  left: 55%;
  width: 4rem;
  height: 4rem;
  animation-delay: -4s;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6.75rem) 0;
}

.section-soft {
  border-block: 1px solid rgba(112, 86, 60, 0.06);
  background:
    radial-gradient(circle at 80% 10%, rgba(221, 212, 234, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.48), rgba(235, 226, 213, 0.34));
}

.section-heading {
  max-width: 49rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.section-heading p,
.feature-item p,
.info-card p,
.testimonial-card p,
.faq-item p,
.contact-section p,
.contact-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

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

.info-card,
.testimonial-card,
.feature-item,
.faq-item,
.contact-card,
.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.info-card,
.testimonial-card,
.faq-item {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card,
.testimonial-card {
  min-height: 100%;
}

.service-index,
.experience-number {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-index::after,
.experience-number::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: rgba(159, 120, 68, 0.38);
}

.info-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.feature-item:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(60, 43, 24, 0.15);
  border-color: rgba(197, 162, 109, 0.28);
}

.info-card h3,
.faq-item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
}

.split-layout,
.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: center;
}

.feature-stack {
  display: grid;
  gap: 1.15rem;
}

.feature-item {
  padding: 1.55rem 1.7rem;
  border-radius: var(--radius-lg);
}

.feature-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

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

.gallery-card {
  position: relative;
  min-height: 15rem;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #d8c6b2;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(34, 27, 22, 0.35));
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.gallery-card figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff8f0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.3rem;
}

.gallery-tall {
  grid-row: span 2;
  min-height: 29rem;
}

.gallery-wide {
  grid-column: span 2;
}

.testimonial-card p {
  font-size: 1rem;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--gold-deep);
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 1.35rem 1.55rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(159, 120, 68, 0.24);
  border-radius: 999px;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--gold-deep);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > p {
  padding: 0 1.55rem 1.4rem;
}

.contact-section {
  padding-bottom: clamp(5rem, 8vw, 7.5rem);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 29rem);
  align-items: center;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.contact-card > div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(159, 120, 68, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.32);
}

.contact-card a,
.contact-card p {
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  padding: 3.5rem 0 1.5rem;
  color: #f5ece1;
  background:
    radial-gradient(circle at 16% 0%, rgba(176, 144, 102, 0.24), transparent 32%),
    linear-gradient(145deg, #2c2420, #1f1a17);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(15rem, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-copy small,
.footer-grid > p,
.footer-bottom {
  color: rgba(245, 236, 225, 0.68);
}

.footer-grid > p {
  margin: 0;
  max-width: 28rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #e2c18f;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-bottom > :last-child {
  justify-self: end;
}

.footer-credit {
  color: rgba(245, 236, 225, 0.78);
  white-space: nowrap;
}

.footer-credit a {
  margin-left: 0.25rem;
  color: #e2c18f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(226, 193, 143, 0.42);
  text-underline-offset: 0.22em;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff0d7;
  text-decoration-color: currentColor;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1.5rem;
  background: rgba(255, 248, 240, 0.86);
  box-shadow: 0 20px 34px rgba(52, 36, 22, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-cta .button {
  flex: 1;
  min-height: 3rem;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--marquee-offset)));
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

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

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 34;
    padding: calc(var(--ticker-height) + 5.5rem) 1rem 1rem;
    background: rgba(34, 27, 22, 0.24);
    backdrop-filter: blur(10px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .mobile-menu-panel {
    width: min(100%, 26rem);
    margin-left: auto;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    background: rgba(255, 250, 244, 0.94);
    box-shadow: var(--shadow-soft);
    max-height: calc(100svh - var(--ticker-height) - 6.5rem);
    overflow-y: auto;
  }

  .mobile-nav,
  .mobile-actions {
    display: grid;
    gap: 0.7rem;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 3.1rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    background: rgba(244, 235, 224, 0.72);
    font-weight: 600;
  }

  .mobile-actions {
    margin-top: 1rem;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .hero-photo {
    min-height: 30rem;
  }

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

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

  .card-grid > :last-child,
  .testimonial-grid > :last-child {
    grid-column: 1 / -1;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

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

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

  .footer-links {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

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

  .footer-credit {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 3.6rem;
    --ticker-height: 2.3rem;
    --marquee-offset: 0.775rem;
  }

  html {
    scroll-padding-top: 6.5rem;
  }

  body {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }

  .site-footer {
    margin-bottom: calc(-5.75rem - env(safe-area-inset-bottom));
    padding-bottom: calc(1.5rem + 5.75rem + env(safe-area-inset-bottom));
  }

  .site-shell {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .announcement-track {
    gap: 1.55rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    animation-duration: 44s;
  }

  .announcement-group {
    gap: 1.55rem;
  }

  .announcement-group span {
    gap: 1.55rem;
  }

  .site-header {
    top: var(--ticker-height);
  }

  .header-shell {
    margin-top: 0.45rem;
    padding: 0.65rem 0.75rem;
    border-radius: 1.35rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero-copy h1 {
    margin-top: 0.8rem;
    font-size: clamp(2.25rem, 10.2vw, 3rem);
    line-height: 1.01;
  }

  .hero-copy p,
  .section-heading p {
    font-size: 1rem;
  }

  .hero {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 3rem;
    padding: 0 0.8rem;
    font-size: 0.84rem;
  }

  .hero-badges {
    display: none;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    min-height: 0;
    padding: 0.7rem;
    overflow: visible;
    background: rgba(255, 250, 244, 0.64);
  }

  .hero-photo {
    grid-column: 1 / -1;
    width: 100%;
    height: clamp(13rem, 62vw, 15rem);
    min-height: 0;
    border-radius: calc(var(--radius-xl) - 0.7rem);
    object-position: 62% center;
  }

  .hero-photo-overlay,
  .moon-halo {
    display: none;
  }

  .card-primary {
    position: static;
    grid-column: 1 / -1;
    max-width: none;
    padding: 1rem;
  }

  .card-floating {
    position: static;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0.9rem;
  }

  .card-floating strong {
    font-size: 0.9rem;
  }

  .card-floating span {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.8rem);
  }

  .section-heading p,
  .feature-item p,
  .info-card p,
  .testimonial-card p,
  .faq-item p,
  .contact-section p,
  .contact-card p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-grid > :last-child,
  .testimonial-grid > :last-child {
    grid-column: auto;
  }

  .info-card,
  .testimonial-card,
  .feature-item {
    padding: 1.4rem;
  }

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

  .gallery-tall,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 17rem;
  }

  .gallery-card {
    min-height: 17rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-bottom: 1rem;
  }

  .footer-bottom > :last-child,
  .footer-credit {
    grid-column: auto;
    justify-self: start;
  }

  .footer-credit {
    margin-top: 0.25rem;
    white-space: normal;
  }

  .mobile-cta {
    display: flex;
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    gap: 0.55rem;
    padding: 0.55rem;
    border-radius: 1.25rem;
  }

  .mobile-cta .button {
    min-height: 3.15rem;
    padding-inline: 0.65rem;
    font-size: 0.82rem;
  }

  .contact-section {
    padding-bottom: 4.5rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .faq-item summary {
    min-height: 4.75rem;
    padding: 1.15rem 1.25rem;
    font-size: 1.25rem;
  }

  .faq-item > p {
    padding: 0 1.25rem 1.25rem;
  }
}

/* Compact premium statistics cards */
.stats-section {
  padding-block: clamp(1rem, 2vw, 1.5rem) clamp(3.25rem, 5vw, 4.5rem);
}

.stats-section::before {
  height: 18rem;
  background: radial-gradient(circle, rgba(214, 146, 42, 0.12), rgba(214, 146, 42, 0.025) 45%, transparent 72%);
}

.stats-grid {
  align-items: stretch;
  gap: clamp(0.8rem, 1.35vw, 1.1rem);
}

.stat-card {
  display: grid;
  min-height: 0;
  padding: clamp(1.2rem, 1.8vw, 1.55rem);
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-content: center;
  column-gap: 0.85rem;
  border-color: rgba(235, 183, 91, 0.36);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(227, 163, 60, 0.13), transparent 31%),
    linear-gradient(145deg, rgba(36, 23, 15, 0.99), rgba(12, 8, 6, 0.99));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 226, 175, 0.045);
  opacity: 0;
  transform: translateY(20px);
  animation: none;
  transition: opacity 620ms ease, transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.stat-card::after {
  right: -3rem;
  bottom: -4.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.72;
}

.stat-icon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(236, 184, 92, 0.3);
  border-radius: 0.8rem;
  color: #e5ad51;
  background: linear-gradient(145deg, rgba(225, 158, 53, 0.13), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 228, 181, 0.08), 0 0 22px rgba(220, 145, 39, 0.08);
}

.stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.stat-card .stat-value {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0;
  color: #f2c36e;
  font-size: clamp(3.35rem, 5vw, 4.35rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-align: left;
  text-shadow: 0 0 28px rgba(224, 153, 45, 0.17);
}

.stat-card .stat-value-text {
  max-width: none;
  font-size: clamp(2.55rem, 3.5vw, 3.35rem);
  line-height: 0.9;
}

.stat-card .stat-label {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.9rem;
  color: #f0e0c9;
  font-size: 0.82rem;
  line-height: 1.3;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.stat-card p {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0.55rem 0 0;
  color: #948675;
  font-size: 0.78rem;
  line-height: 1.55;
}

.stats-section.is-visible .stat-card {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.stats-section.is-visible .stat-card:nth-child(1) { transition-delay: 0ms; }
.stats-section.is-visible .stat-card:nth-child(2) { transition-delay: 90ms; }
.stats-section.is-visible .stat-card:nth-child(3) { transition-delay: 180ms; }
.stats-section.is-visible .stat-card:nth-child(4) { transition-delay: 270ms; }

.stats-section.is-visible .stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 199, 116, 0.68);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.5), 0 0 38px rgba(218, 145, 45, 0.14);
  transition-delay: 0ms;
}

@media (max-width: 1100px) {
  .stat-card {
    min-height: 10.5rem;
  }
}

@media (max-width: 600px) {
  .stat-card {
    min-height: 9.75rem;
    padding: 1.25rem;
  }

  .stat-card .stat-value {
    font-size: 3.55rem;
  }

  .stat-card .stat-value-text {
    font-size: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stats-section.is-visible .stat-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Unified statistics card system */
#istatistikler .stats-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1rem;
}

#istatistikler .stat-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 11.5rem;
  height: 100%;
  padding: 1.4rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(4.7rem, auto) auto;
  align-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(235, 183, 91, 0.36);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(227, 163, 60, 0.13), transparent 31%),
    linear-gradient(145deg, rgba(36, 23, 15, 0.99), rgba(12, 8, 6, 0.99));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 226, 175, 0.045);
}

#istatistikler .stat-icon {
  position: absolute;
  z-index: 3;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(236, 184, 92, 0.3);
  border-radius: 0.8rem;
  color: #e5ad51;
  background: linear-gradient(145deg, rgba(225, 158, 53, 0.13), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 228, 181, 0.08), 0 0 22px rgba(220, 145, 39, 0.08);
}

#istatistikler .stat-icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

#istatistikler .stat-card .stat-value {
  display: flex;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding-right: 3.35rem;
  grid-column: 1;
  grid-row: 1;
  align-items: flex-end;
  align-self: stretch;
  color: #f2c36e;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 0 28px rgba(224, 153, 45, 0.17);
}

#istatistikler .stat-card p {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0;
  padding: 0;
  grid-column: 1;
  grid-row: 2;
  color: #a99a88;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

#istatistikler.stats-section.is-visible .stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 199, 116, 0.68);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.5), 0 0 38px rgba(218, 145, 45, 0.14);
}

@media (max-width: 1100px) {
  #istatistikler .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #istatistikler .stat-card .stat-value {
    font-size: 2.15rem;
  }
}

@media (max-width: 600px) {
  #istatistikler .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #istatistikler .stat-card {
    min-height: 10.75rem;
    padding: 1.25rem;
  }

  #istatistikler .stat-icon {
    top: 1.25rem;
    right: 1.25rem;
  }

  #istatistikler .stat-card .stat-value {
    padding-right: 3.25rem;
    font-size: 2.15rem;
  }
}

/* Final trust-card sizing overrides */
#istatistikler .stats-grid {
  grid-auto-rows: 1fr;
}

#istatistikler .stat-card {
  min-height: 11rem;
  padding: 1.35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 2.65rem auto auto;
  align-content: center;
}

#istatistikler .stat-icon {
  grid-column: 2;
  grid-row: 1;
}

#istatistikler .stat-card .stat-value {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.7rem;
  font-size: clamp(1.85rem, 2.45vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

#istatistikler .stat-card p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  #istatistikler .stat-card .stat-value {
    font-size: clamp(2rem, 4.4vw, 2.4rem);
  }
}

@media (max-width: 600px) {
  #istatistikler .stat-card {
    min-height: 10.75rem;
    padding: 1.25rem;
  }

  #istatistikler .stat-card .stat-value {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
  }
}

/* Trust-focused statistics cards */
.stats-grid {
  grid-auto-rows: 1fr;
}

.stat-card {
  min-height: 12rem;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 2.75rem auto auto;
  align-content: center;
  row-gap: 0;
}

.stat-icon {
  grid-column: 2;
  grid-row: 1;
}

.stat-card .stat-value {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  margin-top: 0.8rem;
  font-size: clamp(1.82rem, 2.55vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.stat-card p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 0.75rem;
  color: #aa9b89;
  font-size: 0.82rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .stat-card {
    min-height: 11.5rem;
  }

  .stat-card .stat-value {
    font-size: clamp(2rem, 4.5vw, 2.55rem);
  }
}

@media (max-width: 600px) {
  .stat-card {
    min-height: 10.75rem;
  }

  .stat-card .stat-value {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
}

@media (max-width: 390px) {
  .site-shell {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.6rem);
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .hero-actions .button {
    font-size: 0.8rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .card-floating {
    grid-column: 1;
  }

  .mobile-cta .button {
    font-size: 0.78rem;
  }
}

/* Premium stats panel */
.stats-section {
  isolation: isolate;
  padding-block: clamp(1rem, 2vw, 1.75rem) clamp(3.5rem, 6vw, 5.25rem);
}

.stats-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 42%;
  left: 50%;
  width: min(72rem, 92vw);
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 148, 47, 0.13), rgba(213, 148, 47, 0.035) 42%, transparent 72%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-grid {
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}

.stat-card {
  display: flex;
  min-width: 0;
  min-height: clamp(12rem, 16vw, 14rem);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  border: 1px solid rgba(232, 180, 90, 0.34);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 170, 70, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(38, 25, 17, 0.98), rgba(13, 9, 7, 0.99));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 224, 169, 0.025) inset;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -70%;
  width: 48%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 219, 153, 0.1), transparent);
  transform: rotate(18deg);
  animation: statLightSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.stat-card::after {
  right: -3.25rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  border-color: rgba(232, 180, 90, 0.2);
  box-shadow: 0 0 48px rgba(225, 164, 70, 0.11);
}

.stat-card:hover {
  transform: translateY(-9px);
  border-color: rgba(244, 196, 111, 0.66);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 42px rgba(218, 145, 45, 0.15);
}

.stat-card-index {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  right: 1.2rem;
  margin: 0;
  color: rgba(240, 193, 111, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.stat-card .stat-value {
  margin: 0;
  color: #f2c777;
  font-size: clamp(3rem, 4.2vw, 4.25rem);
  letter-spacing: -0.035em;
  text-shadow: 0 0 28px rgba(226, 163, 60, 0.16);
}

.stat-card .stat-value small {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card .stat-value-text {
  max-width: 13rem;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 0.95;
}

.stat-value-text em {
  color: rgba(242, 199, 119, 0.48);
  font-style: normal;
}

.stat-card .stat-label {
  margin-top: 0.85rem;
  color: #e2d5c4;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  letter-spacing: 0.11em;
}

.stats-section.is-visible .stat-card {
  animation: statFadeUp 720ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.stats-section.is-visible .stat-card:nth-child(2) { animation-delay: 90ms; }
.stats-section.is-visible .stat-card:nth-child(3) { animation-delay: 180ms; }
.stats-section.is-visible .stat-card:nth-child(4) { animation-delay: 270ms; }

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

@keyframes statLightSweep {
  0%, 38% { left: -70%; opacity: 0; }
  48% { opacity: 1; }
  64%, 100% { left: 135%; opacity: 0; }
}

@media (max-width: 1100px) {
  .stat-card {
    min-height: 12rem;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 10.75rem;
    padding: 1.35rem;
  }

  .stat-card .stat-value-text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stats-section.is-visible .stat-card {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium dark spa theme */
:root {
  --bg-cream: #0f0b08;
  --bg-beige: #17100c;
  --bg-latte: #211711;
  --bg-lavender: #1a1210;
  --ink-soft: #f7efe3;
  --ink-muted: #c9bba9;
  --gold: #e2ad56;
  --gold-deep: #c98b2e;
  --line-soft: rgba(226, 173, 86, 0.16);
  --surface: rgba(31, 22, 16, 0.9);
  --surface-strong: rgba(36, 25, 18, 0.96);
  --shadow-soft: 0 28px 90px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 20px 54px rgba(0, 0, 0, 0.34);
}

html {
  background: #0f0b08;
}

body {
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 14% 5%, rgba(157, 91, 28, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(224, 169, 79, 0.08), transparent 32rem),
    linear-gradient(180deg, #0f0b08 0%, #17100c 46%, #0f0b08 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page-aura {
  opacity: 0.3;
  filter: blur(42px);
}

.page-aura-left {
  background: rgba(186, 104, 30, 0.38);
}

.page-aura-right {
  background: rgba(223, 164, 72, 0.2);
}

.announcement-bar {
  border-bottom-color: rgba(229, 179, 91, 0.22);
  background: linear-gradient(90deg, #0b0806, #21150d 45%, #0b0806);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.announcement-track {
  color: #f2cf93;
  animation-duration: 48s;
}

.announcement-group span::after {
  background: #dfa64a;
  box-shadow: 0 0 0 5px rgba(223, 166, 74, 0.1), 0 0 18px rgba(223, 166, 74, 0.55);
}

.header-shell {
  border-color: rgba(235, 190, 111, 0.18);
  background: rgba(16, 11, 8, 0.84);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.site-header.is-scrolled .header-shell {
  background: rgba(15, 10, 7, 0.94);
  border-color: rgba(226, 173, 86, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.brand-mark,
.footer-brand .brand-mark {
  background: linear-gradient(145deg, rgba(224, 169, 79, 0.18), rgba(20, 13, 9, 0.92));
  border: 1px solid rgba(235, 190, 111, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 230, 188, 0.12), 0 14px 32px rgba(0, 0, 0, 0.3);
}

.brand-copy strong {
  color: #fff6e8;
}

.brand-copy small,
.desktop-nav a {
  color: #bcae9d;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #f3d39b;
}

.button {
  min-height: 3.2rem;
  font-weight: 700;
}

.button-primary {
  color: #1a1007;
  border-color: rgba(255, 224, 166, 0.24);
  background: linear-gradient(135deg, #f0c878 0%, #d99b38 48%, #b8721d 100%);
  box-shadow: 0 16px 36px rgba(197, 125, 30, 0.26), inset 0 1px 0 rgba(255, 246, 222, 0.45);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #f7d58e 0%, #e3aa4b 50%, #c17d22 100%);
  box-shadow: 0 20px 42px rgba(215, 144, 43, 0.36), 0 0 28px rgba(225, 169, 79, 0.18);
}

.button-secondary {
  color: #f5d6a1;
  border-color: rgba(226, 173, 86, 0.38);
  background: rgba(44, 29, 18, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 231, 191, 0.08), 0 14px 30px rgba(0, 0, 0, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  color: #fff2db;
  border-color: rgba(240, 196, 120, 0.62);
  background: rgba(74, 46, 24, 0.88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3), 0 0 24px rgba(224, 169, 79, 0.1);
}

.button-ghost {
  color: #e3d7c7;
  border-color: rgba(226, 173, 86, 0.2);
  background: rgba(15, 10, 7, 0.34);
}

.menu-toggle {
  border: 1px solid rgba(226, 173, 86, 0.25);
  background: rgba(37, 24, 15, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.menu-toggle span {
  background: #edc77f;
}

.hero {
  min-height: min(57rem, calc(100svh - var(--ticker-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  inset: 0;
  height: auto;
  background:
    radial-gradient(circle at 15% 34%, rgba(203, 126, 38, 0.18), transparent 28%),
    radial-gradient(circle at 86% 26%, rgba(240, 191, 107, 0.13), transparent 23%),
    linear-gradient(110deg, rgba(15, 11, 8, 0.42), transparent 60%);
  filter: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 12ch;
  color: #fff8ec;
  text-wrap: balance;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.48);
}

.hero-copy p {
  color: #cdbfac;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.eyebrow,
.section-kicker,
.service-index,
.experience-number,
.contact-label,
.text-link {
  color: #dda64f;
}

.eyebrow::before,
.section-kicker::before,
.service-index::after,
.experience-number::after {
  background: linear-gradient(90deg, transparent, #d89c3e);
}

.hero-badges span {
  color: #d8c7b2;
  border-color: rgba(229, 179, 91, 0.2);
  background: rgba(30, 20, 14, 0.72);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.hero-visual {
  border-color: rgba(237, 190, 107, 0.24);
  background: #1b120c;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 219, 157, 0.04) inset;
}

.hero-visual::before {
  background: linear-gradient(140deg, rgba(255, 215, 145, 0.15), transparent 36%);
}

.hero-photo {
  filter: brightness(0.62) saturate(0.88) sepia(0.16) contrast(1.08);
}

.hero-photo-overlay {
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.08), rgba(10, 7, 5, 0.62)),
    linear-gradient(90deg, rgba(35, 19, 9, 0.35), transparent 58%);
}

.card-primary,
.card-floating {
  color: #f8ead5;
  border-color: rgba(235, 188, 105, 0.22);
  background: rgba(20, 13, 9, 0.78);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
}

.card-label {
  color: #e5b35e;
  background: rgba(211, 142, 46, 0.15);
}

.card-primary small,
.card-floating span {
  color: #c8b7a2;
}

.moon-halo {
  border-color: rgba(239, 196, 119, 0.26);
  background: radial-gradient(circle at 35% 35%, rgba(250, 213, 147, 0.48), rgba(151, 84, 22, 0.08));
  box-shadow: 0 0 0 16px rgba(226, 159, 65, 0.035), 0 0 56px rgba(225, 158, 61, 0.18);
}

.section-soft {
  border-block-color: rgba(226, 173, 86, 0.09);
  background:
    radial-gradient(circle at 84% 10%, rgba(193, 116, 34, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(31, 21, 15, 0.74), rgba(17, 12, 9, 0.7));
}

.section-heading h2,
.info-card h3,
.faq-item h3,
.feature-item strong,
.testimonial-card strong {
  color: #f8eddd;
}

.section-heading p,
.feature-item p,
.info-card p,
.testimonial-card p,
.faq-item p,
.contact-section p,
.contact-card p {
  color: #bdae9c;
}

.info-card,
.testimonial-card,
.feature-item,
.faq-item,
.contact-card,
.gallery-card {
  border-color: rgba(226, 173, 86, 0.14);
  background: linear-gradient(145deg, rgba(36, 25, 18, 0.94), rgba(20, 14, 10, 0.96));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 225, 177, 0.035);
}

.info-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.feature-item:hover,
.gallery-card:hover {
  border-color: rgba(232, 181, 91, 0.4);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42), 0 0 30px rgba(198, 119, 31, 0.06);
}

.gallery-card {
  background: #1b120c;
}

.gallery-card img {
  filter: brightness(0.7) saturate(0.82) sepia(0.12);
}

.gallery-card::after {
  height: 68%;
  background: linear-gradient(180deg, transparent, rgba(9, 6, 4, 0.88));
}

.faq-item summary {
  color: #f3e5d1;
}

.faq-item summary span {
  border-color: rgba(226, 173, 86, 0.35);
  background: rgba(211, 140, 43, 0.08);
}

.contact-card {
  background: linear-gradient(145deg, rgba(42, 28, 18, 0.97), rgba(18, 12, 8, 0.98));
}

.contact-card > div {
  border-color: rgba(226, 173, 86, 0.13);
  background: rgba(255, 220, 164, 0.025);
}

.contact-card a {
  color: #f2ddba;
}

.site-footer {
  border-top: 1px solid rgba(226, 173, 86, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(176, 103, 31, 0.18), transparent 32%),
    linear-gradient(145deg, #120c08, #080604);
}

.mobile-cta {
  border: 1px solid rgba(226, 173, 86, 0.2);
  background: rgba(13, 9, 6, 0.9);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

@media (max-width: 1100px) {
  .mobile-menu {
    background: rgba(5, 3, 2, 0.72);
  }

  .mobile-menu-panel {
    border-color: rgba(226, 173, 86, 0.22);
    background: rgba(20, 13, 9, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
  }

  .mobile-nav a {
    color: #eadcca;
    background: rgba(62, 39, 21, 0.62);
    border: 1px solid rgba(226, 173, 86, 0.1);
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .announcement-track {
    animation-duration: 54s;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11.8vw, 3.45rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-visual {
    border-color: rgba(226, 173, 86, 0.2);
    background: rgba(27, 18, 12, 0.96);
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-actions .button {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: clamp(2.2rem, 11.5vw, 2.8rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .button:first-child {
    grid-column: 1;
  }
}

/* Extended homepage sections */
.section-heading-wide {
  max-width: 56rem;
}

.stats-section {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(4rem, 7vw, 6rem);
}

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

.stat-card,
.benefit-card,
.step-card,
.guide-card {
  border: 1px solid rgba(226, 173, 86, 0.15);
  background: linear-gradient(145deg, rgba(37, 25, 17, 0.96), rgba(17, 11, 8, 0.98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 225, 177, 0.04);
}

.stat-card {
  position: relative;
  min-height: 9.5rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -3rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(225, 164, 70, 0.16);
  border-radius: 999px;
  box-shadow: 0 0 35px rgba(225, 164, 70, 0.08);
}

.stat-card strong,
.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.stat-card strong {
  color: #efbd69;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat-card span {
  margin-top: 0.65rem;
  color: #c9b9a5;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-grid {
  gap: 1.4rem;
}

.services-grid > :last-child {
  grid-column: auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.service-media {
  position: relative;
  height: 13rem;
  overflow: hidden;
  background: #1a110b;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 5, 3, 0.04), rgba(8, 5, 3, 0.68));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.86) sepia(0.14);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.055);
  filter: brightness(0.78) saturate(0.92) sepia(0.1);
}

.service-media > span {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 1;
  color: rgba(245, 202, 125, 0.9);
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem;
}

.service-body h3 {
  min-height: 2.7em;
  margin-bottom: 0.65rem;
}

.service-body p {
  flex: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  margin-top: 1.25rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(226, 173, 86, 0.24);
  border-radius: 0.85rem;
  color: #eac27e;
  background: rgba(205, 128, 31, 0.07);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-cta span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.service-cta:hover,
.service-cta:focus-visible {
  color: #fff0d1;
  border-color: rgba(239, 190, 102, 0.52);
  background: rgba(205, 128, 31, 0.14);
}

.service-cta:hover span {
  transform: translate(2px, -2px);
}

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

.benefit-card,
.guide-card,
.step-card {
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.benefit-card > span {
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(232, 181, 91, 0.24);
  border-radius: 50%;
  color: #efbd69;
  background: rgba(216, 144, 44, 0.08);
  font-size: 1.35rem;
}

.benefit-card h3,
.step-card h3,
.guide-card h3 {
  margin: 0 0 0.7rem;
  color: #f8eddd;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.55rem;
}

.benefit-card p,
.step-card p,
.guide-card p {
  margin: 0;
  color: #bdae9c;
}

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

.step-card {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}

.step-card > span {
  display: block;
  margin-bottom: 2.5rem;
  color: #e5ad52;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.step-card::after {
  content: "";
  position: absolute;
  left: 2rem;
  top: 4.2rem;
  width: calc(100% - 4rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 173, 86, 0.5), transparent);
}

.guide-card > span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #dca54e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-section {
  background:
    radial-gradient(circle at 18% 45%, rgba(201, 121, 32, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(13, 9, 6, 0.4), rgba(30, 20, 14, 0.72));
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.visit-visual {
  position: relative;
  min-height: 31rem;
  border: 1px solid rgba(226, 173, 86, 0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 5, 3, 0.84));
}

.visit-visual img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.82) sepia(0.14);
}

.visit-visual span {
  position: absolute;
  left: 1.5rem;
  bottom: 1.3rem;
  z-index: 1;
  color: #f3d39b;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.visit-details > span {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(226, 173, 86, 0.14);
  border-radius: 0.9rem;
  color: #c7b7a3;
  background: rgba(255, 222, 169, 0.025);
}

.visit-details strong {
  color: #dfa950;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-details a {
  color: #f2ddba;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.12fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(231, 181, 92, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 10%, rgba(205, 126, 32, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(40, 27, 18, 0.98), rgba(14, 9, 6, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.booking-contact {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.8rem;
  color: #bdae9c;
}

.booking-contact span {
  max-width: 38rem;
}

.booking-contact a {
  color: #efc87f;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.booking-form label > span {
  color: #d9c6ad;
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(226, 173, 86, 0.18);
  border-radius: 0.9rem;
  outline: none;
  color: #f4e7d5;
  background: rgba(8, 5, 3, 0.58);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form textarea {
  min-height: 6.8rem;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #857667;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(236, 188, 102, 0.58);
  box-shadow: 0 0 0 3px rgba(211, 139, 41, 0.1);
}

.booking-form option {
  color: #f4e7d5;
  background: #17100c;
}

.form-wide {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  color: #8f8171;
  line-height: 1.5;
}

.footer-grid {
  align-items: start;
}

.footer-details {
  display: grid;
  gap: 0.45rem;
  color: rgba(245, 236, 225, 0.7);
}

.footer-details strong {
  color: #f4dfbc;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.25rem;
}

.footer-details address {
  max-width: 31rem;
  font-style: normal;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .stats-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid > :last-child,
  .guide-grid > :last-child {
    grid-column: 1 / -1;
  }

  .visit-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .visit-visual {
    min-height: 26rem;
  }

  .visit-visual img {
    min-height: 26rem;
  }
}

@media (max-width: 760px) {
  .stats-section {
    padding-bottom: 4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .stat-card {
    min-height: 8rem;
    padding: 1.15rem;
  }

  .stat-card strong {
    font-size: 2.45rem;
  }

  .stat-card span {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .service-media {
    height: 12rem;
  }

  .service-body h3 {
    min-height: 0;
  }

  .benefit-grid,
  .guide-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid > :last-child,
  .guide-grid > :last-child {
    grid-column: auto;
  }

  .step-card {
    min-height: 0;
  }

  .visit-visual,
  .visit-visual img {
    min-height: 20rem;
  }

  .visit-actions {
    display: grid;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    width: min(calc(100% - 1.5rem), var(--max-width));
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: 1;
  }
}

@media (max-width: 390px) {
  .stat-card {
    padding: 1rem;
  }

  .stat-card strong {
    font-size: 2.2rem;
  }

  .booking-form .button {
    padding-inline: 0.8rem;
    font-size: 0.82rem;
  }
}

/* Premium density and interaction polish */
body {
  background:
    radial-gradient(circle at 8% 8%, rgba(205, 126, 32, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 24%, rgba(236, 181, 88, 0.1), transparent 30rem),
    radial-gradient(circle at 45% 68%, rgba(125, 68, 22, 0.1), transparent 36rem),
    linear-gradient(180deg, #0d0907 0%, #17100c 42%, #0c0806 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at center, rgba(240, 196, 117, 0.16) 0 1px, transparent 1.2px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.018) 75%);
  background-size: 34px 34px, 68px 68px;
  mask-image: linear-gradient(to bottom, black 5%, rgba(0, 0, 0, 0.45) 58%, transparent 96%);
}

.section {
  padding: clamp(3.75rem, 5.8vw, 5.5rem) 0;
}

.section-heading {
  margin-bottom: clamp(1.65rem, 3vw, 2.5rem);
}

.section-heading h2 {
  text-wrap: balance;
}

.section::after,
.experience-strip::after,
.pre-session-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(76rem, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 173, 86, 0.13), transparent);
  transform: translateX(-50%);
}

.button {
  overflow: hidden;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 242, 206, 0.34) 45%, transparent 68%);
  transform: translateX(-135%);
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(135%);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 46px rgba(215, 144, 43, 0.42), 0 0 34px rgba(236, 188, 102, 0.22);
}

.hero-grid {
  position: relative;
}

.hero-grid::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 4%;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 158, 61, 0.16), transparent 67%);
  filter: blur(12px);
}

.hero-visual {
  border-color: rgba(239, 190, 105, 0.36);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.64), 0 0 54px rgba(196, 116, 31, 0.12), inset 0 1px 0 rgba(255, 223, 166, 0.08);
}

.hero-visual-card {
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.hero-visual:hover .card-primary {
  transform: translateY(-5px);
}

.hero-visual:hover .card-left {
  transform: translate(4px, -4px);
}

.hero-visual:hover .card-right {
  transform: translate(-4px, 4px);
}

.card-primary,
.card-floating {
  border-color: rgba(239, 190, 105, 0.32);
  background: linear-gradient(145deg, rgba(29, 18, 11, 0.88), rgba(10, 7, 5, 0.78));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.52), 0 0 26px rgba(211, 140, 43, 0.08);
}

.info-card,
.testimonial-card,
.feature-item,
.faq-item,
.benefit-card,
.guide-card,
.step-card,
.stat-card,
.experience-card {
  border-color: rgba(229, 177, 86, 0.22);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 226, 177, 0.055);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.info-card:hover,
.testimonial-card:hover,
.feature-item:hover,
.faq-item:hover,
.benefit-card:hover,
.guide-card:hover,
.step-card:hover,
.stat-card:hover,
.experience-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 190, 103, 0.52);
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.48), 0 0 38px rgba(205, 126, 32, 0.12);
}

.services-grid {
  grid-auto-rows: 1fr;
}

.service-card {
  position: relative;
  height: 100%;
  border-color: rgba(229, 177, 86, 0.24);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(236, 184, 92, 0.9), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-media {
  height: 14.25rem;
}

.service-body {
  padding: 1.6rem;
}

.gallery-card {
  border-color: rgba(230, 178, 88, 0.22);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.4);
}

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

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(241, 194, 109, 0.22), transparent 38%),
    radial-gradient(circle at 75% 20%, rgba(237, 181, 83, 0.2), transparent 34%);
  box-shadow: inset 0 0 0 1px rgba(241, 196, 115, 0.38);
  transition: opacity 320ms ease;
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.075);
  filter: brightness(0.82) saturate(0.95) sepia(0.1);
}

.gallery-card figcaption {
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.75);
}

.testimonial-grid {
  grid-auto-rows: 1fr;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 140, 43, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(40, 27, 18, 0.97), rgba(17, 11, 8, 0.98));
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  right: 1rem;
  bottom: -2rem;
  color: rgba(232, 181, 91, 0.08);
  font-family: "Cormorant Garamond", serif;
  font-size: 10rem;
  line-height: 1;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: #e9b65f;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 16px rgba(233, 182, 95, 0.28);
}

.testimonial-card strong,
.testimonial-card p,
.testimonial-card .experience-number {
  position: relative;
  z-index: 1;
}

.faq-list {
  gap: 0.9rem 1.1rem;
}

.faq-item {
  background:
    radial-gradient(circle at 100% 0%, rgba(205, 126, 32, 0.09), transparent 28%),
    linear-gradient(145deg, rgba(36, 24, 16, 0.96), rgba(15, 10, 7, 0.98));
}

.faq-item summary {
  transition: color 220ms ease, background 220ms ease;
}

.faq-item[open] summary {
  color: #f2c87e;
  background: rgba(211, 140, 43, 0.055);
}

.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;
  transition: block-size 360ms ease, content-visibility 360ms allow-discrete, opacity 260ms ease;
}

.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
}

.faq-item[open] > p {
  animation: faqFade 360ms ease both;
}

.booking-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(239, 188, 99, 0.36);
  background:
    radial-gradient(circle at 4% 8%, rgba(218, 139, 39, 0.24), transparent 28%),
    radial-gradient(circle at 96% 92%, rgba(139, 75, 25, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(45, 29, 18, 0.99), rgba(12, 8, 5, 0.99));
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.54), 0 0 54px rgba(205, 126, 32, 0.1), inset 0 1px 0 rgba(255, 228, 181, 0.07);
}

.booking-panel::before {
  content: "";
  position: absolute;
  right: -9rem;
  top: -10rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(236, 184, 92, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(236, 184, 92, 0.018), 0 0 0 6rem rgba(236, 184, 92, 0.012);
  pointer-events: none;
}

.booking-panel > * {
  position: relative;
  z-index: 1;
}

.booking-form {
  padding: 1.25rem;
  border: 1px solid rgba(229, 177, 86, 0.15);
  border-radius: 1.4rem;
  background: rgba(5, 3, 2, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 230, 186, 0.035);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-color: rgba(230, 178, 88, 0.24);
  background: rgba(7, 4, 3, 0.7);
}

.experience-strip,
.pre-session-section {
  position: relative;
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.experience-panel,
.pre-session-panel {
  border: 1px solid rgba(231, 181, 92, 0.21);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(205, 126, 32, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(35, 23, 15, 0.96), rgba(13, 9, 6, 0.98));
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 228, 181, 0.05);
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 3rem);
}

.experience-intro h2,
.pre-session-heading h2 {
  margin: 0.75rem 0 0.8rem;
  color: #f8eddd;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
  line-height: 1.05;
}

.experience-intro p {
  margin: 0;
  color: #bdae9c;
}

.experience-grid {
  display: grid;
  gap: 0.75rem;
}

.experience-card {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(9, 6, 4, 0.46);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.experience-card > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(235, 185, 97, 0.28);
  border-radius: 50%;
  color: #eab861;
  font-weight: 800;
}

.experience-card h3 {
  margin: 0;
  color: #f5e9d8;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.35rem;
}

.experience-card p {
  margin: 0.18rem 0 0;
  color: #ae9f8e;
  font-size: 0.9rem;
}

.pre-session-panel {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 3rem);
}

.pre-session-heading h2 {
  max-width: 11ch;
}

.pre-session-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pre-session-list li {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.9rem;
  align-items: center;
  min-height: 4.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(226, 173, 86, 0.14);
  border-radius: 1rem;
  color: #d2c2ae;
  background: rgba(7, 4, 3, 0.38);
}

.pre-session-list span {
  color: #dfa74e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.reveal.is-visible .experience-card,
.reveal.is-visible .pre-session-list li {
  animation: premiumRise 600ms ease both;
}

.reveal.is-visible .experience-card:nth-child(2),
.reveal.is-visible .pre-session-list li:nth-child(2) {
  animation-delay: 90ms;
}

.reveal.is-visible .experience-card:nth-child(3),
.reveal.is-visible .pre-session-list li:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes premiumRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-panel,
  .pre-session-panel {
    grid-template-columns: 1fr;
  }

  .pre-session-heading h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.45rem 0;
  }

  .experience-strip,
  .pre-session-section {
    padding: 2.25rem 0;
  }

  .experience-panel,
  .pre-session-panel {
    width: min(calc(100% - 1.5rem), var(--max-width));
    padding: 1.2rem;
    border-radius: 1.45rem;
  }

  .experience-card {
    grid-template-columns: 2.8rem 1fr;
    padding: 0.9rem;
  }

  .experience-card > span {
    width: 2.65rem;
    height: 2.65rem;
  }

  .service-media {
    height: 13rem;
  }

  .booking-form {
    padding: 0.85rem;
  }

  .hero-visual:hover .card-primary,
  .hero-visual:hover .card-left,
  .hero-visual:hover .card-right {
    transform: none;
  }
}

@media (max-width: 390px) {
  .experience-card {
    grid-template-columns: 1fr;
  }

  .pre-session-list li {
    grid-template-columns: 2.25rem 1fr;
    padding: 0.8rem;
  }
}

/* Full-width visual hero */
.hero {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: clamp(43rem, calc(100svh - var(--ticker-height)), 56rem);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #0d0907;
}

.hero::before {
  display: none;
}

.hero-banner-media,
.hero-banner-overlay {
  position: absolute;
  inset: 0;
}

.hero-banner-media {
  z-index: -3;
  overflow: hidden;
}

.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.08) brightness(0.82);
  transform: scale(1.015);
  animation: heroCinema 18s ease-in-out infinite alternate;
}

.hero-banner-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.96) 0%, rgba(9, 6, 4, 0.82) 39%, rgba(9, 6, 4, 0.36) 68%, rgba(8, 5, 3, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 5, 3, 0.28), rgba(8, 5, 3, 0.12) 56%, rgba(8, 5, 3, 0.88) 100%),
    radial-gradient(circle at 66% 45%, rgba(227, 161, 66, 0.08), transparent 34%);
}

.hero-banner-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  width: min(calc(100% - clamp(2rem, 5vw, 4rem)), var(--max-width));
  min-height: inherit;
  padding-top: clamp(6.5rem, 11vw, 9rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.hero-banner-content::before {
  content: "";
  position: absolute;
  left: -5rem;
  top: 18%;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 140, 43, 0.13), transparent 68%);
  filter: blur(16px);
}

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

.hero-copy h1 {
  max-width: 11ch;
  margin-top: 1.15rem;
  font-size: clamp(4rem, 6.6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.72);
}

.hero-copy p {
  max-width: 40rem;
  color: #ded1bf;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.82);
}

.hero-actions {
  margin-top: 2rem;
}

.hero-actions .button {
  min-height: 3.45rem;
  padding-inline: 1.45rem;
  backdrop-filter: blur(10px);
}

.hero-badges {
  display: flex;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.9rem;
  border-color: rgba(235, 185, 98, 0.25);
  color: #e4d7c5;
  background: rgba(13, 8, 5, 0.58);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 230, 188, 0.04);
  backdrop-filter: blur(14px);
}

.hero-badges strong {
  color: #e8b65f;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-quick-info {
  display: grid;
  gap: 0.7rem;
  width: min(19rem, 26vw);
}

.hero-quick-info > span {
  display: grid;
  gap: 0.22rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(235, 185, 98, 0.24);
  border-radius: 1.05rem;
  color: #c3b39f;
  background: rgba(12, 8, 5, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 230, 188, 0.04);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-quick-info strong {
  color: #f3e3ca;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
}

.service-body h3 a {
  transition: color 180ms ease;
}

.service-body h3 a:hover,
.service-body h3 a:focus-visible {
  color: #efbf6b;
}

.service-card:nth-child(2) .service-media img,
.service-card:nth-child(3) .service-media img,
.service-card:nth-child(4) .service-media img {
  object-position: center;
}

.service-card:nth-child(8) .service-media img,
.service-card:nth-child(9) .service-media img {
  object-position: center 58%;
}

@keyframes heroCinema {
  from { transform: scale(1.015); }
  to { transform: scale(1.065); }
}

@media (max-width: 1100px) {
  .hero-banner-content {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero-quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 39rem);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: clamp(42rem, 92svh, 48rem);
  }

  .hero-banner-media img {
    object-position: 65% center;
  }

  .hero-banner-overlay {
    background:
      linear-gradient(90deg, rgba(8, 5, 3, 0.94), rgba(8, 5, 3, 0.66) 72%, rgba(8, 5, 3, 0.42)),
      linear-gradient(180deg, rgba(8, 5, 3, 0.3), rgba(8, 5, 3, 0.32) 42%, rgba(8, 5, 3, 0.94) 100%);
  }

  .hero-banner-content {
    width: min(calc(100% - 1.5rem), var(--max-width));
    gap: 1.1rem;
    padding-top: 5rem;
    padding-bottom: 2.2rem;
  }

  .hero-copy h1 {
    max-width: 10ch;
    margin-top: 0.85rem;
    font-size: clamp(3rem, 13.5vw, 4.15rem);
    line-height: 0.94;
  }

  .hero-copy p {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.45rem;
  }

  .hero-actions .button {
    min-height: 3.15rem;
    padding-inline: 0.8rem;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1.25rem;
  }

  .hero-badges span {
    display: grid;
    place-content: center;
    gap: 0.1rem;
    min-height: 3.3rem;
    padding: 0.45rem 0.35rem;
    font-size: 0.68rem;
    line-height: 1.25;
    text-align: center;
  }

  .hero-quick-info {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 46rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .button:first-child {
    grid-column: 1;
  }
}

/* Keep the redesigned stats panel above legacy section rules. */
.stats-section {
  isolation: isolate;
  padding-block: clamp(1rem, 2vw, 1.75rem) clamp(3.5rem, 6vw, 5.25rem);
}

.stats-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 42%;
  left: 50%;
  width: min(72rem, 92vw);
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 148, 47, 0.13), rgba(213, 148, 47, 0.035) 42%, transparent 72%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-grid {
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}

.stat-card {
  display: flex;
  min-width: 0;
  min-height: clamp(12rem, 16vw, 14rem);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  border: 1px solid rgba(232, 180, 90, 0.34);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 170, 70, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(38, 25, 17, 0.98), rgba(13, 9, 7, 0.99));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 224, 169, 0.025) inset;
}

.stat-card:hover {
  transform: translateY(-9px);
  border-color: rgba(244, 196, 111, 0.66);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 42px rgba(218, 145, 45, 0.15);
}

.stat-card .stat-card-index {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  margin: 0;
  color: rgba(240, 193, 111, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card {
    min-height: 12rem;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-card {
    min-height: 10.75rem;
    padding: 1.35rem;
  }
}

/* Premium four-column footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 1.35rem;
  border-top: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(209, 139, 43, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 78%, rgba(137, 76, 25, 0.1), transparent 26rem),
    linear-gradient(145deg, #120c08 0%, #0b0705 48%, #070504 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 82rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 190, 96, 0.9), transparent);
  box-shadow: 0 0 25px rgba(224, 153, 49, 0.65), 0 0 70px rgba(224, 153, 49, 0.18);
  transform: translateX(-50%);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -9rem;
  left: 50%;
  width: 40rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(222, 152, 50, 0.07);
  filter: blur(55px);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 1.25fr) minmax(9rem, 0.65fr) minmax(13rem, 0.95fr) minmax(17rem, 1.4fr);
  align-items: start;
  gap: clamp(2rem, 3.5vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.footer-brand-column {
  display: grid;
  align-content: start;
  gap: 1.3rem;
}

.footer-brand {
  width: fit-content;
}

.footer-brand .brand-mark {
  width: 3.7rem;
  height: 3.7rem;
  background: linear-gradient(145deg, rgba(229, 170, 76, 0.2), rgba(18, 11, 7, 0.96));
  border-color: rgba(239, 191, 106, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 232, 190, 0.14), 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 28px rgba(210, 136, 37, 0.11);
}

.footer-brand .brand-copy strong {
  font-size: 1.5rem;
}

.footer-brand-column p {
  max-width: 23rem;
  margin: 0;
  color: #b9aa98;
  font-size: 0.93rem;
  line-height: 1.8;
}

.footer-signature {
  width: fit-content;
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(225, 172, 81, 0.18);
  border-radius: 999px;
  color: #d7b77f;
  background: rgba(228, 164, 64, 0.045);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column h2 {
  position: relative;
  margin: 0 0 1.45rem;
  padding-bottom: 0.85rem;
  color: #f4dfba;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.35rem;
  height: 1px;
  background: linear-gradient(90deg, #dfa545, transparent);
  box-shadow: 0 0 12px rgba(223, 165, 69, 0.42);
}

.footer-nav-list,
.footer-contact-list {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #b9aa98;
  font-size: 0.86rem;
  line-height: 1.45;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-nav-list a::before {
  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: #dfa545;
  transition: width 220ms ease, margin-right 220ms ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: #f0c77d;
  transform: translateX(3px);
}

.footer-nav-list a:hover::before,
.footer-nav-list a:focus-visible::before {
  width: 0.8rem;
  margin-right: 0.45rem;
}

.footer-contact-list {
  gap: 0.95rem;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  min-width: 0;
  color: #c6b8a7;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-contact-list li > span:last-child,
.footer-contact-list address {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-style: normal;
}

.footer-contact-list small {
  display: block;
  margin-bottom: 0.08rem;
  color: #806f5e;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-list a {
  color: #e4d3bd;
  transition: color 220ms ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #f1be67;
}

.footer-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(228, 173, 79, 0.22);
  border-radius: 0.65rem;
  color: #dfa545;
  background: linear-gradient(145deg, rgba(224, 162, 61, 0.09), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 223, 170, 0.06);
}

.footer-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(226, 173, 86, 0.13);
  color: #827465;
  font-size: 0.76rem;
  letter-spacing: 0.025em;
}

.footer-bottom > :last-child {
  justify-self: auto;
}

.footer-credit {
  color: #a99a89;
}

.footer-credit a {
  color: #dcb06a;
  text-decoration-color: rgba(220, 176, 106, 0.38);
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #f4cd89;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem clamp(2rem, 6vw, 4.5rem);
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 4.25rem;
    padding-bottom: calc(1.5rem + 5.75rem + env(safe-area-inset-bottom));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .footer-brand-column p {
    max-width: 31rem;
  }

  .footer-contact-list li {
    grid-template-columns: 2.15rem minmax(0, 1fr);
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    padding-bottom: 0;
  }

  .footer-credit {
    margin-top: 0;
    white-space: normal;
  }
}

/* Final compact statistics layout */
.stats-section {
  padding-block: clamp(1rem, 2vw, 1.5rem) clamp(3.25rem, 5vw, 4.5rem);
}

.stats-section::before {
  height: 18rem;
  background: radial-gradient(circle, rgba(214, 146, 42, 0.12), rgba(214, 146, 42, 0.025) 45%, transparent 72%);
}

.stats-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: clamp(0.8rem, 1.35vw, 1.1rem);
}

.stat-card {
  display: grid;
  min-width: 0;
  min-height: 11rem;
  padding: 1.35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 2.65rem auto auto;
  align-content: center;
  justify-content: initial;
  column-gap: 0.85rem;
  border: 1px solid rgba(235, 183, 91, 0.36);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(227, 163, 60, 0.13), transparent 31%),
    linear-gradient(145deg, rgba(36, 23, 15, 0.99), rgba(12, 8, 6, 0.99));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 226, 175, 0.045);
  opacity: 0;
  transform: translateY(20px);
  animation: none;
  transition: opacity 620ms ease, transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.stat-card::after {
  right: -3rem;
  bottom: -4.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.72;
}

.stat-icon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(236, 184, 92, 0.3);
  border-radius: 0.8rem;
  color: #e5ad51;
  background: linear-gradient(145deg, rgba(225, 158, 53, 0.13), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 228, 181, 0.08), 0 0 22px rgba(220, 145, 39, 0.08);
}

.stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.stat-card .stat-value {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  max-width: none;
  margin: 0.7rem 0 0;
  color: #f2c36e;
  font-size: clamp(1.85rem, 2.45vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-align: left;
  text-shadow: 0 0 28px rgba(224, 153, 45, 0.17);
}

.stat-card .stat-value-text {
  font-size: clamp(2.55rem, 3.5vw, 3.35rem);
  line-height: 0.9;
}

.stat-card .stat-label {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.9rem;
  color: #f0e0c9;
  font-size: 0.82rem;
  line-height: 1.3;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.stat-card p {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0.7rem 0 0;
  color: #948675;
  font-size: 0.8rem;
  line-height: 1.5;
}

.stats-section.is-visible .stat-card {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.stats-section.is-visible .stat-card:nth-child(1) { transition-delay: 0ms; }
.stats-section.is-visible .stat-card:nth-child(2) { transition-delay: 90ms; }
.stats-section.is-visible .stat-card:nth-child(3) { transition-delay: 180ms; }
.stats-section.is-visible .stat-card:nth-child(4) { transition-delay: 270ms; }

.stats-section.is-visible .stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 199, 116, 0.68);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.5), 0 0 38px rgba(218, 145, 45, 0.14);
  transition-delay: 0ms;
}

@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card .stat-value {
    font-size: clamp(2rem, 4.4vw, 2.4rem);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-card {
    min-height: 10.75rem;
    padding: 1.25rem;
  }

  .stat-card .stat-value {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stats-section.is-visible .stat-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Lock identical icon placement after all legacy statistics rules. */
#istatistikler .stat-card {
  position: relative;
}

#istatistikler .stat-icon {
  position: absolute !important;
  inset: 1.4rem 1.4rem auto auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  align-self: auto !important;
  justify-self: auto !important;
  width: 2.65rem !important;
  height: 2.65rem !important;
  margin: 0 !important;
  transform: none !important;
}

@media (max-width: 600px) {
  #istatistikler .stat-icon {
    inset: 1.25rem 1.25rem auto auto !important;
  }
}

/* Final statistics spacing and small alignment polish */
#istatistikler {
  padding-block: clamp(0.75rem, 1.5vw, 1.25rem) clamp(2.75rem, 4.5vw, 4rem);
}

#istatistikler .stats-grid {
  gap: clamp(0.8rem, 1.2vw, 1rem);
}

#istatistikler .stat-card {
  min-height: 11.25rem;
  padding: 1.4rem;
  grid-template-rows: minmax(4.75rem, auto) auto;
  align-content: start;
  gap: 0.6rem;
}

#istatistikler .stat-card .stat-value {
  grid-row: 1;
  align-self: end;
  margin: 0;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.04;
}

#istatistikler .stat-card p {
  grid-row: 2;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.55;
}

.button {
  text-align: center;
  line-height: 1.2;
}

.section-heading h2,
.section-heading p {
  text-wrap: balance;
}

@media (max-width: 600px) {
  #istatistikler {
    padding-block: 0.5rem 2.75rem;
  }

  #istatistikler .stat-card {
    min-height: 10.75rem;
    padding: 1.25rem;
  }

  #istatistikler .stat-card .stat-value {
    font-size: 2.15rem;
  }
}
