/* Akram Vignan — Dallas Gnan Vidhi landing page
   Design language modeled on akram-vignan.com:
   warm cream ground, maroon serif display, terracotta accent,
   16px radii, soft warm shadows, large photography. */

:root {
  --cream:    #FFF9EC;
  --cream-2:  #FDEFD8;
  --cream-3:  #FBE6C7;
  --white:    #FFFFFF;
  --maroon:   #590C0C;
  --maroon-2: #7A2A1C;
  --terra:    #CB4B1F;
  --terra-2:  #A93B15;
  --body:     #6A362B;
  --muted:    #8A6156;
  --line:     #EADFC8;

  --r:        16px;
  --shell:    1140px;
  --pad:      clamp(20px, 5vw, 40px);
  --shadow:   0 18px 48px rgba(89, 12, 12, .10);
  --shadow-sm:0 8px 24px rgba(89, 12, 12, .07);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- type ---------- */

h1, h2, h3 { font-family: var(--serif); color: var(--maroon); font-weight: 600; line-height: 1.06; }
h1 { font-size: clamp(46px, 7vw, 82px); letter-spacing: -0.005em; }
h2 { font-size: clamp(34px, 4.6vw, 50px); line-height: 1.1; }
h3 { font-family: var(--sans); font-size: 20px; font-weight: 700; line-height: 1.3; }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra);
}
.lede { font-size: clamp(19px, 2vw, 22px); color: var(--body); }
.accent { color: var(--terra); }
.rule { width: 90px; height: 3px; background: var(--terra); border-radius: 3px; margin: 20px 0; opacity: .8; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block; text-decoration: none;
  background: var(--terra); color: var(--white);
  font-weight: 600; font-size: 19px;
  padding: 17px 36px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(203, 75, 31, .26);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--terra-2); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(203,75,31,.32); }
.btn-ghost {
  background: transparent; color: var(--terra);
  border: 1.5px solid rgba(203,75,31,.45); box-shadow: none; padding: 15.5px 34px;
}
.btn-ghost:hover { background: rgba(203,75,31,.07); color: var(--terra-2); box-shadow: none; }
.btn-sm { padding: 11px 24px; font-size: 16px; }

.cta-note { font-size: 15px; color: var(--muted); margin-top: 13px; max-width: 46ch; }

/* ---------- header ---------- */

.bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar-in { display: flex; align-items: center; gap: 20px; height: 74px; }
.mark {
  font-family: var(--serif); font-size: 25px; font-weight: 600;
  color: var(--maroon); white-space: nowrap;
}
.mark span { color: var(--terra); }
.bar-when { margin-left: auto; font-size: 15px; color: var(--muted); white-space: nowrap; }
@media (max-width: 700px) { .bar-when { display: none; } .bar-in { justify-content: space-between; } }

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% 34%, rgba(251,230,199,.95), transparent 70%),
    linear-gradient(160deg, #FFFDF7 0%, var(--cream) 38%, var(--cream-2) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(26px, 3.4vw, 52px); align-items: center;
  padding: clamp(40px, 4.6vw, 68px) 0 clamp(44px, 5vw, 72px);
}
.hero h1 { margin: 14px 0 0; }
.hero .lede { margin-top: 18px; max-width: 40ch; }
.hero-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; border-radius: var(--r);
  box-shadow: 0 26px 60px rgba(89,12,12,.20);
}
.hero-photo::after {
  content: ""; position: absolute; inset: -14%;
  background: radial-gradient(closest-side, rgba(255,215,150,.45), transparent 72%);
  z-index: -1;
}
.photo-cap {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  color: #fff; font-size: 15px; line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-photo { order: -1; }
  .hero-photo img {
    width: 100%; max-height: 42vh;
    aspect-ratio: 5 / 4; object-fit: cover; object-position: 50% 18%;
  }
}
@media (max-width: 430px) {
  .mark { font-size: 21px; }
  .bar-in { height: 66px; gap: 12px; }
  .btn-sm { padding: 10px 17px; font-size: 15px; white-space: nowrap; }
}

/* ---------- fact strip ---------- */

.facts { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 22px 24px 22px 0; }
.fact + .fact { padding-left: 26px; border-left: 1px solid var(--line); }
.fact b { display: block; font-family: var(--serif); font-size: 27px; color: var(--maroon); line-height: 1.15; }
.fact span { font-size: 15px; color: var(--muted); }
@media (max-width: 780px) {
  .facts-in { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 18px 18px; border-top: 1px solid var(--line); }
  .fact + .fact { padding-left: 20px; }
  .fact:nth-child(odd) { border-left: none; }
  .fact:nth-child(-n+2) { border-top: none; }
}

/* ---------- sections ---------- */

section { padding: clamp(48px, 5.4vw, 76px) 0; scroll-margin-top: 74px; }
.sec-head { max-width: 62ch; }
.sec-head .lede { margin-top: 15px; }
.alt { background: linear-gradient(180deg, var(--white) 0%, #FFFCF4 100%); }
.warm { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream-3) 100%); }

