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

/* ─────────────────────────────────────────────
   Design Tokens — Refined Interior Design Palette
   ───────────────────────────────────────────── */
:root {
  /* Core palette — soft, warm, luxurious */
  --color-deep:        #1A1A1A;
  --color-charcoal:    #2D2D2D;
  --color-warm-dark:   #3A3530;
  --color-gold:        #C9A96E;
  --color-gold-soft:   #D4B97A;
  --color-cream:       #FAF7F2;
  --color-white:       #FFFFFF;
  --color-warm-grey:   #A89F95;
  --color-blue:        #4A6B82; /* Coastal slate blue */
  --color-blue-cream:  #B8CDD9; /* Creamy powder blue — soft & luxurious */
  --color-text:        #4A4543;
  --color-text-light:  #7A756F;

  /* Legacy support for other pages */
  --color-primary-navy:    #1A1A1A;
  --color-secondary-blue:  #2D2D2D;
  --color-champagne-gold:  #C9A96E;
  --color-soft-gold:       #D4B97A;
  --color-ivory:           #FAF7F2;
  --color-dark-text:       #4A4543;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
  --font-accent:  'Playfair Display', serif;

  /* Motion */
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   all 0.4s var(--ease-elegant);
}

/* ─────────────────────────────────────────────
   Reset & Base
   ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ─────────────────────────────────────────────
   Snap-page: full-screen panel scroll system
   ───────────────────────────────────────────── */
body.snap-page {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  height: 100vh;
}

/* Every top-level section snaps to full screen */
body.snap-page > section,
body.snap-page > .hero-fullpage {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ─── Snap content panels (About / Contact second screen etc.) ─── */
.snap-content-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-ivory);
  position: relative;
  padding: 80px 0 80px;
}

/* Split layout: image left + text right */
.snap-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 160px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.snap-split-image {
  overflow: hidden;
}

.snap-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.snap-split-text {
  padding: 80px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snap-split-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--color-deep);
}

.snap-split-text p {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.snap-role {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem !important;
}

/* ─── Snap gallery panels ─── */
.snap-gallery-panel {
  background-color: var(--color-deep);
  padding: 60px 40px 80px;
  position: relative;
}

.snap-gallery-header {
  margin-bottom: 2rem;
}

.snap-gallery-header h2 {
  color: var(--color-cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.snap-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 5px;
  max-width: 1400px;
  margin: 0 auto;
}

.snap-gallery-item {
  overflow: hidden;
}

.snap-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-elegant);
}

.snap-gallery-item:hover img {
  transform: scale(1.06);
}

/* CTA strip at the bottom of the last gallery panel */
.snap-gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.snap-gallery-cta .hero-footer-copy {
  color: rgba(250, 247, 242, 0.4);
}

/* ─── Home contact section (also used on contact page) ─── */
.home-contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-ivory);
  position: relative;
}

.home-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.home-contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-deep);
  margin-bottom: 1rem;
}

.home-contact-info p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.home-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-contact-detail-item i {
  color: var(--color-gold);
  width: 18px;
  text-align: center;
}

a.home-contact-detail-item:hover {
  color: var(--color-gold);
}

.home-contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-deep);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* ─── Hero footer light variant (for cream panels) ─── */
.hero-footer--light {
  background: linear-gradient(to top, rgba(240, 235, 225, 0.95) 0%, transparent 100%);
}

.hero-footer--light .hero-footer-links a,
.hero-footer--light .hero-footer-copy,
.hero-footer--light .hero-footer-socials a {
  color: rgba(74, 69, 67, 0.6);
}

.hero-footer--light .hero-footer-links a:hover,
.hero-footer--light .hero-footer-socials a:hover {
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .snap-split {
    grid-template-columns: 1fr;
  }
  .snap-split-image {
    height: 40vh;
  }
  .snap-split-text {
    padding: 40px 24px;
  }
  .snap-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }
  .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 80px 24px 40px;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-deep);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.85;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold);
}

/* ─────────────────────────────────────────────
   Layout
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* ─────────────────────────────────────────────
   Buttons — refined, understated
   ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  border-radius: 0;
  padding: 16px 44px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-deep);
  color: var(--color-deep);
}

.btn-outline:hover {
  background: var(--color-deep);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: transparent;
  border: 1px solid var(--color-deep);
  color: var(--color-deep);
}

.btn-dark:hover {
  background: var(--color-deep);
  color: var(--color-cream);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   Navigation — minimal and transparent
   ───────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.top-bar {
  background-color: var(--color-gold);
  color: var(--color-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
}

.top-bar a {
  color: var(--color-deep);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top-bar a:hover {
  opacity: 0.7;
}

header.scrolled .top-bar {
  display: none; /* Hide top bar when scrolled for a cleaner sticky nav */
}

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto; /* Changed to auto so logo can expand */
  align-items: center;
  height: 100px;
  padding-left: 60px;
  padding-right: 60px;
  max-width: 100%;
}

