/* ================================================
   CC Beauty — Stylesheet
   File: style.css
   Folder: C:\Users\tc97h\OneDrive\Desktop\CC Beauty
   ================================================ */


/* ------------------------------------------------
   GLOBAL RESET & CSS VARIABLES
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --ivory:       #FAF7F2;
  --ivory-dark:  #F0EBE0;
  --sage:        #7A8C72;
  --sage-light:  #C4CFBE;
  --sage-dark:   #4E5F47;
  --sage-muted:  #EBF0E8;
  --text-dark:   #2C2C28;
  --text-mid:    #5A5A54;
  --text-light:  #8A8A82;
  --gold:        #B8A47A;
  --gold-light:  #E8DFC8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
}

section {
  padding: 6rem 3rem;
}


/* ------------------------------------------------
   NAVIGATION
   ------------------------------------------------ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--sage-light);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-book {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  text-decoration: none;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-book:hover {
  background: var(--sage);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(78, 95, 71, 0.15);
}


/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--sage-muted);
  opacity: 0.6;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.35;
}


@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.15s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s both;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--sage-dark);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(78, 95, 71, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.45s both;
}

.hero-cta:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 95, 71, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: heroFadeIn 1.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s both, scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 0.5px;
  height: 40px;
  background: var(--sage-light);
}


/* ------------------------------------------------
   INTRO STRIP
   ------------------------------------------------ */
.intro-strip {
  background: var(--sage);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.intro-strip span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
}


/* ------------------------------------------------
   SHARED UTILITIES
   ------------------------------------------------ */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.divider {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  margin: 1.5rem auto;
}


/* ------------------------------------------------
   ABOUT
   ------------------------------------------------ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
  display: block;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(20, 20, 18, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-img-wrap:hover img {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 16px 40px rgba(78, 95, 71, 0.15);
}



.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.about-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.about-sig {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-top: 1.5rem;
}


/* ------------------------------------------------
   SERVICES
   ------------------------------------------------ */
.services-section {
  background: var(--ivory-dark);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.services-header p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--ivory);
  border: 1px solid var(--sage-muted);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 12px rgba(20, 20, 18, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(78, 95, 71, 0.08);
}

.service-icon {
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
}

.service-card:hover .service-icon {
  width: 56px;
  background-color: var(--sage);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-price {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  border-top: 0.5px solid var(--sage-light);
  padding-top: 1rem;
}

.service-price strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 0.25rem;
}


/* ------------------------------------------------
   EXPERIENCE
   ------------------------------------------------ */
.experience-section {
  background: var(--ivory);
}

.experience-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.experience-text h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.experience-steps {
  list-style: none;
}

.experience-steps li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--ivory-dark);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  min-width: 2rem;
  text-align: center;
}

.step-content h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.experience-quote {
  background: var(--sage-muted);
  padding: 3rem;
  position: relative;
}

.experience-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--sage-light);
  position: absolute;
  top: -1rem; left: 1.5rem;
  line-height: 1;
}

.experience-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}


/* ------------------------------------------------
   CALL TO ACTION
   ------------------------------------------------ */
.cta-section {
  background: var(--sage-dark);
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section .section-eyebrow {
  color: var(--sage-light);
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.cta-section h2 em {
  font-style: italic;
}

.cta-section p {
  color: var(--sage-light);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.75rem;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-btn:hover {
  background: var(--ivory);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 20, 18, 0.15);
}


/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
footer {
  background: var(--ivory-dark);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 0.5px solid var(--sage-light);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
}

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

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}


/* ------------------------------------------------
   RESPONSIVE — MOBILE & FLOATING INTERACTION
   ------------------------------------------------ */
/* Floating Mobile Booking Pill (default hidden) */
.mobile-book-pill {
  display: none;
}

/* Mobile Nav Toggle (default hidden) */
.mobile-nav-toggle {
  display: none;
}

/* Disable body scroll when mobile menu is active */
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  nav              { padding: 1rem 1.5rem; justify-content: space-between; }
  
  /* Mobile Fullscreen Glassmorphism Navigation Overlay */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 252, 249, 0.98); /* Matching ivory color */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    padding: 0;
    margin: 0;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    color: var(--text-dark);
  }
  
  .nav-links a.nav-active {
    color: var(--sage-dark) !important;
    font-weight: 500;
  }
  
  /* Mobile Hamburger Icon Toggle */
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    padding: 0;
  }
  
  .mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
  }
  
  /* Hamburger morph animations when menu is toggled active */
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Hide standard desktop book button when overlay menu is active to avoid overlap */
  .mobile-nav-toggle.active ~ .nav-book {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Floating Mobile Booking Pill Style */
  .mobile-book-pill {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage-dark);
    color: var(--ivory);
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(78, 95, 71, 0.3);
    z-index: 998;
    width: calc(100% - 3rem);
    max-width: 320px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  
  .mobile-book-pill:active {
    transform: translateX(-50%) scale(0.97);
    background-color: var(--sage);
  }

  section          { padding: 4rem 1.5rem; }
  .about           { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { display: none; }
  .experience-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-strip     { gap: 1.5rem; padding: 1.25rem; }
  footer           { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-links    { justify-content: center; gap: 1rem 1.5rem; }
}


/* ================================================
   NEW SECTIONS — Contact, Testimonials Teaser,
   Testimonials Page, Masonry Grid
   ================================================ */


/* ------------------------------------------------
   TESTIMONIALS TEASER (on index.html)
   ------------------------------------------------ */
.testimonials-teaser {
  background: var(--sage-dark);
  padding: 6rem 3rem;
}

.testimonials-teaser-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.teaser-col.text-col {
  text-align: left;
}

.testimonials-teaser .section-eyebrow {
  color: var(--sage-light);
}

.teaser-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.teaser-heading em {
  font-style: italic;
}

.teaser-sub {
  color: var(--sage-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.teaser-review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.teaser-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .testimonials-teaser {
    padding: 4rem 1.5rem;
  }
  .testimonials-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .teaser-col.text-col {
    text-align: center;
  }
  .teaser-col.text-col .divider {
    margin: 1.5rem auto !important;
  }
}

.teaser-btn {
  display: inline-block;
  padding: 0.8rem 2.25rem;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.teaser-btn:hover {
  background: var(--ivory);
  color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 20, 18, 0.15);
}


/* ------------------------------------------------
   CONTACT SECTION
   ------------------------------------------------ */
.contact-section {
  background: var(--ivory-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-text h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.contact-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact-detail-item a {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-item a:hover {
  color: var(--sage-dark);
}

/* ---- Form ---- */
.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--sage-muted);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(20, 20, 18, 0.04);
}

.contact-tabs {
  display: flex;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--sage-light);
  gap: 0.5rem;
}

.contact-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-tab:hover {
  color: var(--text-dark);
}

.contact-tab.active {
  border-bottom-color: var(--sage);
  color: var(--sage-dark);
  font-weight: 500;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--ivory);
  border: 0.5px solid var(--sage-light);
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8C72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--sage);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--sage-dark);
}

