/* ══════════════════════════════════════════════════════════════════
   SUTRA — A Sacred Promise, Preserved in Time
   Design System & Styles
   
   Palette: Vellum canvas + Burnished Gold accent + Gallery Ink dark
   Typography: Playfair Display (display/heading) + Inter (body)
   Philosophy: Editorial restraint, print-catalogue register, no shadows
   ══════════════════════════════════════════════════════════════════ */

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

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --color-vellum: #F6F4F0;
  --color-paper: #FFFFFF;
  --color-ink: #1A1A1A;
  --color-ink-soft: #5C5650;
  --color-burnished-gold: #BC9C5C;
  --color-gold-light: #D4B978;
  --color-gold-pale: rgba(188, 156, 92, 0.08);
  --color-kumkum: #8B1A1A;
  --color-gallery-ink: #0A0A0A;
  --color-mist: #E8E4DE;
  --color-silver: #B0ACA6;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 120px;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-vellum);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-menu-open {
  overflow: hidden;
}

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

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

ul { list-style: none; }

::selection {
  background-color: var(--color-burnished-gold);
  color: var(--color-paper);
}


/* ══════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.text-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.text-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
}

.text-subheading {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  font-style: italic;
}

.text-body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 1.8;
}

.text-body-sm {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.accent {
  color: var(--color-burnished-gold);
}


/* ══════════════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section-padding {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}


/* ══════════════════════════════════════════════════════════════════
   COMPONENTS
   ══════════════════════════════════════════════════════════════════ */

/* ─── Ghost Button ─── */
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--color-burnished-gold);
  color: var(--color-burnished-gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  padding: 18px 44px;
  background: transparent;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease, border-color 0.5s ease;
  z-index: 1;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-burnished-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-ghost:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-ghost:hover {
  color: var(--color-gallery-ink);
}

/* Dark variant for the commission section */
.btn-ghost-dark {
  border-color: var(--color-burnished-gold);
  color: var(--color-burnished-gold);
}

.btn-ghost-dark:hover {
  color: var(--color-gallery-ink);
}

/* ─── Subtle Link ─── */
.link-subtle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-burnished-gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: gap 0.4s ease;
}

.link-subtle::after {
  content: '→';
  transition: transform 0.4s ease;
}

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

.link-subtle:hover::after {
  transform: translateX(2px);
}

/* ─── Section Title with Gold Rule ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3xl);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--color-burnished-gold);
}

/* ─── Eyebrow Tag ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-burnished-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}


/* ══════════════════════════════════════════════════════════════════
   ANIMATIONS — Reveal on Scroll
   ══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Step cards and pillars also use reveal but with staggered delays set by JS */
.step-card,
.pillar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-card.active,
.pillar.active {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease,
              padding 0.4s ease,
              border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: clamp(16px, 2vw, 28px);
  padding-right: clamp(16px, 2vw, 28px);
  padding-top: 28px;
  padding-bottom: 28px;
  transition: padding 0.4s ease;
}

.site-nav.nav-scrolled {
  background: rgba(246, 244, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-burnished-gold);
}

.site-nav.nav-scrolled .nav-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  z-index: 1001;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.logo-sanskrit {
  font-size: 16px;
  color: var(--color-burnished-gold);
  font-weight: 400;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-burnished-gold);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}


/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-vellum);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

.hero-text-col {
  flex: 0 0 48%;
  max-width: 48%;
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  color: var(--color-ink-soft);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-image-col {
  flex: 1;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  will-change: transform;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
}

/* Decorative gold corner accents on hero image */
.hero-image-wrapper::before,
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--color-burnished-gold);
  border-style: solid;
  pointer-events: none;
  opacity: 0.4;
}

.hero-image-wrapper::before {
  top: -12px;
  left: -12px;
  border-width: 1px 0 0 1px;
}

.hero-image-wrapper::after {
  bottom: -12px;
  right: -12px;
  border-width: 0 1px 1px 0;
}


/* ══════════════════════════════════════════════════════════════════
   EMOTIONAL SECTION — Dark Band
   ══════════════════════════════════════════════════════════════════ */
