/* ========================================================
   TATVA STAYS — Ultra Premium Luxury Villa
   Editorial, Warm, Immersive
   ======================================================== */

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

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --ivory:     #f9f5ef;
  --cream:     #f1e9dc;
  --sand:      #e2d4c0;
  --warm-mid:  #c9b99a;
  --terracotta:#a84c30;
  --terra-lt:  #c4644a;
  --olive-deep:#1e2e22;
  --ink:       #16191a;
  --ink-soft:  #2c3030;
  --muted:     #7a7f7d;
  --gold:      #b08850;
  --gold-lt:   #c9a66b;
  --white:     #ffffff;
  --off-white: #faf8f4;

  /* Typography */
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;

  --size-hero:    clamp(3.2rem, 7vw, 6rem);
  --size-h1:      clamp(2.4rem, 4vw, 3.8rem);
  --size-h2:      clamp(1.8rem, 3vw, 2.8rem);
  --size-display: clamp(1.5rem, 2.5vw, 2rem);
  --size-body:    clamp(1rem, 1.15vw, 1.12rem);
  --size-sm:      0.88rem;
  --size-xs:      0.78rem;

  /* Space */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  4rem;
  --gap-xl:  7rem;
  --gap-2xl: 10rem;
  --nav-h:   90px;
  --max-w:   1440px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast: 0.3s;
  --dur-base: 0.6s;
  --dur-slow: 1.2s;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--size-body);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; cursor: none; font-family: inherit; background: none; }