.form-submit:disabled {
  background: var(--sage-light);
  cursor: not-allowed;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 1rem;
  min-height: 1.4rem;
  text-align: center;
}

.form-status--success {
  color: var(--sage-dark);
}

.form-status--error {
  color: #b85c5c;
}


/* ------------------------------------------------
   TESTIMONIALS PAGE — page-hero
   ------------------------------------------------ */
.page-hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 4rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--sage-muted);
  opacity: 0.5;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  position: relative;
  z-index: 1;
}


/* ------------------------------------------------
   STATS STRIP
   ------------------------------------------------ */
.stats-strip {
  background: var(--sage);
  padding: 1.75rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.75;
}

.stat-divider {
  width: 0.5px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}


/* ------------------------------------------------
   MASONRY TESTIMONIALS GRID
   ------------------------------------------------ */
.testimonials-section {
  background: var(--ivory-dark);
  padding: 5rem 3rem;
}

.masonry-grid {
  columns: 3;
  column-gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.t-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--sage-muted);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(20, 20, 18, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.t-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 95, 71, 0.08);
}

.t-card-inner {
  padding: 1.75rem;
}

.t-stars {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.t-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Larger cards have bigger quote text */
.t-card--large blockquote {
  font-size: 1.2rem;
}

.t-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--sage-light);
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.t-name {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.t-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-muted);
  padding: 0.2rem 0.6rem;
}

/* Active nav link on testimonials page */
.nav-active {
  color: var(--sage-dark) !important;
}


/* ------------------------------------------------
   RESPONSIVE ADDITIONS
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .masonry-grid { columns: 2; }
}

@media (max-width: 768px) {
  .contact-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .masonry-grid   { columns: 1; }
  .stats-strip    { gap: 1.5rem; }
  .stat-divider   { display: none; }
}

/* ------------------------------------------------
   FAQ SECTION
   ------------------------------------------------ */
.faq-section {
  background: var(--ivory);
  padding: 5rem 3rem;
  border-top: 0.5px solid var(--sage-light);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text-dark);
}

.faq-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.faq-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 0.5px solid var(--sage-light);
  padding-bottom: 1rem;
}

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

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-question span {
  pointer-events: none;
}

.faq-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sage);
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  padding: 0 0 1rem;
  margin: 0;
}

.faq-item.active .faq-question {
  color: var(--sage-dark);
  font-weight: 500;
}


/* ------------------------------------------------
   SERVICES MENU PAGE
   ------------------------------------------------ */
.services-menu-section {
  background: var(--ivory);
  padding: 4rem 3rem 6rem;
}

.menu-category {
  max-width: 900px;
  margin: 0 auto 5rem;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage-dark);
  border-bottom: 1.5px solid var(--sage-light);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  row-gap: 2rem;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-menu-section {
    padding: 3rem 1.5rem 5rem;
  }
}

.menu-item {
  margin-bottom: 1rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
}

.menu-item-spacer {
  flex: 1;
  border-bottom: 1px dotted var(--sage-light);
  margin: 0 0.5rem;
  opacity: 0.6;
}

.menu-item-price {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage-dark);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.35rem;
  line-height: 1.6;
}

.menu-note-box {
  background: var(--sage-muted);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

/* ------------------------------------------------
   LOCATION & GOOGLE BUSINESS / MAPS SECTION
   ------------------------------------------------ */
.location-section {
  background: var(--ivory);
  border-top: 0.5px solid var(--sage-light);
  padding: 6rem 3rem;
}

.location-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
}

.location-text h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.location-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-item strong {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.info-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Location Action Buttons */
.location-buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.location-btn.primary {
  background: var(--sage-dark);
  color: var(--ivory);
  border: 1px solid var(--sage-dark);
  box-shadow: 0 4px 15px rgba(78, 95, 71, 0.2);
}

.location-btn.primary:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 95, 71, 0.3);
}

.location-btn.secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--sage);
}

.location-btn.secondary:hover {
  background: var(--sage);
  color: var(--ivory);
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 95, 71, 0.2);
}

@media (max-width: 768px) {
  .location-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .location-btn {
    width: 100%;
  }
}

.location-map {
  width: 100%;
}

@media (max-width: 900px) {
  .location-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .location-section {
    padding: 4rem 1.5rem;
  }
}
