:root {
  --cream-1: #fff9f0;
  --cream-2: #f5efe6;
  --cream-3: #fcf6ec;
  --gold-1: #ead3a4;
  --gold-2: #d1b578;
  --gold-3: #a0814a;
  --text-dark: #3e2723;
  --text-soft: rgba(62, 39, 35, 0.7);
  --border-gold: rgba(209, 181, 120, 0.28);
  --shadow-soft: 0 18px 36px rgba(100, 70, 30, 0.08);
  --radius-lg: 24px;
  --radius-xl: 28px;
}

body {
  margin:0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background:linear-gradient(180deg, var(--cream-1) 0%, var(--cream-2) 60%, #fffdf7 100%);
  color:var(--text-dark);
  line-height:1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
}

.home-section {
  min-height:auto;
  padding:96px clamp(24px, 6vw, 100px);
  display:flex;
  align-items:center;
  background:linear-gradient(180deg, var(--cream-3) 0%, var(--cream-2) 100%);
}

.home-section-inner {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  gap:24px;
}

.home-section h2 {
  margin:0;
  font-size:clamp(2rem, 3.6vw, 3.4rem);
  line-height:1.15;
}

.home-services-grid,
.home-testimonial-grid,
.contact-why-grid,
.contact-faq-grid,
.portfolio-grid-images,
.about-achievements-grid,
.about-team-grid {
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}

.home-service-card,
.home-testimonial-card,
.contact-why-card,
.contact-faq-card,
.about-team-card,
.about-achievements-grid > div {
  background:rgba(255, 255, 255, 0.9);
  border:1px solid rgba(180, 140, 60, 0.18);
  border-radius:24px;
  padding:24px;
  box-shadow:0 18px 40px rgba(100, 70, 30, 0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover,
.home-testimonial-card:hover,
.contact-why-card:hover,
.contact-faq-card:hover,
.about-team-card:hover {
  transform:translateY(-6px);
  box-shadow:0 26px 50px rgba(100, 70, 30, 0.12);
}

.home-service-card {
  position: relative;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 228, 0.92));
}

.home-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 236, 200, 0.9);
  border: 1px solid rgba(180, 140, 60, 0.25);
  box-shadow: 0 10px 20px rgba(100, 70, 30, 0.12);
}

.home-cta-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg, rgba(255, 240, 210, 0.9), rgba(255, 251, 242, 0.9));
  padding:40px;
  border-radius:28px;
  border:1px solid rgba(180, 140, 60, 0.2);
}

.home-cta-btn {
  text-decoration:none;
  background:linear-gradient(135deg, #f4c55f 0%, #d4a53a 50%, #b8852a 100%);
  color:#1a1209;
  font-weight:600;
  padding:16px 32px;
  border-radius:999px;
  box-shadow:0 12px 28px rgba(180, 130, 40, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f9dea1 0%, #dfb861 55%, #c59232 100%);
  box-shadow: 0 18px 34px rgba(180, 130, 40, 0.28);
}

.home-testimonial-card span {
  display:block;
  margin-top:16px;
  color:#8b6626;
  font-weight:600;
}

.home-cta {
  margin-top: 32px;
}

.home-highlights-sub {
  max-width: 720px;
  color: var(--text-soft);
}

.home-highlights-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-highlight-card {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-highlight-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.home-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(100, 70, 30, 0.16);
}

.home-gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-gallery-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(100, 70, 30, 0.16);
}

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

.portfolio-filter {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.portfolio-filter-btn {
  border:1px solid rgba(180, 140, 60, 0.25);
  background:rgba(255, 255, 255, 0.9);
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer;
  transition:background 0.2s ease;
}

.portfolio-filter-btn.is-active,
.portfolio-filter-btn:hover {
  background:#f4c55f;
}

.portfolio-image-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  border-radius: 22px;
  transition: transform 0.35s ease;
}

.portfolio-image-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(100, 70, 30, 0.16);
}

.portfolio-image-item:hover img {
  transform: scale(1.03);
}

.portfolio-view-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(180, 140, 60, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: #2a1b0b;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.portfolio-image-item:hover .portfolio-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-image-item:focus-within .portfolio-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-view-btn:focus-visible {
  outline: 2px solid rgba(212, 167, 88, 0.7);
  outline-offset: 2px;
}

.portfolio-image-item.is-hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.portfolio-intro-text {
  max-width:720px;
  color:var(--text-soft);
}

.contact-info-inner {
  display:grid;
  gap:28px;
}

.contact-info-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:20px;
  background:rgba(255, 255, 255, 0.85);
  border-radius:24px;
  padding:24px;
  border:1px solid rgba(180, 140, 60, 0.2);
}

.contact-info-grid h4 {
  margin:0 0 6px;
}

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

@media (max-width: 768px) {
  .top-nav {
    top: 12px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: center;
  }

  .top-nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-cta-inner {
    flex-direction:column;
    align-items:flex-start;
  }

  .home-section {
    padding:76px 20px;
  }

  .hero {
    padding-top:160px;
  }

  .hero-brand {
    position: absolute;
    top: 30px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 24px);
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.05rem, 2.2vw, 1.6rem);
    letter-spacing: 0.16em;
    color: #2b1a10;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(255, 245, 220, 0.55), 0 1px 2px rgba(0, 0, 0, 0.18);
    z-index: 3;
}
}

.bottom-right-logo {
  position: absolute;
  bottom: 40px;
  right: 40px;
  height: 60px;
  width: auto;
  opacity: 0.8;
  z-index: 10;
}

.shared-backdrop {
  position:absolute;
  inset:0;
  z-index:-2;
  overflow:hidden;
}

.shared-backdrop::after {
  content:"";
  position:absolute;
  inset:0;
  background:none;
  z-index:1;
}

.shared-backdrop-layer {
  position:absolute;
  inset:0;
  background-position:center top;
  background-size:cover;
  background-repeat:no-repeat;
  will-change:opacity;
}

body:not(.contact-page) .shared-backdrop-layer {
  background-position: 50% 42%;
  background-size: cover;
}

@media (min-width: 769px) {
  body:not(.contact-page) .shared-backdrop-layer {
    filter: blur(3px) saturate(0.96);
    transform: scale(1.02);
    transform-origin: center;
  }
}

.shared-backdrop-primary {
  background-image:url("images/home-hero-image1.jpg?v=6");
}

.shared-backdrop-secondary {
  opacity:0;
}

.shared-backdrop.is-transitioning .shared-backdrop-primary {
  animation:heroBlurOut 1.4s ease forwards;
}

.shared-backdrop.is-transitioning .shared-backdrop-secondary {
  animation:heroBlurIn 1.4s ease forwards;
}

.top-nav {
  position:fixed;
  top:20px;
  left:20px;
  right:20px;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.top-nav::before {
  content:none;
}

.hero-booking-wrap {
  position:relative;
  overflow:hidden;
}

.hero-booking-wrap::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:200px;
  background:none;
  pointer-events:none;
  z-index:0;
}

.nav-logo {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0;
  border-radius:0;
  background:transparent;
  border:none;
  text-decoration:none;
}

.logo-mark {
  height:40px;
  width:auto;
  display:block;
  background:transparent;
  max-width:none;
}

.logo-mark--section {
  height:40px;
  margin-bottom:12px;
}

.nav-logo img {
  height:40px;
  width:auto;
  display:block;
}

.top-nav-links {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.top-nav-links a {
  color:var(--text-dark);
  text-decoration:none;
  padding:10px 16px;
  border:1px solid rgba(180, 140, 60, 0.35);
  background:rgba(255, 255, 255, 0.82);
  border-radius:999px;
  box-shadow:0 12px 24px rgba(100, 70, 30, 0.12);
  transition:background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.top-nav-links a:hover {
  background:linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:var(--text-dark);
  transform:translateY(-1px);
}

.top-nav-links a.is-active {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #2b1a10;
  box-shadow: 0 14px 28px rgba(180, 130, 40, 0.24);
}

.hero {
  position:relative;
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 20px 80px;
  overflow:hidden;
  background:transparent;
  z-index:1;
}

body:not(.contact-page) .hero-booking-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--cream-3);
}

body:not(.contact-page) .hero-booking-wrap::before {
  display: none;
}

body:not(.contact-page) .hero-booking-wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(100px, 16vh, 170px);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,248,235,0.16) 45%,
    rgba(255,248,235,0.48) 75%,
    #F8F1E7 100%
  );
  pointer-events: none;
  z-index: 1;
}

body:not(.contact-page) .hero-booking-wrap {
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 82%,
    rgba(0,0,0,0.82) 92%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 82%,
    rgba(0,0,0,0.82) 92%,
    rgba(0,0,0,0) 100%
  );
}

.home-services.home-section {
  background: #F8F1E7;
}

body:not(.contact-page) .hero-booking-wrap .shared-backdrop {
  display: block;
}

.hero h1,
.hero button,
.hero p {
  position:relative;
  z-index:2;
}

.hero-title {
  max-width:900px;
  font-size:clamp(2rem, 4.1vw, 3.8rem);
  color:var(--text-dark);
  text-shadow:0 4px 20px rgba(255, 245, 220, 0.7);
  margin:0 0 20px;
  z-index: 2;
}

.hero-brand {
  position: absolute;
  top: 30px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
  display: block;
  white-space: nowrap;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  letter-spacing: 0.16em;
  color: var(--text-dark);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(255, 245, 220, 0.55), 0 1px 2px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.hero-cta {
  padding:14px 32px;
  border-radius:999px;
  border:1px solid rgba(176, 126, 38, 0.45);
  background:linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  color:var(--text-dark);
  font-weight:600;
  box-shadow:0 16px 30px rgba(180, 130, 40, 0.24);
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform:translateY(-1px);
  background:linear-gradient(135deg, #f9dea1 0%, #dfb861 60%, #c59232 100%);
  box-shadow:0 20px 34px rgba(180, 130, 40, 0.28);
}

button {
  font-family: inherit;
  padding:10px 20px;
  border:none;
  cursor:pointer;
  border-radius:999px;
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button:focus-visible {
  outline:2px solid rgba(212, 167, 88, 0.6);
  outline-offset:2px;
}

button:hover {
  transform:translateY(-1px);
}

.booking {
  position:relative;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:32px;
  margin-top:-120px;
  padding:220px 72px 80px;
  background:transparent;
  align-items:stretch;
  overflow:visible;
}

#booking {
  scroll-margin-top: 150px;
}

#booking-form {
  scroll-margin-top: 130px;
}
.booking > * {
  position:relative;
  z-index:1;
}

.booking .left,
.booking .right {
  position:relative;
  padding:36px;
  border-radius:28px;
  border:1px solid rgba(180, 140, 0, 0.22);
  background:linear-gradient(145deg, rgba(255, 252, 240, 0.97), rgba(250, 246, 234, 0.96));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(255, 200, 60, 0.1);
  transform:perspective(1200px) rotateX(var(--tilt-x, 3deg)) rotateY(var(--tilt-y, -3deg)) translateY(var(--float-y, 0px));
  transition:transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.booking .right {
  --tilt-y: 3deg;
}

.tilt-card::before {
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 215, 0, 0.1), transparent 28%);
  opacity:0;
  transition:opacity 220ms ease;
  pointer-events:none;
}

.tilt-card:hover {
  --float-y: -8px;
  border-color:rgba(180, 140, 0, 0.32);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.14),
    0 0 18px rgba(200, 160, 0, 0.06),
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(255, 180, 60, 0.12);
}

.tilt-card:hover::before {
  opacity:0.7;
}

.section-tag {
  margin:0 0 14px;
  color:rgba(176, 127, 40, 0.95);
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
}

.booking h2 {
  margin:0 0 16px;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.1;
  color:#1a1209;
}

.booking .left p:not(.section-tag) {
  margin:0 0 26px;
  color:rgba(30, 20, 5, 0.78);
  line-height:1.7;
}

.contact-points {
  display:grid;
  gap:14px;
}

.contact-points span {
  padding:14px 18px;
  border-radius:16px;
  background:rgba(255, 215, 0, 0.1);
  border:1px solid rgba(180, 140, 0, 0.22);
  color:#5c3d00;
  box-shadow:0 10px 24px rgba(0, 0, 0, 0.06);
}

