/* ============================================
   Interior Singh — Homepage v2
   Contained width · 3D depth · Modern luxe
   ============================================ */

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

:root {
  --black: #1a1a1e;
  --ink: #26262b;
  --charcoal: #2f2f35;
  --bone: #f6f4f1;
  --cream: #ece8e2;
  --white: #ffffff;
  --gold: #c5302a;
  --gold-light: #dc4a42;
  --gold-soft: rgba(197, 48, 42, 0.12);
  --gray: #8a8a92;
  --shadow-sm: 0 8px 24px -10px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 24px 60px -20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 40px 100px -30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 30px 80px -25px rgba(197, 48, 42, 0.45);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 28px;
  --radius-sm: 18px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
  perspective: 1600px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { color: #4a4a52; }

.shell {
  width: 86%;
  max-width: 1480px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.4s var(--ease);
}
.header.scrolled { top: 12px; }

.nav-shell {
  width: 86%;
  max-width: 1480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 0.85rem 0.85rem 0.85rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.12);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 38px -14px rgba(0, 0, 0, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-wordmark strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-wordmark em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu a {
  position: relative;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.nav-menu a:not(.nav-cta):hover { color: var(--gold); background: rgba(197, 48, 42, 0.06); }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after { transform: translateX(-50%) scale(1); }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--white) !important;
  padding: 1.05rem 1.6rem !important;
  border-radius: 999px;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  margin-left: 0.6rem;
  transition: 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(197, 48, 42, 0.6);
}
.nav-cta:hover { background-color: var(--gold-light); }
.nav-cta .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-toggle:hover { background: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.16); }
.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 130px 0 80px;
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 4rem;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=85") center/cover;
  z-index: -2;
  transform: scale(1.05);
  transition: transform 1.5s var(--ease);
}
.hero-card:hover::before { transform: scale(1.1); }

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 15, 20, 0.92) 0%, rgba(15, 15, 20, 0.78) 45%, rgba(15, 15, 20, 0.55) 100%),
    linear-gradient(180deg, rgba(15, 15, 20, 0.35) 0%, rgba(15, 15, 20, 0) 35%, rgba(15, 15, 20, 0) 65%, rgba(15, 15, 20, 0.4) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  color: var(--white);
}

.hero-headline {
  font-weight: 400;
  color: var(--white);
  margin: 1.6rem 0 1.6rem;
  line-height: 1;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: 0.5s var(--ease);
  position: relative;
}
.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 16px 36px -12px rgba(197, 48, 42, 0.5);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -12px rgba(197, 48, 42, 0.65);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-dark:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero info card (3D floating) */
.hero-info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  padding: 2.2rem;
  transform: translateZ(40px) rotateY(-6deg);
  transform-style: preserve-3d;
  box-shadow: var(--shadow-lg);
  transition: 0.6s var(--ease);
}
.hero-info:hover { transform: translateZ(60px) rotateY(-2deg) translateY(-6px); }

.hero-info h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.hero-info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-info-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-info-stat span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
}

.hero-info p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

/* Hero consultation form */
.hero-form {
  position: relative;
  background: linear-gradient(160deg, rgba(20, 20, 26, 0.78) 0%, rgba(20, 20, 26, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-radius: var(--radius-sm);
  padding: 2.2rem;
  transform: translateZ(40px) rotateY(-6deg);
  transform-style: preserve-3d;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: 0.6s var(--ease);
  overflow: hidden;
}
.hero-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(197, 48, 42, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-form > * { position: relative; }
.hero-form:hover { transform: translateZ(60px) rotateY(-2deg) translateY(-6px); }

.hero-form h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.hero-form-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.hero-form-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-form-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.hero-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-field {
  position: relative;
  display: flex;
  align-items: center;
}
.hero-field i {
  position: absolute;
  left: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  pointer-events: none;
}
.hero-field input,
.hero-field select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.hero-field input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.hero-field input:focus,
.hero-field select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}
.hero-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 10px;
}
.hero-field select option {
  background: var(--ink);
  color: var(--white);
}

.hero-form-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 16px 36px -12px rgba(197, 48, 42, 0.5);
  transition: 0.4s var(--ease);
}
.hero-form-btn:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -12px rgba(197, 48, 42, 0.65);
}
.hero-form-btn:hover:not(:disabled) .arrow { transform: translateX(5px); }
.hero-form-btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.hero-form-btn:disabled { opacity: 0.85; cursor: default; }

