/* ============================================
   MIHIRA STUDIOS — GLOBAL STYLESHEET
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --orange: #E8510A;
  --orange-light: #f06b2a;
  --orange-dark: #c44208;
  --black: #111111;
  --near-black: #1A1A1A;
  --charcoal: #2C2C2C;
  --cream: #F5F0EB;
  --warm-white: #FDFAF7;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gray-light: #e8e2da;
  --text-muted: #7a7270;
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

/* ---- Custom Cursor ---- */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  transition: width 0.3s, height 0.3s, opacity 0.3s, transform 0.15s ease;
}

.cursor-ring.hovering {
  width: 54px; height: 54px;
  opacity: 0.3;
  border-color: var(--orange);
}

/* ---- Loading Screen ---- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  width: 120px;
  animation: loaderPulse 1.5s ease-in-out;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  margin-top: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s ease forwards;
}

@keyframes loaderPulse {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

#navbar.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  height: 68px;
}

#navbar.transparent {
  background: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease;
}

#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

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

.nav-book-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition), transform 0.2s !important;
}

.nav-book-btn:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--near-black);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
}

.mobile-drawer.open { transform: translateX(0); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.drawer-overlay.visible { opacity: 1; visibility: visible; }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-links a:hover { color: var(--orange); padding-left: 12px; }

.mobile-social {
  margin-top: auto;
  display: flex;
  gap: 20px;
}

.mobile-social a {
  color: var(--text-muted);
  font-size: 1.4rem;
  transition: color 0.3s;
}
.mobile-social a:hover { color: var(--orange); }

/* ---- FOOTER ---- */
footer {
  background: var(--near-black);
  color: var(--cream);
  padding: 70px 6% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-brand img {
  height: 70px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,81,10,0.1);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--orange); }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  z-index: 990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: whatsappPulse 2.5s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover { transform: scale(1.1); }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 989;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--near-black);
  color: var(--cream);
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 988;
  border-top: 2px solid var(--orange);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

#cookie-banner a { color: var(--orange); }

.cookie-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s;
}

.cookie-btn:hover { background: var(--orange-dark); }

/* ---- SHARED SECTION STYLES ---- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--orange);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.2;
}

.section-heading.light { color: var(--cream); }

.section-subtext {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.7;
}

/* Orange divider */
.divider {
  width: 50px; height: 3px;
  background: var(--orange);
  margin: 20px 0;
}

/* Btn styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 15px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--orange);
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-dark);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,81,10,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline.dark {
  color: var(--near-black);
  border-color: var(--near-black);
}

.btn-outline.dark:hover {
  background: var(--near-black);
  color: white;
}

/* ---- PAGE HERO ---- */
.page-hero {
  height: 55vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.page-hero-content .section-label { justify-content: center; }

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  max-width: 800px;
}

.page-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--near-black);
  padding: 90px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: white;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.25;
}

.cta-banner .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- AOS (Animate On Scroll) Custom ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ============================================
   INDEX.HTML — HOME PAGE
   ============================================ */

/* Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.75) 0%,
    rgba(17,17,17,0.4) 50%,
    rgba(17,17,17,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s 0.5s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 1s 0.8s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 1s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.1; }
}

.hero-dots {
  position: absolute;
  bottom: 35px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 3px;
}

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

/* Brand Story */
.brand-story {
  padding: 100px 6%;
  background: var(--cream);
}

.brand-story-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.brand-story-header .section-label { justify-content: center; }

.brand-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background: white;
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.story-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.story-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.story-card:hover::after { transform: scaleX(1); }

.story-icon {
  width: 64px; height: 64px;
  background: rgba(232,81,10,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--orange);
}

.story-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--near-black);
}

.story-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Why Family Photos */
.why-section {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.why-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.why-image-wrap:hover .why-image {
  transform: scale(1.04);
}

.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 10px 40px rgba(232,81,10,0.4);
}

.why-image-badge strong { font-size: 1.8rem; line-height: 1; }
.why-image-badge span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

.why-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.why-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--near-black);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 30px 0;
  line-height: 1.7;
}

/* Gallery Preview */
.gallery-preview {
  padding: 100px 6%;
  background: var(--near-black);
}

.gallery-preview-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-preview-header .section-label { justify-content: center; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #222;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 200px;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,81,10,0.85), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
}

.gallery-preview-footer {
  text-align: center;
}

/* Mihira Difference */
.difference-section {
  padding: 100px 6%;
  background: var(--cream);
}

.difference-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.difference-section-header .section-label { justify-content: center; }

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  background: white;
  padding: 40px 24px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease;
}

.diff-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.diff-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.diff-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--near-black);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Artist Preview */
.artist-preview {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: white;
}

.artist-image-wrap {
  position: relative;
}

.artist-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: top;
}

.artist-award-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--gold);
  color: var(--near-black);
  padding: 16px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  text-align: center;
  max-width: 130px;
  line-height: 1.4;
  font-weight: 600;
}

.artist-content .intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--near-black);
  line-height: 1.6;
  margin-bottom: 24px;
}

.artist-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials {
  padding: 100px 6%;
  background: var(--near-black);
  text-align: center;
}

.testimonials-header .section-label { justify-content: center; }

.testimonials-slider {
  max-width: 750px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active { display: block; }

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.t-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
}