body.contact-page .contact-points span {
  background: rgba(255, 250, 238, 0.72);
  border: 1px solid rgba(186, 141, 56, 0.3);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 28px rgba(125, 85, 28, 0.14);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(198, 170, 90, 0.26);
  box-shadow:
    0 18px 40px rgba(100, 70, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.event-picker {
  border-radius:14px;
  border:1px solid rgba(200, 165, 90, 0.35);
  background:rgba(255, 250, 240, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(100, 70, 30, 0.08);
}

.event-picker summary {
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:14px;
  background:rgba(255, 249, 236, 0.9);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.event-picker summary::-webkit-details-marker {
  display:none;
}

.event-picker summary:hover {
  background:rgba(255, 244, 226, 0.95);
  box-shadow:0 8px 18px rgba(100, 70, 30, 0.08);
}

.event-picker:focus-within {
  border-color: rgba(197, 145, 58, 0.6);
  box-shadow: 0 0 0 3px rgba(244, 197, 95, 0.18);
}

.event-picker-label {
  color:#3d2800;
  font-weight:600;
}

.event-picker-value {
  color:rgba(42, 27, 11, 0.7);
  font-size:0.95rem;
}

.event-picker[open] .event-picker-value {
  color:#a07a00;
}

.event-picker[open] {
  background:rgba(255, 252, 242, 1);
}

.event-picker:not([open]) .picker-actions {
  display:none;
}

.event-options {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  padding:0 18px 18px;
}

.event-options label {
  display:block;
}

.event-option {
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  text-align:left;
  min-height:48px;
  color:rgba(30, 20, 5, 0.88);
  padding:12px 0;
  border-top:1px solid rgba(180, 140, 0, 0.14);
  background:transparent;
  border-radius:0;
  box-shadow:none;
  font-size:1rem;
  cursor:pointer;
}

.event-option-input {
  all: revert;
  appearance: auto;
  -webkit-appearance: checkbox;
  width:18px !important;
  height:18px !important;
  min-height:18px !important;
  margin:0 !important;
  padding:0 !important;
  border:none !important;
  box-shadow:none !important;
  background:transparent !important;
  accent-color:#c9972f;
  cursor:pointer;
  flex:0 0 auto;
}

.event-option span {
  flex:1;
}

.event-option:hover {
  color:#7b560f;
  background:rgba(255, 242, 220, 0.6);
  transform:none;
}

.event-option.is-selected {
  color:#7b560f;
  background:rgba(255, 242, 220, 0.75);
}

.custom-event-input {
  margin:0 18px 12px;
}

.custom-budget-input {
  margin:0 18px 12px;
}

.picker-actions {
  display:flex;
  justify-content:flex-end;
  padding:0 18px 18px;
}

.picker-ok {
  padding:10px 20px;
  border-radius:999px;
  border:1px solid rgba(176, 126, 38, 0.45);
  background:linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  color:var(--text-dark);
  font-weight:600;
  box-shadow:0 10px 24px rgba(180, 130, 40, 0.18);
}

.picker-ok:hover {
  background:linear-gradient(135deg, #f9dea1 0%, #dfb861 60%, #c59232 100%);
  transform:translateY(-1px);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form .date-display,
.contact-form .custom-event-input,
.contact-form .custom-budget-input {
  width:100%;
  box-sizing:border-box;
  padding:16px 18px;
  border-radius:14px;
  border:1px solid rgba(186, 150, 70, 0.28);
  background:rgba(255, 253, 245, 0.98);
  color:#1a1209;
  outline:none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(100, 70, 30, 0.08);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.budget-picker {
  display:grid;
  gap:10px;
}

.budget-details {
  border-radius:14px;
  border:1px solid rgba(200, 165, 90, 0.35);
  background:rgba(255, 250, 240, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(100, 70, 30, 0.08);
}

.budget-details summary {
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:14px;
  background:rgba(255, 249, 236, 0.9);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

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

.budget-details summary:hover {
  background:rgba(255, 244, 226, 0.95);
  box-shadow:0 8px 18px rgba(100, 70, 30, 0.08);
}

.budget-details:focus-within {
  border-color: rgba(197, 145, 58, 0.6);
  box-shadow: 0 0 0 3px rgba(244, 197, 95, 0.18);
}

.budget-value {
  color:rgba(42, 27, 11, 0.7);
  font-size:0.95rem;
}

.budget-details[open] .budget-value {
  color:#a07a00;
}

.budget-details:not([open]) .picker-actions {
  display:none;
}

.budget-options {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  padding:0 18px 18px;
  border-radius: 0 0 14px 14px;
  background: #F5E6C8;
}

.budget-option {
  width:100%;
  text-align:left;
  min-height:48px;
  color:#3E2C23;
  padding:12px 0;
  border:1px solid #E0C79A;
  background:#F5E6C8;
  border-radius:0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size:1rem;
}

.budget-option:hover {
  color:#3E2C23;
  background:#EAD3A2;
  transform:none;
}

.budget-option.is-selected {
  color:#3E2C23;
  background:#EAD3A2;
}

.date-picker {
  position:relative;
  display:grid;
  gap:10px;
}

.date-display {
  cursor:pointer;
}

.date-picker-popup {
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  width:320px;
  max-width:calc(100vw - 48px);
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(180, 140, 0, 0.22);
  background:linear-gradient(160deg, rgba(255, 252, 240, 0.99), rgba(252, 246, 228, 0.99));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.14),
    0 0 26px rgba(200, 160, 0, 0.08),
    inset 1px 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter:blur(16px);
  z-index:20;
  transform:perspective(1200px) rotateX(4deg);
}

.date-picker-popup button {
  min-width:0;
  justify-self:auto;
  font-weight:600;
}

.date-picker-header,
.date-picker-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.date-picker-header {
  margin-bottom:14px;
}

.date-picker-title {
  color:#3d2800;
  font-weight:700;
  letter-spacing:0.03em;
}

.date-nav,
.date-footer-btn {
  min-width:auto;
  padding:7px 11px;
  border-radius:10px;
  background:#f3efe4;
  color:#2a1b0b;
  box-shadow:none;
  border:1px solid rgba(180, 140, 60, 0.2);
  font-weight:500;
}

.date-nav:hover,
.date-footer-btn:hover {
  background:#ece4d0;
  color:#2a1b0b;
  transform:none;
}

.date-nav:disabled {
  opacity:0.35;
  cursor:not-allowed;
}

.date-weekdays,
.date-grid {
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:8px;
}

.date-weekdays {
  margin-bottom:10px;
}

.date-weekdays span {
  text-align:center;
  color:rgba(30, 20, 5, 0.55);
  font-size:0.82rem;
  font-weight:600;
}

.date-day {
  aspect-ratio:1;
  min-width:0;
  padding:0;
  border:1px solid rgba(180, 140, 0, 0.12);
  border-radius:12px;
  background:rgba(255, 255, 255, 0.7);
  color:#1a1209;
  cursor:pointer;
  box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size:0.95rem;
  font-weight:500;
}

.date-day:hover {
  background:rgba(200, 160, 0, 0.14);
  transform:translateY(-1px);
}

.date-day.is-muted {
  color:rgba(30, 20, 5, 0.28);
}

.date-day.is-hidden {
  visibility:hidden;
  pointer-events:none;
  border:none;
  background:transparent;
  box-shadow:none;
}

.date-day.is-selected {
  background:#d6a93a;
  color:#1a1209;
  box-shadow:none;
}

.date-day.is-today {
  outline:1px solid rgba(180, 140, 0, 0.45);
}

.date-picker-footer {
  margin-top:14px;
}

.contact-form .date-picker .date-nav,
.contact-form .date-picker .date-footer-btn {
  min-width:auto;
  padding:8px 12px;
}

.contact-form .date-picker .date-day {
  min-width:0;
  padding:0;
}

.budget-label {
  color:#3d2800;
  font-weight:600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color:rgba(90, 60, 20, 0.5);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form select:-webkit-autofill {
  -webkit-text-fill-color:#1a1209;
  -webkit-box-shadow:0 0 0 1000px rgba(255, 255, 255, 0.85) inset;
  box-shadow:
    0 0 0 1000px rgba(255, 255, 255, 0.85) inset,
    0 10px 24px rgba(0, 0, 0, 0.06);
  transition:background-color 9999s ease-in-out 0s;
  caret-color:#1a1209;
  border-radius:14px;
}

.contact-form input:focus {
  border-color:rgba(180, 140, 0, 0.5);
  background:rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(200, 160, 0, 0.12),
    0 16px 30px rgba(0, 0, 0, 0.08);
}

.contact-form button {
  justify-self:start;
  min-width:140px;
  padding:14px 28px;
  font-weight:700;
  box-shadow:
    0 14px 30px rgba(200, 160, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-form-status {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f6d2f;
}

.gallery {
  position:relative;
  min-height:100vh;
  padding:120px 40px 110px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 208, 112, 0.04), transparent 22%),
    radial-gradient(circle at top left, rgba(204, 151, 54, 0.03), transparent 28%),
    linear-gradient(180deg, var(--cream-1) 0%, var(--cream-3) 32%, var(--cream-2) 100%);
  overflow:visible;
  isolation:isolate;
}

.gallery::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, rgba(180, 140, 0, 0.1), rgba(200, 160, 0, 0.7), rgba(180, 140, 0, 0.1));
  box-shadow:
    0 0 6px rgba(200, 160, 0, 0.14),
    0 0 14px rgba(200, 160, 0, 0.06);
  z-index:3;
  pointer-events:none;
}

.gallery::after {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(253, 246, 232, 0.24) 0%, transparent 14%, transparent 86%, rgba(253, 246, 232, 0.24) 100%),
    radial-gradient(circle at center, rgba(255, 205, 120, 0.02), transparent 36%);
  pointer-events:none;
  z-index:0;
}

.gallery-copy {
  position:relative;
  z-index:10;
  width:min(520px, calc(100% - 40px));
  margin:0;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:auto;
  pointer-events:none;
}

.gallery-copy h2 {
  margin:0 0 18px;
  font-size:clamp(2rem, 4.1vw, 3.8rem);
  line-height:1.12;
  color:#1a1209;
  text-shadow:0 2px 12px rgba(255, 240, 200, 0.6);
}

.gallery-intro {
  margin:0;
  color:var(--text-soft);
  line-height:1.75;
  font-size:1rem;
  letter-spacing:0.03em;
}

.gallery-scene {
  position:relative;
  height:auto;
  margin-top:-40px;
  perspective:1800px;
  transform-style:preserve-3d;
  display:grid;
  grid-template-columns:minmax(300px, 1.35fr) minmax(320px, 520px) minmax(300px, 1.35fr);
  align-items:start;
  gap:40px;
  min-height:1320px;
}

.gallery-glow {
  position:relative;
  pointer-events:none;
  position:absolute;
  inset:auto;
  border-radius:999px;
  filter:blur(22px);
  opacity:0.16;
  z-index:1;
}

.gallery-glow-left {
  top:24%;
  left:8%;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(255, 194, 87, 0.06), transparent 70%);
}

.gallery-glow-right {
  top:18%;
  right:10%;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(244, 178, 57, 0.05), transparent 72%);
}

.hanging-column {
  position:relative;
  height:auto;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  padding-top:108px;
  padding-bottom:84px;
}

.hanging-column-left {
  justify-self:start;
  width:min(280px, 100%);
  margin-left:6vw;
}

.hanging-column-right {
  justify-self:end;
  width:min(280px, 100%);
  margin-right:6vw;
}

.column-rope {
  position:absolute;
  left:50%;
  top:0;
  width:52px;
  height:calc(100% - 84px);
  overflow:hidden;
  transform:translateX(-50%);
  z-index:1;
  pointer-events:none;
}

.column-rope-path,
.featured-rope-path {
  fill:none;
  stroke:currentColor;
  color:#b08840;
  stroke-width:6;
  stroke-linecap:butt;
  filter:drop-shadow(0 0 6px rgba(180, 140, 0, 0.15));
}

.column-rope::before,
.featured-rope::before {
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:10px;
  height:100%;
  background:
    linear-gradient(90deg, rgba(220, 180, 100, 0.28), transparent 35%, rgba(160, 120, 40, 0.2) 72%, rgba(220, 180, 100, 0.18)),
    repeating-linear-gradient(
      180deg,
      rgba(180, 140, 60, 0.32) 0 10px,
      rgba(140, 100, 40, 0.22) 10px 20px
    );
  border-radius:999px;
  transform:translateX(-50%);
  opacity:0.6;
  pointer-events:none;
}

.chain-charm {
  position:absolute;
  left:50%;
  width:62px;
  height:62px;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 250, 230, 0.7), transparent 34%),
    linear-gradient(160deg, rgba(255, 248, 220, 0.98), rgba(230, 210, 160, 0.95));
  border:1px solid rgba(180, 140, 0, 0.32);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.12),
    0 0 18px rgba(200, 160, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transform:translateX(-50%);
  z-index:2;
  pointer-events:none;
}

.chain-charm::before {
  content:"";
  position:absolute;
  left:50%;
  top:-11px;
  width:12px;
  height:12px;
  border-radius:50%;
  border:2px solid rgba(160, 120, 40, 0.9);
  border-top-color:rgba(220, 180, 80, 0.9);
  background:#f0e0b0;
  transform:translateX(-50%);
}

.chain-charm::after {
  content:"";
  position:absolute;
  left:50%;
  top:-20px;
  width:3px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(220, 180, 80, 0.7), rgba(160, 120, 40, 0.9));
  transform:translateX(-50%);
  opacity:0.9;
}

.column-charm {
  top:auto;
  bottom:0;
}

.featured-charm {
  position:relative;
  left:auto;
  top:auto;
  transform:none;
  margin:14px auto 0;
  display:flex;
}

.eye {
  position:relative;
  width:16px;
  height:22px;
  border-radius:50%;
  background:radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.99), rgba(235, 228, 220, 0.98));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 3px 8px rgba(0, 0, 0, 0.18);
  overflow:hidden;
}

.pupil {
  position:absolute;
  left:50%;
  top:50%;
  width:7px;
  height:7px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, rgba(255, 238, 218, 0.9), rgba(17, 12, 10, 0.98) 58%);
  transform:translate(-50%, -50%);
  will-change:transform;
}

.column-photo {
  --card-width: 205px;
  position:absolute;
  left:50%;
  width:var(--card-width);
  z-index:2;
  position:relative;
  left:auto;
  width:var(--card-width);
  transform-origin:center top;
}

.column-photo + .column-photo {
  margin-top:0;
}

.featured-photo {
  transform-origin:center top;
}

.column-photo-wrap,
.featured-photo-wrap {
  --hook-size: 22px;
  --photo-shift-x: 0px;
  --photo-shift-y: 0px;
  --photo-rotate: 0deg;
  --photo-scale: 1;
  position:relative;
  transform-origin:50% 0;
  transform:
    translate3d(var(--photo-shift-x), var(--photo-shift-y), 0)
    rotateZ(var(--photo-rotate))
    scale(var(--photo-scale));
  will-change:transform;
  transition:none;
}

