:root {
  --maroon: #7f061d;
  --maroon-deep: #21040a;
  --maroon-soft: #4a0713;
  --gold: #f5c45b;
  --gold-soft: #ffe39b;
  --amber: #b56626;
  --ink: #150d0b;
  --cream: #fff4dd;
  --ivory: #fffaf1;
  --violet: #5d3df0;
  --shadow: 0 28px 90px rgba(18, 5, 4, 0.36);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 196, 91, 0.16), transparent 32rem),
    linear-gradient(135deg, var(--maroon-deep), #130708 46%, #271105);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    radial-gradient(circle at 1px 1px, rgba(245, 196, 91, 0.18) 1px, transparent 0),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(245, 196, 91, 0.035) 18px 19px);
  background-size: 34px 34px, 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 80%);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

body {
  -webkit-touch-callout: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(245, 196, 91, 0.22);
  background: rgba(26, 4, 7, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(245, 196, 91, 0.58);
  border-radius: 50%;
  clip-path: circle(48.5% at 50% 48.5%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0;
}

.brand small {
  color: var(--gold-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.45vw, 1.25rem);
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-btn {
  min-width: 92px;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(245, 196, 91, 0.45);
  border-radius: 8px;
  text-align: center;
  width: 140px;
  max-width: 140px;
  flex: 0 0 140px;
}

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

.nav-btn-order {
  color: #fff7e6;
  background: rgba(127, 6, 29, 0.72);
}

.nav-btn-reserve {
  color: var(--gold-soft);
  background: rgba(255, 250, 241, 0.055);
}

.site-nav .nav-btn:hover {
  border-color: rgba(245, 196, 91, 0.75);
  background: rgba(245, 196, 91, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 196, 91, 0.5);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  --hero-column-height: clamp(350px, 34vw, 460px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  align-items: end;
  min-height: 100svh;
  padding: 8rem clamp(1rem, 5vw, 5rem) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-slides,
.hero-slides img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.hero-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: kenburns 24s infinite;
  animation-fill-mode: both;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.hero-slides img:first-child {
  opacity: 1;
}

.hero-slides img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slides img:nth-child(3) {
  animation-delay: 12s;
}

.hero-slides img:nth-child(4) {
  animation-delay: 18s;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(25, 3, 7, 0.92), rgba(25, 3, 7, 0.64) 45%, rgba(25, 3, 7, 0.36)),
    linear-gradient(0deg, rgba(16, 4, 4, 0.9), transparent 52%);
  pointer-events: none;
}

.hero-content,
.reviews-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: end;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6.2vw, 5.15rem);
  font-variant-caps: normal;
  text-transform: lowercase;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.48);
}

h2 {
  max-width: 920px;
  font-size: clamp(1.7rem, 2.75vw, 3rem);
}

h3 {
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.25rem 0 1.8rem;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: justify;
  text-wrap: pretty;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 620px;
  margin: 0 0 1.45rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(245, 196, 91, 0.32);
  border-radius: 8px;
  color: rgba(255, 250, 241, 0.9);
  background: rgba(255, 250, 241, 0.08);
  font-size: 0.94rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 0.68rem;
  height: 0.68rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d7d7d7;
  box-shadow: 0 0 0 0 rgba(215, 215, 215, 0.5);
}

.hero-status.is-open .status-dot {
  background: #7ee06f;
  box-shadow: 0 0 0 7px rgba(126, 224, 111, 0.14);
}

.hero-status.is-closed .status-dot {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(245, 196, 91, 0.14);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  max-width: 140px;
  flex: 0 0 140px;
  min-height: 40px;
  padding: 0.64rem 1.08rem;
  border: 1px solid rgba(245, 196, 91, 0.5);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.btn::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

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

.btn:hover::before {
  left: 125%;
}

.btn-primary {
  color: #fff7e6;
  background: linear-gradient(135deg, #8d0a22, var(--maroon) 58%, #4a0713);
  box-shadow: 0 14px 34px rgba(127, 6, 29, 0.28);
}

.btn-secondary {
  color: var(--gold-soft);
  background: rgba(255, 250, 241, 0.06);
}

.reviews-panel {
  display: grid;
  gap: 0.85rem;
  align-self: end;
  justify-self: end;
  width: min(100%, 390px);
  padding: 1rem;
  margin-bottom: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(245, 196, 91, 0.24);
  border-radius: 8px;
  background: rgba(42, 5, 10, 0.24);
  box-shadow: 0 24px 70px rgba(18, 5, 4, 0.24);
  backdrop-filter: blur(10px);
  animation: floatReview 5s ease-in-out infinite;
  transform: translate(-0.85rem, -0.55rem);
}

.reviews-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(245, 196, 91, 0.22);
}

.reviews-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-stage {
  position: relative;
  min-height: 178px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(245, 196, 91, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.035);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 520ms ease, transform 520ms ease;
  pointer-events: none;
}

.review-card.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: reviewGlow 5.2s ease-in-out both;
}

.review-card div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.review-card strong {
  color: var(--ivory);
  font-size: 0.95rem;
}

.stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.86rem;
  line-height: 1.48;
  font-style: italic;
}

