:root {
  --ink: #212121;
  --header: #202020;
  --brown: #70553e;
  --brown-2: #8b6a4b;
  --gold: #c4995a;
  --cream: #f5f0ea;
  --paper: #eeeeee;
  --white: #ffffff;
  --dark-footer: #1c1816;
  --line: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

/* ── Page Loader ─────────────────────────────────────── */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-footer);
}

.page-loader.exit {
  animation: loader-exit 0.85s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  user-select: none;
}

.loader-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: brightness(2.2);
  opacity: 0;
  transform: scale(0.75);
  animation: loader-logo-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  margin: 0 auto 30px;
}

.loader-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(196, 153, 90, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  opacity: 0;
  animation: loader-ring-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
  position: relative;
}

.loader-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(196, 153, 90, 0.08);
}

.loader-ring img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: brightness(2.2);
  display: block;
}

.loader-brand {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 8px;
  opacity: 0;
  animation: loader-fade-up 0.7s ease 0.8s forwards;
}

.loader-subtitle {
  font-family: "Lato", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 48px;
  opacity: 0;
  animation: loader-fade-up 0.7s ease 1.1s forwards;
}

.loader-progress {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  animation: loader-fade-up 0.5s ease 1.2s forwards;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--brown), var(--gold));
  animation: loader-fill 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.25s forwards;
}

/* ── Header ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 6px 34px;
  color: var(--white);
  background: rgba(28, 24, 22, 0);
  transition: background 280ms ease, box-shadow 280ms ease;
}

.site-header.is-solid,
.site-header:hover {
  color: var(--white);
  background: rgba(28, 24, 22, 0.97);
  box-shadow: 0 1px 0 rgba(196, 153, 90, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 16px 0;
  opacity: 0.8;
  position: relative;
  transition: opacity 180ms;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 240ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  right: 0;
}

.site-nav a:hover,
.site-nav a:focus {
  opacity: 1;
}

.language-toggle,
.search-button,
.nav-toggle {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-toggle {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(196, 153, 90, 0.5);
  border-radius: 2px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: border-color 180ms, background 180ms;
}

.language-toggle:hover {
  border-color: var(--gold);
  background: rgba(196, 153, 90, 0.1);
}

.search-button {
  position: relative;
  width: 28px;
  height: 28px;
  opacity: 0.75;
  transition: opacity 180ms;
}

.search-button:hover {
  opacity: 1;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms, opacity 220ms;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero-site {
  position: relative;
  height: min(92vh, 720px);
  min-height: 560px;
  overflow: hidden;
  background: var(--brown);
  scroll-margin-top: 70px;
}

.hero-site::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 24, 22, 0.15) 0%,
    rgba(28, 24, 22, 0.02) 45%,
    rgba(28, 24, 22, 0.6) 100%
  );
  pointer-events: none;
}

.hero-site img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-tagline {
  position: absolute;
  bottom: 96px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  color: var(--white);
  pointer-events: none;
}

.hero-tagline span {
  display: inline-block;
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-tagline .hero-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
  opacity: 0.7;
}

.scroll-cue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 76px;
  background: rgba(112, 85, 62, 0.92);
  backdrop-filter: blur(4px);
  transition: background 200ms;
}

.scroll-cue:hover {
  background: rgba(139, 106, 75, 0.97);
}

.scroll-cue span {
  width: 14px;
  height: 14px;
  border-right: 3px solid rgba(255, 255, 255, 0.75);
  border-bottom: 3px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  animation: cue-bob 1.8s ease-in-out infinite;
}

/* ── Shared section utils ───────────────────────────────── */

.section-gray {
  background: var(--paper);
  scroll-margin-top: 72px;
}

.section-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 22px;
}

.section-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── Welcome ────────────────────────────────────────────── */

.welcome-section {
  padding: 64px 0 56px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 52px;
  align-items: start;
}

.welcome-photo {
  display: flex;
  justify-content: center;
}

.welcome-photo img {
  width: min(100%, 340px);
  aspect-ratio: 0.7;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 8px 14px 40px rgba(0, 0, 0, 0.2);
}