.column-hook,
.featured-hook {
  position:absolute;
  left:50%;
  top:-12px;
  width:22px;
  height:22px;
  border-radius:50%;
  border:3px solid rgba(160, 120, 40, 0.9);
  border-top-color:rgba(220, 180, 80, 0.9);
  background:radial-gradient(circle at 35% 35%, rgba(255, 240, 180, 0.5), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(180, 140, 0, 0.12);
  transform:translateX(-50%);
  z-index:1;
  pointer-events:none;
}

.column-hook::before,
.featured-hook::before {
  content:"";
  position:absolute;
  left:50%;
  top:-8px;
  width:10px;
  height:10px;
  border-radius:50%;
  border:2px solid rgba(160, 120, 40, 0.9);
  border-top-color:rgba(220, 180, 80, 0.85);
  background:#f0dda0;
  transform:translateX(-50%);
}

.photo-card {
  position:relative;
  padding:14px;
  margin-top:12px;
  z-index:2;
  border-radius:30px;
  background:
    linear-gradient(145deg, rgba(154, 102, 39, 0.97), rgba(103, 64, 24, 0.99));
  border:1px solid rgba(96, 57, 18, 0.88);
  box-shadow:
    0 22px 42px rgba(56, 31, 9, 0.18),
    0 0 10px rgba(135, 86, 34, 0.03),
    inset 0 1px 0 rgba(255, 225, 175, 0.3),
    inset 0 -18px 30px rgba(46, 25, 7, 0.24);
  overflow:hidden;
  isolation:isolate;
}

.photo-card::before {
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:
    linear-gradient(135deg, rgba(255, 225, 175, 0.08), transparent 22%, transparent 72%, rgba(74, 42, 10, 0.1)),
    repeating-linear-gradient(
      115deg,
      rgba(122, 74, 28, 0.12) 0 10px,
      rgba(158, 103, 42, 0.08) 10px 20px,
      rgba(98, 60, 22, 0.12) 20px 30px
    );
  pointer-events:none;
  mix-blend-mode:soft-light;
  z-index:0;
}

.photo-card::after {
  content:"";
  position:absolute;
  inset:8px;
  border-radius:24px;
  border:2px solid rgba(227, 186, 114, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(89, 53, 21, 0.34),
    inset 0 0 4px rgba(255, 215, 145, 0.015);
  pointer-events:none;
  z-index:2;
}

.photo-image {
  position:relative;
  aspect-ratio:0.82;
  border-radius:22px;
  background-color:#e8e0cc;
  background-size:cover;
  background-position:center;
  box-shadow:
    0 16px 26px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow:hidden;
  z-index:1;
  isolation:isolate;
}

.photo-image::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.002), rgba(0, 0, 0, 0.015)),
    linear-gradient(120deg, rgba(255, 240, 180, 0.005), transparent 22%, transparent 80%, rgba(255, 210, 100, 0.003));
  z-index:1;
}

.depth-back {
  filter:none;
}

.depth-back .photo-card {
  transform:scale(0.88);
  transform-origin:top center;
}

.depth-mid .photo-card {
  transform:scale(0.96);
  transform-origin:top center;
}

.depth-front .photo-card {
  transform:scale(1.03);
  transform-origin:top center;
}

.depth-back .photo-image {
  filter:none;
}

.depth-front .photo-image {
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.12),
    0 0 12px rgba(200, 160, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.gallery-center {
  position:relative;
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:54px;
  padding-top:0;
}

.featured-photo {
  position:relative;
  width:min(360px, 100%);
  z-index:4;
  margin-top:-26px;
  transform:none;
}

.featured-rope {
  position:absolute;
  left:50%;
  top:-40px;
  width:58px;
  height:120px;
  overflow:hidden;
  transform:translateX(-50%);
  z-index:1;
  pointer-events:none;
}

.featured-card {
  margin-top:80px;
}

.featured-photo-wrap {
  --hook-size: 24px;
}

.column-photo.is-hovered .photo-card,
.featured-photo.is-hovered .photo-card {
  box-shadow:
    0 28px 46px rgba(0, 0, 0, 0.14),
    0 0 10px rgba(200, 160, 0, 0.03),
    inset 0 1px 0 rgba(255, 230, 150, 0.08),
    inset 0 -18px 24px rgba(0, 0, 0, 0.05);
}

.gallery-scene--pile {
  display:block;
  min-height:auto;
  margin-top:0;
  perspective:none;
}

.gallery-scene--pile .gallery-copy {
  margin:140px auto 0;
  width:min(620px, 100%);
}

.gallery-scene--pile .gallery-copy h2 {
  max-width:640px;
}

.photo-pile {
  position:relative;
  z-index:4;
  width:min(1440px, 96vw);
  height:clamp(760px, 72vw, 1040px);
  margin:0 auto 28px;
  overflow:visible;
}

.photo-pile::before {
  content:"";
  position:absolute;
  left:50%;
  bottom:4%;
  width:min(720px, 82%);
  height:120px;
  border-radius:50%;
  background:radial-gradient(ellipse, rgba(116, 74, 24, 0.18), rgba(116, 74, 24, 0) 68%);
  transform:translateX(-50%);
  pointer-events:none;
  z-index:0;
}

.pile-photo {
  --drag-x: 0px;
  --drag-y: 0px;
  --lift: 1;
  position:absolute;
  left:var(--x);
  top:var(--y);
  z-index:var(--z);
  width:clamp(150px, 15vw, 220px);
  aspect-ratio:0.82;
  padding:10px 10px 28px;
  border-radius:10px;
  background:linear-gradient(180deg, #fffdf7, #f4ead8);
  border:1px solid rgba(160, 120, 58, 0.22);
  box-shadow:
    0 24px 40px rgba(67, 42, 16, 0.18),
    0 4px 10px rgba(67, 42, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  cursor:grab;
  touch-action:none;
  user-select:none;
  transform:translate3d(var(--drag-x), var(--drag-y), 0) rotate(var(--r)) scale(var(--lift));
  transform-origin:center;
  transition:box-shadow 160ms ease;
  will-change:transform;
  backface-visibility:hidden;
  contain:paint;
}

.pile-photo::after {
  content:"";
  position:absolute;
  inset:10px 10px 28px;
  border-radius:7px;
  box-shadow:inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  pointer-events:none;
}

.pile-photo img {
  width:100%;
  height:100%;
  display:block;
  border-radius:7px;
  object-fit:cover;
  pointer-events:none;
  -webkit-user-drag:none;
}

.pile-photo-large {
  width:clamp(220px, 24vw, 360px);
}

.pile-photo-wide {
  width:clamp(190px, 22vw, 310px);
  aspect-ratio:1.2;
}

.pile-photo:hover,
.pile-photo:focus-visible {
  --lift: 1.035;
  box-shadow:
    0 30px 52px rgba(67, 42, 16, 0.24),
    0 8px 16px rgba(67, 42, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  outline:none;
}

.pile-photo.is-dragging {
  --lift: 1.055;
  cursor:grabbing;
  transition:box-shadow 120ms ease;
  box-shadow:
    0 36px 62px rgba(67, 42, 16, 0.28),
    0 12px 24px rgba(67, 42, 16, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (min-width: 769px) {
  .pile-photo:nth-child(1) { --x: 36% !important; --y: 5% !important; }
  .pile-photo:nth-child(2) { --x: 8% !important; --y: 8% !important; }
  .pile-photo:nth-child(3) { --x: 73% !important; --y: 7% !important; }
  .pile-photo:nth-child(4) { --x: 21% !important; --y: 19% !important; }
  .pile-photo:nth-child(5) { --x: 56% !important; --y: 18% !important; }
  .pile-photo:nth-child(6) { --x: 1% !important; --y: 28% !important; }
  .pile-photo:nth-child(7) { --x: 80% !important; --y: 24% !important; }
  .pile-photo:nth-child(8) { --x: 40% !important; --y: 31% !important; }
  .pile-photo:nth-child(9) { --x: 15% !important; --y: 43% !important; }
  .pile-photo:nth-child(10) { --x: 63% !important; --y: 39% !important; }
  .pile-photo:nth-child(11) { --x: 34% !important; --y: 52% !important; }
  .pile-photo:nth-child(12) { --x: 77% !important; --y: 50% !important; }
  .pile-photo:nth-child(13) { --x: 0% !important; --y: 58% !important; }
  .pile-photo:nth-child(14) { --x: 52% !important; --y: 62% !important; }
  .pile-photo:nth-child(15) { --x: 27% !important; --y: 3% !important; }
  .pile-photo:nth-child(16) { --x: 48% !important; --y: 3% !important; }
  .pile-photo:nth-child(17) { --x: 84% !important; --y: 11% !important; }
  .pile-photo:nth-child(18) { --x: -2% !important; --y: 14% !important; }
  .pile-photo:nth-child(19) { --x: 46% !important; --y: 15% !important; }
  .pile-photo:nth-child(20) { --x: 68% !important; --y: 17% !important; }
  .pile-photo:nth-child(21) { --x: 13% !important; --y: 31% !important; }
  .pile-photo:nth-child(22) { --x: 30% !important; --y: 36% !important; }
  .pile-photo:nth-child(23) { --x: 86% !important; --y: 38% !important; }
  .pile-photo:nth-child(24) { --x: 49% !important; --y: 44% !important; }
  .pile-photo:nth-child(25) { --x: 7% !important; --y: 49% !important; }
  .pile-photo:nth-child(26) { --x: 28% !important; --y: 61% !important; }
  .pile-photo:nth-child(27) { --x: 64% !important; --y: 64% !important; }
  .pile-photo:nth-child(28) { --x: 83% !important; --y: 62% !important; }
  .pile-photo:nth-child(29) { --x: 10% !important; --y: 71% !important; }
  .pile-photo:nth-child(30) { --x: 43% !important; --y: 76% !important; }
  .pile-photo:nth-child(31) { --x: 66% !important; --y: 79% !important; }
  .pile-photo:nth-child(32) { --x: 24% !important; --y: 84% !important; }
  .pile-photo:nth-child(33) { --x: 54% !important; --y: 88% !important; }
}

.stories-gallery {
  position:relative;
  padding:120px 40px 100px;
  background:
    radial-gradient(circle at top center, rgba(255, 209, 120, 0.08), transparent 26%),
    linear-gradient(180deg, var(--cream-1) 0%, var(--cream-3) 20%, var(--cream-2) 100%);
}

.stories-gallery::before {
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(86vw, 1120px);
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(180, 140, 0, 0.4), transparent);
  transform:translateX(-50%);
}

.stories-gallery-copy {
  position:relative;
  z-index:1;
  width:min(680px, 100%);
  margin:0 auto 42px;
  text-align:center;
}

.stories-gallery-copy h2 {
  margin:0 0 14px;
  font-size:clamp(2rem, 3.8vw, 3.4rem);
  line-height:1.08;
  color:#1a1209;
}

.stories-gallery-copy p:not(.section-tag) {
  margin:0;
  color:var(--text-soft);
  line-height:1.75;
}

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

.story-card {
  position:relative;
  padding:0;
  border:none;
  background:transparent;
  text-align:left;
}

.story-card-frame {
  position:relative;
  display:block;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(180, 140, 0, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 252, 240, 0.96), rgba(250, 244, 224, 0.96));
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 240, 180, 0.1) inset;
  transform:translateY(0) scale(1);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.story-card-frame::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.1)),
    linear-gradient(135deg, rgba(255, 230, 160, 0.2), transparent 30%, transparent 72%, rgba(255, 210, 100, 0.1));
  z-index:1;
  pointer-events:none;
}

.story-card img {
  display:block;
  width:100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  transform:scale(1);
  transition:transform 520ms ease;
}

.story-card:hover .story-card-frame,
.story-card:focus-visible .story-card-frame {
  transform:translateY(-4px) scale(1.01);
  border-color:rgba(180, 140, 0, 0.38);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.14),
    0 0 26px rgba(180, 140, 0, 0.1),
    0 0 0 1px rgba(255, 230, 150, 0.12) inset;
}

.story-card:hover img,
.story-card:focus-visible img {
  transform:scale(1.04);
}

.story-card:focus-visible {
  outline:none;
}

.reveal-card {
  opacity:0;
  transform:translateY(28px);
}

.is-hidden-card {
  display:none;
}

.reveal-card.is-visible {
  animation:galleryReveal 320ms ease forwards;
  animation-delay:var(--stagger, 0ms);
}

