/* ================================================================
   VITLA CHIDANANDA ACHARYA — Master Temple Sculptor
   Palette: Deep Green · Gold · Navy Blue
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --forest:       #091c11;
  --deep-green:   #102c1a;
  --mid-green:    #1a4228;
  --accent-green: #256b3e;
  --sage:         #4a9e6a;

  --gold-dark:    #7a5210;
  --gold:         #c49228;
  --gold-bright:  #e8b830;
  --gold-pale:    #f5e8c0;
  --gold-faint:   #fdf5e0;

  --navy:         #08182e;
  --deep-blue:    #0f2544;
  --blue:         #1a4b8a;
  --sky:          #4a8ad4;

  --cream:        #fef9ed;
  --warm-white:   #faf6ee;
  --text-on-dark: #f2ece0;
  --text-muted:   #96a89c;
  --text-body:    #2e3e34;
  --border-subtle:rgba(196,146,40,0.18);

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'Lato', sans-serif;

  --max-w: 1200px;
  --section-py: 96px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --gold-glow:  0 0 32px rgba(196,146,40,0.28);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.42);
  --shadow-card:0 4px 24px rgba(0,0,0,0.10);
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--forest);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; transition: var(--transition); }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-py { padding: var(--section-py) 0; }
.text-center { text-align: center; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.8vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin: 18px 0 30px;
}
.gold-line.center { margin: 18px auto 30px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--gold-glow); }
.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(196,146,40,0.45);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-green { background: var(--accent-green); color: #fff; }
.btn-green:hover { background: var(--sage); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1daa54; transform: translateY(-2px); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 12px 20px 12px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { background: #1daa54; transform: scale(1.05); color: #fff; }
.wa-float__icon { font-size: 1.35rem; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(9,28,17,0.97);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.05rem; letter-spacing: 0.1em;
  color: var(--text-on-dark);
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,236,224,0.72);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__cta {
  padding: 9px 22px;
  background: var(--gold); color: var(--forest);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.nav__cta:hover { background: var(--gold-bright); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-on-dark); border-radius: 2px; transition: var(--transition); }
.mob-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(9,28,17,0.98);
  z-index: 998; padding: 100px 32px 40px;
  transform: translateX(100%); transition: var(--transition);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav__list { display: flex; flex-direction: column; gap: 28px; }
.mob-nav__link { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-on-dark); letter-spacing: 0.06em; }
.mob-nav__link:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden;
  background: var(--forest);
}
.hero__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 20% 60%, rgba(37,107,62,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(26,75,138,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(196,146,40,0.07) 0%, transparent 50%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 140px 0 80px 0;
}
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero__eyebrow-text { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: var(--text-on-dark); line-height: 1.12;
  margin-bottom: 10px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(242,236,224,0.58); letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border: 1px solid rgba(196,146,40,0.35);
  border-radius: var(--radius-sm);
  background: rgba(196,146,40,0.08);
  margin-bottom: 40px;
}
.hero__badge-icon { font-size: 1.3rem; }
.hero__badge-text { font-size: 0.8rem; color: var(--gold-pale); line-height: 1.45; }
.hero__badge-text strong { color: var(--gold); display: block; font-size: 0.84rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image panel */
.hero__image-panel {
  position: relative; height: 100vh;
  display: flex; align-items: stretch;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0.88;
}
.hero__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right, var(--forest) 0%, transparent 35%, transparent 70%, rgba(9,28,17,0.4) 100%
  );
}
.hero__img-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to top, var(--forest), transparent);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 32px; left: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(242,236,224,0.35);
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite; z-index: 3;
}
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ══════════════════════════════════════════
   CREDENTIAL STRIP
══════════════════════════════════════════ */
.strip { background: var(--gold); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.strip__track { display: inline-flex; animation: marquee 35s linear infinite; }
.strip__item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest);
}
.strip__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--forest); opacity: 0.35; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats {
  background: var(--deep-green);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-heading);
  font-size: 2.4rem; color: var(--gold);
  display: block; margin-bottom: 6px;
}
.stat__label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ══════════════════════════════════════════
   ANCIENT SCIENCE
