/* irons | holistic — static site styles */

:root {
  --bg: #f5f0e6;
  --bg-soft: #ebe3d3;
  --bg-card: #faf6ed;
  --ink: #2f2a23;
  --ink-soft: #5a5347;
  --muted: #7a7264;
  --accent: #6b7f5a;       /* sage */
  --accent-deep: #4f6244;
  --warm: #b86b3f;          /* terracotta */
  --warm-deep: #9a572f;
  --line: #d9cfbb;
  --shadow: 0 1px 3px rgba(47, 42, 35, 0.06), 0 8px 24px rgba(47, 42, 35, 0.06);
  --radius: 6px;
  --radius-lg: 12px;
  --max: 1080px;
  --max-narrow: 720px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
a:hover { border-bottom-color: var(--accent-deep); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; }

/* --- Header --- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(120%) blur(6px);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: none;
}
.brand .bar { color: var(--accent); margin: 0 0.3em; }

.nav { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: none;
  padding: 4px 0;
}
.nav a:hover, .nav a.active {
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 8px;
}

/* --- Layout primitives --- */

.section {
  padding: 80px 24px;
}
.section--soft { background: var(--bg-soft); }
.section--card { background: var(--bg-card); }

.wrap { max-width: var(--max); margin: 0 auto; }
.wrap--narrow { max-width: var(--max-narrow); margin: 0 auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-deep);
  margin: 0 0 16px;
  font-weight: 600;
}

/* --- Hero --- */

.hero {
  padding: clamp(64px, 10vw, 120px) 24px;
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 0) 0%, rgba(235, 227, 211, 0.6) 100%),
    var(--bg);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero__title { margin-bottom: 0.3em; }
.hero__sub {
  font-size: 1.1rem;
  color: var(--accent-deep);
  margin-bottom: 1.2em;
}
.hero__body {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2em;
  max-width: 52ch;
}
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* --- CTAs --- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
  border-bottom: none;
}
.btn:hover { transform: translateY(-1px); border-bottom: none; }

.btn--primary {
  background: var(--accent-deep);
  color: #fff;
}
.btn--primary:hover { background: var(--accent); color: #fff; }

.btn--warm {
  background: var(--warm);
  color: #fff;
}
.btn--warm:hover { background: var(--warm-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Lists & content blocks --- */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}
.bullet-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 2em 0;
}
.feature-list li {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.feature-list strong { display: block; color: var(--accent-deep); margin-bottom: 6px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 2em 0;
}
.step {
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.step__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.pullquote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin: 2em 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-soft);
}
.pullquote p { margin: 0.4em 0; }
.pullquote strong { font-style: normal; color: var(--ink); }

/* --- Bio --- */

.bio {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}
.bio__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bio__photo img { aspect-ratio: 3 / 4; object-fit: cover; }
.bio__credentials {
  display: block;
  margin-top: 1em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
}

/* --- Testimonials --- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 2em 0 0;
}
.testimonial {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testimonial__quote {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
  flex-grow: 1;
}
.testimonial__name {
  color: var(--accent-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Booking page --- */

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 30px 0;
}
.booking-card h3 { margin-top: 0; color: var(--accent-deep); }
.booking-iframe {
  width: 100%;
  height: 800px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 12px;
}

/* --- Contact --- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 0;
}
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-list dt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--ink);
}

/* --- Pre-session checklist photos --- */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.photo-frame {
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Footer --- */

.site-footer {
  background: var(--ink);
  color: #cbc2b0;
  padding: 60px 24px 40px;
  text-align: center;
}
.site-footer .brand { color: #f5f0e6; font-size: 1.7rem; }
.site-footer__nav {
  margin: 24px 0 16px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer__nav a { color: #cbc2b0; font-size: 0.92rem; border-bottom: none; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__small { font-size: 0.85rem; color: #8a8273; margin-top: 24px; }

/* --- Responsive --- */

@media (max-width: 820px) {
  .hero__inner,
  .bio,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section { padding: 56px 20px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-toggle { display: block; }
  .booking-iframe { height: 700px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .section { padding: 44px 18px; }
  .hero { padding: 48px 18px; }
}
