/* ===========================================================
   Kiyanoush — shared stylesheet
   Palette: warm, calm, earthy — fits an embodied-coaching practice
   =========================================================== */

:root {
  --cream: #faf6f0;
  --sand: #f0e6d8;
  --clay: #c17a54;
  --clay-dark: #a4623f;
  --sage: #7c8a6e;
  --ink: #3a332c;
  --ink-soft: #6b6258;
  --white: #ffffff;
  --max-width: 960px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }

p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
}

a {
  color: var(--clay-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / nav ---------- */

header.site-header {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--sand);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

nav.site-nav a {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  text-decoration: none;
  border-bottom: 2px solid var(--clay);
}

/* ---------- Hero (landing page) ---------- */

.hero {
  padding: 3.5rem 0 2rem;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-photo {
  flex: 0 0 300px;
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  border: 6px solid var(--white);
  box-shadow: 0 10px 30px rgba(58, 51, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-text {
  flex: 1 1 380px;
  min-width: 280px;
}

.tagline {
  color: var(--clay-dark);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* ---------- Social links ---------- */

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand);
  color: var(--ink);
  transition: background 0.15s ease, transform 0.15s ease;
}

.social-links a:hover {
  background: var(--clay);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ---------- Sections / cards ---------- */

section {
  padding: 2.5rem 0;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2rem;
}

.intro-photo-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.intro-photo-row .section-intro {
  flex: 1 1 380px;
  margin-bottom: 0;
}

.intro-photo {
  flex: 0 0 280px;
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 51, 44, 0.12);
}

.intro-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

@media (max-width: 700px) {
  .intro-photo {
    width: 100%;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(58, 51, 44, 0.06);
}

.placeholder-box {
  background: var(--sand);
  border: 2px dashed #d8c9b3;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery figure {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(58, 51, 44, 0.06);
}

.gallery .placeholder-box {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border-width: 0 0 0 0;
  margin: 0;
}

.gallery figcaption {
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--clay);
  color: var(--white);
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--clay-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--clay-dark);
  border: 1.5px solid var(--clay);
}

.btn-outline:hover {
  background: var(--clay);
  color: var(--white);
}

/* ---------- Coaching page specifics ---------- */

.offering-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.offering-list li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 18px rgba(58, 51, 44, 0.06);
}

.offering-list h3 {
  margin-bottom: 0.3rem;
  color: var(--clay-dark);
}

.cta-band {
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2.5rem;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band .btn {
  background: var(--white);
  color: var(--sage);
}

.cta-band .btn:hover {
  background: var(--sand);
}

/* ---------- Music embeds ---------- */

.music-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(58, 51, 44, 0.06);
  margin-bottom: 1.75rem;
}

.music-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--sand);
  padding: 2rem 0;
  margin-top: 2rem;
}

footer.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .site-header .container {
    flex-direction: column;
    text-align: center;
  }
}