#emotion {
  background-color: var(--color-gallery-ink);
  color: var(--color-mist);
  text-align: center;
  padding: var(--space-4xl) 40px;
  position: relative;
}

/* Subtle vignette overlay */
#emotion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

.emotion-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.emotion-rule {
  width: 60px;
  height: 1px;
  background-color: var(--color-burnished-gold);
  margin: var(--space-xl) auto;
}

.emotion-headline {
  font-family: var(--font-display);
  color: var(--color-burnished-gold);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.emotion-body {
  line-height: 1.9;
  color: var(--color-mist);
  font-weight: 300;
}


/* ══════════════════════════════════════════════════════════════════
   JOURNEY SECTION — How It Works
   ══════════════════════════════════════════════════════════════════ */
#journey {
  background-color: var(--color-vellum);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  position: relative;
}

/* Cross-hair connector lines between steps */
.journey-grid::before {
  content: '';
  position: absolute;
  top: var(--space-xl);
  bottom: var(--space-xl);
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-burnished-gold) 15%,
    var(--color-burnished-gold) 85%,
    transparent
  );
  opacity: 0.25;
  transform: translateX(-50%);
}

.journey-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-burnished-gold) 15%,
    var(--color-burnished-gold) 85%,
    transparent
  );
  opacity: 0.25;
  transform: translateY(-50%);
}

.journey-step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 4vw, 64px);
  color: var(--color-burnished-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

.step-desc {
  color: var(--color-ink-soft);
  margin-bottom: var(--space-md);
  max-width: 420px;
}

.step-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background-color: var(--color-mist);
  border: 1px solid rgba(188, 156, 92, 0.15);
}


/* ══════════════════════════════════════════════════════════════════
   CRAFTSMANSHIP PILLARS
   ══════════════════════════════════════════════════════════════════ */
#craftsmanship {
  background-color: var(--color-paper);
}

.pillars-container {
  display: flex;
  border-top: 1px solid var(--color-burnished-gold);
  border-bottom: 1px solid var(--color-burnished-gold);
}

.pillar {
  flex: 1;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.pillar:not(:last-child) {
  border-right: 1px solid var(--color-burnished-gold);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  border: 1px solid var(--color-burnished-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-burnished-gold);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.pillar:hover .pillar-icon {
  background-color: var(--color-burnished-gold);
  color: var(--color-paper);
}

.pillar-icon svg {
  transition: stroke 0.4s ease;
}

.pillar:hover .pillar-icon svg {
  stroke: var(--color-paper);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

.pillar-desc {
  color: var(--color-ink-soft);
  max-width: 320px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE
   ══════════════════════════════════════════════════════════════════ */
#showcase {
  background-color: var(--color-gallery-ink);
  position: relative;
  overflow: hidden;
}

.showcase-wrapper {
  position: relative;
}

.showcase-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-xl);
}

.showcase-text {
  max-width: 560px;
}

.showcase-text .eyebrow {
  color: var(--color-gold-light);
}

.showcase-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ══════════════════════════════════════════════════════════════════
   COMMISSION / VAULT — Closing CTA
   ══════════════════════════════════════════════════════════════════ */
#commission {
  background-color: var(--color-gallery-ink);
  color: var(--color-paper);
  text-align: center;
  padding: var(--space-4xl) 40px;
  position: relative;
}

/* Subtle pattern overlay */
#commission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(188, 156, 92, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(188, 156, 92, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.commission-frame {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  border: 1px solid var(--color-burnished-gold);
  position: relative;
  z-index: 1;
}

/* Decorative corner details */
.commission-frame::before,
.commission-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-burnished-gold);
  border-style: solid;
}

