/* =========================================================
   reshmabangarimath.com — Design System
   Own stylesheet. Not shared with reshmabangarimath.in.
   ========================================================= */

:root {
  --color-dark-bg: #1A1420;
  --color-dark-bg-2: #201A28;
  --color-cream: #F6F1E7;
  --color-gold: #C9A24E;
  --color-gold-soft: #DCC080;
  --color-text-dark: #1B1712;
  --color-text-light: #F5F0E6;
  --color-border-dark: #ffffff16;
  --color-border-light: #1B171218;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --space-xs: 0.75rem;
  --space-sm: 1.5rem;
  --space-md: 2.5rem;
  --space-lg: 4rem;
  --space-xl: 5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text-dark); overflow-x: hidden; }
svg { display: block; }
a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 700px) { .section-inner { padding: 0 3rem; } }

.eyebrow { display: block; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; color: inherit; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.arrow { display: inline-block; transition: transform 0.2s ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem 1.9rem; border-radius: 999px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: transform 0.2s ease, background 0.2s ease; border: none; cursor: pointer; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--gold { background-color: var(--color-gold); color: var(--color-dark-bg); }
.btn--gold:hover, .btn--gold:focus-visible { background-color: var(--color-gold-soft); transform: translateY(-2px); }
.btn--dark { background-color: var(--color-dark-bg); color: var(--color-gold); }
.btn--dark:hover, .btn--dark:focus-visible { background-color: var(--color-dark-bg-2); transform: translateY(-2px); }

.ph-img, .ph-photo {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.media-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-img { background: linear-gradient(155deg, #2B2334, #1A1420); color: #ffffff55; }
.ph-photo { background: linear-gradient(155deg, #D8CFBE, #C4B89E); color: #00000050; }

/* =========================================================
   SCROLL REVEAL — sections fade/rise in once, on first view
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: opacity 0.4s ease; }
}

/* =========================================================
   01 — HERO — dark, centered, no photo
   ========================================================= */
.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  background: var(--color-dark-bg); color: var(--color-text-light);
  position: relative; padding: 5rem 0 3rem; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, #2A2130 0%, var(--color-dark-bg) 65%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.hero__image-placeholder { border-radius: 50%; overflow: hidden; box-shadow: 0 10px 40px rgba(201, 162, 78, 0.25), 0 0 60px rgba(201, 162, 78, 0.15); }

.hero__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 13vw, 4.4rem); letter-spacing: 0.05em; color: var(--color-gold); line-height: 1; }
.hero__role { font-size: clamp(0.72rem, 3vw, 0.9rem); letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.9; font-weight: 400; }
.hero__intro { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 5vw, 1.6rem); max-width: 28em; line-height: 1.45; }
.hero__intro em { font-style: italic; color: var(--color-gold-soft); }
.hero__scroll { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: var(--color-gold); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

@media (max-width: 779px) {
  .hero__text { display: contents; }
  .hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero__image-placeholder { order: 2; width: 150px; height: 220px; margin: 1.5rem 0 2.5rem; }
  .hero__name { order: 3; }
  .hero__role { order: 4; margin-top: 1.2rem; }
  .hero__intro { order: 5; margin-top: 1.8rem; }
  .hero__scroll { order: 6; margin-top: 3rem; }
}
@media (min-width: 780px) {
  .hero__inner { display: flex; align-items: center; justify-content: center; gap: 5rem; text-align: left; }
  .hero__image-placeholder { width: 320px; height: 460px; flex-shrink: 0; }
  .hero__text { display: flex; flex-direction: column; align-items: flex-start; }
  .hero__role { margin-top: 1.5rem; }
  .hero__intro { margin: 2rem 0 0 0; }
  .hero__scroll { margin-top: 3.5rem; }
}

.hero__scroll svg { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll svg { animation: none; } }

/* =========================================================
   02 — I'M RESHMA BANGARIMATH — cream
   ========================================================= */
.intro { background: var(--color-cream); padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.intro .section-inner { max-width: 760px; margin: 0 auto; position: relative; }
.intro__heading { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; margin-bottom: 1.3rem; text-transform: none; }
.intro__text p { font-size: clamp(1rem, 4vw, 1.08rem); line-height: 1.8; margin-bottom: 1.1rem; opacity: 0.85; }

.intro__ornament { position: absolute; right: -20px; bottom: -20px; opacity: 0.35; pointer-events: none; display: none; }
@media (min-width: 780px) {
  .intro__ornament { display: block; }
}

/* =========================================================
   03 — THINGS I'M CURIOUS ABOUT — dark aubergine
   ========================================================= */
.curious { background: var(--color-dark-bg-2); color: var(--color-text-light); padding: var(--space-xl) 0; text-align: center; }
.curious__title { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; margin-bottom: 0.6rem; text-transform: none; }
.curious__sub { font-family: var(--font-body); opacity: 0.55; font-size: clamp(0.85rem, 3vw, 0.95rem); margin-bottom: 2.6rem; }

/* Word list — one consistent size, one consistent (upright, non-italic) style throughout.
   Rhythm comes from alternating color only, not from mixing sizes or italics. */
.curious__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem 1.6rem; max-width: 760px; margin: 0 auto 2.8rem; }
.curious__word { font-family: var(--font-body); font-weight: 500; font-size: clamp(1rem, 4vw, 1.15rem); color: var(--color-text-light); opacity: 0.92; }
.curious__word:nth-child(even) { color: var(--color-gold-soft); opacity: 1; }
.curious__cta .link-arrow { color: var(--color-gold); }

/* =========================================================
   04 — THINGS I BELIEVE — cream, divided row, uniform treatment
   ========================================================= */
.believe { background: var(--color-cream); padding: var(--space-xl) 0; }
.believe__heading { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; text-align: center; margin-bottom: var(--space-lg); text-transform: none; letter-spacing: normal; }
.believe__row { display: grid; grid-template-columns: 1fr; }
.believe__item { padding: 1.6rem 0; text-align: center; font-size: clamp(0.95rem, 3.8vw, 1rem); line-height: 1.5; border-top: 1px solid var(--color-border-light); }
.believe__item:first-child { border-top: none; }
@media (min-width: 860px) {
  .believe__row { grid-template-columns: repeat(6, 1fr); }
  .believe__item { border-top: none; border-left: 1px solid var(--color-border-light); padding: 0 1.4rem; }
  .believe__item:first-child { border-left: none; }
}

/* =========================================================
   DIVIDER
   ========================================================= */
.divider-wrapper { background: var(--color-cream); padding: 0; }
.section-divider { width: 60px; height: 1px; background-color: var(--color-gold); border: none; margin: 0 auto; }

/* =========================================================
   05 — THINGS I'VE MADE — cream, 6 cards, non-clickable
   ========================================================= */
.made { background: var(--color-cream); padding: var(--space-xl) 0; }
.made__heading { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; text-align: center; margin-bottom: var(--space-lg); text-transform: none; }
.made__shelf { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: var(--space-lg); }
.made__card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 14px 30px -18px rgba(27,23,18,0.28); transition: transform 0.25s ease; display: block; text-decoration: none; color: inherit; }
.made__card:hover, .made__card:focus-visible { transform: translateY(-4px); }
.made__thumb { aspect-ratio: 3/4; }
.made__body { padding: 0.6rem 0.5rem 0.8rem; }
.made__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(0.9rem, 3.5vw, 1.15rem); line-height: 1.2; }
.made__tag { font-size: clamp(0.65rem, 2.5vw, 0.8rem); opacity: 0.7; margin-top: 4px; line-height: 1.3; }
.made__cta { text-align: center; }
@media (min-width: 620px) {
  .made__shelf { gap: 1.4rem; }
  .made__body { padding: 0.9rem 1rem 1.1rem; }
}
@media (min-width: 900px) { .made__shelf { grid-template-columns: repeat(6, 1fr); } }

/* =========================================================
   06 — WHERE WOULD YOU LIKE TO GO — dark aubergine
   ========================================================= */
.destinations { background: var(--color-dark-bg-2); color: var(--color-text-light); padding: var(--space-xl) 0; }
.section-heading { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; text-align: center; margin-bottom: var(--space-lg); text-transform: none; }
.destinations__row { display: grid; grid-template-columns: 1fr; }
.destination { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.7rem; text-decoration: none; color: inherit; padding: 1.8rem 1rem; border-top: 1px solid var(--color-border-dark); }
.destination:first-child { border-top: none; }
.destination:hover .destination__target { color: var(--color-gold-soft); }
.destination__statement { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.1rem, 4.5vw, 1.15rem); line-height: 1.3; opacity: 0.92; }
.destination__target { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); font-weight: 500; transition: color 0.2s ease; }
@media (min-width: 860px) {
  .destinations__row { grid-template-columns: repeat(6, 1fr); }
  .destination { border-top: none; border-left: 1px solid var(--color-border-dark); }
  .destination:first-child { border-left: none; }
}

/* =========================================================
   FOOTER — dark, single line, text only
   ========================================================= */
.site-footer { background: var(--color-dark-bg); color: var(--color-text-light); padding: 3rem 0; }
.site-footer .section-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
.site-footer__brand { color: var(--color-gold); opacity: 1; font-family: var(--font-display); font-style: normal; font-weight: 500; font-size: 1.1rem; letter-spacing: 0.08em; text-decoration: none; transition: color 0.2s ease; }
.site-footer__brand:hover { color: var(--color-gold-soft); }
.footer-divider { width: 40px; height: 1px; background-color: var(--color-border-dark); border: none; margin: 0 auto; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.8rem; font-size: 0.82rem; }
.site-footer__links a { color: #8F8798; opacity: 1; text-decoration: none; transition: color 0.2s ease; }
.site-footer__links a:hover { color: var(--color-text-light); }

/* =========================================================
   SYM RESOURCES PAGE
   ========================================================= */

/* SYM Hero — dark, book cover right (desktop) */
.sym-hero { background: var(--color-dark-bg); color: var(--color-text-light); padding: var(--space-xl) 0; overflow: hidden; }
.sym-hero__inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3rem; }
.sym-hero__cover { position: relative; display: block; width: 100%; max-width: 200px; margin: 0 auto; }
.sym-hero__cover::before { content: ""; position: absolute; inset: 8%; background: radial-gradient(circle, rgba(201, 162, 78, 0.35), transparent 70%); filter: blur(45px); z-index: -1; }
.sym-hero__cover img { width: 100%; max-width: 100%; height: auto; display: block; filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45)); }
.sym-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 11vw, 4.2rem); letter-spacing: 0.05em; color: var(--color-gold); line-height: 1.1; margin-bottom: 0.8rem; }
.sym-hero__subtitle { font-family: var(--font-body); font-weight: 500; font-size: clamp(1rem, 4vw, 1.2rem); opacity: 0.9; margin-bottom: 1.5rem; letter-spacing: 0.15em; text-transform: uppercase; }
.sym-hero__lede { font-size: clamp(1rem, 4vw, 1.15rem); opacity: 0.8; max-width: 28em; margin: 0 auto; line-height: 1.5; }
@media (min-width: 780px) {
  .sym-hero__inner { flex-direction: row-reverse; justify-content: space-between; gap: 4rem; text-align: left; }
  .sym-hero__cover { max-width: 260px; margin: 0; flex-shrink: 0; }
  .sym-hero__text { display: flex; flex-direction: column; align-items: flex-start; }
  .sym-hero__lede { margin: 0; }
}