.stories-gallery-actions {
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.load-more-btn {
  min-width:210px;
  padding:14px 28px;
  border-radius:999px;
  border:1px solid rgba(180, 140, 0, 0.32);
  background:linear-gradient(145deg, rgba(255, 252, 240, 0.98), rgba(250, 244, 224, 0.98));
  color:#3d2800;
  font-weight:700;
  letter-spacing:0.03em;
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(180, 140, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 220ms ease,
    background 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease;
}

.load-more-btn:hover {
  transform:translateY(-2px);
  background:linear-gradient(145deg, rgba(255, 248, 220, 0.99), rgba(248, 240, 210, 0.99));
}

.load-more-btn.is-loading {
  opacity:0.72;
  cursor:progress;
}

.load-more-btn.is-finished {
  opacity:0.84;
}

.load-more-btn[hidden] {
  display:none;
}

.lightbox {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  padding:30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox[hidden] {
  display:none;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  opacity: 1;
}

.lightbox-backdrop {
  position:absolute;
  inset:0;
  background:rgba(12, 8, 4, 0.9);
  backdrop-filter: none;
}

.lightbox-dialog {
  position:relative;
  z-index:1;
  width:min(96vw, 1320px);
  max-height:94vh;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(180, 140, 0, 0.28);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 34px rgba(180, 140, 0, 0.08);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox-dialog {
  transform: scale(1);
}

.lightbox-image {
  display:block;
  width:100%;
  height:auto;
  max-height:94vh;
  object-fit:contain;
  background:#f0e8d4;
}

.lightbox-close {
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
  width:48px;
  height:48px;
  padding:0;
  border-radius:50%;
  background:rgba(255, 250, 235, 0.92);
  color:#3d2800;
  border:1px solid rgba(180, 140, 0, 0.28);
  box-shadow:0 14px 24px rgba(0, 0, 0, 0.14);
  font-size:1.6rem;
  line-height:1;
}

.lightbox-nav {
  position:absolute;
  top:50%;
  z-index:2;
  width:54px;
  height:54px;
  padding:0;
  border-radius:50%;
  border:1px solid rgba(180, 140, 0, 0.28);
  background:rgba(255, 250, 235, 0.92);
  color:#3d2800;
  box-shadow:0 14px 24px rgba(0, 0, 0, 0.14);
  font-size:1.7rem;
  transform:translateY(-50%);
}

.lightbox-prev {
  left:24px;
}

.lightbox-next {
  right:24px;
}

@keyframes galleryReveal {
  from {
    opacity:0;
    transform:translateY(28px) scale(0.985);
  }
  to {
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.placeholder {
  height:300px;
  border-radius:24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)),
    url("images/image2.png.png") center/cover no-repeat;
}

@keyframes heroBlurIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@keyframes heroBlurOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

html {
  scroll-behavior:smooth;
}

@media (max-width: 768px) {
  .top-nav {
    top:16px;
    right:16px;
    left:16px;
    gap:8px;
  }

  .top-nav a {
    padding:8px 12px;
    font-size:14px;
  }

  .booking {
    grid-template-columns:1fr;
    margin-top:-70px;
    padding:120px 24px 24px;
  }

  .booking .left,
  .booking .right {
    transform:none;
    padding:24px;
  }

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

  .date-picker-popup {
    width:100%;
    left:0;
    right:0;
  }

  .gallery {
    min-height:auto;
    padding:90px 20px 60px;
  }

  .hero {
    height:auto;
    min-height:52svh;
    justify-content:center;
    padding:96px 20px 24px;
  }

  body:not(.contact-page) .hero-booking-wrap {
    -webkit-mask-image:none;
    mask-image:none;
  }

  body:not(.contact-page) .hero-booking-wrap::after {
    height:72px;
    background:linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 248, 235, 0.3) 58%,
      #f8f1e7 100%
    );
  }

  .stories-gallery {
    padding:90px 20px 70px;
  }

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

  .gallery-copy {
    position:relative;
    top:auto;
    left:auto;
    margin:0 auto 36px;
    transform:none;
  }

  .gallery-scene {
    display:flex;
    flex-direction:column;
    gap:28px;
    margin-top:0;
    height:auto;
    perspective:none;
  }

  .gallery-scene--pile {
    display:block;
  }

  .photo-pile {
    width:min(100%, 430px);
    height:clamp(1320px, 360vw, 1580px);
    margin-bottom:18px;
  }

  .pile-photo {
    width:clamp(98px, 30vw, 128px);
    padding:6px 6px 18px;
    box-shadow:
      0 14px 24px rgba(67, 42, 16, 0.16),
      0 3px 8px rgba(67, 42, 16, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .pile-photo-large {
    width:clamp(136px, 42vw, 168px);
  }

  .pile-photo-wide {
    width:clamp(134px, 41vw, 166px);
  }

  .gallery-scene--pile .gallery-copy {
    margin-top:82px;
  }

  .pile-photo:nth-child(1) { --x: 22% !important; --y: 1% !important; --r: -4deg !important; }
  .pile-photo:nth-child(2) { --x: 1% !important; --y: 5% !important; --r: 9deg !important; }
  .pile-photo:nth-child(3) { --x: 58% !important; --y: 5% !important; --r: -8deg !important; }
  .pile-photo:nth-child(4) { --x: 31% !important; --y: 9% !important; --r: -12deg !important; }
  .pile-photo:nth-child(5) { --x: 7% !important; --y: 13% !important; --r: 8deg !important; }
  .pile-photo:nth-child(6) { --x: 53% !important; --y: 14% !important; --r: -5deg !important; }
  .pile-photo:nth-child(7) { --x: 22% !important; --y: 18% !important; --r: 11deg !important; }
  .pile-photo:nth-child(8) { --x: 64% !important; --y: 20% !important; --r: -7deg !important; }
  .pile-photo:nth-child(9) { --x: 0% !important; --y: 24% !important; --r: -10deg !important; }
  .pile-photo:nth-child(10) { --x: 39% !important; --y: 25% !important; --r: 7deg !important; }
  .pile-photo:nth-child(11) { --x: 15% !important; --y: 30% !important; --r: -3deg !important; }
  .pile-photo:nth-child(12) { --x: 58% !important; --y: 31% !important; --r: 13deg !important; }
  .pile-photo:nth-child(13) { --x: 3% !important; --y: 36% !important; --r: -11deg !important; }
  .pile-photo:nth-child(14) { --x: 43% !important; --y: 37% !important; --r: 8deg !important; }
  .pile-photo:nth-child(15) { --x: 69% !important; --y: 40% !important; --r: -4deg !important; }
  .pile-photo:nth-child(16) { --x: 20% !important; --y: 43% !important; --r: 12deg !important; }
  .pile-photo:nth-child(17) { --x: 55% !important; --y: 46% !important; --r: -9deg !important; }
  .pile-photo:nth-child(18) { --x: 0% !important; --y: 49% !important; --r: 5deg !important; }
  .pile-photo:nth-child(19) { --x: 34% !important; --y: 51% !important; --r: -5deg !important; }
  .pile-photo:nth-child(20) { --x: 66% !important; --y: 53% !important; --r: 8deg !important; }
  .pile-photo:nth-child(21) { --x: 9% !important; --y: 57% !important; --r: -8deg !important; }
  .pile-photo:nth-child(22) { --x: 44% !important; --y: 59% !important; --r: 6deg !important; }
  .pile-photo:nth-child(23) { --x: 68% !important; --y: 63% !important; --r: -5deg !important; }
  .pile-photo:nth-child(24) { --x: 18% !important; --y: 66% !important; --r: 11deg !important; }
  .pile-photo:nth-child(25) { --x: 52% !important; --y: 68% !important; --r: -10deg !important; }
  .pile-photo:nth-child(26) { --x: 2% !important; --y: 72% !important; --r: 6deg !important; }
  .pile-photo:nth-child(27) { --x: 36% !important; --y: 74% !important; --r: -7deg !important; }
  .pile-photo:nth-child(28) { --x: 65% !important; --y: 76% !important; --r: 9deg !important; }
  .pile-photo:nth-child(29) { --x: 13% !important; --y: 81% !important; --r: -4deg !important; }
  .pile-photo:nth-child(30) { --x: 49% !important; --y: 82% !important; --r: 8deg !important; }
  .pile-photo:nth-child(31) { --x: 0% !important; --y: 87% !important; --r: -9deg !important; }
  .pile-photo:nth-child(32) { --x: 34% !important; --y: 89% !important; --r: 5deg !important; }
  .pile-photo:nth-child(33) { --x: 64% !important; --y: 91% !important; --r: -6deg !important; }

  .gallery-glow {
    display:none;
  }

  .hanging-column,
  .featured-photo {
    position:relative;
    margin:0 auto;
    width:min(100%, 320px);
    min-height:unset;
  }

  .hanging-column {
    height:auto;
    gap:18px;
    padding-top:108px;
    padding-bottom:34px;
  }

  .photo-card,
  .depth-back .photo-card,
  .depth-mid .photo-card,
  .depth-front .photo-card {
    transform:none;
  }

  .depth-back {
    filter:none;
  }

  .photo-card {
    margin-top:calc(108px + (var(--hook-size) / 2));
  }

  .column-photo-lower {
    display:none;
  }

  .column-rope {
    height:calc(100% - 34px);
  }

  .column-charm {
    bottom:8px;
  }
}

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

  .lightbox {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
    padding:18px;
  }

  .lightbox-nav {
    width:46px;
    height:46px;
  }

  .lightbox-prev {
    left:12px;
  }

  .lightbox-next {
    right:12px;
  }
}

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

/* ═══════════════════════════════════════════════
   ABOUT PAGE — DARK LUXURY THEME
═══════════════════════════════════════════════ */

.about-page {
  font-family:'Poppins', sans-serif;
  background:#0f0b06;
  color:#f0e8d8;
  overflow-x:hidden;
}

/* ── Shared eyebrow label ── */
.about-page .about-eyebrow {
  font-family:'Poppins', sans-serif;
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#d4a53a;
  margin:0 0 12px;
}

/* ── Scroll reveal ── */
.about-reveal {
  opacity:0;
  transform:translateY(40px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.about-reveal.is-visible {
  opacity:1;
  transform:translateY(0);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.about-hero {
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
}

.about-hero-bg {
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,165,58,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(180,100,20,0.14) 0%, transparent 60%),
    linear-gradient(170deg, #0f0b06 0%, #1a1208 40%, #0c0906 100%);
}

/* Particles / bokeh */
.about-particles span {
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle, rgba(244,197,95,0.55) 0%, transparent 70%);
  animation:floatParticle linear infinite;
  pointer-events:none;
}
.about-particles span:nth-child(1)  { width:6px;  height:6px;  left:12%;  animation-duration:9s;  animation-delay:0s;    bottom:-10px; }
.about-particles span:nth-child(2)  { width:4px;  height:4px;  left:28%;  animation-duration:12s; animation-delay:-2s;   bottom:-10px; }
.about-particles span:nth-child(3)  { width:8px;  height:8px;  left:45%;  animation-duration:10s; animation-delay:-4s;   bottom:-10px; }
.about-particles span:nth-child(4)  { width:5px;  height:5px;  left:60%;  animation-duration:14s; animation-delay:-1s;   bottom:-10px; }
.about-particles span:nth-child(5)  { width:7px;  height:7px;  left:75%;  animation-duration:11s; animation-delay:-6s;   bottom:-10px; }
.about-particles span:nth-child(6)  { width:4px;  height:4px;  left:8%;   animation-duration:13s; animation-delay:-3s;   bottom:-10px; }
.about-particles span:nth-child(7)  { width:9px;  height:9px;  left:38%;  animation-duration:8s;  animation-delay:-5s;   bottom:-10px; }
.about-particles span:nth-child(8)  { width:5px;  height:5px;  left:55%;  animation-duration:15s; animation-delay:-7s;   bottom:-10px; }
.about-particles span:nth-child(9)  { width:6px;  height:6px;  left:82%;  animation-duration:10s; animation-delay:-2.5s; bottom:-10px; }
.about-particles span:nth-child(10) { width:3px;  height:3px;  left:20%;  animation-duration:12s; animation-delay:-8s;   bottom:-10px; }
.about-particles span:nth-child(11) { width:7px;  height:7px;  left:90%;  animation-duration:9s;  animation-delay:-1.5s; bottom:-10px; }
.about-particles span:nth-child(12) { width:4px;  height:4px;  left:5%;   animation-duration:11s; animation-delay:-4.5s; bottom:-10px; }
.about-particles span:nth-child(13) { width:10px; height:10px; left:68%;  animation-duration:16s; animation-delay:-9s;   bottom:-10px; }
.about-particles span:nth-child(14) { width:5px;  height:5px;  left:33%;  animation-duration:13s; animation-delay:-3.5s; bottom:-10px; }
.about-particles span:nth-child(15) { width:6px;  height:6px;  left:50%;  animation-duration:10s; animation-delay:-6.5s; bottom:-10px; }

@keyframes floatParticle {
  0%   { transform:translateY(0) scale(1);   opacity:0; }
  10%  { opacity:0.8; }
  90%  { opacity:0.4; }
  100% { transform:translateY(-100vh) scale(0.6); opacity:0; }
}

.about-hero-content {
  position:relative;
  z-index:2;
  padding:32px 24px;
  max-width:780px;
}

.about-headline {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.4rem, 6vw, 5rem);
  font-weight:700;
  line-height:1.18;
  color:#f8f0e0;
  margin:0 0 20px;
  text-shadow:0 0 60px rgba(212,165,58,0.3);
}

.about-subline {
  font-size:clamp(0.95rem, 2vw, 1.15rem);
  font-weight:300;
  color:rgba(240,232,216,0.72);
  line-height:1.7;
  margin:0;
}

.about-scroll-hint {
  position:absolute;
  bottom:36px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.about-scroll-hint span {
  display:block;
  width:1px;
  height:52px;
  background:linear-gradient(to bottom, rgba(212,165,58,0.7), transparent);
  animation:scrollHintPulse 2s ease-in-out infinite;
}
@keyframes scrollHintPulse {
  0%, 100% { opacity:0.3; transform:scaleY(1); }
  50%  { opacity:1;   transform:scaleY(0.7); }
}

/* ═══════════════════════════════════════════════
   PROFILE SECTION
═══════════════════════════════════════════════ */
.about-profile {
  display:flex;
  align-items:center;
  gap:clamp(32px, 6vw, 80px);
  padding:clamp(60px, 10vh, 120px) clamp(24px, 8vw, 120px);
  background:linear-gradient(135deg, #120e08 0%, #1e1609 60%, #120e08 100%);
  border-top:1px solid rgba(212,165,58,0.12);
  border-bottom:1px solid rgba(212,165,58,0.12);
}

.about-profile-img-wrap {
  position:relative;
  flex-shrink:0;
  width:clamp(180px, 22vw, 280px);
  height:clamp(180px, 22vw, 280px);
}

.about-profile-img {
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  position:relative;
  z-index:1;
  border:3px solid rgba(212,165,58,0.5);
}

.about-profile-glow {
  position:absolute;
  inset:-16px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,165,58,0.35) 0%, transparent 70%);
  animation:profileGlow 3s ease-in-out infinite;
  z-index:0;
}
@keyframes profileGlow {
  0%, 100% { opacity:0.6; transform:scale(1); }
  50% { opacity:1; transform:scale(1.06); }
}

.about-profile-name {
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem, 4vw, 3.2rem);
  font-weight:700;
  color:#f4c55f;
  margin:0 0 6px;
  line-height:1.15;
}

.about-profile-role {
  font-size:0.88rem;
  font-weight:500;
  color:rgba(212,165,58,0.8);
  letter-spacing:0.06em;
  margin:0 0 20px;
}

.about-profile-bio {
  font-size:clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight:300;
  color:rgba(240,232,216,0.78);
  line-height:1.8;
  max-width:520px;
  margin:0;
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.about-stats {
  display:flex;
  justify-content:center;
  gap:clamp(16px, 4vw, 48px);
  padding:clamp(60px, 9vh, 100px) clamp(24px, 6vw, 80px);
  background:#0f0b06;
  flex-wrap:wrap;
}

.about-stat-card {
  flex:1;
  min-width:160px;
  max-width:240px;
  background:rgba(255,248,220,0.04);
  border:1px solid rgba(212,165,58,0.2);
  border-radius:20px;
  padding:clamp(24px, 4vh, 40px) 24px;
  text-align:center;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor:default;
}
.about-stat-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(212,165,58,0.15);
  border-color:rgba(212,165,58,0.5);
}

.about-stat-num-wrap {
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:2px;
  margin-bottom:8px;
}

.about-stat-num {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.4rem, 5vw, 3.8rem);
  font-weight:700;
  color:#f4c55f;
  line-height:1;
}

.about-stat-plus {
  font-family:'Playfair Display', serif;
  font-size:clamp(1.4rem, 3vw, 2rem);
  color:#d4a53a;
  font-weight:700;
}

.about-stat-label {
  font-size:0.82rem;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(240,232,216,0.55);
  margin:0;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.about-contact {
  padding:clamp(60px, 9vh, 100px) clamp(24px, 8vw, 120px);
  background:linear-gradient(180deg, #120e08 0%, #0f0b06 100%);
  text-align:center;
  border-top:1px solid rgba(212,165,58,0.1);
}

.about-section-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(1.8rem, 4vw, 3rem);
  font-weight:600;
  color:#f8f0e0;
  margin:0 0 48px;
  line-height:1.2;
}

.about-contact-cards {
  display:flex;
  justify-content:center;
  gap:clamp(16px, 3vw, 32px);
  flex-wrap:wrap;
}

.about-contact-card {
  flex:1;
  min-width:200px;
  max-width:280px;
  background:rgba(255,248,220,0.04);
  border:1px solid rgba(212,165,58,0.18);
  border-radius:20px;
  padding:clamp(28px, 4vh, 44px) 24px;
  text-align:center;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor:pointer;
}
.about-contact-card:hover {
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(212,165,58,0.2), 0 0 0 1px rgba(212,165,58,0.35);
  border-color:rgba(212,165,58,0.45);
}

.about-contact-icon {
  font-size:2rem;
  display:block;
  margin-bottom:12px;
  filter:drop-shadow(0 0 8px rgba(212,165,58,0.5));
}

.about-contact-label {
  font-size:0.72rem;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(212,165,58,0.7);
  margin:0 0 6px;
}

.about-contact-val {
  font-size:0.98rem;
  font-weight:400;
  color:rgba(240,232,216,0.88);
  margin:0;
}

/* ═══════════════════════════════════════════════
   GALLERY STRIP
═══════════════════════════════════════════════ */
.about-gallery {
  padding:clamp(50px, 8vh, 90px) 0 clamp(50px, 8vh, 90px) clamp(24px, 6vw, 80px);
  background:#0f0b06;
  overflow:hidden;
}

.about-gallery .about-eyebrow {
  padding-left:0;
  margin-bottom:28px;
}

.about-gallery-strip {
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-right:clamp(24px, 6vw, 80px);
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.about-gallery-strip::-webkit-scrollbar { display:none; }

.about-gallery-strip img {
  flex-shrink:0;
  width:clamp(180px, 28vw, 320px);
  height:clamp(220px, 32vw, 380px);
  object-fit:cover;
  border-radius:16px;
  scroll-snap-align:start;
  border:1px solid rgba(212,165,58,0.14);
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}
.about-gallery-strip img:hover {
  transform:scale(1.04) translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,165,58,0.15);
  z-index:2;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.about-cta {
  padding:clamp(80px, 12vh, 140px) clamp(24px, 8vw, 120px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,165,58,0.14) 0%, transparent 65%),
    linear-gradient(180deg, #0f0b06 0%, #1a1208 50%, #0f0b06 100%);
  text-align:center;
  border-top:1px solid rgba(212,165,58,0.1);
}

.about-cta-headline {
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem, 5vw, 4rem);
  font-weight:700;
  color:#f8f0e0;
  margin:0 0 16px;
  line-height:1.2;
  text-shadow:0 0 40px rgba(212,165,58,0.25);
}

.about-cta-sub {
  font-size:clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight:300;
  color:rgba(240,232,216,0.62);
  margin:0 0 48px;
  line-height:1.7;
}

.about-cta-btn {
  display:inline-block;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  font-size:1rem;
  font-weight:600;
  letter-spacing:0.08em;
  color:#0f0b06;
  background:linear-gradient(135deg, #f4c55f 0%, #d4a53a 50%, #b8852a 100%);
  padding:18px 52px;
  border-radius:60px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:0 8px 32px rgba(212,165,58,0.35);
  position:relative;
  overflow:hidden;
}
.about-cta-btn::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  border-radius:inherit;
  opacity:0;
  transition:opacity 0.3s ease;
}
.about-cta-btn:hover {
  transform:scale(1.06) translateY(-3px);
  box-shadow:0 20px 60px rgba(212,165,58,0.55), 0 0 0 2px rgba(244,197,95,0.4);
}
.about-cta-btn:hover::before { opacity:1; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-profile {
    flex-direction:column;
    text-align:center;
    padding:60px 24px;
  }
  .about-profile-bio {
    max-width:100%;
    text-align:left;
  }
  .about-profile-text .about-eyebrow,
  .about-profile-text .about-profile-role {
    text-align:center;
  }
}

/* About page refresh */
.about-page {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.25), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f7efdf 100%);
  color: #3b2a1a;
}

.about-shell {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(188, 149, 88, 0.18);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 30px 90px rgba(118, 84, 32, 0.12);
}

.about-page .about-eyebrow {
  margin: 0 0 14px;
  color: #b7832f;
}

.about-hero {
  min-height: min(82vh, 720px);
  padding: clamp(72px, 10vw, 124px) clamp(24px, 6vw, 72px);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 149, 88, 0.45), transparent);
}

