/* alma therapy — stylesheet */

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

:root {
  --cream: #faf8f4;
  --cream-2: #f3efe8;
  --charcoal: #4a4a4d;
  --charcoal-dark: #333335;
  --grey-line: #b9b9b8;
  --sage: #8a9584;
  --sage-dark: #707c6a;
  --terracotta: #b97f66;
  --white: #ffffff;
  --brand-grey: #6d6e71;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--charcoal-dark);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--charcoal-dark);
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1.2em; }

a { color: var(--sage-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 {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--grey-line);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

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

nav a {
  color: var(--charcoal-dark);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
nav a:hover { color: var(--sage-dark); text-decoration: none; border-bottom: 1px solid var(--sage-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--charcoal-dark);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  background-image: url('../images/hero-painting.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.35);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero img.logo-tagline {
  max-width: 420px;
  margin: 0 auto 2rem;
}

.hero p.lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
}

.hero-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-photo .hero-headshot {
  max-width: 260px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.hero-badges img {
  max-height: 56px;
  width: auto;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    text-align: left;
  }
  .hero-text .logo-tagline {
    margin: 0.5rem 0 1.8rem;
  }
  .hero-text p.lead {
    margin: 0 0 1.2em;
    max-width: none;
  }
  .hero-photo {
    margin-top: 0.5rem;
  }
  .hero-photo .hero-headshot {
    max-width: 340px;
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--sage-dark);
  color: var(--white);
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--charcoal-dark); text-decoration: none; color: var(--white); }

/* Intro / About section */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--cream-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--grey-line);
  margin: 0 auto 2rem;
}

.name-wrap {
  display: inline-block;
}

.name-wrap .divider-line {
  width: 100%;
  height: 1px;
  background: var(--grey-line);
  margin-bottom: 0.8rem;
}

.name-wrap h2 {
  white-space: nowrap;
  margin-bottom: 0.3rem;
}

/* Two column info blocks */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
}

.info-card h3 { margin-bottom: 0.8rem; }

/* Where I work image block */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-text img {
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Fees table-ish */
.fees-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--sage-dark);
  margin: 0.4rem 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  text-align: left;
}

.contact-grid .info-card { text-align: left; }

/* Footer */
footer {
  background: var(--charcoal-dark);
  color: #e6e5e2;
  padding: 3rem 0 2rem;
  text-align: center;
}

footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

footer .footer-logos img {
  max-height: 70px;
  width: auto;
  filter: grayscale(0.1) brightness(1.05);
}

footer p {
  font-size: 0.85rem;
  color: #b8b7b4;
  margin: 0.3em 0;
}

footer a { color: #d8d6d0; }

/* Privacy page */
.privacy-content h2 { margin-top: 2.2rem; }
.privacy-content ul, .privacy-content ol { padding-left: 1.4rem; }
.privacy-content li { margin-bottom: 0.6rem; }
.privacy-content li ul { margin-top: 0.8rem; }
.privacy-content li ul li:first-child { margin-top: 0; }
.back-link { display: inline-block; margin-bottom: 2rem; }
.brand-grey { color: var(--brand-grey); }

/* Responsive */
@media (max-width: 800px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav-toggle { display: block; }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--grey-line);
  }

  nav ul.open { display: flex; }

  nav ul li { border-top: 1px solid var(--grey-line); }
  nav a { display: block; padding: 1rem 1.5rem; }

  .about-grid, .image-text, .two-col, .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid img, .image-text img {
    max-width: 320px;
    margin: 0 auto;
  }
}
