/* ==============================================
   DR. YUNUS KURIKKAL — MAIN STYLESHEET
   Lavender Mist & Deep Violet
   ============================================== */

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

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

:root {
  --page:     #F8F6FF;
  --surface:  #EFEAFC;
  --card:     #DDD5F7;
  --accent:   #7B6BC8;
  --deep:     #534AB7;
  --dark:     #2D2458;
  --footer:   #1E1640;
  --white:    #FFFFFF;
  --text:     #2D2458;
  --text-muted: rgba(45,36,88,0.55);
  --text-light: rgba(45,36,88,0.38);
  --border:   rgba(123,107,200,0.18);
  --border-hover: rgba(123,107,200,0.45);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--page);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-size: 10px; font-weight: 400; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 0.5px;
  background: var(--accent); opacity: 0.7; flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300; line-height: 1.08;
  color: var(--dark); letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); background: var(--accent);
  border: 1px solid var(--accent);
  padding: 15px 36px; cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.btn-primary:hover { background: var(--deep); border-color: var(--deep); color: var(--white); }

.btn-ghost {
  display: inline-block;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); background: transparent;
  border: 0.5px solid rgba(123,107,200,0.4);
  padding: 15px 36px; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(123,107,200,0.06); }

.btn-light {
  display: inline-block;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark); background: var(--white);
  border: 1px solid var(--white);
  padding: 16px 40px; cursor: pointer;
  transition: background 0.3s;
}
.btn-light:hover { background: var(--surface); }

.btn-outline-light {
  display: inline-block;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #B8AEE8; background: transparent;
  border: 0.5px solid rgba(184,174,232,0.35);
  padding: 16px 40px; cursor: pointer;
  transition: border-color 0.3s;
}
.btn-outline-light:hover { border-color: #B8AEE8; }

/* ---- NAVIGATION ---- */
.site-header {
  background: var(--page);
  border-bottom: 0.5px solid rgba(123,107,200,0.15);
  padding: 0 52px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
}
.site-logo {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: var(--dark); letter-spacing: 0.02em;
}
.site-logo span { color: var(--accent); font-style: italic; }

.nav-menu {
  display: flex; gap: 36px; align-items: center;
}
.nav-menu a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--dark); transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  display: grid; grid-template-columns: 52% 1fr;
  min-height: 92vh; background: var(--page); overflow: hidden;
}
.hero-photo {
  position: relative; overflow: hidden;
  background: var(--surface);
  min-height: 500px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--page) 100%);
  pointer-events: none;
}
.hero-photo-location {
  position: absolute; bottom: 32px; left: 36px; z-index: 2;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(83,74,183,0.5);
  display: flex; align-items: center; gap: 8px;
}
.hero-photo-location::before {
  content: ''; width: 20px; height: 0.5px;
  background: rgba(123,107,200,0.4);
}
.hero-content {
  padding: 72px 52px; display: flex;
  flex-direction: column; justify-content: center;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 300; line-height: 1.0;
  color: var(--dark); letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-h1-italic {
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 63px);
  font-weight: 300; font-style: italic;
  color: var(--accent); line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.hero-divider {
  display: flex; align-items: center; gap: 14px; margin: 20px 0;
}
.hero-divider-line { width: 52px; height: 0.5px; background: linear-gradient(90deg, var(--accent), transparent); }
.hero-divider-dot { width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg); }
.hero-descriptor {
  font-size: 11px; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300; font-style: italic;
  color: rgba(45,36,88,0.65); line-height: 1.65;
  margin-bottom: 40px; max-width: 400px;
}
.hero-sub strong { color: var(--deep); font-style: normal; font-weight: 400; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-creds {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding-top: 28px; border-top: 0.5px solid rgba(123,107,200,0.15);
}
.cred-pill {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(83,74,183,0.6);
  border: 0.5px solid rgba(123,107,200,0.25);
  padding: 6px 14px;
}

/* ---- ABOUT ---- */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
}
.about-left {
  background: var(--surface);
  padding: 88px 60px 88px 52px;
  border-right: 0.5px solid rgba(123,107,200,0.12);
}
.about-body {
  font-family: var(--serif);
  font-size: 19px; font-weight: 300; line-height: 1.82;
  color: var(--text-muted); margin-bottom: 36px;
}
.about-body strong { color: var(--dark); font-weight: 400; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--deep); border: 0.5px solid rgba(83,74,183,0.35);
  padding: 8px 18px; background: rgba(123,107,200,0.06);
}
.about-right {
  padding: 88px 52px 88px 60px;
  background: var(--page);
}
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.exp-card {
  border: 0.5px solid var(--border); padding: 20px 22px;
  background: var(--white); transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.exp-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent); opacity: 0; transition: opacity 0.3s;
}
.exp-card:hover { border-color: var(--border-hover); background: #FDFCFF; }
.exp-card:hover::before { opacity: 1; }
.exp-num {
  font-family: var(--serif); font-size: 13px; font-style: italic;
  color: rgba(123,107,200,0.4); margin-bottom: 8px; display: block;
}
.exp-title { font-size: 12px; font-weight: 400; letter-spacing: 0.06em; color: var(--dark); line-height: 1.5; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark); padding: 28px 52px;
  display: flex; align-items: center; justify-content: space-between;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--serif); font-size: 42px; font-weight: 300;
  color: #B8AEE8; line-height: 1; display: block; margin-bottom: 6px;
}
.stat-num sub { font-size: 22px; }
.stat-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.stat-sep { width: 0.5px; height: 44px; background: rgba(184,174,232,0.2); }