.about-hero-content {
  max-width: 760px;
}

.about-hero-bg {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 219, 156, 0.42), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(255, 235, 204, 0.8), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7eddd 100%);
}

.about-headline {
  margin-bottom: 18px;
  color: #2f2216;
  text-shadow: 0 12px 30px rgba(188, 149, 88, 0.16);
}

.about-subline {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(69, 49, 24, 0.76);
}

.about-profile,
.about-contact,
.about-gallery,
.about-cta {
  padding-left: clamp(24px, 6vw, 72px);
  padding-right: clamp(24px, 6vw, 72px);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.95), rgba(248, 239, 222, 0.95));
}

.about-profile-img-wrap {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1.12;
  margin: 0 auto;
}

.about-profile-img,
.about-profile-glow {
  border-radius: 28px;
}

.about-profile-img {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(188, 149, 88, 0.2);
}

.about-profile-glow {
  inset: -18px;
  opacity: 0.9;
}

.about-profile-role {
  margin-bottom: 18px;
  color: #9f6f26;
}

.about-profile-name,
.about-cta-headline,
.about-stat-num {
  color: #8f611e;
}

.about-stat-plus {
  color: #bf8a39;
}

.about-stat-label,
.about-contact-label {
  color: rgba(143, 97, 30, 0.72);
}

.about-contact-val {
  color: #3b2a1a;
  font-size: 0.94rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-profile-bio {
  max-width: 640px;
  color: rgba(69, 49, 24, 0.8);
}

.about-profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-profile-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(188, 149, 88, 0.22);
  background: rgba(255, 246, 228, 0.9);
  color: #5a4020;
  font-size: 0.92rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-left: clamp(24px, 6vw, 72px);
  padding-right: clamp(24px, 6vw, 72px);
  background: linear-gradient(180deg, #fffaf2 0%, #f8efdf 100%);
}

.about-stat-card {
  min-width: 0;
  max-width: none;
  padding: 30px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 241, 224, 0.9));
  border: 1px solid rgba(188, 149, 88, 0.14);
  box-shadow: 0 16px 40px rgba(138, 104, 52, 0.08);
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.94), rgba(247, 239, 225, 0.94));
}

.about-contact-copy {
  align-self: center;
}

.about-section-title {
  margin-bottom: 0;
  color: #2f2216;
}

.about-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 420px;
  width: 100%;
}

.about-contact-card {
  min-width: 0;
  max-width: none;
  cursor: default;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(188, 149, 88, 0.16);
  box-shadow: 0 14px 32px rgba(138, 104, 52, 0.08);
}

.about-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 233, 194, 0.72);
  border: 1px solid rgba(188, 149, 88, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f611e;
}

.about-gallery {
  padding-top: 30px;
  background: linear-gradient(180deg, var(--cream-1) 0%, var(--cream-2) 100%);
}

.about-gallery-copy {
  max-width: 620px;
  padding-left: clamp(24px, 6vw, 72px);
  padding-right: clamp(24px, 6vw, 72px);
  margin-bottom: 26px;
}

.about-gallery-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 32px);
}

.about-gallery-nav {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(188, 149, 88, 0.24);
  background: rgba(255, 250, 240, 0.96);
  color: #8f611e;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(138, 104, 52, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-gallery-nav:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 28px rgba(138, 104, 52, 0.16);
}

.about-gallery-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: #2f2216;
}

.about-gallery-strip {
  padding-bottom: 6px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.about-gallery-strip::-webkit-scrollbar {
  display: none;
}

.about-gallery-strip img {
  width: clamp(220px, 25vw, 290px);
  height: clamp(280px, 30vw, 360px);
  border-radius: 22px;
  border: 1px solid rgba(188, 149, 88, 0.14);
  box-shadow: 0 16px 34px rgba(138, 104, 52, 0.12);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0 clamp(24px, 6vw, 72px);
}

.about-team-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(188, 149, 88, 0.16);
  background: rgba(255, 250, 240, 0.86);
  padding: 22px;
  box-shadow: 0 16px 34px rgba(138, 104, 52, 0.12);
  cursor: zoom-in;
}

.about-team-card:focus-visible {
  outline: 2px solid rgba(212, 167, 88, 0.75);
  outline-offset: 4px;
}

.about-team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 246, 231, 0.7);
  cursor: zoom-in;
}

@media (max-width: 860px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.about-cta {
  padding-top: clamp(70px, 10vw, 110px);
  padding-bottom: clamp(70px, 10vw, 110px);
  background:
    radial-gradient(circle at center top, rgba(255, 216, 150, 0.2), transparent 48%),
    linear-gradient(180deg, #fffaf2 0%, #f8efdf 100%);
}

.about-cta-sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(69, 49, 24, 0.76);
}

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

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

@media (max-width: 640px) {
  .about-page {
    padding: 16px;
  }

  .about-shell {
    border-radius: 24px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .about-subline {
    margin: 0;
  }

  .about-profile,
  .about-contact,
  .about-gallery,
  .about-cta,
  .about-stats {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-gallery-copy,
  .about-gallery-slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-gallery-slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-gallery-nav {
    display: none;
  }

  .about-profile {
    text-align: left;
  }

  .about-profile-points,
  .about-contact-cards,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-profile-points {
    display: grid;
  }

  .about-gallery-strip img {
    width: 76vw;
    height: 96vw;
    max-width: 280px;
    max-height: 360px;
  }

  .about-scroll-hint {
    bottom: 22px;
  }
}

.photographer-flash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  z-index: 80;
}

.photographer-flash.is-active {
  animation: photographerFlash 240ms ease-out;
}

@keyframes photographerFlash {
  0% {
    opacity: 0;
    background: rgba(255, 255, 255, 0);
  }
  35% {
    opacity: 1;
    background: rgba(255, 255, 255, 0.68);
  }
  100% {
    opacity: 0;
    background: rgba(255, 255, 255, 0);
  }
}

.photographer-runner {
  position: fixed;
  left: 0;
  bottom: 10px;
  width: clamp(200px, 18vw, 280px);
  z-index: 70;
  pointer-events: none;
  transform-origin: 50% 100%;
  will-change: transform;
  filter: drop-shadow(0 20px 30px rgba(79, 51, 16, 0.2));
}

.photographer-runner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 78%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(112, 77, 24, 0.18), transparent 70%);
  z-index: -1;
}

.photographer-runner-stage {
  position: relative;
  transform-origin: 58% 44%;
  will-change: transform, filter;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.photographer-runner-stage::before {
  content: "";
  position: absolute;
  left: 56%;
  top: 28%;
  width: 26%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 223, 0.75) 34%, rgba(255, 221, 160, 0) 72%);
  opacity: 0;
  pointer-events: none;
}

