:root {
  --bg: #080c10;
  --bg2: #0e1318;
  --bg3: #141a20;
  --gold: #d2b98c;
  --gold-light: #e8d4b0;
  --gold-dim: #8a7355;
  --text: #e8dcc8;
  --text-dim: rgba(232,220,200,0.5);
  --text-faint: rgba(232,220,200,0.25);
  --border: rgba(210,185,140,0.12);
  --border-strong: rgba(210,185,140,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  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;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(210,185,140,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,12,16,0.88) 0%, rgba(8,12,16,0.55) 100%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: top 0.35s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.nav-wordmark span {
  display: block;
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-size: 0.45rem;
  letter-spacing: 0.5em;
  color: var(--gold-dim);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  padding: 24px;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 2fr 3fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 4rem 5rem 4rem;
  z-index: 4;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.eyebrow-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
.eyebrow-link:hover { opacity: 0.7; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 360px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 1rem 2rem;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background 0.4s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 1rem 2rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: none;
  transition: background 0.4s, color 0.4s;
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg);
  font-weight: 400;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
}
.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 50%, var(--bg) 100%);
  z-index: 3;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
}

/* Crescent decorative */
.hero-crescent {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 180px;
  height: 180px;
  z-index: 5;
  color: var(--gold);
}
.hero-crescent svg {
  width: 100%;
  height: 100%;
}

/* Gold light glow */
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,185,140,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* ===== INSTAGRAM SECTION ===== */
.section {
  padding: 7rem 4rem;
}
.section-header {
  margin-bottom: 4rem;
}
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-top: 1rem;
  max-width: 400px;
}