.review-card p::before {
  content: "“";
  margin-right: 0.18rem;
}

.review-card p::after {
  content: "”";
  margin-left: 0.1rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(245, 196, 91, 0.22);
  background: rgba(255, 250, 241, 0.055);
}

.intro-strip div {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.35rem clamp(1rem, 4vw, 3rem);
  border-right: 1px solid rgba(245, 196, 91, 0.16);
  animation: fadeLift 700ms ease both;
}

.intro-strip div:nth-child(2) {
  animation-delay: 110ms;
}

.intro-strip div:nth-child(3) {
  animation-delay: 220ms;
}

.intro-strip span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.intro-strip strong {
  display: block;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.95rem;
}

.parallax-window {
  position: relative;
  display: grid;
  min-height: clamp(220px, 34vw, 360px);
  place-items: center;
  overflow: hidden;
  border-block: 1px solid rgba(245, 196, 91, 0.2);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.parallax-window::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 3, 7, 0.78), rgba(24, 3, 7, 0.34), rgba(24, 3, 7, 0.78)),
    radial-gradient(circle at center, rgba(245, 196, 91, 0.14), transparent 48%);
}

.parallax-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1120px);
  padding: 1rem;
  text-align: center;
}

.parallax-content p {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.45vw, 1.3rem);
  line-height: 1.3;
  animation: phraseGlow 4.5s ease-in-out infinite;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.65);
}

.parallax-taj {
  background-image: url("img/Reception.webp");
}

.parallax-dining {
  background-image: url("img/Interior dining.webp");
}

.parallax-reception {
  background-image: url("img/curry_wine.webp");
}

.content-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
  scroll-margin-top: 92px;
}

.section-heading {
  display: block;
  max-width: 980px;
  margin-bottom: clamp(1.45rem, 2.4vw, 2.25rem);
}

.section-heading::after {
  display: block;
  width: min(760px, 100%);
  height: 1px;
  margin-top: 1.25rem;
  content: "";
  background: linear-gradient(90deg, rgba(245, 196, 91, 0.52), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.celebrate,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.about-copy,
.celebrate-copy,
.contact-card {
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.02rem;
}

.about-copy p,
.celebrate-copy p,
.contact-card p,
.hours-note {
  text-align: justify;
  text-wrap: pretty;
}

.feature-image,
.celebrate-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 91, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img,
.celebrate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-image {
  aspect-ratio: 4 / 3;
  width: min(100%, 680px);
  justify-self: end;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  min-height: 100%;
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-copy .button-row {
  margin-top: 0.35rem;
  justify-content: center;
}

.feature-image:hover img,
.celebrate-image:hover img {
  transform: scale(1.045);
}

.feature-image,
.celebrate-image,
.contact-card,
.map-card {
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.feature-image:hover,
.celebrate-image:hover,
.contact-card:hover,
.map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 196, 91, 0.38);
}

.section-cta {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.celebrate {
  background:
    linear-gradient(135deg, rgba(127, 6, 29, 0.4), rgba(255, 250, 241, 0.035)),
    linear-gradient(45deg, transparent 0 24px, rgba(245, 196, 91, 0.05) 24px 25px);
  align-items: center;
}

.celebrate-image {
  aspect-ratio: 5 / 4;
}

.celebrate-copy h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.7vw, 2.9rem);
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 1.8rem;
  list-style: none;
}

.occasion-list li {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(245, 196, 91, 0.22);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 250, 241, 0.055);
  text-align: center;
}

