/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #FAF8F4;
  --bg-beige:    #F2EDE5;
  --bg-stone:    #E8E2D8;
  --bg-blue:     #D8E8EE;
  --teal:        #2B6B6B;
  --teal-dark:   #1F5252;
  --teal-light:  #EBF3F3;
  --text:        #1C1C1A;
  --text-soft:   #6A6460;
  --text-xsoft:  #9A9490;
  --border:      #DDD8D0;
  --white:       #FFFFFF;

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1080px;
  --pad: clamp(24px, 5vw, 80px);
  --section: clamp(72px, 10vw, 120px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2 {
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(32px, 5vw, 54px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }

p { color: var(--text-soft); }

.label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.label--light { color: rgba(255,255,255,0.5); }

.section-header { margin-bottom: 32px; }
.section-header h2 { margin-bottom: 0; }

.section-lead {
  font-size: 18px;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 16px;
  font-weight: 300;
}

.section-body {
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 12px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border: 1.5px solid var(--teal);
}
.btn--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn--small { padding: 9px 20px; font-size: 13px; }

.btn--white {
  background: var(--white);
  color: var(--teal);
  border: 1.5px solid var(--white);
}
.btn--white:hover { background: var(--bg-beige); border-color: var(--bg-beige); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { border-color: var(--white); }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 64px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section) clamp(32px, 5vw, 72px) var(--section) var(--pad);
}

.hero-text h1 {
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 460px;
}

.hero-body {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-photo {
  background: var(--bg-blue);
  overflow: hidden;
}

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

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: var(--section) 0;
  background: var(--bg-beige);
}

.about-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--bg-blue);
  overflow: hidden;
  border-radius: 2px;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 14px; }

.fact-list {
  list-style: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fact-list li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}

.fact-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* =========================================
   WHO I WORK WITH
   ========================================= */
.who {
  padding: var(--section) 0;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.who-card {
  background: var(--bg-beige);
  padding: 36px 32px;
  border-radius: 2px;
  transition: background 0.2s;
}

.who-card:hover { background: var(--bg-stone); }

.who-card p {
  font-size: 16px;
  color: var(--text);
  font-weight: 300;
}

/* =========================================
   WHAT I DO
   ========================================= */
.what {
  padding: var(--section) 0;
  background: var(--bg-beige);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.what-text h2 { margin-bottom: 18px; }
.what-text p { margin-bottom: 12px; }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 4px;
  align-self: center;
}

.service-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  font-weight: 300;
}

.service-list--light { border-top-color: rgba(255,255,255,0.15); }
.service-list--light li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.15);
}

/* =========================================
   PRICING BLOCK
   ========================================= */
.pricing-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}

.pricing-block .label { margin-bottom: 12px; }

.pricing-rate {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-block p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.process {
  padding: var(--section) 0;
  background: var(--teal);
  color: var(--white);
}

.process .label { color: rgba(255,255,255,0.55); }
.process .section-header h2 { color: var(--white); }
.process .section-lead { color: rgba(255,255,255,0.7); }

.steps {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: start;
}

.step-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  padding-top: 3px;
}

.step-title {
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* =========================================
   WHY WORK WITH ME
   ========================================= */
.why {
  padding: var(--section) 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-text h2 { margin-bottom: 18px; }
.why-text p { margin-bottom: 12px; }

.why-quote {
  background: var(--teal-light);
  padding: 48px 40px;
  border-radius: 2px;
}

.why-quote blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--teal-dark);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* =========================================
   SIGNATURE STYLE
   ========================================= */
.style-section {
  padding: var(--section) 0;
  background: var(--bg-beige);
}

.style-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.style-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-stone);
}

.style-text h2 { margin-bottom: 18px; }
.style-text p { margin-bottom: 14px; }

.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  border-radius: 40px;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover { border-color: var(--teal); color: var(--teal); }

/* =========================================
   BREAD & FERMENTATION NOTE
   ========================================= */
.note-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.note-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.note-text {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* =========================================
   LEARNING & CONSULTATION
   ========================================= */
.learning {
  padding: var(--section) 0;
  background: var(--teal);
  color: var(--white);
}

.learning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.learning .label { color: rgba(255,255,255,0.55); }

.learning-text h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.learning-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--section) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.testimonial {
  background: var(--bg-beige);
  padding: 40px 32px;
  border-radius: 2px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: var(--section) 0;
  background: var(--teal-dark);
}

.contact-inner {
  max-width: 640px;
}

.contact-title {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-sub {
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-location {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 24px var(--pad);
  text-align: center;
  font-size: 13px;
  color: var(--text-xsoft);
  border-top: 1px solid var(--border);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo {
    height: 70vw;
    max-height: 520px;
    order: -1;
  }

  .hero-text {
    padding: 48px var(--pad);
  }

  .about-inner,
  .what-inner,
  .why-inner,
  .style-inner,
  .learning-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    aspect-ratio: 4/3;
    max-height: 420px;
  }

  .style-photo {
    aspect-ratio: 3/2;
  }

  .who-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .note-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav { padding: 16px 24px; }
}

@media (max-width: 520px) {
  .contact-actions { flex-direction: column; }
  .btn { text-align: center; }
}