/* Floating tag */
.float-tag {
  position: absolute;
  top: 2.2rem;
  left: 4rem;
  z-index: 5;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  animation: float 5s ease-in-out infinite;
}
.float-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateZ(80px) translateY(0); }
  50% { transform: translateZ(80px) translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Marquee strip */
.marquee {
  margin: 0 0 80px;
  padding: 1.6rem 0;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 4rem; }
.marquee-track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 1.2rem;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
.section { padding: 60px 0 100px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 620px; }
.section-head h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.section-head .lead { max-width: 380px; font-size: 0.98rem; }

/* ---------- About / Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
  height: 600px;
  perspective: 1200px;
}

.story-img {
  position: absolute;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  transition: 0.6s var(--ease);
}

.story-img-1 {
  top: 0; left: 0;
  width: 75%;
  height: 75%;
  background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1200&q=85");
  transform: rotateY(8deg) rotateX(-2deg);
}
.story-img-2 {
  bottom: 0; right: 0;
  width: 60%;
  height: 55%;
  background-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1000&q=85");
  border: 8px solid var(--bone);
  transform: rotateY(-6deg) rotateX(2deg);
}
.story-visual:hover .story-img-1 { transform: rotateY(4deg) rotateX(-1deg) translateY(-8px); }
.story-visual:hover .story-img-2 { transform: rotateY(-3deg) rotateX(1deg) translateY(-8px); }

.story-badge {
  position: absolute;
  top: 65%;
  left: -20px;
  width: 130px;
  height: 130px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--serif);
  z-index: 3;
  border: 6px solid var(--bone);
  box-shadow: var(--shadow-lg);
  transform: translateZ(60px);
}
.story-badge strong {
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.story-badge span {
  font-size: 0.6rem;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  color: rgba(255,255,255,0.85);
}

.story h2 { margin: 1.2rem 0 1.5rem; }
.story h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.story p { margin-bottom: 1rem; font-size: 1rem; }
.story-cta { margin-top: 2rem; }

/* ---------- Services 3D Cards ---------- */
.services-section {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.18);
}

.services-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  pointer-events: none;
}

.services-section .shell { width: 88%; }

.services-section h2 { color: var(--ink); }
.services-section .lead { color: #6a6a70; }

.tilt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.tilt-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  padding: 2.4rem 2rem;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  cursor: pointer;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.12);
}

.tilt-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.tilt-card:hover {
  border-color: rgba(197, 48, 42, 0.25);
  box-shadow: 0 30px 60px -20px rgba(197, 48, 42, 0.25);
}
.tilt-card:hover::before { opacity: 1; }

.tilt-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(197, 48, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
  transform: translateZ(40px);
}

.tilt-card h3 {
  color: var(--ink);
  margin-bottom: 0.8rem;
  transform: translateZ(30px);
}
.tilt-card p {
  color: #6a6a70;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  transform: translateZ(20px);
}
.tilt-card .num {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.tilt-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateZ(20px);
}
.tilt-card .more:hover { gap: 0.9rem; }

/* ---------- Projects Showcase ---------- */
.showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}

.show-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  min-height: 360px;
}
.show-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.show-card.tall { grid-column: span 3; min-height: 520px; }
.show-card.wide { grid-column: span 3; min-height: 360px; }
.show-card.square { grid-column: span 2; min-height: 360px; }

.show-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
}
.show-card:hover .show-img { transform: scale(1.08); }

.show-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,11,15,0.85) 100%);
}

.show-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  color: var(--white);
}
.show-meta .cat {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.show-meta h3 {
  color: var(--white);
  margin-top: 0.4rem;
  font-size: 1.5rem;
}
.show-meta .loc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}
.show-card .pill {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: scale(0.7);
  opacity: 0;
  transition: 0.5s var(--ease);
}
.show-card:hover .pill {
  transform: scale(1) rotate(-45deg);
  opacity: 1;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ---------- Why Us ---------- */
.why {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-stack {
  position: relative;
  height: 580px;
  perspective: 1500px;
}

.why-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=85") center/cover;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-4deg);
}

.why-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  transform: rotateY(6deg) translateZ(50px);
}
.why-float h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.why-float .rating {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}
.why-float .stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin: 0.5rem 0 0.6rem;
  letter-spacing: 0.1em;
}
.why-float p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

