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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F5F0E8;
  color: #2C2A26;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background-color: #2C2A26;
  border-bottom: 1px solid #2C2A26;
}

.nav-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5F0E8;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(245, 240, 232, 0.45);
  padding-bottom: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: #A89A7D;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #F5F0E8;
}

@media (max-width: 800px) {
  #nav {
    padding: 14px 20px;
  }

  .nav-links {
    gap: 16px;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  padding: 120px 48px 100px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 300;
  color: #7A6B4F;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.35;
  color: #2C2A26;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-rule {
  width: 64px;
  height: 1.5px;
  background-color: #7A6B4F;
  margin-bottom: 24px;
}

.hero-subline {
  font-size: 15px;
  color: #6B665C;
  font-weight: 300;
}

@media (max-width: 800px) {
  #hero {
    padding: 60px 20px 50px;
  }

  .hero-headline {
    font-size: 28px;
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  border-top: 1px solid #D1C9B8;
  padding: 80px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: #7A6B4F;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

/* Primary services */
.services-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #D1C9B8;
  border-bottom: 1px solid #D1C9B8;
  margin-bottom: 64px;
}

.service-primary {
  padding: 40px;
}

.service-primary:nth-child(2) {
  border-left: 1px solid #D1C9B8;
}

.service-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2C2A26;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #6B665C;
}

/* Secondary services divider */
.services-divider {
  font-size: 10px;
  font-weight: 600;
  color: #A89A7D;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-top: 4px;
  border-top: 1px solid #D1C9B8;
  margin-bottom: 28px;
}

/* Secondary services grid */
.services-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-secondary {
  /* no padding needed */
}

.service-secondary .service-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.service-secondary .service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #6B665C;
}

@media (max-width: 800px) {
  #services {
    padding: 48px 20px;
  }

  .services-primary {
    grid-template-columns: 1fr;
  }

  .service-primary {
    padding: 40px 0;
  }

  .service-primary:nth-child(2) {
    border-left: none;
    padding-top: 40px;
  }

  .services-secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  border-top: 1px solid #D1C9B8;
  padding: 80px 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

.about-col-left {
  /* headshot container */
}

.headshot-placeholder {
  width: 160px;
  height: 160px;
  background-color: #EDE7DA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.headshot-initials {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 400;
  color: #A89A7D;
}

.about-col-right {
  /* bio content */
}

.about-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7A6B4F;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #2C2A26;
  margin-bottom: 24px;
}

.about-body {
  font-size: 16px;
  line-height: 1.7;
  color: #6B665C;
  margin-bottom: 20px;
}

.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #7A6B4F;
  border-bottom: 1px solid rgba(122, 107, 79, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.bio-toggle:hover {
  color: #2C2A26;
  border-color: #2C2A26;
}

.bio-toggle-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.bio-toggle[aria-expanded="true"] .bio-toggle-arrow {
  transform: rotate(180deg);
}

.bio-expanded {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #D1C9B8;
}

.bio-expanded[hidden] {
  display: none;
}

.bio-section {
  margin-bottom: 28px;
}

.bio-section:first-child {
  margin-top: 0;
}

.bio-subheading {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 400;
  color: #2C2A26;
  margin-bottom: 10px;
  margin-top: 28px;
}

.bio-section:first-child .bio-subheading {
  margin-top: 0;
}

.bio-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #6B665C;
}

.education-list {
  list-style: none;
  margin-top: 10px;
}

.education-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #6B665C;
  padding: 4px 0;
}

.bio-inline-link {
  color: #2C2A26;
  border-bottom: 1px solid #D1C9B8;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bio-inline-link:hover {
  color: #7A6B4F;
  border-color: #7A6B4F;
}

.bio-video {
  margin-top: 28px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 24px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-links {
  list-style: none;
  margin-top: 24px;
}

.media-links li {
  padding: 10px 0;
  border-bottom: 1px solid #D1C9B8;
}

.media-links li:first-child {
  border-top: 1px solid #D1C9B8;
}

.media-link {
  font-size: 15px;
  font-weight: 500;
  color: #2C2A26;
  text-decoration: none;
  transition: color 0.2s ease;
}

.media-link:hover {
  color: #7A6B4F;
}

@media (max-width: 800px) {
  #about {
    padding: 48px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   RATES SECTION
   ============================================================ */
#rates {
  background-color: #EDE7DA;
  border-top: 1px solid #D1C9B8;
  padding: 80px 48px;
}

.rates-container {
  max-width: 640px;
  margin-bottom: 20px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #D1C9B8;
}

.rate-row:first-child {
  border-top: 1px solid #D1C9B8;
}

.rate-service {
  font-size: 16px;
  color: #2C2A26;
  flex: 1;
}

.rate-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 400;
  color: #2C2A26;
  text-align: right;
  flex-shrink: 0;
  margin-left: 24px;
}

.rates-note {
  font-size: 13px;
  color: #A89A7D;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 800px) {
  #rates {
    padding: 48px 20px;
  }
}

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
#schedule {
  border-top: 1px solid #D1C9B8;
  padding: 80px 48px;
}

.schedule-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #2C2A26;
  margin-bottom: 32px;
  max-width: 780px;
}

.schedule-actions {
  max-width: 780px;
}

.booking-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #2C2A26;
  color: #F5F0E8;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.booking-btn:hover {
  background: #7A6B4F;
}

.schedule-alt {
  margin-top: 20px;
  font-size: 14px;
  color: #6B665C;
  line-height: 1.6;
}

.schedule-alt a {
  color: #7A6B4F;
  text-decoration: none;
}

.schedule-alt a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  #schedule {
    padding: 48px 20px;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  border-top: 1px solid #D1C9B8;
  padding: 80px 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
  max-width: 780px;
}

.contact-block-label {
  font-size: 10px;
  font-weight: 600;
  color: #A89A7D;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-value {
  font-size: 16px;
  line-height: 1.7;
  color: #2C2A26;
}

.contact-value a {
  color: #2C2A26;
  border-bottom: 1px solid #D1C9B8;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-value a:hover {
  border-color: #7A6B4F;
  color: #7A6B4F;
}

.contact-serving {
  font-size: 16px;
  line-height: 1.7;
  color: #6B665C;
}

@media (max-width: 800px) {
  #contact {
    padding: 48px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  border-top: 1px solid #2C2A26;
  background-color: #2C2A26;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #F5F0E8;
  text-transform: uppercase;
  line-height: 1;
}

.footer-rule {
  width: 80px;
  height: 0.5px;
  background-color: #A89A7D;
  margin: 6px 0;
}

.footer-subtitle,
.footer-location {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 2.5px;
  color: #A89A7D;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-copy {
  font-size: 12px;
  color: #A89A7D;
  font-weight: 300;
}

@media (max-width: 800px) {
  #footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .footer-copy {
    margin-top: 8px;
  }
}