.t-btn:hover { border-color: var(--orange); color: var(--orange); }

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.t-dot.active { background: var(--orange); }

/* Instagram Teaser */
.insta-section {
  padding: 80px 6%;
  background: white;
  text-align: center;
}

.insta-header { margin-bottom: 40px; }
.insta-header .section-label { justify-content: center; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #222;
}

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

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,81,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 1.8rem;
}

.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.mihira-name-section {
  padding: 100px 6%;
  text-align: center;
  background: var(--cream);
}

.mihira-name-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 30px;
}

.mihira-name-section p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.ornament {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  display: block;
  margin: 24px 0;
}

/* Artist full section */
.artist-full {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.artist-full-img {
  position: sticky;
  top: 100px;
}

.artist-full-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
}

.artist-bio h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.artist-bio .title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 24px;
}

.artist-bio p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.timeline {
  margin: 40px 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 45px;
  padding-top: 2px;
}

.timeline-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.85rem;
  margin-bottom: 0 !important;
}

/* Philosophy */
.philosophy {
  padding: 100px 6%;
  background: var(--near-black);
  text-align: center;
}

.philosophy-header .section-label { justify-content: center; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.phil-card {
  padding: 50px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}

.phil-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.phil-card:hover { border-color: rgba(232,81,10,0.3); }
.phil-card:hover::before { transform: scaleX(1); }

.phil-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.phil-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.phil-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 14px;
}

.phil-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-filters {
  padding: 50px 6% 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  background: white;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  color: var(--charcoal);
}

.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: white; }

.gallery-full {
  padding: 40px 6% 80px;
  background: white;
}

.gallery-grid-full {
  columns: 3;
  column-gap: 12px;
}

.gallery-full-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.gallery-full-item.hidden {
  display: none;
}

.gallery-full-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-full-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-full-item:hover .gallery-full-item-overlay { opacity: 1; }

.gallery-cat-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  background: var(--orange);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 50px; height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover { background: var(--orange); }
.lightbox-nav.prev { left: -70px; }
.lightbox-nav.next { right: -70px; }

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-grid {
  padding: 80px 6%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--cream);
}

.service-card {
  background: white;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.service-card.featured {
  border-top: 4px solid var(--orange);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.service-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link:hover { gap: 14px; }

/* How it works */
.how-it-works {
  padding: 100px 6%;
  background: white;
}

.hiw-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.hiw-header .section-label { justify-content: center; }

.steps-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px; height: 72px;
  background: var(--near-black);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--cream);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.step-item:hover .step-number {
  background: var(--orange);
  transform: scale(1.1);
}

.step-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Includes */
.includes-section {
  padding: 80px 6%;
  background: var(--near-black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.includes-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 30px;
}

.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

.check-list li i { color: var(--orange); flex-shrink: 0; }

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.addon-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.addon-card:hover {
  background: rgba(232,81,10,0.1);
  border-color: rgba(232,81,10,0.3);
}

.addon-card i { font-size: 1.8rem; color: var(--orange); margin-bottom: 10px; }
.addon-card h4 { font-size: 0.88rem; font-weight: 600; color: white; }
.addon-card p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */

.portfolio-stories {
  padding: 80px 6%;
  background: var(--cream);
}

.portfolio-stories-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.portfolio-stories-header .section-label { justify-content: center; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-portrait-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.story-portrait-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-portrait-card:hover img { transform: scale(1.06); }

.story-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.92) 40%, rgba(17,17,17,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
}

.story-portrait-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 8px;
}

.story-portrait-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.story-portrait-card:hover .story-portrait-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* Stats */
.stats-section {
  padding: 80px 6%;
  background: var(--near-black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  background: white;
}

.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--near-black);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  background: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,81,10,0.1);
}

.form-group textarea { height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a;
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.contact-info-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.contact-detail:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(232,81,10,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--near-black);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-embed {
  width: 100%;
  height: 220px;
  background: var(--gray-light);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border: 1px solid var(--gray-light);
  border-radius: 2px;
}

.whatsapp-cta {
  padding: 60px 6%;
  text-align: center;
  background: var(--cream);
}

.wa-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: white;
  padding: 20px 48px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.wa-big-btn:hover {
  background: #1db857;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.wa-big-btn i { font-size: 1.5rem; }

/* ============================================
   PRIVACY PAGE
   ============================================ */

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 6%;
}

.privacy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--near-black);
  margin: 40px 0 16px;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-content ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.privacy-last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  margin-top: 40px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .steps-container::before { display: none; }
  .steps-container { flex-direction: column; align-items: center; gap: 30px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .brand-story-grid { grid-template-columns: 1fr; }
  .why-section { grid-template-columns: 1fr; }
  .why-image-wrap { height: 380px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-masonry .gallery-item:nth-child(1) { grid-row: unset; }
  .gallery-masonry .gallery-item:nth-child(4) { grid-column: unset; }
  .artist-preview { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .artist-full { grid-template-columns: 1fr; }
  .artist-full-img { position: relative; top: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-section { grid-template-columns: 1fr; }
  .includes-section { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --nav-height: 68px; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid-full { columns: 2; }
  .difference-grid { grid-template-columns: 1fr 1fr; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-nav.prev { left: -45px; }
  .lightbox-nav.next { right: -45px; }
  .hero h1 { font-size: 2.4rem; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .footer-grid { gap: 30px; }
}