.commission-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.commission-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.commission-headline {
  font-family: var(--font-display);
  color: var(--color-burnished-gold);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.commission-subhead {
  color: var(--color-mist);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}


/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
footer {
  background-color: var(--color-vellum);
  border-top: 1px solid var(--color-burnished-gold);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.footer-logo .logo-sanskrit {
  font-size: 14px;
  color: var(--color-burnished-gold);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-sm);
}

.footer-copy {
  font-size: 12px;
  color: var(--color-silver);
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --space-4xl: 80px;
    --space-3xl: 64px;
  }

  /* Hero — stack vertically */
  .hero-content {
    flex-direction: column-reverse;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .hero-text-col {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-col {
    width: 100%;
  }

  .hero-image {
    max-height: 55vh;
    object-fit: contain;
  }

  .hero-image-wrapper::before,
  .hero-image-wrapper::after {
    display: none;
  }

  /* Pillars — stack */
  .pillars-container {
    flex-direction: column;
  }

  .pillar:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-burnished-gold);
  }

  /* Journey — keep 2-col but reduce gap */
  .journey-grid {
    gap: var(--space-xl);
  }

  .journey-grid::before,
  .journey-grid::after {
    display: none;
  }

  /* Step images */
  .step-image {
    aspect-ratio: 16 / 10;
  }

  /* Showcase */
  .showcase-image {
    aspect-ratio: 16 / 9;
    max-height: 60vh;
  }


  /* Commission */
  .commission-frame {
    padding: var(--space-2xl) var(--space-lg);
  }
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
    --space-3xl: 48px;
    --space-2xl: 40px;
  }

  /* Container padding */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Mobile Navigation ── */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-vellum);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 18px;
    letter-spacing: 0.2em;
  }

  .site-nav .nav-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .logo {
    padding-left: 0;
  }

  /* ── Hero ── */
  #hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: var(--space-lg);
  }

  .hero-image {
    max-height: 40vh;
    object-fit: contain;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  /* ── Emotion Section ── */
  #emotion {
    padding: var(--space-3xl) 20px;
  }

  .emotion-content {
    max-width: 100%;
  }

  /* ── Journey ── */
  .journey-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .step-image {
    aspect-ratio: 16 / 10;
  }

  .step-number {
    font-size: 40px;
  }

  .step-desc {
    max-width: 100%;
  }


  /* ── Craftsmanship ── */
  .pillar {
    padding: var(--space-xl) var(--space-md);
  }

  .pillar-desc {
    max-width: 100%;
  }

  /* ── Showcase ── */
  .showcase-inner {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-lg);
  }

  .showcase-image {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .showcase-text {
    max-width: 100%;
  }

  /* ── Commission ── */
  #commission {
    padding: var(--space-3xl) 20px;
  }

  .commission-frame {
    padding: var(--space-xl) var(--space-md);
  }

  .commission-frame::before,
  .commission-frame::after {
    width: 14px;
    height: 14px;
  }

  /* ── Footer ── */
  footer {
    padding: var(--space-xl) 0;
  }
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --space-4xl: 48px;
    --space-3xl: 40px;
  }

  /* Nav */
  .site-nav .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-mark {
    font-size: 18px;
  }

  .logo-sanskrit {
    font-size: 13px;
  }

  /* Hero */
  .hero-content {
    padding-top: var(--space-lg);
  }

  .hero-image {
    max-height: 35vh;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    align-items: center;
  }

  .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 14px 28px;
    font-size: 11px;
  }

  /* Journey steps */
  .step-image {
    aspect-ratio: 3 / 2;
  }

  .step-number {
    font-size: 36px;
  }

  /* Showcase image */
  .showcase-image {
    aspect-ratio: 1 / 1;
  }

  /* Emotion section text */
  #emotion .text-body {
    font-size: 15px;
  }

  /* Section title */
  .section-title {
    margin-bottom: var(--space-xl);
  }

  /* Commission */
  .commission-frame {
    padding: var(--space-lg) var(--space-sm);
    margin-left: -4px;
    margin-right: -4px;
  }

  /* Eyebrow */
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Landscape phones / short viewports
   ══════════════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: var(--space-md);
  }

  .hero-image {
    max-height: 60vh;
  }

  .showcase-image {
    max-height: 80vh;
    aspect-ratio: 16 / 9;
  }
}