.welcome-copy {
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.welcome-copy p {
  margin: 0 0 28px;
  color: #2a2420;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(14px, 1.45vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  text-align: justify;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 28px;
  color: var(--white);
  background: var(--brown);
  border: 0;
  border-radius: 2px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.site-button:hover {
  background: var(--brown-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(112, 85, 62, 0.38);
}

.site-button-short {
  max-width: 220px;
  margin: 0 auto;
}

/* ── Social Icons ───────────────────────────────────────── */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.social-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(112, 85, 62, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: background 280ms ease,
              border-color 280ms ease,
              transform 280ms ease,
              box-shadow 280ms ease;
}

.social-icons a:hover .social-icon-ring {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(112, 85, 62, 0.28);
}

.social-icon-ring img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: filter 280ms ease;
}

.social-icons a:hover .social-icon-ring img {
  filter: brightness(0) invert(1);
}

.social-icon-label {
  font-family: "Lato", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7060;
  transition: color 280ms ease;
}

.social-icons a:hover .social-icon-label {
  color: var(--brown);
}

/* ── Events ─────────────────────────────────────────────── */

.events-section {
  padding: 72px 0 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-title {
  max-width: 580px;
  margin: 0 0 52px;
}

.section-title h1,
.booking-grid h1,
.text-page h1 {
  margin: 0 0 14px;
  color: var(--brown);
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.section-title p,
.booking-grid p {
  margin: 0;
  color: #3a3330;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 400;
  line-height: 1.75;
}

.event-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.event-row article {
  text-align: center;
}

.event-img-wrap {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.13);
}

.event-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.event-row article:hover img {
  transform: scale(1.06);
}

.event-row h2 {
  max-width: 180px;
  margin: 14px auto 0;
  color: #1a1614;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.45;
}

.center-action {
  text-align: center;
}

/* ── Booking Strip ──────────────────────────────────────── */

.booking-strip {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid rgba(196, 153, 90, 0.22);
  border-bottom: 1px solid rgba(196, 153, 90, 0.22);
}

.booking-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 860px;
}

.calendar-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  opacity: 0.8;
}

.booking-grid h1 {
  max-width: 540px;
  margin-bottom: 14px;
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--ink);
}

.booking-grid p {
  margin-bottom: 28px;
  font-size: 14px;
  color: #4a3f38;
}

/* ── Gallery Showcase ───────────────────────────────────── */

.gallery-section {
  padding: 72px 0 80px;
  scroll-margin-top: 72px;
}

.gallery-section > .container > .section-title {
  margin-bottom: 40px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 8px;
  height: 560px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: default;
  min-height: 0;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-main-img.fading {
  opacity: 0;
  transform: scale(1.04);
}

.gallery-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 22, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-main-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-counter {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.gallery-counter-sep {
  font-size: 55%;
  color: rgba(255, 255, 255, 0.3);
}

.gallery-counter-total {
  font-size: 50%;
  color: rgba(255, 255, 255, 0.35);
}

.gallery-main-nav {
  display: flex;
  gap: 8px;
}

.gallery-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(28, 24, 22, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms, border-color 180ms;
  backdrop-filter: blur(4px);
}

.gallery-nav-btn:hover {
  background: rgba(196, 153, 90, 0.35);
  border-color: var(--gold);
}

.gallery-nav-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-aside {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 6px;
  min-height: 0;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--ink);
  display: block;
}

.gallery-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 22, 0.5);
  transition: opacity 260ms ease;
  z-index: 1;
}

.gallery-thumb.is-active::before,
.gallery-thumb:hover::before {
  opacity: 0;
}

.gallery-thumb.is-active {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms ease;
}

.gallery-thumb:hover img {
  transform: scale(1.12);
}

/* ── About ──────────────────────────────────────────────── */

.about-section {
  padding: 80px 0;
  background: var(--cream);
}

/* ── Services ───────────────────────────────────────────── */

.services-section {
  padding: 80px 0;
}

.text-page {
  max-width: 900px;
}

.text-page h1 {
  margin: 0 0 14px;
}

.text-page h2 {
  margin: 0 0 40px;
  color: #3a3330;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-page > p {
  margin-bottom: 22px;
  font-size: clamp(13px, 1.25vw, 15px);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.85;
  color: #2e2824;
}

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

.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 153, 90, 0.1);
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  transition: background 260ms ease, color 260ms ease;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-list article:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-list article {
  padding: 28px 26px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-top: 3px solid var(--gold);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms,
              translate 220ms;
}

.service-list.is-visible article:nth-child(1) { transition-delay: 0ms; }
.service-list.is-visible article:nth-child(2) { transition-delay: 90ms; }
.service-list.is-visible article:nth-child(3) { transition-delay: 180ms; }
.service-list.is-visible article:nth-child(4) { transition-delay: 270ms; }
.service-list.is-visible article:nth-child(5) { transition-delay: 360ms; }
.service-list.is-visible article:nth-child(6) { transition-delay: 450ms; }

.service-list.is-visible article {
  opacity: 1;
  transform: translateY(0);
}

.service-list article:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  translate: 0 -3px;
}