.why-list { margin-top: 2rem; }
.why-row {
  display: flex;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.why-row:last-child { border-bottom: none; }
.why-row .n {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}
.why-row h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.why-row p { font-size: 0.9rem; margin: 0; }

/* ---------- Testimonial Card ---------- */
.testimonial-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 5rem 4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.testimonial-wrap::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  left: 3rem;
  font-family: var(--serif);
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}

.t-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.t-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.t-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--gold);
}
.t-author strong { display: block; font-weight: 600; font-size: 0.98rem; }
.t-author span { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.t-image {
  height: 380px;
  border-radius: var(--radius-sm);
  background: url("https://images.unsplash.com/photo-1577412647305-991150c7d163?auto=format&fit=crop&w=1000&q=85") center/cover;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-6deg);
  transition: 0.6s var(--ease);
}
.t-image:hover { transform: rotateY(-2deg) translateY(-6px); }

/* ---------- CTA ---------- */
.cta-card {
  position: relative;
  border-radius: var(--radius);
  padding: 6rem 4rem;
  background: var(--cream);
  text-align: center;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.2);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 {
  color: var(--ink);
  margin: 1.2rem auto 1.5rem;
  max-width: 720px;
}
.cta-card h2 em { color: var(--gold); font-style: italic; }
.cta-card p {
  color: #6a6a70;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: linear-gradient(160deg, #8a1f1a 0%, #701913 55%, #531311 100%);
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 3.5rem 0 1.2rem;
  margin-top: 60px;
  overflow: hidden;
  box-shadow: 0 -10px 40px -20px rgba(0, 0, 0, 0.18);
}
.footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,0,0,0.25), transparent 70%);
  pointer-events: none;
}
.footer .shell { width: 88%; position: relative; z-index: 1; }

/* Top strip: brand statement + newsletter */
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.foot-top .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.foot-top .eyebrow::before {
  background: rgba(255, 255, 255, 0.85);
}
.foot-top h2 {
  font-family: var(--serif);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0.8rem;
  max-width: 560px;
}
.foot-top h2 em {
  font-style: italic;
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}

.foot-newsletter label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 600;
}
.foot-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  transition: 0.4s var(--ease);
  max-width: 420px;
  position: relative;
}
.foot-form .form-status {
  flex: 0 0 100%;
  padding: 0 0.6rem;
  margin: 0.6rem 0 0;
  font-size: 0.78rem;
}
.foot-form:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}
.foot-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--white);
  padding: 0.75rem 0.5rem 0.75rem 0;
}
.foot-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.foot-form button {
  background: var(--white);
  color: #c5302a;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-form button:hover {
  transform: translateX(3px) scale(1.04);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.3);
}
.foot-newsletter p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.9rem;
  max-width: 420px;
}

/* Grid */
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.foot-brand-mark {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}
.foot-brand-mark .name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.foot-brand-mark .tagline {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.6rem;
  font-weight: 500;
}

.foot-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.foot-sister {
  font-size: 0.78rem !important;
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
.foot-sister a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  transition: 0.3s var(--ease);
}
.foot-sister a:hover {
  border-bottom-color: var(--white);
  padding-left: 0;
}

.foot-social { display: flex; gap: 0.6rem; }
.foot-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.88rem;
  transition: 0.4s var(--ease);
}
.foot-social a:hover {
  background: var(--white);
  border-color: var(--white);
  color: #c5302a;
  transform: translateY(-3px);
}

.footer h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.foot-list li { margin-bottom: 0.65rem; }
.foot-list a, .foot-list span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.3s var(--ease);
  line-height: 1.6;
}
.foot-list a:hover { color: var(--white); padding-left: 6px; }

.foot-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.foot-bottom a { color: rgba(255, 255, 255, 0.75); }
.foot-bottom a:hover { color: var(--white); }

/* Large decorative watermark */
.foot-watermark {
  font-family: var(--serif);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.06);
  text-align: center;
  margin: 1.2rem 0 -1rem;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  font-style: italic;
}