══════════════════════════════════════════ */
.ancient {
  background: var(--navy);
  color: var(--text-on-dark);
  position: relative; overflow: hidden;
}
.ancient::after {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,75,138,0.25), transparent 70%);
  pointer-events: none;
}
.ancient__intro { max-width: 820px; margin: 0 auto 64px; }
.ancient__intro .section-title { color: var(--text-on-dark); }
.ancient__quote {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.1rem; line-height: 1.75; color: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 24px; margin: 32px 0;
}
.ancient__body { font-size: 0.96rem; color: rgba(242,236,224,0.7); line-height: 1.85; }
.ancient__body + .ancient__body { margin-top: 14px; }

.ancient__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.ancient__card {
  background: rgba(26,75,138,0.18);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px; transition: var(--transition);
}
.ancient__card:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(26,75,138,0.26); }
.ancient__card-icon { font-size: 2rem; margin-bottom: 14px; }
.ancient__card-title { font-family: var(--font-heading); font-size: 1rem; color: var(--gold); margin-bottom: 10px; }
.ancient__card-text { font-size: 0.86rem; color: rgba(242,236,224,0.62); line-height: 1.78; }

.ancient__knowledge { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 64px; }
.ancient__k-title { font-family: var(--font-heading); font-size: 1.35rem; color: var(--text-on-dark); margin-bottom: 22px; }
.ancient__list li {
  padding: 10px 0; border-bottom: 1px solid rgba(196,146,40,0.1);
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.88rem; color: rgba(242,236,224,0.68); line-height: 1.65;
}
.ancient__list li::before { content: '◆'; color: var(--gold); font-size: 0.56rem; margin-top: 5px; flex-shrink: 0; }
.ancient__list li strong { color: var(--gold-pale); }

/* ══════════════════════════════════════════
   CRAFT OFFERINGS (3 cards)
══════════════════════════════════════════ */
.offerings { background: var(--cream); }
.offerings__intro { max-width: 700px; margin: 0 auto 56px; }
.offerings__intro .section-title { color: var(--deep-green); }
.offerings__intro .section-label { color: var(--gold-dark); }
.offerings__intro .section-sub { color: var(--text-body); margin: 0 auto; }

