/* ============================================
   DR. SHAURYA GARG — PSYCHIATRY PRACTICE
   styles.css
   ============================================ */

/* ---- RESET & ROOT ---- */
:root {
  --cream:        #F7F3EC;
  --cream-mid:    #EDE7D9;
  --cream-dark:   #D9CEBC;
  --charcoal:     #1A1510;
  --charcoal-mid: #252018;
  --brown:        #8B6F47;
  --brown-light:  #C4A882;
  --brown-pale:   #E8DDD0;
  --text:         #2A2218;
  --text-muted:   #6B5D4E;
  --white:        #FDFAF5;
}

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

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

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--brown);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--brown);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.grow {
  width: 60px;
  height: 60px;
  border-color: var(--charcoal);
}

@media (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }
}


/* ---- PRELOADER ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 56px;
  overflow: hidden;

  .preloader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pre-credential {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light, #888);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.pre-credential.show {
  opacity: 1;
  transform: translateY(0);
}
}

.preloader-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pre-name {
  font-family: 'Cormorant Garamond', serif;
 font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--cream);
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pre-name.show { opacity: 1; transform: translateY(0); }

.pre-count {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.preloader-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pre-bar {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  width: 0%;
  background: var(--brown-light);
  transition: width 0.04s linear;
}

.pre-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--brown-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.pre-tagline.show { opacity: 1; transform: translateY(0); }


/* ---- NAVIGATION ---- */
#nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, border-bottom 0.3s ease;
}

#nav.scrolled {
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light, #888);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.nav-menu a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--brown);
  transition: width 0.35s ease;
}

.nav-menu a:not(.nav-btn):hover::after { width: 100%; }

.nav-btn {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  padding: 11px 26px !important;
  letter-spacing: 0.1em;
  transition: background 0.3s ease !important;
}

.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--brown) !important; color: var(--cream) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--brown-light); }

.mobile-close {
  position: absolute;
  top: 28px; right: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-light);
  cursor: pointer;
  background: none;
  border: none;
}


/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 90px;
  position: relative;
  overflow: hidden;
}

/* Abstract art shapes — pure CSS */
.hero-art {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  pointer-events: none;
}

.shape-a {
  position: absolute;
  top: -8%;
  right: -4%;
  width: 68%;
  height: 78%;
  background: radial-gradient(ellipse 70% 80% at 55% 45%,
    var(--cream-mid) 0%,
    rgba(217,206,188,0.4) 55%,
    transparent 75%);
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: blob1 14s ease-in-out infinite alternate;
}

.shape-b {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 52%;
  height: 55%;
  background: radial-gradient(ellipse 60% 70% at 45% 55%,
    rgba(196,168,130,0.28) 0%,
    transparent 65%);
  border-radius: 60% 40% 32% 68% / 54% 36% 64% 46%;
  animation: blob2 18s ease-in-out infinite alternate-reverse;
}

.shape-c {
  position: absolute;
  top: 18%;
  right: 16%;
  width: 44%;
  height: 52%;
  border: 1px solid rgba(196,168,130,0.25);
  border-radius: 46% 54% 62% 38% / 44% 56% 44% 56%;
  animation: blob3 20s ease-in-out infinite alternate;
}

.shape-d {
  position: absolute;
  top: 30%;
  right: 28%;
  width: 28%;
  height: 36%;
  background: radial-gradient(ellipse at center,
    rgba(139,111,71,0.12) 0%,
    transparent 70%);
  border-radius: 50%;
  animation: blob2 12s ease-in-out infinite alternate;
}

@keyframes blob1 {
  0%   { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
  50%  { border-radius: 52% 48% 36% 64% / 58% 62% 38% 42%; }
  100% { border-radius: 68% 32% 52% 48% / 34% 56% 44% 66%; }
}
@keyframes blob2 {
  0%   { border-radius: 60% 40% 32% 68% / 54% 36% 64% 46%; transform: rotate(0deg); }
  100% { border-radius: 40% 60% 68% 32% / 46% 64% 36% 54%; transform: rotate(12deg); }
}
@keyframes blob3 {
  0%   { border-radius: 46% 54% 62% 38% / 44% 56% 44% 56%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 60% 40% 38% 62% / 58% 42% 58% 42%; transform: rotate(-10deg) scale(1.06); }
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(18px);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8.5vw, 7.2rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--charcoal);
  max-width: 68%;
  margin-bottom: 36px;
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
}