.contact {
  background: rgba(18, 4, 5, 0.5);
}

.contact-grid {
  grid-template-columns: 0.8fr 0.75fr 1.45fr;
  align-items: stretch;
}

.contact-card,
.map-card {
  min-height: 320px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 196, 91, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.055);
  box-shadow: var(--shadow);
}

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

.hygiene-image {
  width: min(100%, 320px);
  margin: 1.25rem 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: #000;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.contact-card .hygiene-image.hygiene-image-small {
  width: min(100%, 95px);
  margin: 1.35rem auto 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.about-hygiene {
  width: min(100%, 95px);
  display: block;
  margin: 1rem auto !important;
  justify-self: center;
  align-self: center;
}

.about-copy > .about-hygiene {
  display: block !important;
  margin-inline: auto !important;
}

.compact-badge {
  width: 210px;
  margin-top: 1rem;
  margin-bottom: 0;
}

.compact .btn {
  flex: 0 0 140px;
  width: 140px;
  max-width: 140px;
}

.contact-card .button-row {
  margin-top: 1.25rem;
  gap: 0.75rem;
}

.celebrate-copy .button-row {
  justify-content: center;
}

.hours-list {
  margin: 1.25rem 0 0;
}

.hours-list div {
  position: relative;
  padding: 1rem 0;
  border-top: 1px solid rgba(245, 196, 91, 0.2);
}

.hours-list div.is-today {
  padding-right: 5.4rem;
}

.today-badge {
  position: absolute;
  top: 1rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(245, 196, 91, 0.5);
  border-radius: 8px;
  color: var(--maroon-deep);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: todayPulse 1.8s ease-in-out infinite;
}

.hours-list dt {
  color: var(--gold-soft);
  font-weight: 800;
}

.hours-list dd {
  margin: 0.2rem 0 0;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.82) contrast(1.05);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem 1.5rem;
  color: rgba(255, 250, 241, 0.75);
  background: #140305;
  text-align: center;
}

.footer-logo-link {
  display: inline-grid;
  place-items: center;
}

.site-footer img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  clip-path: circle(48.5% at 50% 48.5%);
}