/* Headings Base for SYM Pages */
.book-links__heading, .audio__heading, .comm__heading, .beyond__heading {
  font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; text-align: center; margin-bottom: 1.5rem; text-transform: none; letter-spacing: normal;
}

/* Book Links — cream, two columns */
.book-links { background: var(--color-cream); padding: var(--space-xl) 0; }
.book-links__row { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 4rem; }
.book-links__col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.book-links__note { font-size: clamp(0.95rem, 3.8vw, 1rem); opacity: 0.85; margin-bottom: 1.5rem; max-width: 20em; line-height: 1.5; }
@media (min-width: 780px) {
  .book-links__row { grid-template-columns: 1fr 1fr; gap: 0; }
  .book-links__col:first-child { border-right: 1px solid var(--color-border-light); padding-right: 3rem; }
  .book-links__col:last-child { padding-left: 3rem; }
}

/* Audio Journeys — cream, list */
.audio { background: var(--color-cream); padding: var(--space-xl) 0; }
.audio__heading { margin-bottom: var(--space-lg); }
.audio__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.audio__row { display: flex; align-items: center; padding: 1.2rem 1rem; border-bottom: 1px solid var(--color-border-light); text-decoration: none; color: inherit; transition: background 0.2s ease; }
.audio__row:first-child { border-top: 1px solid var(--color-border-light); }
.audio__row:hover { background: rgba(27,23,18,0.03); }
.audio__row:hover .audio__title { color: var(--color-gold); }
.audio__num { font-size: 0.85rem; font-weight: 500; color: var(--color-gold); width: 2.5rem; letter-spacing: 0.05em; flex-shrink: 0; }
.audio__meta { display: flex; flex-direction: column; flex-grow: 1; }
.audio__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 4vw, 1.4rem); transition: color 0.2s ease; line-height: 1.2; }
.audio__chapter { font-size: 0.85rem; opacity: 0.7; margin-top: 0.3rem; line-height: 1.3; }
.audio__play { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--color-gold); border-radius: 50%; margin-left: 1rem; transition: background 0.2s ease; flex-shrink: 0; }
.audio__row:hover .audio__play { background: var(--color-gold); }
.audio__row:hover .audio__play svg path { fill: var(--color-cream); }