/* ---------- Sister studio strip ---------- */
.sister-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: stretch;
  padding: 3rem 3.2rem;
  background: var(--bone);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.sister-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), #6c1612);
}
.sister-strip-text .eyebrow {
  color: var(--gold);
}
.sister-strip-text .eyebrow::before {
  background: var(--gold);
}
.sister-strip-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0.9rem 0 1rem;
}
.sister-strip-text h3 em {
  font-style: italic;
  color: var(--gold);
}
.sister-strip-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.sister-strip-text p:last-child { margin-bottom: 0; }
.sister-strip-text strong { color: var(--ink); font-weight: 600; }

.sister-strip-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.2rem 2rem;
  background: linear-gradient(160deg, #8a1f1a 0%, #701913 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: 0.5s var(--ease);
  box-shadow: 0 20px 40px -22px rgba(138, 31, 26, 0.55);
}
.sister-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -22px rgba(138, 31, 26, 0.7);
}
.sister-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-bottom: 1rem;
}
.sister-brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
.sister-domain {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}
.sister-cta {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}
.sister-cta .arrow { transition: transform 0.4s var(--ease); }
.sister-strip-card:hover .sister-cta .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .sister-strip { grid-template-columns: 1fr; padding: 2.2rem; gap: 2rem; }
}

/* ---------- Form status / loading ---------- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  font-size: 0.82rem;
  margin: 0.8rem 0 0;
  min-height: 1.2em;
  line-height: 1.45;
}
.form-status.is-success { color: #6fcf97; }
.form-status.is-error   { color: #ff7a6e; }
.form-status.is-loading { color: rgba(255, 255, 255, 0.6); }
.cta-card .form-status,
.section .form-status { color: var(--ink); }
.section .form-status.is-success { color: #1f8a4e; }
.section .form-status.is-error   { color: #c5302a; }

button.is-loading { opacity: 0.85; cursor: wait; }
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 6px;
  animation: spinner 0.7s linear infinite;
}
@keyframes spinner { to { transform: rotate(360deg); } }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .shell { width: 92%; }
  .nav-shell { width: 92%; }
  .hero-grid, .story, .why, .t-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tilt-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: repeat(4, 1fr); }
  .show-card.tall, .show-card.wide, .show-card.square { grid-column: span 2; min-height: 360px; }
  .foot-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .float-tag { left: 2rem; }
  .why-stack { height: 460px; }
  .story-visual { height: 480px; }
  .testimonial-wrap, .cta-card { padding: 3.5rem 2rem; }
}

@media (max-width: 900px) {
  .nav-wordmark { display: none; }
  .nav-logo img { height: 40px; }
}

@media (max-width: 720px) {
  .shell { width: 92%; }
  h1 { font-size: 2.4rem; }
  .nav-shell { padding: 0.5rem 0.5rem 0.5rem 1.2rem; gap: 0.8rem; }
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 78%;
    max-width: 360px;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.4rem;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.6, 0, 0.2, 1);
    box-shadow: -24px 0 48px -20px rgba(0, 0, 0, 0.22);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
  }
  .nav-menu a:not(.nav-cta)::after { display: none; }
  .nav-menu a:not(.nav-cta):hover { background: transparent; }
  .nav-cta {
    margin: 1rem 0 0;
    justify-content: center;
    padding: 1.05rem 1.5rem !important;
    font-size: 0.78rem !important;
    border-radius: 999px !important;
    border-bottom: none !important;
  }

  .hero { padding: 110px 0 60px; }
  .hero-card { padding: 2rem 1.5rem; min-height: 620px; }
  .float-tag { top: 1.4rem; left: 1.5rem; padding: 0.45rem 0.95rem; font-size: 0.68rem; }
  .hero-info { transform: none; padding: 1.6rem; }
  .hero-form { transform: none; padding: 1.6rem; }
  .hero-form-title { font-size: 1.35rem; }

  .tilt-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .show-card.tall, .show-card.wide, .show-card.square { grid-column: span 1; min-height: 320px; }

  .foot-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .foot-bottom { flex-direction: column; text-align: center; }

  .testimonial-wrap, .cta-card { padding: 3rem 1.5rem; }
  .why-stack { height: 380px; }
  .why-float { right: 0; bottom: -20px; width: 220px; padding: 1.4rem; }

  .marquee-track { font-size: 1.2rem; gap: 2.5rem; }
  .marquee-track span { gap: 2.5rem; }
}