ul { list-style: none; }
input, textarea { font-family: inherit; }
.bg-warm { background: var(--cream); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 2px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease-out), top 0.12s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.7;
}
body:hover .cursor { opacity: 1; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out);
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo {
  height: 220px;
  margin: 0 auto 12px;
  filter: brightness(1.1) drop-shadow(0 4px 16px rgba(201,166,107,0.35));
  animation: loaderPulse 2.5s ease-in-out infinite;
}
.loader__tagline {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}
.loader__bar {
  width: 220px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto;
  overflow: hidden;
}
.loader__progress {
  height: 100%;
  background: var(--terracotta);
  animation: loadProgress 2s var(--ease-out) forwards;
}
@keyframes loaderPulse {
  0%,100% { opacity:0.4; transform:scale(0.96); }
  50% { opacity:1; transform:scale(1); }
}
@keyframes loadProgress {
  from { width:0; }
  to { width:100%; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.visible { opacity:1; transform:translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ── HOVER ZOOM ── */
.hover-zoom { overflow: hidden; }
.hover-zoom img { transition: transform 1.8s var(--ease-out); }
.hover-zoom:hover img { transform: scale(1.06); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap-md);
}
.section-pad { padding: var(--gap-xl) 0; }

/* ── TYPOGRAPHY REUSABLES ── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--gap-sm);
}
.section-title {
  font-family: var(--serif);
  font-size: var(--size-h1);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--gap-md);
}
.section-title em { font-style: italic; color: var(--terracotta); }
.body-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--size-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: var(--gap-md);
  transition: gap var(--dur-fast) var(--ease-out);
}
.text-cta:hover { gap: 18px; }
.section-header { text-align: center; margin-bottom: var(--gap-lg); }
.ornament-line {
  margin: var(--gap-sm) auto 0;
  width: 180px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 16'%3E%3Cline x1='0' y1='8' x2='70' y2='8' stroke='%23b08850' stroke-width='0.5'/%3E%3Ccircle cx='90' cy='8' r='4' fill='none' stroke='%23b08850' stroke-width='0.5'/%3E%3Cline x1='110' y1='8' x2='180' y2='8' stroke='%23b08850' stroke-width='0.5'/%3E%3C/svg%3E") no-repeat center;
}
.bg-ink {
  background-color: var(--ink);
  color: var(--white);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed; top:0; width:100%;
  height: var(--nav-h);
  z-index: 500;
  display: flex; align-items: center;
  transition: background var(--dur-base) var(--ease-out), height var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.nav.scrolled {
  background: rgba(249,245,239,0.94);
  backdrop-filter: blur(16px);
  height: 75px;
  box-shadow: 0 1px 0 var(--sand);
}
.nav__inner {
  max-width: 1600px;
  width: 100%; margin: 0 auto;
  padding: 0 var(--gap-md);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  height: 90px;
  transition: height var(--dur-base) var(--ease-out), filter var(--dur-fast);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.45));
}
.nav.scrolled .nav__logo { height: 64px; filter: none; }
.nav__links {
  display: flex; align-items: center;
  gap: 3rem;
}
.nav__link {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  position: relative;
  transition: color var(--dur-fast);
}
.nav__link::after {
  content:'';
  position:absolute; left:0; bottom:-4px;
  width:0; height:1px;
  background: var(--gold-lt);
  transition: width var(--dur-base) var(--ease-out);
}
.nav__link:hover::after { width:100%; }
.nav.scrolled .nav__link { color: var(--ink-soft); text-shadow:none; }
.nav.scrolled .nav__link::after { background: var(--terracotta); }
.nav__reserve {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 13px 28px;
  border-radius: 2px;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.nav__reserve:hover {
  background: var(--terra-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168,76,48,0.3);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__slides {
  position: absolute; inset:0;
}
.hero__slide {
  position:absolute; inset:0;
  opacity:0; transition:opacity 0.8s ease;
  overflow: hidden;
}
.hero__slide.active { opacity:1; z-index: 1; }
.hero__slide img {
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.0);
  transition: transform 10s ease-out;
}
.hero__slide.active img {
  transform: scale(1.1) translate(-1%, -1%);
}
.hero__vignette {
  position:absolute; inset:0; z-index:1;
  background: 
    linear-gradient(to top, rgba(22,25,26,0.95) 0%, rgba(22,25,26,0.4) 50%, rgba(22,25,26,0.2) 100%),
    radial-gradient(circle at center, transparent 35%, rgba(22,25,26,0.5) 100%),
    rgba(22,25,26,0.15); /* Multi-layered vignette overlay */
}
.hero__content {
  position: relative; z-index:2;
  padding: 0 8vw 120px; /* Reduced from 160px to drop content down */
  width: 100%; max-width: 1100px;
}
.hero__eyebrow {
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ebd7b3;
  margin-bottom: 12px; /* Reduced from var(--gap-sm) */
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '✦';
  font-size: 0.75rem;
  color: var(--gold);
}
.reveal-hero { animation: slideUp 1.2s var(--ease-out) both; }
.reveal-hero:nth-child(1) { animation-delay: 0.3s; }
.reveal-hero:nth-child(2) { animation-delay: 0.5s; }
.reveal-hero:nth-child(3) { animation-delay: 0.7s; }
.reveal-hero:nth-child(4) { animation-delay: 0.9s; }
@keyframes slideUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.hero__title {
  font-family: var(--serif);
  font-size: var(--size-hero);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  display: flex; flex-direction: column;
  margin-bottom: 20px; /* Reduced from var(--gap-md) */
  letter-spacing: -0.01em;
  text-shadow: 0 10px 45px rgba(0,0,0,0.65), 0 2px 10px rgba(0,0,0,0.5);
}
.hero__title-serif { letter-spacing: -0.01em; }
.hero__title-italic { 
  font-style: italic; 
  color: #ebd7b3;
  text-shadow: 0 10px 45px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.8);
  font-weight: 400;
}
.hero__meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
  margin-bottom: 36px; /* Reduced from var(--gap-lg) to lower spacing */
}
.hero__meta .sep { color: var(--gold-lt); font-size: 0.6rem; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(22, 25, 26, 0.2);
  color: var(--white);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px; /* Cohesive with reserve button */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero__cta::after {
  content: '→';
  font-family: inherit;
  transition: transform 0.3s var(--ease-out);
}
.hero__cta:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.hero__cta:hover::after {
  transform: translateX(5px);
}

.hero__slide-dots {
  position: absolute; top: 50%; right: 4vw;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
}
.hero__dot.active {
  background: var(--gold-lt);
  transform: scale(1.4);
  border-color: var(--white);
}

.hero__scroll-hint {
  position: absolute; left: 4vw; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 3;
  display: flex;
  align-items: center; gap: 20px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
}
.scroll-line {
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content:'';
  position:absolute; left:-100%; top:0;
  width:100%; height:100%;
  background: var(--gold-lt);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-strip {
  background: var(--terracotta);
  overflow: hidden;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  padding: 0 var(--gap-sm);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   BOOKING BAR
═══════════════════════════════════════ */
.booking { position: relative; z-index: 50; }
.booking__shell {
  display: flex;
  align-items: stretch;
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: -60px auto 0;
  border-radius: 3px;
  border: 1px solid var(--sand);
}
.booking__field {
  flex: 1; position:relative;
  padding: 28px 32px;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.booking__field:hover { background: var(--off-white); }
.booking__divider { width:1px; background: var(--sand); margin: 20px 0; }
.booking__label {
  display: block;
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.booking__val {
  width: 100%;
  border: none; outline: none;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
.booking__val::placeholder { color: var(--warm-mid); }
.booking__guests {
  display: flex; align-items: center; gap: 14px;
}
.g-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
  cursor: pointer;
}
.g-btn:hover { background: var(--terracotta); color: #fff; transform: scale(1.1); }
.g-count {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  min-width: 20px; text-align: center;
}
.booking__cta {
  background: var(--olive-deep);
  color: var(--white);
  padding: 0 44px;
  font-family: var(--sans);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background var(--dur-fast);
  white-space: nowrap;
}
.booking__cta:hover { background: var(--terracotta); }

/* Calendar */
.date-picker-overlay {
  display: none;
  position: absolute; top:100%; left:0;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  z-index: 200; border-radius: 4px;
}
.date-picker-overlay.active { display:block; animation: fadeSlide 0.3s var(--ease-out); }
@keyframes fadeSlide {
  from { opacity:0; transform:translateY(10px); }
  to { opacity:1; transform:translateY(0); }
}
.calendar__header { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.calendar__month-year { font-family:var(--serif); font-size:1.3rem; color:var(--ink); }
.calendar__nav-btn { width:32px; height:32px; border-radius:50%; background:var(--cream); color:var(--ink); font-size:1rem; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.calendar__nav-btn:hover { background:var(--terracotta); color:#fff; }
.calendar__weekdays,.calendar__days { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; text-align:center; }
.calendar__weekday { font-size:0.7rem; font-weight:500; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
.calendar__day { padding:10px 0; font-size:0.95rem; color:var(--ink); cursor:pointer; border-radius:4px; transition:all 0.2s; }
.calendar__day:hover:not(.disabled):not(.empty) { background:var(--cream); color:var(--terracotta); }
.calendar__day.disabled { color:var(--sand); cursor:not-allowed; }
.calendar__day.selected { background:var(--terracotta); color:#fff; }
.calendar__day.in-range { background:rgba(168,76,48,0.08); }

/* ═══════════════════════════════════════
   NUMBERS STRIP
═══════════════════════════════════════ */
.numbers-strip {
  background: var(--ink);
  padding: 80px var(--gap-md);
}
.numbers-strip__inner {
  max-width: var(--max-w); margin:0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  text-align: center;
}
.number-item__val {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 12px;
}
.number-item__val sup { font-size: 0.5em; vertical-align: super; }
.stars-mini { font-size: 0.6em; color: var(--gold-lt); }
.number-item__label {
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════
   ABOUT - NEW REVAMPED EDITORIAL
═══════════════════════════════════════ */
.section-pad-sm {
  padding: 80px 0 60px; /* Reduced whitespace */
}
.about__intro-header {
  max-width: 800px;
  margin: 0 auto var(--gap-xl);
  text-align: center;
}
.about__headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--gap-md);
}
.about__headline em { font-style:italic; color:var(--terracotta); }
.about__lead-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.about__collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
  padding: 40px 0;
}
.collage-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
/* Staggered Vertical Alignment */
.collage-item:nth-child(1) {
  transform: translateY(-20px);
}
.collage-item:nth-child(2) {
  transform: translateY(20px);
}
.collage-item:nth-child(3) {
  transform: translateY(-20px);
}
/* Hover effect for staggered cards */
.collage-item:nth-child(1):hover {
  transform: translateY(-28px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}
.collage-item:nth-child(2):hover {
  transform: translateY(12px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}
.collage-item:nth-child(3):hover {
  transform: translateY(-28px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient Overlay */
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 25, 26, 0.75) 0%, rgba(22, 25, 26, 0.1) 50%, rgba(22, 25, 26, 0) 100%);
  z-index: 1;
  transition: opacity 0.4s var(--ease-out);
}

/* Elegant Inner Gold Frame */
.collage-item::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 166, 107, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: inset 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.collage-item:hover::after {
  inset: 22px;
  border-color: rgba(201, 166, 107, 0.6);
}

/* Floating Label Badge */
.collage-item__label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  pointer-events: none;
  transition: transform 0.4s var(--ease-out);
}
.collage-item:hover .collage-item__label {
  transform: translateX(6px);
}
.collage-item__num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1;
}
.collage-item__sep {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.collage-item__title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
}

.about__pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
  padding: 0 var(--gap-md);
}
.pillar-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--ivory);
  border-radius: 4px;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  border: 1px solid var(--cream);
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--sand);
}
.pillar-card__icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.about__cta-row { text-align: center; margin-top: var(--gap-lg); }
.about__signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-top: var(--gap-md);
}

/* ═══════════════════════════════════════
   PULL QUOTE
═══════════════════════════════════════ */
.pullquote-section {
  position: relative;
  height: 55vh; min-height:400px;
  display: flex; align-items:center; justify-content:center;
  overflow: hidden;
}
.pullquote-bg { position:absolute; inset:0; }
.pullquote-bg img { width:100%; height:100%; object-fit:cover; }
.pullquote-overlay {
  position:absolute; inset:0;
  background: rgba(22,25,26,0.72);
}
.pullquote {
  position:relative; z-index:2;
  max-width: 900px; margin:0 auto;
  padding: var(--gap-md);
  text-align: center;
  border: 1px solid rgba(201,166,107,0.3);
  border-radius:2px;
}
.pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   GALLERY - CATEGORIZED GRID & LIGHTBOX
═══════════════════════════════════════ */
.gallery__header {
  display: flex; align-items:flex-start; justify-content:space-between;
  gap: var(--gap-md);
  margin-bottom: 24px;
}
.gallery__intro {
  max-width: 400px;
  font-weight:300;
  color:var(--muted);
  line-height:1.8;
}
.gallery__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 10px;
  flex-wrap: wrap;
}
.gallery__tab {
  font-family: var(--sans);
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 18px;
  border-bottom: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.gallery__tab:hover, .gallery__tab.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.gallery__subtabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
  flex-wrap: wrap;
}
.gallery__subtab {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 16px;
  border: 1px solid var(--sand);
  border-radius: 20px;
  background: transparent;
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.gallery__subtab:hover, .gallery__subtab.active {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 var(--gap-md);
  margin-top: 30px;
  min-height: 350px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  animation: gallFadeIn 0.5s var(--ease-out) both;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item-label {
  display: none;
}
@keyframes gallFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(22, 25, 26, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox__content {
  position: relative;
  max-width: 85vw; max-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center;
}
.lightbox__content img {
  max-width: 100%; max-height: 72vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.open .lightbox__content img {
  transform: scale(1);
}
.lightbox__caption {
  display: none;
}
.lightbox__close {
  position: absolute; top: 30px; right: 30px;
  color: #fff; font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--dur-fast);
  z-index: 1010;
}
.lightbox__close:hover { color: var(--gold-lt); }
.lightbox__btn {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  color: #fff; font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  transition: color var(--dur-fast);
  z-index: 1010;
}
.lightbox__btn:hover { color: var(--gold-lt); }
.lightbox__btn--prev { left: 4vw; }
.lightbox__btn--next { right: 4vw; }

/* ═══════════════════════════════════════
   VILLA HIGHLIGHTS (CARDS)
═══════════════════════════════════════ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,166,107,0.15); /* faint gold lines */
  border: 1px solid rgba(201,166,107,0.15);
}
.hl-card {
  background: var(--cream);
  padding: 48px 40px;
  text-align: center;
  transition: transform var(--dur-base), background var(--dur-fast), box-shadow var(--dur-base);
  position: relative;
}
.hl-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.hl-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 24px;
  color: var(--terracotta);
}
.hl-card h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.hl-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   EXPERIENCES (PHOTO GRID)
═══════════════════════════════════════ */
.experiences .section-header--light .section-title { color: #fff; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.exp-card:hover img {
  transform: scale(1.08);
}
.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,25,26,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px 40px;
}
.exp-card__content h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
  transition: color var(--dur-fast);
}
.exp-card:hover .exp-card__content h3 { color: var(--gold-lt); }
.exp-card__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   AMENITIES ICON GRID
═══════════════════════════════════════ */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--sand);
  border: 2px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
}
.amen-card {
  display: flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 16px;
  padding: 48px 28px;
  text-align:center;
  background: var(--white);
  transition: background var(--dur-fast), color var(--dur-fast);
  cursor: default;
}
.amen-card:hover { background: var(--terracotta); }
.amen-card__icon {
  width: 44px; height:44px;
  color: var(--terracotta);
  transition: color var(--dur-fast);
}
.amen-card:hover .amen-card__icon { color: rgba(255,255,255,0.9); }
.amen-card__icon svg { width:100%; height:100%; }
.amen-card span {
  font-size: var(--size-xs);
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--ink-soft);
  transition: color var(--dur-fast);
}
.amen-card:hover span { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════
   LOCATION STRIP
═══════════════════════════════════════ */
.location-strip__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl); align-items:center;
}
.distance-list { margin: var(--gap-md) 0; display:flex; flex-direction:column; gap:12px; }
.distance-list li {
  display:flex; gap:12px; align-items:center;
  font-size:1rem; color:var(--ink-soft);
}
.dist-mark { color:var(--terracotta); font-size:0.6rem; }
.distance-list li strong { font-weight:500; }
.location-addr {
  font-size:0.95rem; font-weight:300;
  color:var(--muted); line-height:1.7;
  margin-top:var(--gap-md);
  padding: var(--gap-sm) var(--gap-md);
  border-left:3px solid var(--terracotta);
}
.map-placeholder {
  border-radius:4px; overflow:hidden;
  position:relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  aspect-ratio: 1;
}
.map-placeholder img { width:100%; height:100%; object-fit:cover; }
.map-pin {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-100%);
  display:flex; flex-direction:column; align-items:center;
}
.map-pin__dot {
  width:14px; height:14px;
  background:var(--terracotta);
  border-radius:50%;
  border:2px solid #fff;
  z-index:2;
}
.map-pin__ring {
  width:50px; height:50px;
  border:1px solid var(--terracotta);
  border-radius:50%;
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  animation: pingRing 2s ease-out infinite;
  opacity:0;
}
@keyframes pingRing {
  0% { transform:translate(-50%,-50%) scale(0.5); opacity:0.8; }
  100% { transform:translate(-50%,-50%) scale(2.5); opacity:0; }
}
.map-pin span {
  margin-top:6px;
  font-size:var(--size-xs);
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--white);
  background:var(--terracotta);
  padding:4px 10px;
  border-radius:20px;
  white-space:nowrap;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-xl); align-items:start;
}
.contact__info-cards {
  display: flex; flex-direction:column; gap:16px;
  margin-top: var(--gap-md);
}
.info-card {
  display: flex; gap:20px; align-items:flex-start;
  padding: 24px 28px;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.info-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 10px 30px rgba(168,76,48,0.08);
  transform: translateX(6px);
}
.info-card__icon {
  width:40px; height:40px; flex-shrink:0;
  color:var(--terracotta);
}
.info-card__icon svg { width:100%; height:100%; }
.info-card__label { font-size:var(--size-xs); font-weight:500; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.info-card__value { font-family:var(--serif); font-size:1.2rem; color:var(--ink); line-height:1.6; }

/* Contact Form */
.contact__form {
  background: var(--white);
  padding: 56px;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.07);
}
.contact__form-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight:400;
  color:var(--ink);
  margin-bottom: var(--gap-md);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:24px; }