/* Work on Your Expression — dark, centered */
.comm { background: var(--color-dark-bg); color: var(--color-text-light); padding: var(--space-xl) 0; }
.comm__inner { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.comm__heading { margin-bottom: 1rem; }
.comm__image { width: 100%; max-width: 500px; margin: 0 auto 1.5rem; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.comm__text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; max-width: 36em; }
.comm__text p { font-size: clamp(1rem, 4vw, 1.08rem); line-height: 1.8; margin-bottom: 1.2rem; opacity: 0.85; width: 100%; }
.comm__text .btn { margin-top: 1.5rem; align-self: center; }

/* Beyond the Book — cream, photo left */
.beyond { background: var(--color-cream); padding: var(--space-xl) 0; }
.beyond__inner { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
.beyond__photo { width: 220px; height: 320px; margin: 0 auto; border-radius: 50%; overflow: hidden; box-shadow: 0 10px 40px rgba(201, 162, 78, 0.25), 0 0 60px rgba(201, 162, 78, 0.15); }
.beyond__text { display: flex; flex-direction: column; align-items: center; text-align: center; }
.beyond__text p { font-size: clamp(1rem, 4vw, 1.08rem); line-height: 1.8; margin-bottom: 1.5rem; opacity: 0.85; max-width: 32em; }
.beyond__text .btn { margin-bottom: 2.5rem; }
.beyond__closing { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.25rem !important; opacity: 0.95 !important; border-top: 1px solid var(--color-border-light); padding-top: 2rem; width: 100%; line-height: 1.4; }
@media (min-width: 780px) {
  .beyond__inner { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; }
  .beyond__photo { width: 320px; height: 460px; margin: 0; flex-shrink: 0; justify-self: flex-start; }
  .beyond__text { align-items: flex-start; text-align: left; }
  .beyond__heading { text-align: left; }
  .beyond__closing { width: auto; }
}

/* Utility: Make image fill its container beautifully */
.media-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