.hero-h1 .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(70px);
}

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

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(18px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(18px);
}

.btn-fill {
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream);
  padding: 16px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--charcoal);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-fill:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--brown);
  border-color: var(--brown);
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.scroll-wire {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--charcoal), transparent);
  transform-origin: top;
  animation: wireAnim 2.2s ease-in-out infinite;
}

@keyframes wireAnim {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.scroll-label {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 24s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.m-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.m-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---- SECTION UTILITIES ---- */
.section-wrap {
  padding: 120px 60px;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 18px;
}

.section-label.light { color: var(--brown-light); }

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
}

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

.section-h2 em {
  font-style: italic;
  color: var(--brown);
}

.section-h2.light em { color: var(--brown-light); }

.divider {
  width: 40px;
  height: 1px;
  background: var(--brown);
  margin: 28px 0;
}


/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}

.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.42s; }
.reveal-d5 { transition-delay: 0.52s; }


/* ---- ABOUT ---- */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  padding: 120px 60px;
}

.about-art {
  position: sticky;
  top: 120px;
  height: 580px;
}

.about-blob-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: var(--cream-mid);
  border-radius: 56% 44% 42% 58% / 52% 60% 40% 48%;
  animation: blob1 16s ease-in-out infinite alternate;
}

.about-accent {
  position: absolute;
  inset: 12%;
  background: linear-gradient(135deg,
    var(--cream-dark) 0%,
    var(--brown-light) 50%,
    var(--cream-mid) 100%);
  opacity: 0.55;
  border-radius: 40% 60% 55% 45% / 58% 34% 66% 42%;
  animation: blob2 11s ease-in-out infinite alternate;
}

.about-ring {
  position: absolute;
  top: 16%; left: 12%;
  right: 12%; bottom: 16%;
  border: 1px solid rgba(139,111,71,0.25);
  border-radius: 50% 50% 42% 58% / 58% 46% 54% 42%;
  animation: blob3 17s ease-in-out infinite alternate;
}

.about-tag {
  position: absolute;
  bottom: 8%;
  left: -4%;
  background: var(--charcoal);
  color: var(--cream);
  padding: 20px 28px;
  font-family: 'Cormorant Garamond', serif;
}

.about-tag-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 6px;
}

.about-tag-val {
  font-size: 1.1rem;
  font-weight: 400;
}

.about-content { padding-top: 60px; }

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  margin: 28px 0 20px;
}

.about-body {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 52px;
}

.cred-head {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 22px;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.cred-dash {
  width: 22px;
  height: 1px;
  background: var(--brown);
  margin-top: 10px;
  flex-shrink: 0;
}


/* ---- SERVICES ---- */
#services {
  background: var(--charcoal);
  padding: 120px 60px;
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.services-note {
  font-size: 0.88rem;
  color: rgba(247,243,236,0.42);
  max-width: 320px;
  line-height: 1.7;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
}

.svc-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--charcoal);
  transition: background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brown);
  transition: width 0.4s ease;
}

.svc-card:hover::before { width: 100%; }

.svc-card:hover { background: var(--charcoal-mid); }

.svc-card.featured {
  background: var(--brown);
  grid-column: span 2;
}

.svc-card.featured:hover { background: #7a5e38; }
.svc-card.featured::before { background: var(--cream); }

.svc-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--brown-light);
  margin-bottom: 28px;
}

.svc-card.featured .svc-num { color: rgba(253,250,245,0.65); }

.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.25;
}

.svc-desc {
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(247,243,236,0.46);
}

.svc-card.featured .svc-desc { color: rgba(253,250,245,0.72); }


/* ---- SEMINARS ---- */
#seminars { padding: 120px 60px; background: var(--cream-mid); }

.seminars-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 90px;
  align-items: end;
}