.service-list h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-list p {
  margin-bottom: 0;
  font-size: 13px;
  color: #4a3f38;
  line-height: 1.75;
}

/* ── Testimonials ───────────────────────────────────────── */

.testimonials-section {
  padding: 80px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  padding: 34px 28px 28px;
  border-radius: 4px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.055);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms,
              translate 220ms;
}

.testimonials-grid.is-visible .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid.is-visible .testimonial-card:nth-child(2) { transition-delay: 130ms; }
.testimonials-grid.is-visible .testimonial-card:nth-child(3) { transition-delay: 260ms; }

.testimonials-grid.is-visible .testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
  translate: 0 -4px;
}

.testimonial-quote-mark {
  font-family: "Merriweather", Georgia, serif;
  font-size: 64px;
  line-height: 0.75;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 18px;
  font-weight: 700;
  user-select: none;
}

.testimonial-text {
  font-family: "Merriweather", Georgia, serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: #3a3330;
  line-height: 1.85;
  flex: 1;
  margin: 0 0 22px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-divider {
  width: 32px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.testimonial-role {
  font-family: "Lato", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #8a7060;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.65);
  background: var(--dark-footer);
  border-top: 3px solid var(--brown);
}

.footer-grid {
  display: grid;
  grid-template-columns: 130px 1.2fr 1.25fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-grid > * {
  min-width: 0;
}

.footer-logo-block img {
  width: 100px;
  opacity: 0.65;
  filter: brightness(1.5);
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.site-footer p {
  margin: 0 0 10px;
}

.footer-name {
  margin-bottom: 16px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: "Merriweather", Georgia, serif !important;
  letter-spacing: 0.04em;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: var(--gold);
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.footer-social {
  display: grid;
  gap: 6px;
}

.footer-social p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social a,
.footer-social span {
  display: block;
  transition: color 160ms;
}

.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
  transition: color 160ms;
}

.footer-bottom {
  margin-top: 48px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Lato", Arial, sans-serif;
}

/* ── WhatsApp FAB ───────────────────────────────────────── */

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.48);
  transition: transform 240ms ease, box-shadow 240ms ease;
  animation: wa-pulse 3.2s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.65);
  animation: none;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--dark-footer);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: 3px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 200ms, transform 200ms;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left-color: var(--dark-footer);
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Reveal animations ──────────────────────────────────── */

.reveal {
  opacity: 0;
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

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

/* ── Keyframes ──────────────────────────────────────────── */

@keyframes cue-bob {
  0%, 100% { transform: translateY(-5px) rotate(45deg); }
  50%       { transform: translateY(5px)  rotate(45deg); }
}

@keyframes loader-logo-in {
  to { opacity: 1; transform: scale(1); }
}

@keyframes loader-ring-in {
  to { opacity: 1; }
}

@keyframes loader-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes loader-fill {
  to { width: 100%; }
}

@keyframes loader-exit {
  to { transform: translateY(-100%); }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.78); }
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 960px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 8px 22px;
    background: rgba(28, 24, 22, 0.97);
  }

  .brand span {
    font-size: 13px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 22px 24px;
    background: rgba(28, 24, 22, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a,
  .language-toggle {
    width: 100%;
    min-height: 48px;
    text-align: left;
  }

  .site-nav a::after {
    display: none;
  }

  .search-button {
    display: none;
  }

  .hero-site {
    height: 680px;
    min-height: 680px;
  }

  .hero-site img {
    object-position: center center;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

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

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

  .welcome-copy {
    padding-right: 0;
  }

  .welcome-copy p {
    font-size: 15px;
    text-align: left;
  }

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

  .booking-grid {
    justify-items: center;
    text-align: left;
  }

  .booking-grid h1 {
    font-size: 22px;
  }

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

  .gallery-main {
    height: 62vw;
    min-height: 280px;
  }

  .gallery-aside {
    grid-template-rows: none;
    grid-template-columns: repeat(5, 1fr);
    height: 72px;
  }

  .gallery-thumb::before {
    background: rgba(28, 24, 22, 0.3);
  }

  .social-icons {
    gap: 18px;
  }

  .social-icon-ring {
    width: 52px;
    height: 52px;
  }

  .social-icon-ring img {
    width: 22px;
    height: 22px;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .hero-site {
    height: 560px;
    min-height: 560px;
  }

  .scroll-cue {
    height: 64px;
  }

  .welcome-section {
    padding-top: 40px;
  }

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

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

  .booking-grid h1 {
    font-size: 19px;
  }

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

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

  .social-icons {
    gap: 12px;
  }

  .social-icon-label {
    display: none;
  }
}