/* ===== IG GRID (V3 LAYOUT) ===== */
.ig-grid-b {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
}
.ig-b {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.ig-b:first-child {
  grid-row: 1 / 3;
}
.ig-b-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ig-b:hover .ig-b-fill { transform: scale(1.05); }
.ig-b-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,16,0.45);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-b:hover .ig-b-overlay { opacity: 1; }
.ig-b-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.ig1 { 
  background-image: url('../images/work/work1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1510;
}
.ig2 { 
  background-image: url('../images/work/work2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0c1018;
}
.ig3 { 
  background-image: url('../images/work/work3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #141008;
}
.ig4 { 
  background-image: url('../images/work/work4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #10140c;
}
.ig5 { 
  background-image: url('../images/work/work5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #18120a;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 7rem 4rem;
  background: var(--bg2);
  position: relative;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 3rem; left: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  line-height: 1;
  color: rgba(210,185,140,0.03);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}
.testimonial-card {
  background: var(--bg2);
  padding: 2.5rem 4rem 2.5rem 2.5rem;
  position: relative;
  transition: background 0.4s;
}
.testimonial-card:hover { background: var(--bg3); }
a.testimonial-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.testimonial-card-link:hover .testimonial-location {
  color: var(--gold);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 2rem;
}
.testimonial-divider {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.testimonial-location {
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.testimonial-avatar {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: var(--gold-dim);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 7rem 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}
.service-col {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.4s;
}
.service-col:hover { background: var(--bg2); }
.service-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(210,185,140,0.05);
}
.service-item:last-child { border-bottom: none; }
.service-name {
  font-size: 0.8rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.service-price {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-left: 0.5rem;
}

/* ===== TEAM ===== */
.team-section {
  padding: 7rem 4rem;
  background: var(--bg2);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}
.team-grid::before,
.team-grid::after {
  content: '';
  background: var(--bg2);
  order: 1;
}
.team-card {
  background: var(--bg2);
  padding: 3rem 2.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.4s;
  cursor: pointer;
}
.team-card:hover {
  background: var(--bg3);
}
.team-avatar-ring {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.4s;
  overflow: hidden;
  flex-shrink: 0;
}
.team-card:hover .team-avatar-ring {
  border-color: var(--gold);
}
.team-avatar {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.team-role {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-specialty {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.team-bio {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.team-book {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color 0.3s;
}
.team-card:hover .team-book {
  color: var(--gold);
}
.team-cta-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}
.team-vagaro-link {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.team-vagaro-link:hover {
  color: var(--gold);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,185,140,0.04) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-crescent-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  opacity: 0.035;
  color: #8a8278;
}
.cta-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  margin-bottom: 3rem;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-avail {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}
.cta-avail strong { color: var(--gold-dim); font-weight: 400; }

/* ===== FOOTER ===== */
footer {
  padding: 5rem 4rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.footer-brand .footer-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.45rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-addr {
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--text-dim);
}
.footer-addr strong { color: var(--gold); font-weight: 400; }
.footer-phone {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-phone:hover { color: var(--gold); }
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  display: block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  font-family: 'Cinzel', serif;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== AVAILABILITY TICKER ===== */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.ticker.ticker-hidden {
  transform: translateY(-100%);
}
.ticker-inner {
  display: inline-flex;
  gap: 4rem;
  animation: ticker 20s linear infinite;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HOVER LINE ===== */
a, button { position: relative; }

/* ===== INLINE STYLE CONVERSIONS ===== */
.ticker-positioned {
  /* positioning now handled by .ticker fixed rules */
}
.ticker-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
.ticker-link:hover { opacity: 0.7; }

.instagram-link-wrapper {
  text-align: right;
  margin-top: 1.5rem;
}

.instagram-link {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.instagram-link:hover { color: var(--gold); }

.pricing-disclaimer {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 1rem;
  opacity: 0.7;
}

.service-note {
  font-size: 0.7rem;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.service-sub-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(210,185,140,0.08);
}

.service-addons-wrapper {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-addons-title {
  margin-bottom: 1rem;
}

/* ===== NAV RIGHT GROUP ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 200;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 12rem 4rem 5rem;
  background: var(--bg);
}
.page-hero .section-header {
  margin-bottom: 0;
}
.page-hero .section-title {
  font-size: clamp(3rem, 5vw, 5rem);
}

/* ===== NAV ACTIVE STATE ===== */
.nav-active {
  color: var(--gold) !important;
}

/* ===== TESTIMONIALS 2-COL ===== */
.testimonials-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== SPACE GALLERY ===== */
.space-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.space-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: none;
}
.space-photo:hover {
  transform: scale(1.02);
}

/* ===== SPACE INFO GRID ===== */
.space-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.space-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.space-detail-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.space-detail p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.space-rental-card {
  margin-top: 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  max-width: 400px;
}
.space-rental-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.space-rental-body {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-faint);
  margin-top: 0.4rem;
}
.space-rental-link {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.75rem;
  transition: color 0.3s;
}
.space-rental-link:hover {
  color: var(--gold);
}
.space-info-tile {
  background: var(--bg2);
  border-radius: 2px;
  padding: 3rem;
}
.space-map {
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg2);
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-optional {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--text-faint);
}
.form-input {
  background: var(--bg2);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.3s;
  outline: none;
}
.form-input::placeholder {
  color: var(--text-faint);
}
.form-input:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-block p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.form-success {
  padding: 3rem 0;
}

/* ==========================================================
   RESPONSIVE — IPAD (≤ 1024px)
   ========================================================== */
@media (max-width: 1024px) {

  /* Nav — mobile menu */
  nav {
    padding: 1.25rem 2rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  nav.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  nav.nav-open .nav-logo,
  nav.nav-open .nav-right {
    position: relative;
    z-index: 2;
  }
  nav.nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1;
  }
  nav.nav-open .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    padding: 1.5rem 2.5rem;
    color: var(--text-dim);
    transition: color 0.3s;
  }
  nav.nav-open .nav-links a:hover,
  nav.nav-open .nav-links a.nav-active {
    color: var(--gold);
  }

  /* Hero — image background with text overlay */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    position: relative;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-carousel::after {
    background: linear-gradient(to bottom, rgba(8,12,16,0) 0%, rgba(8,12,16,0.9) 75%);
  }
  .hero-left {
    position: relative;
    z-index: 2;
    padding: 7rem 2.5rem 4rem;
    justify-content: flex-end;
  }
  .hero-crescent {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    opacity: 1;
    animation: none;
  }

  /* IG Grid */
  .ig-grid-b {
    height: 400px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2.5rem 2.5rem;
  }
  .footer-bottom {
    grid-column: 1 / -1;
  }

  /* Page hero */
  .page-hero {
    padding: 10rem 2.5rem 4rem;
  }

  /* Space gallery */
  .space-info-grid {
    gap: 3rem;
  }
}

/* ==========================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ========================================================== */
@media (max-width: 767px) {

  /* Hide custom cursor on touch */
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  .btn-primary, .btn-secondary { cursor: pointer; }
  .nav-toggle { cursor: pointer; }
  .instagram-cell, .ig-b { cursor: pointer; }

  /* Nav */
  nav {
    padding: 1rem 1.25rem;
  }
  .nav-cta {
    padding: 0.6rem 1rem;
    font-size: 0.55rem;
  }
  /* Ticker */
  .ticker-inner {
    font-size: 0.48rem;
    gap: 2.5rem;
  }

  /* Hero — refine for mobile */
  .hero {
    min-height: 100svh;
  }
  .hero-left {
    padding: 3rem 1.5rem 4.5rem;
  }
  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .hero-crescent {
    width: 80px;
    height: 80px;
  }

  /* Section padding */
  .section {
    padding: 4.5rem 1.5rem;
  }
  .testimonials-section {
    padding: 4.5rem 1.5rem;
  }
  .services-section {
    padding: 4.5rem 1.5rem;
  }
  .cta-section {
    padding: 5rem 1.5rem;
  }

  /* Section header */
  .section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  /* IG Grid — 2 columns, taller aspect */
  .ig-grid-b {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: auto;
    aspect-ratio: auto;
  }
  .ig-b:first-child {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
  }
  .ig-b {
    aspect-ratio: 1;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-section {
    padding: 4.5rem 1.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-crescent-bg {
    width: 280px;
    height: 280px;
  }
  .cta-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Footer */
  footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 2rem;
  }
  .footer-bottom {
    grid-column: 1;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Page hero */
  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }

  /* Testimonials 2-col → 1 col */
  .testimonials-grid-2 {
    grid-template-columns: 1fr;
  }

  /* Space gallery */
  .space-gallery {
    grid-template-columns: 1fr;
  }
  .space-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .space-map iframe {
    min-height: 280px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