.photographer-runner-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: 56% 40%;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photographer-runner.is-shooting {
  filter: drop-shadow(0 14px 24px rgba(79, 51, 16, 0.24)) drop-shadow(0 0 14px rgba(214, 177, 109, 0.18));
}

.photographer-runner.is-shooting .photographer-runner-stage {
  transform: rotate(-5deg) scale(1.07);
}

.photographer-runner.is-shooting .photographer-runner-stage::before {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1.15);
  transition: transform 120ms ease-out, opacity 120ms ease-out;
}

.photographer-runner.is-shooting .photographer-runner-img {
  transform: rotate(-2.5deg);
}

@media (max-width: 640px) {
  .photographer-runner {
    width: clamp(180px, 44vw, 220px);
    bottom: 8px;
  }
}

html,
body.contact-page,
body.about-page-body {
  scroll-behavior: smooth;
}

body.contact-page,
body.about-page-body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text-dark);
}

body.contact-page h1,
body.contact-page h2,
body.contact-page h3,
body.about-page-body h1,
body.about-page-body h2,
body.about-page-body h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
}

body.contact-page {
  background: linear-gradient(180deg, var(--cream-1) 0%, var(--cream-2) 55%, #fffdf7 100%);
  position: relative;
  overflow-x: hidden;
}

body.contact-page::before {
  content: none;
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 230, 180, 0.4), transparent 40%),
    repeating-linear-gradient(0deg, rgba(112, 80, 30, 0.03) 0, rgba(112, 80, 30, 0.03) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(112, 80, 30, 0.03) 0, rgba(112, 80, 30, 0.03) 1px, transparent 1px, transparent 3px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  filter: none;
}

body.contact-page::after {
  content: none;
  position: fixed;
  inset: -10%;
  background:
    radial-gradient(circle at 15% 25%, rgba(244, 207, 140, 0.18), transparent 48%),
    radial-gradient(circle at 85% 20%, rgba(214, 177, 109, 0.16), transparent 46%),
    radial-gradient(circle at 50% 85%, rgba(255, 235, 200, 0.14), transparent 50%);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  filter: none;
  animation: contactGlowDrift 18s ease-in-out infinite;
  will-change: transform;
}

@keyframes contactGlowDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-2%, -1%, 0); }
  100% { transform: translate3d(2%, 1%, 0); }
}

body.contact-page > *:not(.lightbox) {
  position: relative;
  z-index: 1;
}

body.contact-page .lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
}

body.contact-page .shared-backdrop {
  display: none;
}

body.contact-page .hero-booking-wrap {
  background: #f5efe6;
  border-radius: 0 0 48px 48px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}

body.contact-page .hero-booking-wrap::before {
  content: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 247, 234, 0.88), rgba(250, 236, 210, 0.75)),
    url("images/image2.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

body.contact-page .hero-booking-wrap > * {
  position: relative;
  z-index: 1;
}

body.contact-page .home-section {
  min-height: auto;
  padding: 90px clamp(24px, 6vw, 100px);
}

.contact-intro {
  padding: 110px clamp(24px, 6vw, 120px) 60px;
  text-align: center;
  min-height: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-intro::before,
.contact-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
}

.contact-intro::before {
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
  top: 16%;
  right: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 252, 245, 0.9), rgba(222, 176, 98, 0.34) 54%, rgba(139, 94, 33, 0.16));
  filter: blur(6px);
  animation: contactHeroDrift 18s ease-in-out infinite;
}

.contact-intro::after {
  width: clamp(220px, 30vw, 360px);
  height: clamp(220px, 30vw, 360px);
  top: -110px;
  left: -110px;
  border-radius: 43% 57% 54% 46% / 52% 38% 62% 48%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 251, 243, 0.94), rgba(214, 163, 82, 0.3) 55%, rgba(126, 82, 28, 0.14));
  filter: blur(10px);
  animation: contactHeroFloat 16s ease-in-out infinite;
}

.contact-intro-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: clamp(14px, 3vw, 24px);
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.contact-intro-inner .logo-mark--section {
  display: block;
  margin: 0 auto 8px;
  height: clamp(42px, 5vw, 56px);
  width: auto;
}

.contact-intro-inner::before,
.contact-intro-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.48;
  filter: blur(8px);
  animation: contactHeroFloat 14s ease-in-out infinite;
}

.contact-intro-inner::before {
  width: clamp(200px, 32vw, 340px);
  height: clamp(200px, 32vw, 340px);
  top: -120px;
  left: -120px;
  border-radius: 42% 58% 55% 45% / 50% 40% 60% 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 251, 245, 0.95), rgba(226, 188, 126, 0.46) 52%, rgba(177, 130, 57, 0.2) 100%);
}

.contact-intro-inner::after {
  width: clamp(170px, 26vw, 300px);
  height: clamp(170px, 26vw, 300px);
  right: -80px;
  bottom: -88px;
  border-radius: 62% 38% 46% 54% / 44% 58% 42% 56%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 247, 232, 0.88), rgba(208, 157, 79, 0.4) 50%, rgba(141, 96, 36, 0.22) 100%);
  animation: contactHeroDrift 20s ease-in-out infinite;
  animation-delay: -4.2s;
}

.contact-intro-inner > * {
  position: relative;
  z-index: 1;
}

.contact-intro p {
  color: rgba(66, 45, 18, 0.72);
}

@keyframes contactHeroFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(8px, -12px, 0) rotate(4deg);
  }
}

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

body.contact-page .booking {
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 0;
  padding: 90px clamp(24px, 6vw, 120px) 60px;
  position: relative;
  min-height: 80vh;
  background: none;
  overflow: hidden;
  isolation: isolate;
}

.contact-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 20, 10, 0.24), rgba(32, 20, 10, 0.24)),
    url("images/contact-hero-bg.webp?v=2");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  filter: blur(5px);
  transform: scale(1.03);
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.95) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.95) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

.contact-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(248, 241, 231, 0.88) 0%,
    rgba(248, 241, 231, 0.28) 20%,
    rgba(248, 241, 231, 0.1) 50%,
    rgba(248, 241, 231, 0.45) 80%,
    rgba(248, 241, 231, 0.9) 100%
  );
}

.contact-hero-ambient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: auto;
  pointer-events: none;
  z-index: 1;
  perspective: 1200px;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  --orb-repel-x: 0px;
  --orb-repel-y: 0px;
  --float-x: 12px;
  --float-y: 14px;
  --float-z: 20px;
  --float-rot: -3deg;
  border-radius: 50%;
  filter: blur(0.1px) saturate(1.05);
  opacity: 0.9;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,240,210,0.7), rgba(230,200,150,0.4)),
    radial-gradient(circle at 72% 74%, rgba(244, 220, 178, 0.34) 0%, rgba(244, 220, 178, 0.12) 40%, rgba(244, 220, 178, 0.02) 72%, rgba(244, 220, 178, 0) 100%),
    radial-gradient(circle at 54% 50%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255,255,255,0.5);
  transform-style: preserve-3d;
  backdrop-filter: blur(25px) saturate(120%);
  -webkit-backdrop-filter: blur(25px) saturate(120%);
  box-shadow:
    0 20px 40px rgba(120,90,50,0.2),
    inset 0 -8px 20px rgba(129, 95, 52, 0.14),
    inset 0 2px 6px rgba(255, 255, 255, 0.6),
    inset -12px -14px 22px rgba(182, 145, 95, 0.2),
    0 0 20px rgba(200,170,120,0.2);
  animation: contactAmbientFloat 12s ease-in-out infinite;
  will-change: transform;
  transition: --orb-repel-x 180ms ease, --orb-repel-y 180ms ease;
}

.orb-one,
.orb-five,
.orb-nine,
.orb-thirteen {
  animation-duration: 9s;
}

.orb-two,
.orb-six,
.orb-ten,
.orb-fourteen {
  animation-duration: 11s;
}

.orb-three,
.orb-seven,
.orb-eleven,
.orb-fifteen {
  animation-duration: 15s;
}

.orb-four,
.orb-eight,
.orb-twelve {
  animation-duration: 13s;
}

.orb-sixteen {
  animation-duration: 12s;
}

.ambient-orb::before {
  content: "";
  position: absolute;
  inset: 9% 12% 18% 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 252, 244, 0.97), rgba(255, 245, 224, 0.66) 18%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(circle at 70% 70%, rgba(236, 207, 158, 0.26), rgba(236, 207, 158, 0) 58%);
  opacity: 0.95;
  filter: blur(0.35px);
}

.ambient-orb::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -18%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(120, 90, 50, 0.22) 0%, rgba(120, 90, 50, 0.1) 55%, rgba(120, 90, 50, 0) 100%);
  filter: blur(3.2px);
  opacity: 0.58;
}

.orb-one {
  width: clamp(128px, 15vw, 194px);
  height: clamp(128px, 15vw, 194px);
  top: 8%;
  left: 3%;
  animation-delay: 0s;
  --float-x: 16px;
  --float-y: 18px;
  --float-z: 24px;
  --float-rot: -3deg;
}

.orb-two {
  width: clamp(150px, 17vw, 226px);
  height: clamp(150px, 17vw, 226px);
  top: 11%;
  left: 30%;
  animation-delay: -4s;
  --float-x: 12px;
  --float-y: 14px;
  --float-z: 22px;
  --float-rot: 2deg;
}

.orb-three {
  width: clamp(104px, 12vw, 156px);
  height: clamp(104px, 12vw, 156px);
  top: 9%;
  right: 4%;
  animation-delay: -7s;
  --float-x: 18px;
  --float-y: 16px;
  --float-z: 20px;
  --float-rot: -4deg;
}

.orb-four {
  width: clamp(88px, 9.6vw, 132px);
  height: clamp(88px, 9.6vw, 132px);
  top: 36%;
  left: 12%;
  animation-delay: -2s;
  --float-x: 10px;
  --float-y: 12px;
  --float-z: 18px;
  --float-rot: 3deg;
}

.orb-five {
  width: clamp(94px, 10.2vw, 138px);
  height: clamp(94px, 10.2vw, 138px);
  top: 74%;
  left: 5%;
  animation-delay: -5s;
  --float-x: 14px;
  --float-y: 15px;
  --float-z: 20px;
  --float-rot: -2deg;
}

.orb-six {
  width: clamp(84px, 9vw, 126px);
  height: clamp(84px, 9vw, 126px);
  top: 39%;
  right: 21%;
  animation-delay: -3.5s;
  --float-x: 11px;
  --float-y: 13px;
  --float-z: 19px;
  --float-rot: 2deg;
}

.orb-seven {
  width: clamp(88px, 9.5vw, 132px);
  height: clamp(88px, 9.5vw, 132px);
  top: 78%;
  right: 35%;
  animation-delay: -6.5s;
  --float-x: 15px;
  --float-y: 16px;
  --float-z: 22px;
  --float-rot: -3deg;
}

.orb-eight {
  width: clamp(76px, 8.2vw, 114px);
  height: clamp(76px, 8.2vw, 114px);
  top: 70%;
  right: 3%;
  animation-delay: -1.5s;
  --float-x: 9px;
  --float-y: 11px;
  --float-z: 16px;
  --float-rot: 2deg;
}

.orb-nine {
  width: clamp(82px, 9vw, 122px);
  height: clamp(82px, 9vw, 122px);
  top: 4%;
  left: 63%;
  animation-delay: -2.8s;
  --float-x: 13px;
  --float-y: 14px;
  --float-z: 20px;
  --float-rot: -2deg;
}

.orb-ten {
  width: clamp(84px, 9.2vw, 126px);
  height: clamp(84px, 9.2vw, 126px);
  top: 30%;
  left: 55%;
  animation-delay: -5.8s;
  --float-x: 12px;
  --float-y: 13px;
  --float-z: 18px;
  --float-rot: 3deg;
}

.orb-eleven {
  width: clamp(72px, 8vw, 108px);
  height: clamp(72px, 8vw, 108px);
  top: 66%;
  left: 52%;
  animation-delay: -8.2s;
  --float-x: 17px;
  --float-y: 15px;
  --float-z: 21px;
  --float-rot: -4deg;
}

.orb-twelve {
  width: clamp(90px, 9.8vw, 136px);
  height: clamp(90px, 9.8vw, 136px);
  top: 82%;
  right: 16%;
  animation-delay: -10s;
  --float-x: 10px;
  --float-y: 12px;
  --float-z: 17px;
  --float-rot: 2deg;
}

.orb-thirteen {
  width: clamp(96px, 10.4vw, 142px);
  height: clamp(96px, 10.4vw, 142px);
  top: 44%;
  left: 0.5%;
  animation-delay: -1.2s;
  --float-x: 13px;
  --float-y: 14px;
  --float-z: 19px;
  --float-rot: -2deg;
}

.orb-fourteen {
  width: clamp(66px, 7.2vw, 100px);
  height: clamp(66px, 7.2vw, 100px);
  top: 17%;
  left: 17%;
  animation-delay: -4.1s;
  --float-x: 9px;
  --float-y: 10px;
  --float-z: 15px;
  --float-rot: 2deg;
}

.orb-fifteen {
  width: clamp(108px, 12vw, 162px);
  height: clamp(108px, 12vw, 162px);
  top: 42%;
  right: 1.5%;
  animation-delay: -6.7s;
  --float-x: 15px;
  --float-y: 16px;
  --float-z: 23px;
  --float-rot: -3deg;
}