.field-group {
  position:relative;
  margin-bottom: 0;
}
.form-row .field-group { margin-bottom:0; }
.field-group input,
.field-group textarea {
  width:100%;
  padding: 20px 0 10px;
  border:none; border-bottom:1px solid var(--sand);
  background:transparent;
  font-size:1rem; font-weight:300; color:var(--ink);
  outline:none;
  transition: border-color var(--dur-fast);
}
.field-group input:not(:placeholder-shown) + label,
.field-group input:focus + label,
.field-group textarea:not(:placeholder-shown) + label,
.field-group textarea:focus + label {
  transform: translateY(-22px) scale(0.82);
  color: var(--terracotta);
}
.field-group label {
  position:absolute; left:0; top:18px;
  font-size:1rem; font-weight:300; color:var(--muted);
  pointer-events:none;
  transition: transform 0.25s var(--ease-out), color 0.25s;
  transform-origin: left;
}
.field-group input:focus,
.field-group textarea:focus {
  border-bottom-color: var(--terracotta);
}
.field-group textarea { resize:none; padding-top:20px; }
.field-group { padding-top: 10px; margin-bottom:28px; }

.form-submit {
  display: inline-flex; align-items:center; gap:12px;
  background: var(--ink);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: var(--size-xs);
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  cursor:pointer;
  margin-top: var(--gap-sm);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.form-submit:hover { background:var(--terracotta); transform:translateY(-2px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { 
  background: var(--ink); 
  color: #fff;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand {
  padding-right: 40px;
}

.footer__logo {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer__desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-fast);
}
.footer__socials a svg {
  width: 18px;
  height: 18px;
}
.footer__socials a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-lt);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav-list a {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: all var(--dur-fast);
  width: fit-content;
}
.footer__nav-list a:hover {
  color: var(--gold-lt);
  transform: translateX(5px);
}

.footer__contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact-list li {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer__contact-list strong {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__contact-list a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}
.footer__contact-list a:hover {
  color: var(--gold-lt);
}

.footer__form {
  display: flex;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
}
.footer__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}
.footer__form input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer__form button {
  background: transparent;
  border: none;
  color: var(--gold-lt);
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform var(--dur-fast);
}
.footer__form button:hover {
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom-inner a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}
.footer__bottom-inner a:hover {
  color: var(--gold-lt);
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand {
    padding-right: 0;
    grid-column: 1 / -1;
  }
}
@media (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════ */
.map-section { background: var(--ink); }
.map-section__header {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.map-section__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}
.map-section__top .section-title { color: var(--white); }
.map-section__top .eyebrow { color: var(--gold-lt); }
.map-section__addr {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  border-left: 3px solid var(--terracotta);
  padding-left: 16px;
  line-height: 1.6;
}
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: #fff;
  font-size: var(--size-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.map-directions-btn:hover { background: var(--terra-lt); transform: translateY(-2px); }
.map-embed {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.map-embed iframe {
  width: 100%; height: 100%;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.map-pin-overlay {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 10;
  pointer-events: none;
}
.map-overlay-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 3px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  pointer-events: all;
  border-left: 4px solid var(--terracotta);
}
.map-overlay-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
.map-overlay-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.map-overlay-info strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.map-overlay-info span {
  font-size: var(--size-xs);
  color: var(--muted);
  font-weight: 300;
}
.map-overlay-info a {
  font-size: var(--size-xs);
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  margin-top: 4px;
  transition: color var(--dur-fast);
}
.map-overlay-info a:hover { color: var(--terra-lt); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns:1fr; }
  .booking__shell { flex-direction: column; max-width: 400px; margin-top: -30px; }
  .about__images { height:60vh; min-height:400px; }
  .contact__grid { grid-template-columns:1fr; }
  .location-strip__grid { grid-template-columns:1fr; }
  .amenities__grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:768px) {
  :root { --gap-xl:4rem; --gap-2xl:6rem; }
  .nav__links { display:none; }
  .booking__shell { flex-direction:column; border-radius:3px; margin:0 var(--gap-sm); }
  .booking__field { border-bottom:1px solid var(--sand); }
  .booking__divider { display:none; }
  .booking__cta { border-radius:0 0 3px 3px; padding:24px 44px; justify-content:center; }
  .numbers-strip__inner { grid-template-columns: 1fr 1fr; gap:40px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns:repeat(2,1fr); }
  .hero__scroll-hint { display:none; }
  .hero__frame { inset: 12px; }
  .hero__content { padding: 0 6vw 120px; }
  .hero__slide-dots { bottom: 70px; right: 6vw; }
  .about__collage { grid-template-columns: 1fr; gap: var(--gap-md); padding: 0; }
  .collage-item:nth-child(1),
  .collage-item:nth-child(2),
  .collage-item:nth-child(3) {
    transform: none;
  }
  .collage-item:nth-child(1):hover,
  .collage-item:nth-child(2):hover,
  .collage-item:nth-child(3):hover {
    transform: scale(1.02);
  }
  .about__pillars-row { grid-template-columns: 1fr; gap: var(--gap-md); }
  .form-row { grid-template-columns:1fr; }
  /* .footer__bottom-inner handled in main footer CSS block */
  .contact__form { padding:32px 24px; }
}