/* problem block */
.problem-grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: clamp(28px, 3.6vw, 56px); align-items: start; }
.tried { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.tried li {
  list-style: none; font-size: 15px; color: var(--maroon-2);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 17px;
}
.pull {
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow);
  padding: 28px 30px; margin-top: 4px;
  font-family: var(--serif); font-size: clamp(26px, 3vw, 34px);
  line-height: 1.22; color: var(--maroon);
}
.pull b { color: var(--terra); font-weight: 600; }
.pull cite {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 14px; color: var(--muted); margin-top: 14px; letter-spacing: .02em;
}
.pull + p { margin-top: 20px; font-size: 18px; color: var(--body); }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }

/* benefits */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.cell {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
  padding: 24px 24px;
}
.cell .num {
  font-family: var(--serif); font-size: 30px; color: var(--terra); opacity: .55; line-height: 1;
}
.cell h3 { margin: 10px 0 8px; color: var(--maroon); }
.cell p { font-size: 17px; color: var(--body); }
@media (max-width: 920px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }

/* schedule */
.sched { margin-top: 32px; display: grid; gap: 14px; }
.slot {
  display: grid; grid-template-columns: 150px 1fr auto;
  gap: 22px; align-items: baseline;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
  padding: 22px 28px;
}
.slot .day { font-weight: 700; color: var(--terra); font-size: 16px; letter-spacing: .03em; }
.slot h3 { font-size: 21px; }
.slot p { font-size: 17px; color: var(--body); margin-top: 6px; max-width: 62ch; }
.slot .time { font-size: 17px; color: var(--maroon-2); white-space: nowrap; font-weight: 600; }
.slot.key { border-color: rgba(203,75,31,.42); background: linear-gradient(180deg, #FFF8EE, var(--white)); }
.slot.key h3 { color: var(--terra); }
@media (max-width: 800px) {
  .slot { grid-template-columns: 1fr; gap: 5px; padding: 20px; }
  .slot .time { color: var(--muted); font-weight: 700; }
}

/* masters */
.masters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.master {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 24px 24px;
}
.master h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--maroon); }
.master .role {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); margin: 6px 0 10px;
}
.master p { font-size: 17px; color: var(--body); }
@media (max-width: 900px) { .masters { grid-template-columns: 1fr; } }

/* experiences */
.exp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.exp a {
  display: block; text-align: center; text-decoration: none;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 22px 18px 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.exp a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(203,75,31,.4); }
.exp img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; box-shadow: 0 6px 18px rgba(89,12,12,.16);
}
.exp a:hover img { box-shadow: 0 0 0 3px rgba(203,75,31,.35), 0 6px 18px rgba(89,12,12,.18); }
.exp b { display: block; font-size: 17px; line-height: 1.35; color: var(--maroon); }
.exp .txt > span { display: block; font-size: 14px; color: var(--terra); margin-top: 8px; }
.exp-more { margin-top: 22px; font-size: 17px; }
.exp-more a { color: var(--terra); }
@media (max-width: 980px) { .exp { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .exp { grid-template-columns: repeat(2, 1fr); } .exp img { width: 88px; height: 88px; } }
@media (max-width: 420px) { .exp { grid-template-columns: 1fr; } }

/* venue */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3.6vw, 52px); align-items: center; }
.venue address { font-style: normal; font-size: 21px; line-height: 1.65; color: var(--maroon); margin-top: 16px; }
.venue .meta { margin-top: 20px; font-size: 17px; color: var(--body); }
.venue .meta a { color: var(--terra); text-underline-offset: 3px; }
.venue-map iframe {
  width: 100%; height: 380px; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow); display: block;
}
.venue-map .map-link {
  display: inline-block; margin-top: 12px; font-size: 17px; color: var(--terra);
}
@media (max-width: 900px) { .venue-map iframe { height: 320px; } }
@media (max-width: 900px) { .venue-grid { grid-template-columns: 1fr; } }

/* faq */
.faq { margin-top: 30px; max-width: 880px; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
  margin-bottom: 9px;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 54px 18px 24px;
  font-size: 19px; font-weight: 600; color: var(--maroon); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 24px; top: 14px;
  color: var(--terra); font-size: 26px; font-weight: 400; line-height: 1.2;
}
.faq details[open] summary::after { content: "\2013"; }
.faq p { font-size: 17px; color: var(--body); padding: 0 24px 20px; max-width: 74ch; }

/* closing cta */
.close { text-align: center; }
.close h2 { max-width: 24ch; margin: 10px auto 0; }
.close .lede { margin: 16px auto 0; max-width: 54ch; }
.close-quote {
  font-family: var(--serif); font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.25; color: var(--maroon); margin: 26px auto 0; max-width: 22ch;
}
.close-quote span {
  display: block; font-family: var(--sans); font-size: 14px;
  color: var(--muted); margin: 12px auto 0; letter-spacing: .02em;
  max-width: 34ch; line-height: 1.5;
}
.close .btn { margin-top: 30px; }
.close .cta-note { margin-left: auto; margin-right: auto; }

/* footer */
footer {
  background: var(--maroon); color: rgba(255,249,236,.72);
  padding: 34px 0 42px; font-size: 15px;
}
footer a { color: var(--cream); }
footer .src { margin-top: 12px; line-height: 1.85; font-size: 14px; }
