:root {
  --charcoal: #12100e;
  --warm-black: #1c1814;
  --copper: #c3996b;
  --rose-gold: #e8b88c;
  --cream: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.72);
  --line: rgba(232, 184, 140, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(232, 184, 140, 0.16), transparent 34rem),
    linear-gradient(135deg, var(--charcoal), #090807 52%, var(--warm-black));
  color: var(--cream);
  font-family: Inter, sans-serif;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

::selection {
  background: rgba(232, 184, 140, 0.35);
  color: #fff;
}

.site-shell {
  overflow: hidden;
}

.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(232, 184, 140, 0.12);
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(18, 16, 14, 0.58);
  backdrop-filter: blur(20px);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.lux-header.scrolled {
  padding-block: 0.65rem;
  background: rgba(18, 16, 14, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  font-family: Cinzel, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark img {
  width: 3.1rem;
  height: 3.85rem;
  border: 1px solid rgba(232, 184, 140, 0.35);
  border-radius: 0.35rem;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(232, 184, 140, 0.16);
}

.brand-mark span {
  font-size: clamp(0.78rem, 1.3vw, 1rem);
  white-space: nowrap;
}

.lux-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.65rem);
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-nav a {
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.25s ease;
}

.lux-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  content: "";
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lux-nav a:hover,
.lux-nav a[aria-current="page"] {
  color: var(--rose-gold);
}

.lux-nav a:hover::after,
.lux-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta {
  border: 1px solid rgba(232, 184, 140, 0.48);
  border-radius: 999px;
  padding: 0.65rem 1.15rem !important;
  background: rgba(232, 184, 140, 0.12);
  color: var(--rose-gold) !important;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(232, 184, 140, 0.25);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.22rem auto;
  background: var(--rose-gold);
}

.hero-section,
.page-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 7.5rem clamp(1rem, 5vw, 5rem) 5rem;
}

.hero-section::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(18, 16, 14, 0.28), rgba(18, 16, 14, 0.78) 56%, rgba(18, 16, 14, 0.94)),
    linear-gradient(90deg, rgba(18, 16, 14, 0.95), rgba(18, 16, 14, 0.6), rgba(18, 16, 14, 0.92)),
    linear-gradient(0deg, var(--charcoal), transparent 42%, rgba(18, 16, 14, 0.72));
  content: "";
}

.hero-media,
.page-hero > img {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.76);
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  top: clamp(6.8rem, 13vh, 8.5rem);
  left: 10%;
  right: 10%;
  height: min(58vh, 34rem);
  border: 1px solid rgba(232, 184, 140, 0.16);
  border-bottom: 0;
  border-radius: 26rem 26rem 0 0;
  box-shadow: inset 0 0 70px rgba(232, 184, 140, 0.1), 0 0 90px rgba(195, 153, 107, 0.08);
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.62);
}

.hero-logo {
  width: clamp(8.4rem, 16vw, 12.5rem);
  margin: 0 auto 1.45rem;
  border: 1px solid rgba(232, 184, 140, 0.32);
  border-radius: 0.55rem;
  box-shadow: 0 0 70px rgba(232, 184, 140, 0.2);
}

.eyebrow {
  margin-bottom: 1rem;
  color: #f3c89e;
  font-family: Cinzel, serif;
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

h1 {
  max-width: 56rem;
  margin-inline: auto;
  font-size: clamp(3.1rem, 8vw, 7.3rem);
  font-weight: 700;
  color: #fff8ee;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hero-copy,
.page-hero-content p:last-child,
.split-copy p,
.story-copy p,
.value-card p,
.lux-card p,
.contact-panel p,
.service-menu p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 400;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.9rem);
  letter-spacing: 0;
}