/* ---- METHODOLOGY ---- */
.method-section { padding: 88px 52px; background: var(--page); }
.method-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
}
.method-sub {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  font-weight: 300; color: var(--text-light);
  max-width: 260px; text-align: right; line-height: 1.6;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 0.5px solid rgba(123,107,200,0.15);
}
.step-item {
  padding: 36px 26px 40px;
  border-right: 0.5px solid rgba(123,107,200,0.15);
  position: relative; transition: background 0.3s;
}
.step-item:last-child { border-right: none; }
.step-item:hover { background: var(--surface); }
.step-num {
  font-family: var(--serif); font-size: 50px; font-weight: 300;
  font-style: italic; color: rgba(123,107,200,0.13);
  line-height: 1; margin-bottom: 18px; display: block; transition: color 0.3s;
}
.step-item:hover .step-num { color: rgba(123,107,200,0.35); }
.step-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--dark); margin-bottom: 12px; display: block;
}
.step-desc {
  font-size: 12px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--text-muted); line-height: 1.75;
}
.step-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); opacity: 0; transition: opacity 0.3s;
}
.step-item:hover .step-bar { opacity: 1; }

/* ---- SERVICES ---- */
.services-section { padding: 88px 52px; background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.svc-card {
  background: var(--page); border: 0.5px solid var(--border);
  padding: 36px 32px 40px; position: relative;
  transition: border-color 0.3s;
}
.svc-card:hover { border-color: var(--border-hover); }
.svc-card.featured { background: var(--dark); border-color: var(--dark); }
.featured-badge {
  display: inline-block; font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(184,174,232,0.15); color: #B8AEE8;
  padding: 4px 12px; margin-bottom: 12px;
}
.svc-num {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  font-style: italic; color: rgba(123,107,200,0.15);
  line-height: 1; margin-bottom: 20px; display: block;
}
.svc-card.featured .svc-num { color: rgba(184,174,232,0.2); }
.svc-title {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.svc-card.featured .svc-title { color: var(--page); }
.svc-desc {
  font-size: 13px; font-weight: 300; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 24px;
}
.svc-card.featured .svc-desc { color: rgba(248,246,255,0.6); }
.svc-tags { display: flex; flex-direction: column; gap: 6px; }
.svc-tag {
  font-size: 11px; font-weight: 300; letter-spacing: 0.06em;
  color: rgba(83,74,183,0.7);
  padding: 6px 0; border-top: 0.5px solid rgba(123,107,200,0.15);
}
.svc-card.featured .svc-tag { color: rgba(184,174,232,0.6); border-color: rgba(184,174,232,0.15); }

/* ---- WHO I WORK WITH ---- */
.who-section { padding: 88px 52px; background: var(--page); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 56px; }
.who-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 28px; border: 0.5px solid var(--border);
  background: var(--white); transition: border-color 0.3s, background 0.3s;
}
.who-item:hover { border-color: var(--border-hover); background: #FDFCFF; }
.who-diamond {
  width: 8px; height: 8px; background: var(--accent);
  flex-shrink: 0; margin-top: 6px; transform: rotate(45deg);
}
.who-text {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  line-height: 1.6; color: var(--dark);
}

/* ---- OUTCOMES ---- */
.outcomes-section { background: var(--surface); padding: 88px 52px; }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(123,107,200,0.12); margin-top: 56px;
}
.outcome-item {
  background: var(--surface); padding: 36px 32px; transition: background 0.3s;
}
.outcome-item:hover { background: var(--card); }
.outcome-icon {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(123,107,200,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.outcome-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.outcome-title {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--dark); margin-bottom: 10px;
}
.outcome-desc {
  font-size: 12px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--text-muted); line-height: 1.75;
}

/* ---- CTA BANNER ---- */
.cta-section {
  background: var(--dark); padding: 88px 52px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-eyebrow {
  font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(184,174,232,0.5); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.cta-eyebrow::before { content: ''; width: 28px; height: 0.5px; background: rgba(184,174,232,0.4); }
.cta-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 50px);
  font-weight: 300; line-height: 1.05; color: var(--page); letter-spacing: -0.02em;
}
.cta-title em { font-style: italic; color: #B8AEE8; }
.cta-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-sub {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  font-weight: 300; color: rgba(248,246,255,0.5);
  line-height: 1.6; max-width: 320px;
}

/* ---- FOOTER ---- */
.site-footer { background: var(--footer); padding: 52px 52px 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 0.5px solid rgba(184,174,232,0.1);
}
.footer-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--page); margin-bottom: 12px;
}
.footer-logo span { font-style: italic; color: #B8AEE8; }
.footer-tagline {
  font-size: 12px; font-weight: 300; line-height: 1.7;
  color: rgba(248,246,255,0.35); max-width: 220px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(184,174,232,0.4); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 12px; font-weight: 300;
  color: rgba(248,246,255,0.45); margin-bottom: 10px;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.footer-col a:hover { color: #B8AEE8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-made {
  font-size: 11px; color: rgba(248,246,255,0.2); letter-spacing: 0.1em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .site-header { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 460px; }
  .hero-photo-overlay { background: linear-gradient(0deg, var(--page) 0%, transparent 50%); }
  .hero-content { padding: 52px 32px; }
  .about-section { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 64px 32px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu, .site-header .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--page); padding: 24px 32px; gap: 20px;
    border-bottom: 0.5px solid var(--border); z-index: 999;
  }
  .hero-h1 { font-size: 36px; }
  .hero-h1-italic { font-size: 38px; }
  .stats-bar { flex-wrap: wrap; gap: 24px; padding: 32px; }
  .stat-sep { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { flex-direction: column; padding: 64px 32px; }
  .method-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .method-sub { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-header { padding: 0 20px; }
  .hero-content { padding: 40px 20px; }
  .about-left, .about-right { padding: 52px 20px; }
  .method-section, .services-section, .who-section,
  .outcomes-section, .cta-section { padding: 64px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .stats-bar { padding: 32px 20px; }
}