.site-footer .footer-hygiene {
  width: 95px !important;
  height: auto !important;
  margin: 0.2rem 0 0;
  border: 0 !important;
  border-radius: 0 !important;
  clip-path: none !important;
  background: transparent;
  box-shadow: none;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

.copyright {
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
}

.footer-business {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  max-width: 980px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.social-links a {
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(245, 196, 91, 0.25);
  border-radius: 8px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.social-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.social-facebook {
  border-color: #1e6ff6;
  color: #ffffff !important;
  background: #1877f2 !important;
}

.social-facebook:hover {
  background: #0f5ac7 !important;
  border-color: #2b71d8;
}

.social-google {
  border-color: #34a853;
  color: #ffffff !important;
  background: #34a853 !important;
}

.social-google:hover {
  background: #2d8c47 !important;
  border-color: #2e8f44;
}

.social-tripadvisor {
  border-color: #34e0a1 !important;
  color: #ffffff !important;
  background: #34e0a1 !important;
}

.social-tripadvisor:hover {
  background: #2bbf86 !important;
  border-color: #2cb17a;
}

.powered-by {
  color: #fff !important;
  font-size: 0.52rem;
  font-weight: 500;
  text-align: center;
}

.powered-by:visited,
.powered-by {
  color: #fff !important;
}

.powered-by:hover {
  color: #00aaff !important;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 196, 91, 0.5);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(42, 5, 10, 0.82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(127, 6, 29, 0.9);
}

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

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

@keyframes kenburns {
  0% {
    opacity: 0;
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  7%,
  25% {
    opacity: 1;
  }
  32%,
  100% {
    opacity: 0;
    transform: scale(1.2) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes kenburnsMobile {
  0% {
    opacity: 0;
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  6%,
  25% {
    opacity: 1;
    transform: scale(1.08) translate3d(-0.8%, -0.6%, 0);
  }
  30% {
    opacity: 0;
    transform: scale(1.16) translate3d(-1.9%, -1.4%, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.2) translate3d(-2.8%, -2.1%, 0);
  }
}

@keyframes todayPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(245, 196, 91, 0.22);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 8px rgba(245, 196, 91, 0);
  }
}

@keyframes floatReview {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

@keyframes phraseGlow {
  0%,
  100% {
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.65);
  }
  50% {
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.65), 0 0 26px rgba(245, 196, 91, 0.28);
  }
}

@keyframes reviewGlow {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(245, 196, 91, 0);
  }
  50% {
    box-shadow: inset 0 0 38px rgba(245, 196, 91, 0.045);
  }
}

@keyframes mobileFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .celebrate,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
    gap: 2rem;
    min-height: 100svh;
    padding: 8.5rem clamp(1rem, 5vw, 3rem) 3rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 4, 5, 0.86), rgba(18, 4, 5, 0.36)),
      linear-gradient(90deg, rgba(25, 3, 7, 0.68), rgba(25, 3, 7, 0.16));
  }

  h1 {
    max-width: 10ch;
  }

  .hero-content,
  .reviews-panel {
    min-height: auto;
  }

  .reviews-panel {
    justify-self: start;
    max-height: none;
    transform: translate(-1.4rem, -0.45rem);
    margin-bottom: 1rem;
  }

  .reviews-stage {
    min-height: 185px;
  }

  .feature-image,
  .celebrate-image,
  .contact-card,
  .map-card {
    animation: mobileFloat 5.5s ease-in-out infinite;
  }

  .feature-image,
  .contact-card {
    animation-delay: 180ms;
  }

  .celebrate-image,
  .map-card {
    animation-delay: 360ms;
  }

  .intro-strip {
    grid-template-columns: 1fr 1fr;
  }

  .button-row {
    gap: 0.95rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding-inline: 1rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.48rem;
    padding: 0.55rem;
    border: 1px solid rgba(245, 196, 91, 0.24);
    border-radius: 8px;
    background: rgba(26, 4, 7, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .site-nav a {
    padding: 0.8rem;
  }

  .site-nav .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin: 0.35rem 0 0;
    padding: 0.72rem 1rem;
  }

  .site-nav .nav-btn + .nav-btn {
    margin-top: 0.45rem;
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem 1rem 2rem;
  }

  .hero-slides,
  .hero-slides img {
    display: block;
  }

  .hero-slides img {
    animation: kenburnsMobile 18s linear infinite both !important;
    object-position: center center;
  }

  .hero-slides img:nth-child(2) {
    animation-delay: 4.5s;
  }

  .hero-slides img:nth-child(3) {
    animation-delay: 9s;
  }

  .hero-slides img:nth-child(4) {
    animation-delay: 13.5s;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 4, 5, 0.82), rgba(18, 4, 5, 0.32)),
      linear-gradient(90deg, rgba(25, 3, 7, 0.62), rgba(25, 3, 7, 0.12));
  }

  .hero .hero-copy,
  .about .about-copy p,
  .celebrate .celebrate-copy p,
  .contact .contact-card p,
  .contact .hours-note {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .intro-strip,
  .occasion-list {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 196, 91, 0.16);
  }

  .parallax-window {
    min-height: 210px;
    background-attachment: scroll;
  }

  .parallax-content p {
    font-size: clamp(0.92rem, 4vw, 1.18rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading::after {
    display: block;
    width: 100%;
    margin-top: 1.2rem;
  }

  .section-cta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .button-row,
  .section-cta {
    width: 100%;
    gap: 0.95rem;
  }

  .btn {
    width: 140px;
    max-width: 140px;
    flex: 0 0 140px;
  }
}

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

  .hero-slides img {
    animation: kenburnsMobile 18s linear infinite both !important;
  }

  .hero-slides img:nth-child(2) {
    animation-delay: 4.5s !important;
  }

  .hero-slides img:nth-child(3) {
    animation-delay: 9s !important;
  }

  .hero-slides img:nth-child(4) {
    animation-delay: 13.5s !important;
  }

  .hero-slides img:first-child {
    animation-delay: 0s !important;
  }
}

.hero .hero-content > .hero-copy,
.about .about-copy > p,
.celebrate .celebrate-copy > p,
.contact .contact-card > p,
.contact .contact-card > .hours-note {
  text-align: justify !important;
  text-align-last: left !important;
  text-justify: inter-word;
  hyphens: none !important;
  overflow-wrap: normal;
  word-break: normal;
}