.logo-wrapper {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  gap: 15px;
}

.logo-a {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-blue);
  font-weight: 400;
  letter-spacing: 1px;
  white-space: nowrap;
  /* Add a subtle text shadow in case it sits on a dark background */
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.nav-links a {
  color: var(--color-cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.4s var(--ease-elegant);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-quote-btn {
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 2px;
}

.menu-toggle {
  display: none;
  color: var(--color-cream);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ─────────────────────────────────────────────
   Hero Section — Full-bleed cinematic image
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.55) 0%,
    rgba(26, 26, 26, 0.60) 40%,
    rgba(26, 26, 26, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 30px;
}

.hero-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-content h1 {
  color: var(--color-cream);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.hero-cta {
  margin-top: 1rem;
}

/* ─────────────────────────────────────────────
   Hero — Full-bleed one-screen layout
   ───────────────────────────────────────────── */
.hero-fullpage {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-fullpage-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Use background-image for smoother browser upscaling */
  background-image: url('Photos/angel & co/homeheroupdated.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  
  /* Zoom the background slightly to push baked-in black bars off screen */
  transform: scale(1.25);
  transform-origin: center center;
  /* Smooth upscaling — reduces pixel-block artifacts */
  image-rendering: auto;
  -webkit-filter: none;
  filter: none;
}

/* Hide the img tag; background-image handles the photo */
.hero-fullpage-bg img {
  display: none;
}

.hero-fullpage-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Creamy-blue tinted gradient for a refined atmosphere */
  background: linear-gradient(
    135deg,
    rgba(18, 30, 42, 0.78) 0%,
    rgba(45, 68, 85, 0.45) 50%,
    rgba(184, 205, 217, 0.08) 100%
  );
}

.hero-fullpage-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 40px;
  text-align: left;
  margin-left: 8%;
  margin-right: auto;
}

.hero-fullpage-content h1 {
  color: var(--color-cream);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* CTA button + tagline on same row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.65);
  letter-spacing: 1.5px;
  font-style: italic;
}

/* Contact strip at the bottom of hero content */
.hero-contact-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-contact-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.hero-contact-item i {
  color: var(--color-blue-cream);
  margin-right: 5px;
}

a.hero-contact-item:hover {
  color: var(--color-gold);
}

.hero-contact-divider {
  color: rgba(250, 247, 242, 0.3);
  font-size: 0.75rem;
}

/* Hero footer bar — pinned to bottom of the full-page section */
.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.65) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-footer-links {
  display: flex;
  gap: 1.8rem;
}

.hero-footer-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-footer-links a:hover {
  color: var(--color-gold);
}

.hero-footer-copy {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(250, 247, 242, 0.4);
}

.hero-footer-socials {
  display: flex;
  gap: 1.2rem;
}

.hero-footer-socials a {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-footer-socials a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .hero-footer {
    padding: 12px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero-footer-links {
    gap: 1rem;
  }
}


@media (max-width: 768px) {
  .hero-fullpage-content {
    margin-left: auto;
    text-align: center;
    padding: 0 24px;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-contact-strip {
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────
   Homepage Gallery Preview
   ───────────────────────────────────────────── */
.home-gallery-section {
  padding: 80px 0 100px;
  background-color: var(--color-ivory);
}

.home-gallery-section .section-heading {
  color: var(--color-deep);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
  margin-top: 3rem;
  padding: 0 6px;
}

.home-gallery-item {
  overflow: hidden;
  display: block;
  position: relative;
}

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

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

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-elegant);
}

.home-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  transition: background 0.4s ease;
}

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

.home-gallery-item:hover::after {
  background: rgba(26, 26, 26, 0.15);
}

@media (max-width: 768px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .home-gallery-item.wide {
    grid-column: span 1;
  }
}

/* ─────────────────────────────────────────────
   Hero Section — Split Layout (legacy, kept for other use)
   ───────────────────────────────────────────── */
.split-hero {
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
  background: linear-gradient(135deg, var(--color-deep) 0%, #151515 100%);
  flex-direction: row;
  position: relative;
  overflow: hidden;
}

.split-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 8% 80px 12%; 
  z-index: 3;
  position: relative;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  height: 120%;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.split-hero-content h1 {
  color: var(--color-cream);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.split-hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .split-hero {
    flex-direction: column;
  }
  .split-hero-content {
    padding: 160px 5% 60px 5%;
    align-items: center;
    text-align: center;
  }
  .split-hero-image {
    min-height: 60vh;
  }
}

/* ─────────────────────────────────────────────
   Section Shared Styles
   ───────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--color-gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-heading {
  text-align: center;
  color: var(--color-deep);
  margin-bottom: 0.8rem;
}

.section-subtext {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 5rem;
  font-weight: 300;
}

/* Old section header styles (used on other pages) */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 4rem;
}
.section-separator::before,
.section-separator::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
}
.section-separator i {
  color: var(--color-gold);
  font-size: 0.6rem;
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────
   Before & After — Side-by-Side Layout
   ───────────────────────────────────────────── */
.before-after-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--color-white);
}