.offerings__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.offer-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.13); border-color: var(--gold); }
.offer-card__img { height: 240px; overflow: hidden; }
.offer-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .offer-card__img img { transform: scale(1.06); }
.offer-card__body { padding: 24px; }
.offer-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.offer-card__title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--deep-green); margin-bottom: 10px; }
.offer-card__sub { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.offer-card__desc { font-size: 0.86rem; color: #5a6b60; line-height: 1.75; }

/* ══════════════════════════════════════════
   TEMPLE TRADITIONS
══════════════════════════════════════════ */
.traditions { background: var(--deep-green); color: var(--text-on-dark); }
.traditions__intro { max-width: 700px; margin: 0 auto 56px; }
.traditions__intro .section-title { color: var(--text-on-dark); }
.traditions__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition); position: relative;
}
.t-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.t-card.specialty { border-color: rgba(196,146,40,0.45); border-width: 2px; }
.t-card.specialty::after {
  content: '★ Our Speciality';
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--forest);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.t-card__header { padding: 20px 22px; }
.t-card__header-title { font-family: var(--font-heading); font-size: 1rem; color: #fff; margin-bottom: 3px; }
.t-card__header-period { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.t-card--kadamba .t-card__header  { background: linear-gradient(135deg,#6b4510,#a87220); }
.t-card--hoysala .t-card__header  { background: linear-gradient(135deg,#0c2140,#1a4b8a); }
.t-card--dravidian .t-card__header{ background: linear-gradient(135deg,#280d50,#4a1e8a); }
.t-card--kerala .t-card__header   { background: linear-gradient(135deg,#143820,#256b3e); }
.t-card--chalukya .t-card__header { background: linear-gradient(135deg,#5a2010,#b04020); }
.t-card--nagara .t-card__header   { background: linear-gradient(135deg,#141440,#2a2a8a); }
.t-card__body { padding: 18px 22px 22px; }
.t-card__desc { font-size: 0.83rem; color: rgba(242,236,224,0.65); line-height: 1.72; margin-bottom: 14px; }
.t-card__features li {
  font-size: 0.76rem; color: rgba(242,236,224,0.58);
  padding: 4px 0; display: flex; gap: 8px; align-items: flex-start;
}
.t-card__features li::before { content: '▸'; color: var(--gold); font-size: 0.66rem; margin-top: 3px; }
.t-card__examples { font-size: 0.7rem; color: rgba(242,236,224,0.4); font-style: italic; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; margin-top: 14px; }
.t-card__examples strong { color: var(--gold); font-style: normal; }

/* ══════════════════════════════════════════
   THE ARTISAN — JOURNEY
══════════════════════════════════════════ */
.artisan { background: var(--forest); color: var(--text-on-dark); }
.artisan__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* Photo cluster */
.artisan__photos { position: relative; }
.artisan__photo-main {
  width: 100%; border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}
.artisan__photo-main img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }
.artisan__photo-inset {
  position: absolute; bottom: -28px; right: -20px;
  width: 200px; border-radius: var(--radius-md);
  overflow: hidden; border: 3px solid var(--forest);
  box-shadow: var(--shadow-lg);
}
.artisan__photo-inset img { width: 100%; height: 160px; object-fit: cover; object-position: center; }
.artisan__award-badge {
  position: absolute; top: 20px; left: -16px;
  background: var(--gold); color: var(--forest);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(196,146,40,0.4);
  max-width: 160px; text-align: center; line-height: 1.4;
}

.artisan__content { padding-top: 20px; }
.artisan__content .section-title { color: var(--text-on-dark); }

/* Timeline */
.timeline { margin-top: 38px; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 11px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(196,146,40,0.05));
}
.tl-item { display: flex; gap: 24px; margin-bottom: 34px; position: relative; }
.tl-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--deep-green); border: 2px solid var(--gold);
  flex-shrink: 0; margin-top: 3px;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.tl-dot.active { background: var(--gold); box-shadow: 0 0 0 4px rgba(196,146,40,0.2); }
.tl-year { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tl-title { font-family: var(--font-heading); font-size: 0.98rem; color: var(--text-on-dark); margin-bottom: 6px; }
.tl-desc { font-size: 0.84rem; color: rgba(242,236,224,0.62); line-height: 1.72; }

/* ══════════════════════════════════════════
   PORTRAIT SCULPTURE — PRATIMA SHILPA
══════════════════════════════════════════ */
.portrait { background: var(--deep-blue); color: var(--text-on-dark); }
.portrait__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.portrait__content .section-title { color: var(--text-on-dark); }
.portrait__content .section-sub { color: rgba(242,236,224,0.68); margin-bottom: 32px; }
.portrait__feature-list { margin-bottom: 36px; }
.portrait__feature-list li {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(196,146,40,0.1);
  font-size: 0.9rem; color: rgba(242,236,224,0.72); line-height: 1.6;
}
.portrait__feature-list li:last-child { border-bottom: none; }
.portrait__feature-list li .fi { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.portrait__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.portrait__photo { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); }
.portrait__photo img { width: 100%; height: 280px; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.portrait__photo:hover img { transform: scale(1.04); }
.portrait__photo-wide { grid-column: span 2; }
.portrait__photo-wide img { height: 220px; }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery { background: var(--mid-green); }
.gallery__intro { max-width: 640px; margin: 0 auto 48px; }
.gallery__intro .section-title { color: var(--text-on-dark); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,28,17,0.85) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-caption { font-size: 0.74rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   COMMISSION CTA
══════════════════════════════════════════ */
.commission {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--mid-green) 100%);
  color: var(--text-on-dark); position: relative; overflow: hidden;
}
.commission::before {
  content: ''; position: absolute; top: -40%; right: -8%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,40,0.1), transparent 70%);
  pointer-events: none;
}
.commission__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.commission__content .section-title { color: var(--text-on-dark); }
.commission__sub { font-size: 0.96rem; color: rgba(242,236,224,0.68); line-height: 1.8; margin-bottom: 36px; }
.steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.step { display: flex; gap: 18px; }
.step__num {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(196,146,40,0.18);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.9rem; color: var(--gold);
}
.step__title { font-family: var(--font-heading); font-size: 0.94rem; color: var(--text-on-dark); margin-bottom: 4px; }
.step__desc { font-size: 0.82rem; color: rgba(242,236,224,0.58); line-height: 1.65; }
.commission__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Commission Form */
.commission__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 36px;
  backdrop-filter: blur(6px);
}
.commission__form h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-on-dark); margin-bottom: 24px; }
.fgroup { margin-bottom: 16px; }
.fgroup label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,236,224,0.55); margin-bottom: 6px; }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,146,40,0.22);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark); font-family: var(--font-body);
  font-size: 0.88rem; outline: none; transition: var(--transition);
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.09);
}
.fgroup select option { background: var(--deep-green); }
.fgroup textarea { min-height: 96px; resize: vertical; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background: var(--navy); color: var(--text-on-dark); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact__title { font-family: var(--font-heading); font-size: 1.75rem; color: var(--text-on-dark); margin-bottom: 14px; }
.contact__sub { font-size: 0.9rem; color: rgba(242,236,224,0.62); line-height: 1.75; margin-bottom: 32px; }
.contact__methods { display: flex; flex-direction: column; gap: 12px; }
.contact__method {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact__method:hover { border-color: var(--gold); }
.contact__method-icon { font-size: 1.4rem; }
.contact__method-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,236,224,0.38); margin-bottom: 2px; }
.contact__method-val { font-size: 0.88rem; color: var(--text-on-dark); }
.contact__form-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-on-dark); margin-bottom: 22px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--forest);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
}
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer__logo { font-family: var(--font-heading); font-size: 1rem; color: var(--text-on-dark); letter-spacing: 0.08em; }
.footer__logo span { color: var(--gold); }
.footer__tagline { font-size: 0.68rem; color: var(--text-muted); margin-top: 4px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__link { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.footer__link:hover { color: var(--gold); }
.footer__credit { font-size: 0.68rem; color: var(--text-muted); text-align: right; }
.footer__credit a { color: var(--gold-dark); }
.footer__credit a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image-panel { display: none; }
  .hero__content { padding: 140px 0 80px; }
  .traditions__grid { grid-template-columns: repeat(2,1fr); }
  .ancient__cards { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat { border-bottom: 1px solid var(--border-subtle); }
}
@media(max-width:768px) {
  :root { --section-py:64px; }
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
  .mob-nav { display: block; }
  .hero__title { font-size: 2.4rem; }
  .artisan__inner, .portrait__inner, .commission__inner, .contact__grid { grid-template-columns:1fr; gap:40px; }
  .artisan__photo-inset { display: none; }
  .traditions__grid, .offerings__grid, .ancient__cards { grid-template-columns:1fr; }
  .gallery__grid { grid-template-columns:1fr 1fr; grid-template-rows: auto; }
  .gallery__grid .g-item:nth-child(1) { grid-column:span 2; height:280px; }
  .gallery__grid .g-item:nth-child(4) { grid-column:span 1; }
  .portrait__photos { grid-template-columns:1fr; }
  .portrait__photo-wide { grid-column:span 1; }
  .portrait__photo img, .portrait__photo-wide img { height:240px; }
  .footer__inner { flex-direction:column; text-align:center; }
  .footer__credit { text-align:center; }
  .ancient__knowledge { grid-template-columns:1fr; gap:36px; }
}
@media(max-width:480px) {
  .hero__title { font-size:2rem; }
  .gallery__grid { grid-template-columns:1fr; }
  .gallery__grid .g-item:nth-child(1), .gallery__grid .g-item:nth-child(4) { grid-column:span 1; height:240px; }
  .stats__grid { grid-template-columns:1fr 1fr; }
  .hero__actions { flex-direction:column; }
  .btn { width:100%; justify-content:center; }
  .commission__actions { flex-direction:column; }
}
