/* ============================================
   HOLISTIC MASSAGE & FACIAL — Pittsfield, MA
   Classic & Elegant Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #111D35;
  --navy-light:  #2A3F66;
  --gold:        #C9A84C;
  --gold-light:  #D4B96A;
  --gold-pale:   #F5ECD7;
  --cream:       #FAF8F3;
  --cream-dark:  #F0EBE0;
  --warm-gray:   #8A8279;
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7570;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md:   0 8px 30px rgba(27, 42, 74, 0.10);
  --shadow-lg:   0 16px 50px rgba(27, 42, 74, 0.14);

  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.07);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav__logo-icon {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav__links a:hover {
  color: var(--navy);
  background: rgba(27, 42, 74, 0.05);
}

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav__cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--navy);
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--cream);
  overflow: hidden;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.hero__trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero__image {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero__image-secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.hero__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Services --- */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  overflow: hidden;
  height: 240px;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 32px;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(17, 29, 53, 0.85), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about__image-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.about__eyebrow {
  margin-bottom: 14px;
}

.about__title {
  margin-bottom: 28px;
}

.about__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.about__value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about__value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius-sm);
  color: var(--gold);
}

.about__value strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about__value span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Gallery --- */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--large {
  grid-column: 1 / 7;
  grid-row: 1 / 2;
  height: 400px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
  height: 240px;
}

.gallery__item--wide {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  height: 280px;
}

/* --- Testimonials --- */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
}

.testimonials .section-header__eyebrow {
  color: var(--gold);
}

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

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-card__author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- CTA --- */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(27, 42, 74, 0.05);
  border-radius: 50%;
}

.cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--navy);
}

.cta__text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  margin-bottom: 20px;
}

.contact__text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--gold);
}

.contact__detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

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

.contact__map {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact__form-wrap {
  position: sticky;
  top: 100px;
}

.contact__form-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact__form-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-input::placeholder {
  color: var(--warm-gray);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%238A8279' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 16px 0 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__link-col strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__link-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link-col a,
.footer__link-col span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
  line-height: 1.5;
}

.footer__link-col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

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

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__split {
    gap: 40px;
  }

  .about__split {
    gap: 48px;
  }

  .contact__split {
    gap: 48px;
  }

  .gallery__item--large {
    grid-column: 1 / 8;
  }

  .gallery__item--wide {
    grid-column: 5 / 13;
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(27, 42, 74, 0.07);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-md);
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__links a {
    width: 100%;
    padding: 14px 16px;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__image-secondary {
    left: -16px;
    bottom: -24px;
  }

  .hero__headline {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .about__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 480px;
    margin: 0 auto;
  }

  .gallery__item--large,
  .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .gallery__item--large {
    height: 280px;
  }

  .gallery__item:not(.gallery__item--wide) {
    height: 200px;
  }

  .contact__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-wrap {
    sticky: unset;
    position: static;
  }

  .contact__form-card {
    padding: 28px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}
