@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF8F5;
  --navy: #1C2B3A;
  --navy-muted: #4A5D6E;
  --green: #2E5233;
  --green-light: rgba(46, 82, 51, 0.08);
  --font: 'Cormorant Garamond', Georgia, serif;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── Layout ─── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Nav ─── */
nav {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(28, 43, 58, 0.12);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-name {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid rgba(28, 43, 58, 0.12);
  padding: 3rem 0;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--navy-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--navy-muted);
  width: 100%;
}

/* ─── Typography ─── */
h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
}

p {
  font-size: 1.1rem;
  color: var(--navy-muted);
  margin-bottom: 1.4rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  text-decoration: underline;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
}

.btn--green {
  border-color: var(--green);
  color: var(--green);
}

.btn--green:hover {
  background: var(--green);
  color: var(--cream);
}

/* ─── Section spacing ─── */
.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: block;
}

/* ─── Divider ─── */
.divider {
  border: none;
  border-top: 1px solid rgba(28, 43, 58, 0.12);
  margin: 2.5rem 0;
}

/* ─── Page header ─── */
.page-header {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(28, 43, 58, 0.12);
  margin-bottom: 2.5rem;
}

.page-header h1 {
  margin-bottom: 1.2rem;
}

.page-header .lead {
  font-size: 1.25rem;
  color: var(--navy-muted);
  max-width: 720px;
  line-height: 1.65;
}

/* ─── HOME: hero ─── */
.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text h1 {
  margin-bottom: 2rem;
}

.hero-text .tagline {
  font-size: 1.25rem;
  color: var(--navy-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-text .tagline strong {
  color: var(--navy);
  font-weight: 500;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(28, 43, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ─── HOME: philosophy strip ─── */
.philosophy {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 0;
}

.philosophy p {
  color: rgba(250, 248, 245, 0.8);
  font-size: 1.2rem;
  line-height: 1.8;
}

.philosophy .lead-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 2rem;
}

/* ─── APPROACH: components ─── */
.component {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(28, 43, 58, 0.1);
}


.component:last-child {
  border-bottom: none;
}


.component h3 {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.coaching-lens {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2.5px solid var(--green);
  background: var(--green-light);
}

.coaching-lens .lens-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}

.coaching-lens p {
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
  color: var(--navy);
}

/* ─── WORK WITH ME ─── */
.service {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(28, 43, 58, 0.1);
}


.service:last-child {
  border-bottom: none;
}

.service h3 {
  margin-bottom: 1.2rem;
  font-size: 1.55rem;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-image img {
  width: 100%;
  display: block;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: rgba(28, 43, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ─── RESOURCES ─── */
.resource-section {
  margin-bottom: 4rem;
}

.resource-section h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(28, 43, 58, 0.12);
  margin-bottom: 1.5rem;
}

.resource-list {
  list-style: none;
}

.resource-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(28, 43, 58, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
}

.resource-title a {
  color: var(--navy);
}

.resource-title a:hover {
  color: var(--green);
}

.resource-desc {
  font-size: 1rem;
  color: var(--navy-muted);
  margin: 0;
}

.resource-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.2rem;
  width: fit-content;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--navy);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(28, 43, 58, 0.25);
  padding: 0.75rem 0;
  margin-bottom: 2rem;
  outline: none;
  transition: border-color 0.2s;
  display: block;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(74, 93, 110, 0.6);
  font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-aside {
  padding-top: 0.5rem;
}

.contact-aside h3 {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.contact-aside p {
  font-size: 1rem;
}

/* ─── Responsive ─── */
@media (max-width: 720px) {
  html {
    font-size: 17px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img,
  .hero-image-placeholder {
    aspect-ratio: 3/4;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(28, 43, 58, 0.12);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid rgba(28, 43, 58, 0.07);
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    position: relative;
  }
}
