/* =====================================================
   SHOTS BY JARRET — Main Stylesheet
   Dark luxury photography portfolio
   Fonts: Cormorant Garamond (display) · Outfit (UI)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #161616;
  --bg-card:     rgba(255,255,255,0.04);
  --text:        #ffffff;
  --text-dim:    rgba(255,255,255,0.62);
  --text-muted:  rgba(255,255,255,0.30);
  --gold:        #c8a96e;
  --gold-light:  #d9bb82;
  --gold-dim:    rgba(200,169,110,0.14);
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(200,169,110,0.45);
  --nav-h:       72px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t:           0.35s;
  --max-w:       1100px;
  --section-py:  clamp(70px, 10vw, 120px);
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-heading {
  font-size: clamp(62px, 10vw, 118px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}
.section-heading {
  font-size: clamp(34px, 5vw, 52px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
p { color: var(--text-dim); max-width: 62ch; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}
.container--wide { width: min(1400px, 100% - 2.5rem); margin-inline: auto; }
section { padding-block: var(--section-py); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.btn-ghost {
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

/* ─── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t) var(--ease), backdrop-filter var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
  transition: color var(--t);
}
.nav-logo:hover { color: var(--gold); }
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { flex-shrink: 0; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1200;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../photos/hero.jpg');
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.18) 0%,
      rgba(10,10,10,0.36) 50%,
      rgba(10,10,10,0.80) 85%,
      rgba(10,10,10,0.96) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-eyebrow {
  margin-bottom: 1.6rem;
  animation: fadeUp 1s var(--ease) 0.3s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85), 0 0 20px rgba(0,0,0,0.6);
}
.hero-title {
  animation: fadeUp 1s var(--ease) 0.55s both;
  margin-bottom: 0.5rem;
}
.hero-title .line-1 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9.5vw, 100px);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-title .line-2 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(70px, 13vw, 138px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 0.9;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.6rem auto;
  animation: fadeUp 1s var(--ease) 0.75s both;
}
.hero-tagline {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 2.4rem;
  max-width: 44ch;
  animation: fadeUp 1s var(--ease) 0.9s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeUp 1s var(--ease) 1.05s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s var(--ease) 1.6s both;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 2s;
}

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(42px, 7vw, 72px); font-weight: 300; }
.page-hero .lead {
  margin: 1rem auto 0;
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 50ch;
}

/* ─── SECTION: FEATURED SERVICES PREVIEW (homepage) ─── */
.services-preview {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-preview .container {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.service-pill {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: background var(--t);
}
.service-pill:hover:not(.coming-soon) { background: var(--bg-3); }
.service-pill .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
}
.service-pill .price {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-weight: 500;
}
.service-pill.coming-soon { opacity: 0.4; pointer-events: none; }
.badge-soon {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.25rem;
}

/* ─── SECTION: GALLERY PREVIEW (homepage) ────────────── */
.gallery-preview {
  overflow: hidden;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
  margin-top: 3rem;
}
.gallery-preview-grid .gp-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-preview-grid .gp-item.tall {
  grid-row: span 2;
}
.gallery-preview-grid .gp-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-preview-grid .gp-item:hover img { transform: scale(1.06); }
.gallery-preview-grid .gp-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.3s;
}
.gallery-preview-grid .gp-item:hover::after { background: rgba(10,10,10,0.12); }

/* ─── SERVICES PAGE ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.service-card:not(.coming-soon):hover {
  border-color: var(--border-gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
}
.service-card:not(.coming-soon):hover::before { transform: scaleY(1); }
.service-card.coming-soon { opacity: 0.45; cursor: not-allowed; }
.service-card .service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.service-card .service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.service-card .service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card .service-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: none;
}
.service-card .badge-soon {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}
.services-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ─── GALLERY PAGE ───────────────────────────────────── */
.gallery-masonry {
  columns: 3;
  column-gap: 10px;
  padding-top: 2.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.68) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ─── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,4,4,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: min(90vw, 700px);
  max-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 90svh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-dim);
  z-index: 9001;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.25s;
}
.lightbox-close:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.lightbox-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  z-index: 9001;
  font-size: 1.5rem;
  color: var(--text-dim);
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.25s;
  background: rgba(255,255,255,0.04);
}
.lightbox-nav:hover { color: var(--text); background: rgba(255,255,255,0.1); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
  position: fixed;
  bottom: 1.5rem; left: 0; right: 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── BOOKING FORM ───────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.booking-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.booking-info p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.booking-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.booking-services-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.booking-services-list .svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  color-scheme: dark;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.05);
}
select option { background: #1a1a1a; }
textarea { resize: vertical; min-height: 110px; }
.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding-left: 0.9rem;
  margin: 1.5rem 0;
  max-width: none;
}
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.82rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success h3 { font-size: 1.8rem; margin-bottom: 0.75rem; color: var(--gold); }
.form-success p { font-size: 0.92rem; margin: 0 auto; }

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  pointer-events: none;
}
.about-text h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
  max-width: none;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-block: var(--section-py);
}
.contact-center .section-heading { margin-bottom: 0; }
.contact-center p { text-align: center; }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 38px);
  color: var(--text);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 0.4rem;
  transition: color 0.25s, border-color 0.25s;
}
.ig-link:hover { color: var(--gold); border-color: var(--gold); }
.ig-icon { width: 28px; height: 28px; fill: currentColor; }
.contact-note {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  max-width: 40ch;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
}
.footer-logo:hover { color: var(--gold); }
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: none;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-ig-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-ig-link:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  max-width: none;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }
.fade-up[data-delay="5"] { transition-delay: 0.5s; }

/* ─── KEYFRAMES ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ─── UTILITY ────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-block: 1.5rem;
}
.divider.center { margin-inline: auto; }
hr.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .booking-layout,
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 440px; margin: 0 auto; }
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-preview-grid .gp-item.tall { grid-row: span 1; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-tagline { grid-column: 1 / -1; order: -1; text-align: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-bg { background-attachment: scroll; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
  }
  .gallery-preview-grid .gp-item:nth-child(n+5) { display: none; }
}

@media (max-width: 480px) {
  .hero-title .line-2 { letter-spacing: 0.12em; }
  .booking-form { padding: 1.5rem 1.25rem; }
  .gallery-masonry { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
