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

:root {
  --gold: #ffbd59;
  --dark: #343434;
  --white: #ffffff;
  --light-bg: #fafafa;
  --text-muted: #777;
  --border: #e8e8e8;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.nav-logo img {
  height: 90px;
  width: auto;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* HERO */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(255,189,89,0.03) 18px,
    rgba(255,189,89,0.03) 20px
  );
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-family: 'Montserrat', sans-serif;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  background: #e6a94e;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* SECTIONS */
section {
  padding: 80px 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-family: 'Montserrat', sans-serif;
}

/* FEATURES / CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 3px solid var(--gold);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.testimonial .author {
  font-weight: bold;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

/* CTA STRIP */
.cta-strip {
  background: var(--gold);
  text-align: center;
  padding: 60px 2rem;
}

.cta-strip h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-strip .btn {
  background: var(--dark);
  color: var(--white);
}

.cta-strip .btn:hover {
  background: #222;
}

/* PAGE HEADER */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 60px 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-header h1 span {
  color: var(--gold);
}

.page-header p {
  margin-top: 0.75rem;
  opacity: 0.8;
  font-family: 'Montserrat', sans-serif;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-placeholder {
  background: var(--light-bg);
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 2px dashed var(--border);
}

.about-portrait {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-text h2 span {
  color: var(--gold);
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  color: #555;
  margin-bottom: 1rem;
}

.about-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.about-text ul li {
  font-family: 'Montserrat', sans-serif;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.about-text ul li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* EXPECT */
.steps {
  display: grid;
  gap: 2rem;
  max-width: 750px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.checklist li {
  font-size: 0.95rem;
  color: #555;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  line-height: 1.6;
}

/* PRICING CARDS */
.pricing-cards {
  align-items: center;
}

.pricing-card {
  background: #343434;
  border-left: none;
  border-radius: 10px;
  color: var(--white);
  position: relative;
}

.pricing-card p, .pricing-card h3 {
  color: var(--white);
}

.pricing-featured {
  background: #343434;
  border-top: 3px solid var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* SCHEDULING */
.tidycal-wrap {
  max-width: 900px;
  margin: 0 auto;
  min-height: 600px;
}

.tidycal-wrap iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

.tidycal-cropped {
  min-height: unset;
  height: 370px;
  overflow: hidden;
  border-radius: 8px;
}

#tidycal-embed iframe {
  min-height: unset !important;
  height: 2000px !important;
  margin-top: 0px;
}

/* LEGAL */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.5rem;
  color: var(--dark);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #555;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2.5rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

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

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
  }

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

  .hamburger {
    display: flex;
  }

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

  .about-img-placeholder {
    aspect-ratio: 16/9;
    font-size: 3rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero {
    padding: 70px 1.5rem;
  }

  section {
    padding: 60px 1.5rem;
  }
}