.seminars-body {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--text-muted);
  margin-top: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.stat-block {
  padding: 32px;
  border: 1px solid var(--cream-dark);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-txt {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  margin-bottom: 2px;
}

.venue-card {
  background: var(--cream-mid);
  padding: 40px 36px;
  transition: background 0.3s ease;
}

.venue-card:hover { background: var(--cream); }

.venue-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}

.venue-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.venue-desc {
  font-size: 0.82rem;
  line-height: 1.68;
  color: var(--text-muted);
}

/* Seminar booking CTA */
.seminar-book {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 90px 80px;
  margin-top: 2px;
}

.book-left { align-self: start; }

.book-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.book-h3 em { font-style: italic; color: var(--brown-light); }

.book-body {
  font-size: 0.88rem;
  line-height: 1.82;
  color: rgba(247,243,236,0.52);
}

/* Forms */
.form-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-group label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.f-group input,
.f-group select,
.f-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
  -webkit-appearance: none;
}

.f-group input::placeholder,
.f-group textarea::placeholder {
  color: rgba(247,243,236,0.28);
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--brown-light);
}

.f-group select option {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-submit {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--brown);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: transparent;
  color: var(--brown-light);
  border-color: var(--brown-light);
}

/* Light form (contact) */
.form-light .f-group label { color: var(--brown); }

.form-light .f-group input,
.form-light .f-group select,
.form-light .f-group textarea {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--text);
}

.form-light .f-group input::placeholder,
.form-light .f-group textarea::placeholder {
  color: rgba(42,34,24,0.3);
}

.form-light .f-group input:focus,
.form-light .f-group select:focus,
.form-light .f-group textarea:focus {
  border-color: var(--brown);
}

.form-light .f-group select option {
  background: var(--cream);
  color: var(--text);
}

.form-light .btn-submit {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.form-light .btn-submit:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}


/* ---- CONTACT ---- */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 60px;
  align-items: start;
}

.contact-side { padding-top: 20px; }

.contact-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.9vw, 1.48rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  margin: 24px 0 52px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 52px;
}

.c-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.c-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  width: 110px;
  flex-shrink: 0;
  padding-top: 3px;
}

.c-val {
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.5;
}

.c-val a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.c-val a:hover {
  color: var(--brown);
  border-color: var(--brown);
}

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

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--cream-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.soc-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.soc-btn svg { flex-shrink: 0; }

.contact-form-panel {
  background: var(--cream-mid);
  padding: 60px 52px;
}

.contact-form-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 36px;
}


/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding: 72px 60px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-brand-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 1.5;
  margin-bottom: 28px;
}

.footer-cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-cred-list li {
  font-size: 0.76rem;
  color: rgba(247,243,236,0.35);
  line-height: 1.5;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 22px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: rgba(247,243,236,0.52);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav-list a:hover { color: var(--brown-light); }

.footer-social-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.footer-soc-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(247,243,236,0.52);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-soc-link:hover { color: var(--brown-light); }

.footer-soc-link svg { flex-shrink: 0; opacity: 0.6; }

.footer-bottom {
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(247,243,236,0.22);
  letter-spacing: 0.04em;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.featured { grid-column: span 2; }
}

@media (max-width: 900px) {
  #nav { padding: 20px 28px; }
  #nav.scrolled { padding: 14px 28px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  #hero { padding: 100px 28px 64px; }
  .hero-art { display: none; }
  .hero-h1 { max-width: 100%; }

  .section-wrap, #about, #services, #seminars, #contact { padding: 80px 28px; }

  #about { grid-template-columns: 1fr; gap: 48px; }
  .about-art { position: relative; top: auto; height: 280px; }
  .about-content { padding-top: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card.featured { grid-column: span 1; }
  .services-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-note { text-align: left; }

  .seminars-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .seminar-book { grid-template-columns: 1fr; padding: 48px 28px; gap: 48px; }

  #contact { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 40px 28px; }

  .footer-main { grid-template-columns: 1fr; gap: 48px; padding: 52px 28px 40px; }
  .footer-bottom { padding: 18px 28px; flex-direction: column; gap: 8px; text-align: center; }

  #preloader { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .venues-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}
