/* =============================================
   ALLISON BURR - Main Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: rgb(28, 28, 28);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 67px;
  background-color: rgba(220, 220, 220, 0.95);
  backdrop-filter: blur(4px);
}
.site-logo { font-size: 24px; font-weight: 400; color: #000; letter-spacing: -0.3px; }
.site-logo:hover { text-decoration: none; }
.site-nav { display: flex; gap: 24px; align-items: center; }
.nav-link { font-size: 15px; font-weight: 400; color: #000; letter-spacing: -0.3px; }
.nav-link.active { text-decoration: underline; }
.nav-link:hover { text-decoration: underline; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: #000; }

/* HERO */
.section-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: 67px; background-color: rgb(220, 220, 220); }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 80px; gap: 16px; }
.hero-title { font-size: 68px; font-weight: 400; color: #000; letter-spacing: -1.5px; line-height: 1; }
.hero-subtitle { font-size: 20px; font-weight: 400; color: #000; letter-spacing: -0.3px; margin-top: 4px; }
.btn-learn-more {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: #000; color: rgb(220, 220, 220);
  font-size: 13px; font-weight: 400; letter-spacing: 1.5px;
  padding: 18px 40px; border-radius: 300px; width: fit-content; margin-top: 24px;
  transition: opacity 0.2s;
}
.btn-learn-more:hover { opacity: 0.85; text-decoration: none; }
.hero-image-wrap { overflow: hidden; position: relative; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* SERVICES */
.section-services { background-color: #fff; padding: 80px; }
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; }
.services-left { display: flex; flex-direction: column; gap: 32px; }
.section-title { font-size: 52px; font-weight: 400; color: rgb(28,28,28); letter-spacing: -1px; line-height: 1; }
.section-subtitle { font-size: 18px; font-weight: 400; color: rgb(28,28,28); letter-spacing: -0.3px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.accordion { list-style: none; }
.accordion-item { border-bottom: 1px solid rgb(220,220,220); padding: 14px 0; }
.accordion-title {
  font-size: 20px; font-weight: 400; color: #000; letter-spacing: -0.4px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.accordion-title::after {
  content: "+"; font-size: 22px; font-weight: 300; color: #000;
  transition: transform 0.3s;
}
.accordion-item.open .accordion-title::after { content: "\2212"; }
.accordion-detail {
  font-size: 15px; color: rgb(28,28,28); margin-top: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.accordion-item.open .accordion-detail {
  max-height: 200px; opacity: 1; margin-top: 6px;
}
.accordion-detail a { color: rgb(28,28,28); text-decoration: underline; }
.services-img-small { width: 100%; max-width: 360px; object-fit: cover; }
.services-right { display: flex; flex-direction: column; gap: 32px; }
.services-img-right { width: 100%; object-fit: cover; }
.beliefs-text { font-size: 15px; line-height: 1.7; color: rgb(28,28,28); display: flex; flex-direction: column; gap: 20px; }

/* BOOK */
.section-book { background-color: #000; padding: 100px 80px; text-align: center; }
.book-content { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.book-title { font-size: 52px; font-weight: 400; color: rgb(250,250,250); letter-spacing: -1px; }
.btn-book-now {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: rgb(220,220,220); color: #000;
  font-size: 14px; font-weight: 400; letter-spacing: 1px;
  padding: 18px 40px; border-radius: 300px; transition: opacity 0.2s;
}
.btn-book-now:hover { opacity: 0.85; text-decoration: none; }

/* FOOTER */
.site-footer { background-color: #fff; border-top: 1px solid rgb(220,220,220); padding: 48px 80px; }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.footer-logo { font-size: 22px; font-weight: 400; color: rgb(28,28,28); letter-spacing: -0.3px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 14px; color: rgb(28,28,28); }
.footer-nav a:hover { text-decoration: underline; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { font-size: 14px; color: rgb(28,28,28); text-decoration: underline; }
.footer-address { font-size: 14px; color: rgb(28,28,28); line-height: 1.5; margin-top: 8px; }

/* BIOGRAPHY */
.section-bio { padding: 100px 80px 80px; background-color: #fff; }
.bio-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; }
.bio-left { display: flex; flex-direction: column; gap: 28px; }
.bio-title { font-size: 36px; font-weight: 700; color: #000; line-height: 1.2; letter-spacing: -0.5px; }
.bio-text p { font-size: 16px; line-height: 1.75; color: rgb(28,28,28); margin-bottom: 20px; }
.bio-right { display: flex; flex-direction: column; gap: 24px; }
.bio-img { width: 100%; object-fit: cover; }
.bio-img-portrait { object-fit: cover; }
.section-contact-form { padding: 60px 80px 80px; background-color: #fff; border-top: 1px solid rgb(220,220,220); }
.contact-form-layout { max-width: 700px; }
.contact-form-title { font-size: 32px; font-weight: 400; color: #000; margin-bottom: 12px; }
.contact-form-subtitle { font-size: 16px; color: rgb(28,28,28); margin-bottom: 32px; line-height: 1.6; }

/* CONTACT PAGE */
.section-contact { padding: 100px 80px 80px; background-color: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; align-items: start; }
.contact-title { font-size: 64px; font-weight: 400; color: #000; letter-spacing: -1px; margin-bottom: 24px; }
.contact-info { margin-bottom: 40px; line-height: 1.8; }
.contact-info a { font-size: 16px; color: #000; text-decoration: underline; }
.contact-img { width: 100%; height: 100%; object-fit: cover; object-position: center; min-height: 500px; }

/* FORMS */
.contact-form { max-width: 540px; }
.form-group { margin-bottom: 24px; }
.form-group > label, .form-name > label { display: block; font-size: 15px; font-weight: 400; color: rgb(28,28,28); margin-bottom: 6px; }
.form-name > label { margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-size: 13px; color: rgb(28,28,28); margin-bottom: 6px; }
.required { font-size: 12px; color: rgb(100,100,100); margin-left: 4px; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%; padding: 12px 18px;
  font-family: 'Roboto', sans-serif; font-size: 15px; color: rgb(28,28,28);
  background: #fff; border: 1.5px solid rgb(180,180,180); border-radius: 300px;
  outline: none; transition: border-color 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus { border-color: #000; }
textarea { border-radius: 16px; min-height: 120px; resize: vertical; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: #000; color: #fff;
  font-family: 'Roboto', sans-serif; font-size: 13px; letter-spacing: 1.5px;
  padding: 18px 40px; border-radius: 300px; border: none; cursor: pointer;
  transition: opacity 0.2s; margin-top: 8px;
}
.btn-submit:hover { opacity: 0.8; }

/* MOBILE MENU */
.mobile-nav-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(220,220,220,0.98); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a { font-size: 28px; color: #000; letter-spacing: -0.5px; }
.mobile-nav-close { position: absolute; top: 20px; right: 40px; font-size: 28px; background: none; border: none; cursor: pointer; color: #000; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .section-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 100px 40px 40px; }
  .hero-title { font-size: 44px; }
  .hero-image-wrap { min-height: 350px; }
  .hero-img { min-height: 350px; }
  .section-services { padding: 60px 40px; }
  .services-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section-book { padding: 60px 40px; }
  .book-title { font-size: 36px; }
  .site-footer { padding: 40px; }
  .section-bio { padding: 100px 40px 60px; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-title { font-size: 26px; }
  .section-contact { padding: 100px 40px 60px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-title { font-size: 44px; }
  .section-contact-form { padding: 40px; }
}
@media (max-width: 600px) {
  .site-header { padding: 0 20px; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-content { padding: 90px 20px 40px; }
  .hero-title { font-size: 36px; }
  .section-services { padding: 40px 20px; }
  .section-title { font-size: 36px; }
  .section-book { padding: 60px 20px; }
  .book-title { font-size: 28px; }
  .site-footer { padding: 32px 20px; }
  .section-bio { padding: 90px 20px 40px; }
  .section-contact { padding: 90px 20px 40px; }
  .section-contact-form { padding: 40px 20px; }
  .contact-title { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
}