.hero-content .hero-copy {
  color: rgba(255, 248, 238, 0.88);
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.btn-primary {
  border: 1px solid rgba(232, 184, 140, 0.86);
  background: linear-gradient(135deg, var(--copper), var(--rose-gold), #fff0d9);
  color: #17110d;
  box-shadow: 0 18px 48px rgba(232, 184, 140, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(232, 184, 140, 0.42);
  background: rgba(18, 16, 14, 0.42);
  color: var(--cream);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(232, 184, 140, 0.2);
}

.section-pad {
  padding: clamp(5rem, 9vw, 8.5rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 54rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

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

.lux-card,
.value-card,
.booking-card,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(245, 240, 232, 0.055), rgba(232, 184, 140, 0.045));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.lux-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.lux-card img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.lux-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 5.5rem 1.3rem 1.3rem;
  background: linear-gradient(0deg, rgba(18, 16, 14, 0.95), transparent);
}

.lux-card:hover img,
.gallery-item:hover img {
  filter: saturate(1) brightness(1.02);
  transform: scale(1.06);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8.5rem) clamp(1rem, 5vw, 5rem);
  background: rgba(255, 255, 255, 0.018);
}

.split-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px 999px 0.5rem 0.5rem;
}

.split-image img {
  width: 100%;
  height: clamp(28rem, 54vw, 44rem);
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.split-copy {
  max-width: 42rem;
}

.split-copy p {
  margin-top: 1.3rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.6rem;
  color: var(--rose-gold);
  font-family: Cinzel, serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-band {
  border-block: 1px solid rgba(232, 184, 140, 0.1);
}

.feature-list {
  max-width: 68rem;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 4rem minmax(11rem, 0.72fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 1.45rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row span {
  color: var(--rose-gold);
  font-family: Cinzel, serif;
}

.feature-row strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 600;
}

.feature-row em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.feature-row:hover {
  color: var(--rose-gold);
  transform: translateX(0.35rem);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 56rem) auto;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.testimonial-track {
  position: relative;
  min-height: 18rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(145deg, rgba(232, 184, 140, 0.08), rgba(255, 255, 255, 0.035));
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  max-width: 44rem;
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.35;
}

.testimonial span {
  margin-top: 1.4rem;
  color: var(--rose-gold);
  font-family: Cinzel, serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(232, 184, 140, 0.38);
  border-radius: 50%;
  color: var(--rose-gold);
  font-size: 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-btn:hover {
  background: rgba(232, 184, 140, 0.1);
  transform: translateY(-2px);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.insta-grid img:hover {
  filter: saturate(1);
  transform: translateY(-0.35rem);
}

.page-hero {
  min-height: 72vh;
  justify-items: start;
}

.page-hero-content {
  max-width: 56rem;
  text-align: left;
}

.page-hero-content h1 {
  margin-inline: 0;
  font-size: clamp(3rem, 7vw, 6rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.story-copy {
  display: grid;
  gap: 1.2rem;
  font-size: 1.05rem;
}

.philosophy-band,
.process-section {
  background: rgba(232, 184, 140, 0.035);
}

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

.value-card {
  border-radius: 0.5rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.value-card span {
  color: var(--rose-gold);
  font-family: Cinzel, serif;
  font-size: 0.8rem;
}

.value-card h3 {
  margin-top: 1.3rem;
  margin-bottom: 0.8rem;
}

.credential-list {
  margin-top: 1.5rem;
  color: var(--muted);
}

.credential-list li {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.service-tabs-section {
  max-width: 1260px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.tab {
  border: 1px solid rgba(232, 184, 140, 0.22);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-family: Cinzel, serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tab.active,
.tab:hover {
  border-color: rgba(232, 184, 140, 0.6);
  background: rgba(232, 184, 140, 0.1);
  color: var(--rose-gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: panelIn 0.45s ease both;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.service-detail > img {
  width: 100%;
  height: 37rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  object-fit: cover;
}

.service-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.service-menu article {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.035);
}

.service-menu h3 {
  margin-bottom: 0.55rem;
  color: var(--rose-gold);
  font-size: 1.35rem;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 18rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border-top: 1px solid rgba(232, 184, 140, 0.3);
  padding-top: 0.8rem;
  color: var(--cream);
  font-family: Cinzel, serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 16, 14, 0.82), transparent 45%);
  content: "";
}

.gallery-item figcaption {
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.booking-card,
.contact-panel {
  border-radius: 0.5rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

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

.lux-form label {
  display: grid;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-form label:has(textarea),
.lux-form button,
.form-note {
  grid-column: 1 / -1;
}

.lux-form input,
.lux-form select,
.lux-form textarea {
  width: 100%;
  border: 1px solid rgba(232, 184, 140, 0.2);
  border-radius: 0.35rem;
  padding: 0.95rem 1rem;
  background: rgba(18, 16, 14, 0.58);
  color: var(--cream);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lux-form textarea {
  resize: vertical;
}

.lux-form input:focus,
.lux-form select:focus,
.lux-form textarea:focus {
  border-color: rgba(232, 184, 140, 0.68);
  box-shadow: 0 0 0 4px rgba(232, 184, 140, 0.1);
}

.form-note {
  min-height: 1.5rem;
  color: var(--rose-gold);
}

.contact-panel {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1.6rem;
}

.contact-lines {
  display: grid;
  gap: 0.8rem;
  color: var(--rose-gold);
}

.map-placeholder {
  display: grid;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 140, 0.22);
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, rgba(232, 184, 140, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(232, 184, 140, 0.06) 1px, transparent 1px),
    rgba(18, 16, 14, 0.55);
  background-size: 2rem 2rem;
  text-align: center;
}

.map-placeholder iframe {
  width: 100%;
  min-height: 18rem;
  border: 0;
  filter: grayscale(0.18) sepia(0.12) contrast(1.05) brightness(0.86);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border-top: 1px solid rgba(232, 184, 140, 0.18);
  padding: 1rem;
  background: rgba(18, 16, 14, 0.88);
}

.map-placeholder span {
  color: var(--rose-gold);
  font-family: Cinzel, serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-actions a {
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.map-actions a:hover {
  color: var(--rose-gold);
}

.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.thankyou-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.thankyou-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.76);
  backdrop-filter: blur(12px);
}

.thankyou-dialog {
  position: relative;
  width: min(100%, 35rem);
  overflow: hidden;
  border: 1px solid rgba(232, 184, 140, 0.28);
  border-radius: 0.65rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  background:
    radial-gradient(circle at top, rgba(232, 184, 140, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(28, 24, 20, 0.98), rgba(12, 10, 8, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(232, 184, 140, 0.12);
  text-align: center;
  transform: translateY(1rem) scale(0.98);
  transition: transform 0.28s ease;
}

.thankyou-modal.open .thankyou-dialog {
  transform: translateY(0) scale(1);
}

.thankyou-dialog::before {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(232, 184, 140, 0.14);
  border-radius: 0.45rem;
  content: "";
  pointer-events: none;
}

.thankyou-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(232, 184, 140, 0.25);
  border-radius: 50%;
  color: var(--rose-gold);
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.thankyou-close:hover {
  background: rgba(232, 184, 140, 0.1);
  transform: rotate(90deg);
}

.thankyou-mark {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 1.3rem;
  place-items: center;
  border: 1px solid rgba(232, 184, 140, 0.45);
  border-radius: 50%;
  background: rgba(232, 184, 140, 0.1);
  color: var(--rose-gold);
  box-shadow: 0 0 42px rgba(232, 184, 140, 0.16);
}

.thankyou-mark svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.thankyou-dialog h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.thankyou-dialog p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.lux-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid rgba(232, 184, 140, 0.14);
  padding: 3rem clamp(1rem, 5vw, 5rem);
  background: rgba(9, 8, 7, 0.72);
}

.lux-footer img {
  width: 5rem;
  height: 6.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(232, 184, 140, 0.28);
  border-radius: 0.4rem;
  object-fit: cover;
}

.lux-footer p {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.socials a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials a {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-gold);
}

.socials svg,
.whatsapp-float svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.socials svg path:not(.icon-cutout),
.whatsapp-float svg path {
  fill: none;
}

.socials a[aria-label="Facebook"] svg path,
.socials a[aria-label="YouTube"] svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.socials svg .icon-cutout {
  fill: var(--charcoal);
  stroke: none;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none !important;
  border-top: 1px solid rgba(232, 184, 140, 0.1);
  padding-top: 1.4rem;
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border: 1px solid rgba(232, 184, 140, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, #1d8f56, #43d685);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}


.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes slowZoom {
  to {
    transform: scale(1.1);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .section-pad,
  .split-section {
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

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

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

  .service-detail,
  .split-section,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .lux-header {
    padding: 0.75rem 1rem;
  }

  .brand-mark img {
    width: 2.55rem;
    height: 3.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .lux-nav {
    position: fixed;
    top: 5.4rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.2rem;
    border: 1px solid rgba(232, 184, 140, 0.18);
    border-radius: 0.5rem;
    padding: 1rem;
    background: rgba(18, 16, 14, 0.96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .lux-nav a {
    min-height: 3rem;
    padding: 0.9rem;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .hero-section,
  .page-hero {
    min-height: 100svh;
    padding: 6.5rem 1rem 3.8rem;
  }

  .hero-glow {
    top: 7.4rem;
    left: 4%;
    right: 4%;
    height: 40vh;
  }

  .hero-logo {
    width: clamp(6.4rem, 30vw, 8rem);
    margin-bottom: 1rem;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .hero-content .hero-copy,
  .page-hero-content p:last-child {
    font-size: 1rem;
    line-height: 1.65;
  }

  .section-pad {
    padding-block: 4.2rem;
  }

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

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .values-grid,
  .process-grid,
  .service-menu,
  .lux-form {
    grid-template-columns: 1fr;
  }

  .service-detail > img {
    height: 28rem;
  }

  .lux-card img,
  .split-image img {
    height: 24rem;
  }

  .testimonial-track {
    min-height: 22rem;
  }

  .map-placeholder iframe {
    min-height: 15rem;
  }

  .whatsapp-float {
    display: grid;
  }
}

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

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

  .lux-card img {
    height: 21rem;
  }

  .gallery-grid {
    grid-auto-rows: 17.5rem;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 3.35rem;
    padding-inline: 1rem;
  }

  .lux-footer {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }

  .contact-lines {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .thankyou-actions {
    align-items: stretch;
    flex-direction: column;
  }

}