.orb-sixteen {
  width: clamp(92px, 10.2vw, 138px);
  height: clamp(92px, 10.2vw, 138px);
  top: 72%;
  left: 24%;
  animation-delay: -3.2s;
  --float-x: 12px;
  --float-y: 13px;
  --float-z: 18px;
  --float-rot: 2deg;
}

@keyframes contactAmbientFloat {
  0%, 100% {
    transform: translate3d(var(--orb-repel-x), var(--orb-repel-y), 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
  }
  25% {
    transform: translate3d(
      calc(var(--orb-repel-x) + var(--float-x)),
      calc(var(--orb-repel-y) - calc(var(--float-y) * 0.55)),
      calc(var(--float-z) * 0.5)
    ) rotateX(5deg) rotateY(-6deg) rotateZ(calc(var(--float-rot) * -0.7)) scale(1.03);
  }
  50% {
    transform: translate3d(
      calc(var(--orb-repel-x) - var(--float-x)),
      calc(var(--orb-repel-y) - var(--float-y)),
      var(--float-z)
    ) rotateX(8deg) rotateY(-9deg) rotateZ(var(--float-rot)) scale(1.05);
  }
  75% {
    transform: translate3d(
      calc(var(--orb-repel-x) + calc(var(--float-x) * 0.45)),
      calc(var(--orb-repel-y) + calc(var(--float-y) * 0.3)),
      calc(var(--float-z) * 0.35)
    ) rotateX(4deg) rotateY(-5deg) rotateZ(calc(var(--float-rot) * -0.45)) scale(1.02);
  }
}

body.contact-page .booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/image2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  filter: blur(4px);
  transform: scale(1.1);
  z-index: 0;
  pointer-events: none;
}

body.contact-page .booking::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 235, 0.5);
  z-index: 1;
  pointer-events: none;
}

body.contact-page .booking > * {
  position: relative;
  z-index: 2;
}

body.contact-page .booking .left,
body.contact-page .booking .right {
  background: #F8F1E7 !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* keep cards clean (no inner blur/image overlays) */
body.contact-page .booking .left::before,
body.contact-page .booking .left::after,
body.contact-page .booking .right::before,
body.contact-page .booking .right::after {
  display: none;
}

body.contact-page .contact-info-card-inner {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 20px 50px rgba(92, 63, 24, 0.14);
}

body.contact-page .booking .left,
body.contact-page .booking .right {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  transform: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

body.contact-page .booking .left {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #F8F1E7;
}

body.contact-page .booking .left::before {
  display: none;
}

body.contact-page .booking .left::after {
  display: none;
}

body.contact-page .booking .left > * {
  position: relative;
  z-index: 2;
}

body.contact-page .tilt-card {
  transform: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

body.contact-page .tilt-card::before {
  opacity: 0;
}

body.contact-page .booking .right {
  position: relative;
  border: 1px solid transparent;
  background: #F8F1E7;
}

body.contact-page .booking .right::after {
  display: none;
}

body.contact-page .booking .right::before {
  display: none;
}

/* Contact booking cards must stay clean and solid */
body.contact-page .booking .left,
body.contact-page .booking .right {
  background: #F8F1E7 !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.contact-page .booking .right > * {
  position: relative;
  z-index: 1;
}

.contact-info-card {
  padding: 80px clamp(24px, 6vw, 120px);
  min-height: auto;
}

.contact-info-card-inner {
  border-radius: 24px;
  padding: 40px;
  display: grid;
  gap: 28px;
}

.contact-info-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.contact-info-card-grid h4 {
  margin: 0 0 6px;
}

body.contact-page .contact-form input,
body.contact-page .contact-form .date-display,
body.contact-page .contact-form .custom-event-input,
body.contact-page .contact-form .custom-budget-input,
body.contact-page .contact-form textarea,
body.contact-page .contact-form select {
  border-radius: 14px;
  border: 1px solid rgba(186, 150, 70, 0.28);
  background: rgba(255, 253, 245, 0.98);
  color: #2a1b0b;
  padding: 16px 18px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.contact-page .contact-form input:focus,
body.contact-page .contact-form .date-display:focus,
body.contact-page .contact-form .custom-event-input:focus,
body.contact-page .contact-form .custom-budget-input:focus,
body.contact-page .contact-form textarea:focus,
body.contact-page .contact-form select:focus {
  outline: none;
  border-color: rgba(197, 145, 58, 0.85);
  background: rgba(255, 252, 242, 1);
  box-shadow: 0 0 0 3px rgba(244, 197, 95, 0.22);
}

body.contact-page .contact-form button,
.contact-cta-btn {
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.contact-page .contact-form button {
  background: linear-gradient(135deg, #f4c55f 0%, #d4a53a 55%, #b8852a 100%);
  color: #2a1b0b;
  font-weight: 600;
  border-radius: 14px;
  border: 1px solid rgba(176, 126, 38, 0.45);
  box-shadow: 0 16px 28px rgba(180, 130, 40, 0.22);
  padding: 14px 32px;
  min-width: 180px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.input-field {
  display: block;
}

.input-with-icon {
  position: relative;
  display: block;
}

.input-with-icon::before {
  content: none;
}

.input-with-icon input {
  padding-left: 18px;
}

body.contact-page .contact-form button:hover,
.contact-cta-btn:hover {
  transform: none;
  background: linear-gradient(135deg, #f7d474 0%, #dfb84a 55%, #c59232 100%);
  box-shadow: 0 18px 32px rgba(180, 130, 40, 0.28);
}

.contact-why-card::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: radial-gradient(circle, rgba(244, 197, 95, 0.8), rgba(184, 133, 42, 0.5));
  box-shadow: 0 10px 20px rgba(180, 130, 40, 0.2);
}

.contact-gallery {
  padding: 100px clamp(24px, 6vw, 120px);
  min-height: auto;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(244, 230, 207, 0.88));
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

.contact-gallery-inner {
  display: grid;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(220px, 22vw, 310px);
}

.contact-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
  transform: translateY(0);
  transition: none;
  cursor: pointer;
}

.contact-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: none;
  cursor: zoom-in;
}

.contact-gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(100, 70, 30, 0.12);
}

/* Contact gallery: hide text labels, keep clean image-only cards */
.contact-gallery-card span {
  display: none;
}

.contact-gallery-card:hover {
  transform: none;
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
}

.contact-gallery-card:hover img {
  transform: none;
  filter: none;
}


.contact-gallery-card:focus-visible {
  outline: 2px solid rgba(212, 167, 88, 0.6);
  outline-offset: 3px;
}

.contact-gallery-view {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176, 126, 38, 0.4);
  background: rgba(255, 255, 255, 0.88);
  color: #2a1b0b;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.contact-gallery-card:hover .contact-gallery-view,
.contact-gallery-card:focus-within .contact-gallery-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-gallery-view:hover,
.contact-gallery-view:focus-visible {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 10px 22px rgba(180, 130, 40, 0.22);
}

.contact-gallery-card:nth-child(3n) {
  grid-row: auto;
}

.contact-gallery-card:nth-child(5n) {
  grid-row: auto;
}

.contact-gallery::before,
.contact-gallery::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 190, 0.5), rgba(255, 232, 190, 0));
  filter: blur(4px);
  opacity: 0.55;
  pointer-events: none;
}

.contact-gallery::before {
  top: -80px;
  left: -60px;
}

.contact-gallery::after {
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(212, 167, 88, 0.4), rgba(212, 167, 88, 0));
}

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

@media (max-width: 640px) {
  .contact-gallery {
    border-radius: 24px;
  }

  .contact-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .contact-gallery-card:nth-child(3n),
  .contact-gallery-card:nth-child(5n) {
    grid-row: span 1;
  }
}

.contact-video-gallery {
  padding: 90px clamp(24px, 6vw, 120px) 70px;
  min-height: auto;
  background:
    radial-gradient(circle at 16% 0%, rgba(244, 197, 95, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(248, 241, 231, 0.96), rgba(255, 250, 240, 0.96));
}

.contact-video-gallery-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.contact-video-gallery h2 {
  max-width: 760px;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.12;
  color: #2f2216;
}

.contact-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(180, 140, 60, 0.24);
  background: #1b1209;
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.14);
}

.contact-video-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.contact-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 6, 0.02), rgba(15, 10, 6, 0.3));
  pointer-events: none;
}

.contact-video-card:hover img,
.contact-video-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.88;
}

.contact-video-card:focus-visible {
  outline: 2px solid rgba(212, 167, 88, 0.75);
  outline-offset: 4px;
}

.contact-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.contact-video-play::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #8f611e;
}

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

@media (max-width: 640px) {
  .contact-video-gallery {
    padding: 62px 14px 50px;
  }

  .contact-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.contact-cta-banner {
  padding: 60px clamp(24px, 6vw, 120px) 80px;
  min-height: auto;
}

.contact-cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 240, 210, 0.9), rgba(255, 251, 242, 0.95));
  border: 1px solid rgba(180, 140, 60, 0.22);
  box-shadow: 0 20px 40px rgba(100, 70, 30, 0.12);
}

.contact-cta-btn {
  text-decoration: none;
  color: #2a1b0b;
  font-weight: 600;
  background: linear-gradient(135deg, #f4c55f 0%, #d4a53a 50%, #b8852a 100%);
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(180, 130, 40, 0.2);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.section-divider {
  height: 1px;
  margin: 0 clamp(24px, 6vw, 120px);
  background: linear-gradient(90deg, transparent, rgba(180, 140, 60, 0.4), transparent);
}

body.about-page-body {
  background: linear-gradient(180deg, var(--cream-1) 0%, var(--cream-2) 100%);
}

.about-minimal-hero {
  padding: 140px clamp(24px, 6vw, 120px) 80px;
  text-align: center;
  min-height: auto;
}

.about-minimal-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.about-minimal-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.about-story-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.about-story-copy p {
  color: rgba(69, 49, 24, 0.75);
}

.about-story-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 40px rgba(100, 70, 30, 0.15);
}

.about-achievements-grid > div {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  padding: 24px;
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.1);
}

.about-style-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-style-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-style-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(100, 70, 30, 0.15);
}

.about-team-card {
  text-align: center;
}

.about-gallery-strip-section {
  padding: 100px clamp(24px, 6vw, 120px);
  min-height: auto;
}

.about-social {
  margin-top: 36px;
  text-align: center;
  display: grid;
  gap: 16px;
}

.about-social h3 {
  margin: 0;
}

.about-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #2a1b0b;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(180, 140, 60, 0.25);
  box-shadow: 0 14px 28px rgba(100, 70, 30, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-social-link[aria-label="Instagram"] {
  color: #fff;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 38%, #d6249f 65%, #285aeb 100%);
  border-color: rgba(214, 36, 159, 0.25);
  box-shadow: 0 14px 28px rgba(214, 36, 159, 0.22);
}

.about-social-link[aria-label="WhatsApp"] {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: rgba(18, 140, 126, 0.24);
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.2);
}

.about-social-link[aria-label="Facebook"] {
  color: #fff;
  background: linear-gradient(135deg, #1877f2, #145dc7);
  border-color: rgba(24, 119, 242, 0.24);
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.2);
}

.about-social-link[aria-label="YouTube"] {
  color: #fff;
  background: linear-gradient(135deg, #ff2a2a, #ff0000);
  border-color: rgba(255, 0, 0, 0.24);
  box-shadow: 0 14px 28px rgba(255, 0, 0, 0.24);
}

.about-social-link i {
  font-size: 1.2rem;
  line-height: 1;
}

.about-social-link:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #f4c55f, #f8e4b7);
  box-shadow: 0 18px 34px rgba(100, 70, 30, 0.18);
}

.about-social-link[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #feda75 10%, #fa7e1e 32%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
  box-shadow: 0 18px 34px rgba(214, 36, 159, 0.3);
}

.about-social-link[aria-label="WhatsApp"]:hover {
  background: linear-gradient(135deg, #2ee66b, #128c7e);
  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.28);
}

.about-social-link[aria-label="Facebook"]:hover {
  background: linear-gradient(135deg, #2a86ff, #1877f2);
  box-shadow: 0 18px 34px rgba(24, 119, 242, 0.3);
}

.about-social-link[aria-label="YouTube"]:hover {
  background: linear-gradient(135deg, #ff4747, #ff0f0f);
  box-shadow: 0 18px 34px rgba(255, 0, 0, 0.3);
}

.about-story-block,
.about-experience-block,
.about-style-block,
.about-ending {
  padding: 80px clamp(24px, 6vw, 120px);
}

.about-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.about-story-block .about-block-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-story-media img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 40px rgba(100, 70, 30, 0.15);
}

.about-story-text p {
  color: rgba(69, 49, 24, 0.78);
}

.about-experience-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-experience-grid > div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.1);
}

.about-ending-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 18px;
  padding: 32px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 240, 210, 0.9), rgba(255, 251, 242, 0.95));
  border: 1px solid rgba(180, 140, 60, 0.22);
  box-shadow: 0 20px 40px rgba(100, 70, 30, 0.12);
}

.home-model-trigger {
  height: 1px;
  margin: 0 0 60px;
}

.photographer-story {
  position: fixed;
  left: 22px;
  bottom: 14px;
  width: clamp(210px, 22vw, 280px);
  z-index: 75;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

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

.photographer-story-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(79, 51, 16, 0.22));
  position: relative;
  z-index: 0;
}

.photographer-bubble {
  position: absolute;
  left: 56%;
  bottom: 88%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  color: #2a1b0b;
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid rgba(180, 140, 60, 0.2);
  box-shadow: 0 12px 24px rgba(100, 70, 30, 0.12);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

.photographer-bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(180, 140, 60, 0.2);
  border-bottom: 1px solid rgba(180, 140, 60, 0.2);
  transform: rotate(45deg);
}