.ba-pair {
  margin-bottom: 6rem;
}

.ba-pair:last-child {
  margin-bottom: 0;
}

.ba-label-row {
  text-align: center;
  margin-bottom: 2rem;
}

.ba-room-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-deep);
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
}

.ba-room-name::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 0.75rem auto 0;
}

.ba-side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-elegant);
}

.ba-card:hover img {
  transform: scale(1.03);
}

.ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-cream);
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  z-index: 2;
}

.ba-tag-after {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ─────────────────────────────────────────────
   Featured Projects (legacy — kept for gallery page)
   ───────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-elegant);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-overlay h3 {
  color: var(--color-cream);
  font-size: 2.2rem;
  transform: translateY(20px);
  transition: transform 0.5s ease;
  margin-bottom: 0.5rem;
}

.project-overlay p {
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: transform 0.5s ease 0.1s;
}

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

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-overlay h3,
.project-card:hover .project-overlay p {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   Split Section (About Preview)
   ───────────────────────────────────────────── */
#about-preview {
  background-color: var(--color-cream);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────
   Luxury Cards (used on services, etc.)
   ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.cards-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  overflow: visible;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-deep);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.service-card-content {
  padding: 4rem 2rem 2rem 2rem;
  flex: 1;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

.service-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.luxury-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}

.luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.luxury-card:hover::before {
  width: 100%;
}

.luxury-card h3 {
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* ─────────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  background-color: var(--color-deep);
  color: var(--color-cream);
  padding-top: 100px;
  padding-bottom: 100px;
}

.cta-section h2 {
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────
   Page Headers (sub-pages)
   ───────────────────────────────────────────── */
.page-header {
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-deep);
  color: var(--color-cream);
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  color: var(--color-gold);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.70);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────────
   Gallery
   ───────────────────────────────────────────── */
.full-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}

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

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

/* ─────────────────────────────────────────────
   Forms
   ───────────────────────────────────────────── */
.quote-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 4rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-deep);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0dcd7;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-cream);
  transition: var(--transition);
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold);
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
footer {
  background-color: var(--color-deep);
  color: var(--color-cream);
  padding: 80px 0 40px;
  text-align: center;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  mix-blend-mode: screen;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-links a {
  color: rgba(250, 247, 242, 0.7);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.social-links a {
  color: var(--color-cream);
  font-size: 1.1rem;
}

.social-links a:hover {
  color: var(--color-gold);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.35);
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 2rem;
  letter-spacing: 1px;
}

/* ─────────────────────────────────────────────
   Scroll Reveal Animation
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-elegant), transform 1s var(--ease-elegant);
}

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

/* ─────────────────────────────────────────────
   Before & After Slider (legacy — kept for
   other pages that may use it)
   ───────────────────────────────────────────── */
.transformation-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.15);
  color: var(--color-deep);
  padding: 0.8rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--color-deep);
  border-color: var(--color-deep);
  color: var(--color-cream);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.slider-wrapper-outer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-image.after {
  width: 50%;
  z-index: 2;
}

.slider-image.after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label {
  position: absolute;
  bottom: 20px;
  background: rgba(26, 26, 26, 0.8);
  color: var(--color-cream);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--color-gold);
  z-index: 5;
  pointer-events: none;
  transform: translateX(-50%);
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--color-white);
  font-size: 0.75rem;
  gap: 3px;
}

.slider-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
}

.transformation-desc h3 {
  color: var(--color-deep);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-accent);
}

