/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, blockquote {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

:root {
  --cream: #faf6f0;
  --cream-deep: #f1eae0;
  --ink: #2c2a24;
  --ink-soft: #5b584f;
  --sage: #56694a;
  --sage-deep: #3f4e37;
  --rust: #b5652d;
  --blue: #4f7089;
  --border: #e4dccc;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 28px;
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
}
.btn-primary:hover { background: var(--sage); }
.btn-outline {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--sage-deep); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(44, 42, 36, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav a:hover { color: var(--sage-deep); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--sage-deep);
  color: var(--cream) !important;
}
.nav-cta:hover { background: var(--sage); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 100px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 18px;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.portrait-frame {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--cream-deep); }
.about-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-quote {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  color: var(--sage-deep);
  margin-bottom: 28px;
}
.about-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.about-podcast-tag {
  font-size: 0.95rem;
  font-weight: 500;
}
.about-podcast-tag a {
  color: var(--rust);
  text-decoration: underline;
}

/* ---------- Work ---------- */
.work { padding: 100px 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--cream);
}
.work-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.icon-sage { background: var(--sage); }
.icon-rust { background: var(--rust); }
.icon-blue { background: var(--blue); }
.work-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.work-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Quotes ---------- */
.quotes {
  padding: 70px 0;
  background: var(--sage-deep);
  color: var(--cream);
}
.quote-marquee {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.quote-marquee p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 700px;
  color: var(--cream);
  opacity: 0.95;
}

/* ---------- Podcast ---------- */
.podcast { padding: 100px 0; }
.podcast-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.podcast-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 30px; }
.podcast-text strong { color: var(--ink); }
.podcast-media {
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.podcast-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Follow ---------- */
.follow { padding: 100px 0; background: var(--cream-deep); text-align: center; }
.follow .section-label, .follow .section-title { text-align: left; }
.follow-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 44px;
  text-align: left;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.highlight-card {
  display: block;
  padding: 32px 24px;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.2s ease;
}
.highlight-card:hover { transform: translateY(-4px); }
.highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 18px;
}
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.highlight-card p { color: var(--ink-soft); font-size: 0.95rem; }
.instagram-btn { display: inline-block; }

/* ---------- Connect ---------- */
.connect { padding: 110px 0; text-align: center; }
.connect .section-label, .connect .section-title { margin-left: auto; margin-right: auto; }
.connect-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 50px;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}
.connect-card {
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.connect-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.connect-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
}
.form-row textarea { resize: vertical; }
.form-row-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.connect-btn { display: block; width: 100%; text-align: center; border: none; cursor: pointer; }
.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status.success { color: var(--sage-deep); }
.form-status.error { color: var(--rust); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--sage-deep); }

/* ---------- Responsive ---------- */
/* Tablet: two-column grids instead of jumping straight from 3 to 1 */
@media (max-width: 1024px) {
  .work-grid, .highlight-grid, .connect-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { position: fixed; top: 78px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); transform: translateY(-150%); opacity: 0; transition: all 0.25s ease; }
  .nav.open { transform: translateY(0); opacity: 1; }
  .menu-toggle { display: flex; }

  .hero-inner, .podcast-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .follow .section-label, .follow .section-title, .follow-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .highlight-card { text-align: center; }
  .highlight-icon { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .work-grid, .highlight-grid, .connect-grid { grid-template-columns: 1fr; }
}

/* Scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