.photographer-bubble.is-show {
  opacity: 1;
  transform: translate(-50%, -60%);
}

.photographer-sparkle,
.photographer-smoke {
  position: absolute;
  left: 60%;
  bottom: 72%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.photographer-sparkle {
  background: radial-gradient(circle, rgba(255, 244, 210, 0.9), rgba(255, 214, 150, 0));
  animation: sparklePulse 2.4s ease-in-out infinite;
}

.photographer-smoke {
  width: 46px;
  height: 46px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  filter: blur(2px);
  animation: smokeFloat 3.2s ease-in-out infinite;
}

.photographer-camera-glow {
  position: absolute;
  left: 58%;
  bottom: 38%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 230, 170, 0));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.photographer-story.is-flashing .photographer-camera-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.photographer-story.is-visible {
  transform: translateY(0) scale(1.35);
}

@keyframes sparklePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  50% { transform: translate(-50%, -60%) scale(1.1); opacity: 0.9; }
}

@keyframes smokeFloat {
  0%, 100% { transform: translate(-50%, -40%) scale(0.9); opacity: 0.4; }
  50% { transform: translate(-50%, -70%) scale(1.1); opacity: 0.7; }
}

@media (max-width: 900px) {
  .about-story-block .about-block-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .photographer-story {
    width: clamp(200px, 52vw, 260px);
    left: 12px;
  }
}

.about-gallery-strip-section-inner {
  display: grid;
  gap: 22px;
}

.about-gallery-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.about-gallery-scroller::-webkit-scrollbar {
  display: none;
}

.about-gallery-scroller img {
  flex: 0 0 auto;
  width: clamp(200px, 28vw, 320px);
  height: clamp(260px, 36vw, 420px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(100, 70, 30, 0.12);
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}

.about-gallery-scroller img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .about-story-inner {
    grid-template-columns: 1fr;
  }

  .contact-cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .contact-info-card-inner {
    padding: 28px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 14px;
  }

  .contact-cta-banner-inner {
    padding: 28px;
  }
}

.story-top-logo {
  display: block;
  margin: 0 auto 24px auto;
  height: 60px;
  width: auto;
}

.lightbox { z-index: 99999 !important; }

/* Force top-center hero label across all breakpoints */
.hero {
  position: relative;
}

.hero .hero-brand {
  position: absolute !important;
  top: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  display: block !important;
  white-space: nowrap !important;
  z-index: 4 !important;
  color: #2b1a10 !important;
  text-shadow: 0 2px 12px rgba(255, 245, 220, 0.55), 0 1px 2px rgba(0, 0, 0, 0.18) !important;
  text-align: center;
  width: max-content;
  max-width: calc(100% - 24px);
}

/* Keep navbar always visible on all pages */
.top-nav {
  position: fixed !important;
  top: 20px !important;
  left: 20px !important;
  right: 20px !important;
  width: auto !important;
  z-index: 1200 !important;
  padding: 10px 14px;
  box-sizing: border-box;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.contact-page .top-nav {
  z-index: 1200 !important;
}

body.contact-page .contact-hero-ambient,
body.contact-page .ambient-orb {
  display: none !important;
}

/* Keep contact page overlays neutral without affecting Home hero background */
body.contact-page .hero-booking-wrap::before,
body.contact-page .hero-booking-wrap::after,
body.contact-page .shared-backdrop::before,
body.contact-page .shared-backdrop::after,
body.contact-page::before,
body.contact-page::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  background: none !important;
}

body.contact-page .hero-booking-wrap {
  background: #f5efe6 !important;
}

/* =========================================================
   Mobile-only hardening (desktop remains unchanged)
   ========================================================= */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .top-nav {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px !important;
  }

  .nav-logo,
  .nav-logo img,
  .logo-mark {
    height: 32px !important;
  }

  .top-nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 8px;
  }

  .top-nav-links a {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 999px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 102px 16px 26px;
    justify-content: flex-start;
  }

  body:not(.contact-page) .hero-booking-wrap {
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: auto;
    background-color: #f8f1e7;
  }

  body:not(.contact-page) .hero-booking-wrap::after {
    height: clamp(120px, 20vh, 200px);
  }

  .hero-brand {
    top: 16px !important;
    font-size: clamp(0.9rem, 4vw, 1.15rem);
    letter-spacing: 0.1em;
    max-width: calc(100% - 20px);
    white-space: normal !important;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.2;
    max-width: 100%;
    padding-inline: 4px;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .home-section {
    padding: 72px 16px;
  }

  .home-section h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .gallery {
    padding: 86px 14px 54px;
  }

  .gallery-scene {
    gap: 18px;
  }

  .gallery-scene--pile {
    display: block;
  }

  .photo-pile {
    width: min(100%, 410px);
    height: 1500px;
  }

  .pile-photo {
    width: 104px;
    padding: 6px 6px 18px;
  }

  .pile-photo-large {
    width: 148px;
  }

  .pile-photo-wide {
    width: 144px;
  }

  .hanging-column {
    width: min(100%, 320px);
  }

  .stories-gallery {
    padding: 86px 14px 64px;
  }

  .stories-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .portfolio-grid-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-filter {
    gap: 8px;
  }

  .portfolio-filter-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .contact-intro {
    padding: 96px 14px 44px;
  }

  .contact-hero-ambient {
    opacity: 0.45;
  }

  .ambient-orb {
    transform-origin: center;
    scale: 0.78;
  }

  .orb-two,
  .orb-six,
  .orb-nine,
  .orb-thirteen {
    display: none;
  }

  .contact-intro-inner {
    gap: 12px;
    padding: 14px;
  }

  body.contact-page .booking {
    padding: 68px 14px 32px;
    min-height: auto;
    gap: 16px;
  }

  body.contact-page .booking .left,
  body.contact-page .booking .right {
    max-width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  body.contact-page .booking .left {
    min-height: 260px;
  }

  .contact-form {
    gap: 12px;
    padding: 14px;
  }

  .contact-form input,
  .contact-form .date-display,
  .contact-form .custom-event-input,
  .contact-form .custom-budget-input {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .date-picker-popup {
    width: min(320px, calc(100vw - 32px));
    left: 0;
    right: auto;
  }

  .contact-gallery {
    padding: 70px 14px;
    border-radius: 18px;
  }

  .contact-gallery-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 200px;
    gap: 12px;
  }

  .contact-cta-banner {
    padding: 38px 14px 56px;
  }

  .contact-cta-banner-inner {
    padding: 20px;
    border-radius: 18px;
  }

  .about-minimal-hero {
    padding: 106px 16px 56px;
  }

  .about-shell {
    border-radius: 18px;
  }

  .about-profile,
  .about-contact,
  .about-gallery,
  .about-cta,
  .about-stats {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 420px) {
  .top-nav {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    padding: 7px 8px !important;
  }

  .top-nav-links a {
    font-size: 11px;
    padding: 6px 9px;
  }

  .hero-title {
    font-size: clamp(1.55rem, 8.6vw, 2rem);
    line-height: 1.18;
  }

  body:not(.contact-page) .hero-booking-wrap {
    background-size: contain;
    background-position: center 8%;
  }

  .home-section {
    padding: 64px 12px;
  }

  .hero-cta {
    padding: 11px 20px;
    font-size: 0.88rem;
  }

  body.contact-page .booking .left,
  body.contact-page .booking .right {
    padding: 14px;
  }

  .contact-gallery-grid {
    grid-auto-rows: 180px;
  }
}

/* Final mobile fixes */
@media (max-width: 768px) {
  /* On phones, nav should scroll with page (not fixed) */
  .top-nav {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 10px 10px 0 !important;
    width: auto !important;
    z-index: 20 !important;
  }

  /* Show more of hero image on phones */
  body:not(.contact-page) .shared-backdrop-layer {
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    filter: none !important;
    transform: none !important;
  }

  body:not(.contact-page) .hero {
    height: auto !important;
    min-height: auto !important;
    justify-content: flex-start !important;
    padding: clamp(365px, 70vw, 440px) 16px 28px !important;
    overflow: visible !important;
  }

  body:not(.contact-page) .hero-booking-wrap::after {
    top: clamp(228px, 44vw, 295px) !important;
    bottom: auto !important;
    height: clamp(130px, 26vw, 190px) !important;
    background: linear-gradient(
      to bottom,
      rgba(248, 241, 231, 0) 0%,
      rgba(248, 241, 231, 0.12) 28%,
      rgba(248, 241, 231, 0.5) 58%,
      rgba(248, 241, 231, 0.84) 80%,
      #f8f1e7 100%
    ) !important;
    filter: blur(8px) !important;
    transform: translateY(8px) !important;
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 24%,
      rgba(0, 0, 0, 0.8) 58%,
      rgba(0, 0, 0, 1) 100%
    ) !important;
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 24%,
      rgba(0, 0, 0, 0.8) 58%,
      rgba(0, 0, 0, 1) 100%
    ) !important;
  }

  /* Keep top nav clean and readable */
  .top-nav {
    background: rgba(248, 241, 231, 0.74) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(185, 145, 65, 0.2) !important;
    border-radius: 16px !important;
  }

  /* Contact gallery must stay visible on mobile */
  .contact-gallery {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .contact-gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Hide emoji charms on hanging frames for phones */
  .chain-charm,
  .column-charm,
  .featured-charm {
    display: none !important;
  }

  /* Contact form card polish on phones */
  body.contact-page .booking {
    padding: 62px 12px 26px !important;
    gap: 14px !important;
  }

  body.contact-page .booking .left {
    display: block !important;
    width: min(100%, 420px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body.contact-page .booking .right {
    width: min(100%, 420px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    box-shadow:
      0 14px 28px rgba(95, 66, 26, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  }

  body.contact-page .contact-form-heading {
    margin: 0 2px 12px !important;
    font-size: 1.9rem !important;
    line-height: 1.1 !important;
  }

  body.contact-page .contact-form {
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.contact-page .contact-form .input-field,
  body.contact-page .date-picker {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.contact-page .contact-form input,
  body.contact-page .contact-form .date-display,
  body.contact-page .contact-form .custom-event-input,
  body.contact-page .contact-form .custom-budget-input {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 0.98rem !important;
    box-sizing: border-box !important;
  }

  body.contact-page .contact-form .custom-budget-input {
    margin: 0 !important;
    display: block !important;
  }

  body.contact-page .budget-label {
    margin-bottom: 6px !important;
    font-size: 1.05rem !important;
  }

  body.contact-page .contact-points {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.contact-page .contact-points span {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
  }

  body.contact-page .contact-form button[type="submit"] {
    width: 100% !important;
    justify-self: stretch !important;
    margin-top: 4px !important;
    min-width: 0 !important;
  }

  body.contact-page .booking .left,
  body.contact-page .booking .right {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .gallery-scene--pile {
    display: block !important;
  }

  .gallery-scene--pile .gallery-copy {
    margin-top: 34px !important;
  }

  .photo-pile {
    width: min(100%, 370px) !important;
    height: clamp(720px, 190vw, 800px) !important;
    margin: 0 auto 12px !important;
    overflow: visible !important;
  }

  .pile-photo {
    width: clamp(102px, 28vw, 124px) !important;
    padding: 6px 6px 17px !important;
    transition: box-shadow 150ms ease, transform 170ms ease !important;
  }

  .pile-photo-large {
    width: clamp(142px, 40vw, 164px) !important;
  }

  .pile-photo-wide {
    width: clamp(136px, 38vw, 156px) !important;
  }

  .pile-photo-desktop,
  .pile-photo:nth-child(n + 16) {
    display: none !important;
  }

  .pile-photo:nth-child(1) { --x: 29% !important; --y: 0% !important; --r: -4deg !important; --z: 24 !important; }
  .pile-photo:nth-child(2) { --x: 4% !important; --y: 8% !important; --r: 8deg !important; --z: 8 !important; }
  .pile-photo:nth-child(3) { --x: 62% !important; --y: 8% !important; --r: -7deg !important; --z: 18 !important; }
  .pile-photo:nth-child(4) { --x: 20% !important; --y: 18% !important; --r: -10deg !important; --z: 13 !important; }
  .pile-photo:nth-child(5) { --x: 54% !important; --y: 20% !important; --r: 9deg !important; --z: 21 !important; }
  .pile-photo:nth-child(6) { --x: 3% !important; --y: 31% !important; --r: -5deg !important; --z: 16 !important; }
  .pile-photo:nth-child(7) { --x: 65% !important; --y: 31% !important; --r: 8deg !important; --z: 10 !important; }
  .pile-photo:nth-child(8) { --x: 33% !important; --y: 37% !important; --r: 4deg !important; --z: 28 !important; }
  .pile-photo:nth-child(9) { --x: 12% !important; --y: 49% !important; --r: 11deg !important; --z: 22 !important; }
  .pile-photo:nth-child(10) { --x: 58% !important; --y: 47% !important; --r: -10deg !important; --z: 12 !important; }
  .pile-photo:nth-child(11) { --x: 32% !important; --y: 58% !important; --r: -2deg !important; --z: 30 !important; }
  .pile-photo:nth-child(12) { --x: 66% !important; --y: 63% !important; --r: 11deg !important; --z: 17 !important; }
  .pile-photo:nth-child(13) { --x: 3% !important; --y: 66% !important; --r: -8deg !important; --z: 9 !important; }
  .pile-photo:nth-child(14) { --x: 41% !important; --y: 72% !important; --r: 7deg !important; --z: 7 !important; }
  .pile-photo:nth-child(15) { --x: 18% !important; --y: 78% !important; --r: -11deg !important; --z: 3 !important; }
}