.transformation-desc p {
  color: var(--color-text-light);
  line-height: 1.85;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .split-section {
    gap: 3rem;
  }

  .ba-side-by-side {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-right {
    gap: 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--color-deep);
    padding: 2rem 0;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-quote-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-subtext {
    margin-bottom: 3rem;
  }

  .ba-pair {
    margin-bottom: 4rem;
  }

  .ba-side-by-side {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cards-grid,
  .cards-grid.two-cols,
  .projects-grid,
  .split-section,
  .form-grid,
  .slider-wrapper-outer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .transformation-tabs {
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  .quote-form {
    padding: 2.5rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .footer-links a {
    font-size: 0.7rem;
  }

  .hero-overline {
    letter-spacing: 3px;
    font-size: 0.6rem;
  }

  .cta-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/* ---------------------------------------------
   Single-Screen Gallery
   --------------------------------------------- */
body.no-scroll-gallery {
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-ivory);
}

.gallery-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 100px 30px 40px; /* space for header */
  height: 100vh;
  box-sizing: border-box;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

.gallery-column-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-deep);
  text-align: center;
  margin-bottom: 5px;
}

.gallery-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--color-cream);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--color-gold);
}

@media (max-width: 900px) {
  body.no-scroll-gallery {
    overflow-y: auto;
    height: auto;
  }
  .gallery-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    padding-bottom: 80px;
  }
  .gallery-item {
    min-height: 250px;
  }
}

/* ---------------------------------------------
   Gallery 9-Image Grid (Fits perfectly on screen)
   --------------------------------------------- */
.gallery-all-in-one {
  background-color: var(--color-deep);
  padding: 80px 40px 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gallery-all-in-one .snap-gallery-header {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.gallery-9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Dynamically size 3 rows to fill remaining height exactly */
  grid-template-rows: repeat(3, calc((100vh - 280px) / 3));
  grid-auto-flow: column; /* THIS MAKES IT FILL COLUMNS FIRST! */
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex-grow: 1;
}

.gallery-9-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-9-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.gallery-9-item:hover img {
  transform: scale(1.05);
}

.gallery-9-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  padding: 4px 12px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-deep);
  border-radius: 2px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .gallery-9-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 150px);
  }
}

/* --- Gallery Grid Labels --- */
.gallery-9-header {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 5px;
}

/* --- About Me Photo Shrink & Crop --- */
.about-me-photo-wrapper {
  width: 400px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 8px solid var(--color-ivory);
}

.about-me-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Zoom in to push black bars out, but shift down slightly to keep her head */
  transform: scale(1.25);
  object-position: center 10%;
}

.about-me-bg {
  background-image: url('Photos/angel & co/group1/3e6c401f-32f6-44ea-9750-c14af70dceb6.jpeg'); /* elegant living room */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-me-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 12, 10, 0.85); /* dark overlay */
  z-index: 0;
}
.about-me-bg > * {
  position: relative;
  z-index: 1;
}
.about-me-bg .snap-split-text h2, 
.about-me-bg .snap-split-text p {
  color: var(--color-cream);
}

/* Force footer to be fixed and completely at the bottom */
.hero-footer {
  position: fixed !important;
  bottom: 0 !important;
  padding-bottom: 8px !important; 
  padding-top: 15px !important;
  z-index: 99 !important;
}

/* ---------------------------------------------
   Hero Two-Column Overlay (Homepage)
   --------------------------------------------- */
.hero-split-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 40px;
}

.hero-split-left {
  flex: 1;
  max-width: 600px;
}

.hero-split-left h1 {
  color: var(--color-cream);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-contact-card {
  flex: 0 1 450px;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  z-index: 10;
}

.hero-contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-deep);
  margin-bottom: 20px;
}

.hero-contact-card .form-group label {
  color: var(--color-text);
}

.hero-contact-card .form-group input,
.hero-contact-card .form-group textarea {
  background: #fff;
  border: 1px solid rgba(139, 126, 116, 0.3);
  color: var(--color-deep);
}

.hero-contact-card .form-group input:focus,
.hero-contact-card .form-group textarea:focus {
  border-color: var(--color-gold);
}

@media (max-width: 1000px) {
  .hero-split-layout {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-top: 80px;
  }
  .hero-contact-card {
    width: 100%;
    max-width: 500px;
  }
  .hero-split-left {
    text-align: center;
  }
  .hero-split-left .hero-contact-strip,
  .hero-split-left .hero-cta-row {
    justify-content: center;
  }
}

/* Force About Me Photo Wrapper Aspect Ratio */
.about-me-photo-wrapper {
  width: 100%;
  max-width: 400px;
  height: auto !important;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}
.about-me-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* Just a tiny safety zoom */
  object-position: center center;
}

/* Hide black bars in the gallery thumbnails */
.gallery-9-item img {
  transform: scale(1.35) !important;
}
.gallery-9-item:hover img {
  transform: scale(1.45) !important;
}

/* Lightbox Wrapper to hide black bars on zoom */
.lightbox-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-wrapper img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transform: scale(1.35); /* Zoom to push black bars out of the wrapper */
  box-shadow: none !important; /* Move shadow to wrapper */
  border-radius: 0 !important;
}
