/* =========================================================
   Holistic Wellness NYC — styles.css
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --cream:        #faf8f4;
  --cream-mid:    #f0ece3;
  --cream-dark:   #e8e2d8;
  --brown-light:  #ddd8ce;
  --brown-mid:    #9c8e7a;
  --brown:        #7a6e5e;
  --brown-dark:   #5a4e3e;
  --ink-light:    #6b5e4e;
  --ink:          #2c2820;
  --ink-deep:     #1e1a14;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:       2px;
  --max-width:    1100px;
  --nav-height:   64px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: var(--brown-dark); text-decoration: none; }
a:hover { color: var(--ink); }

/* ---------------------------------------------------------
   Navigation
   --------------------------------------------------------- */
.site-nav {
  background: var(--cream);
  border-bottom: 0.5px solid var(--brown-light);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-deep);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--brown-mid);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.15s;
}

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

.nav-links a.nav-book {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
}

.nav-links a.nav-book:hover {
  background: var(--ink-deep);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brown-mid);
  font-size: 22px;
  cursor: pointer;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-height: 600px;
}

.hero-text {
  padding: 4rem 3rem 4rem 2rem;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink-deep);
}

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

.hero-text p {
  font-size: 15px;
  color: var(--ink-light);
  max-width: 380px;
  line-height: 1.8;
}

.hero-img {
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------------------------------------------------------
   Eyebrow / labels
   --------------------------------------------------------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

/* ---------------------------------------------------------
   CTA Button
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  width: fit-content;
}

.btn:hover { background: var(--ink-deep); color: var(--cream); }

.btn-outline {
  background: transparent;
  border: 0.5px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------------------------------------------------------
   Strip
   --------------------------------------------------------- */
.strip {
  background: var(--ink);
  color: var(--brown-mid);
  padding: 0.85rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.strip strong { color: var(--cream); font-weight: 400; }

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */
.section {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.section-full {
  padding: 4rem 2rem;
  border-bottom: 0.5px solid var(--brown-light);
}

.section-full .section {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}

.section-tinted {
  background: var(--cream-mid);
  border-top: 0.5px solid var(--brown-light);
  border-bottom: 0.5px solid var(--brown-light);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ink-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 15px;
  color: var(--brown-dark);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ---------------------------------------------------------
   Services grid
   --------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--brown-light);
  border: 1.5px solid var(--brown-light);
}

.service-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  transition: background 0.15s;
}

.service-card:hover { background: var(--cream-mid); }

.service-img {
  height: 180px;
  overflow: hidden;
  background: var(--cream-dark);
  margin-bottom: 1.25rem;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-deep);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 13px;
  color: var(--brown);
  line-height: 1.7;
}

.service-link {
  margin-top: 1rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------------------------------------------------------
   Treatment list (services page)
   --------------------------------------------------------- */
.treatment-list {
  border: 0.5px solid var(--brown-light);
  margin-bottom: 1.5rem;
}

.treatment-item {
  padding: 1.75rem;
  border-bottom: 0.5px solid var(--brown-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.treatment-item:last-child { border-bottom: none; }

.treatment-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-deep);
  margin-bottom: 0.4rem;
}

.treatment-item p {
  font-size: 13px;
  color: var(--brown);
  max-width: 500px;
  line-height: 1.75;
}

.treatment-meta {
  font-size: 12px;
  color: var(--brown-mid);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   About
   --------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-img {
  height: 560px;
  overflow: hidden;
  background: var(--cream-dark);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text p {
  font-size: 15px;
  color: var(--brown-dark);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 0.5px solid var(--brown-light);
  font-size: 13px;
  color: var(--brown);
  line-height: 1.5;
}

.credential:last-child { border-bottom: 0.5px solid var(--brown-light); }

.credential i { color: var(--brown-mid); font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* ---------------------------------------------------------
   Quote
   --------------------------------------------------------- */
.pullquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-deep);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ---------------------------------------------------------
   Provider cards
   --------------------------------------------------------- */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.provider-card {
  border: 0.5px solid var(--brown-light);
  padding: 1.75rem;
  background: var(--cream);
}

.provider-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-deep);
  margin-bottom: 0.25rem;
}

.provider-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.85rem;
}

.provider-card p { font-size: 13px; color: var(--brown); line-height: 1.7; }

/* ---------------------------------------------------------
   Booking
   --------------------------------------------------------- */
.booking-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.booking-iframe-placeholder {
  border: 0.5px solid var(--brown-light);
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--cream-mid);
  margin-top: 1.5rem;
}

.booking-iframe-placeholder i { font-size: 36px; color: var(--brown-mid); }
.booking-iframe-placeholder p { font-size: 13px; color: var(--brown-mid); }

/* ---------------------------------------------------------
   Contact
   --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-detail {
  padding: 1rem 0;
  border-top: 0.5px solid var(--brown-light);
}

.contact-detail h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.4rem;
}

.contact-detail p { font-size: 14px; color: var(--brown-dark); line-height: 1.7; }

.map-placeholder {
  background: var(--cream-dark);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--brown-mid);
  font-size: 13px;
}

.map-placeholder i { font-size: 28px; }

/* ---------------------------------------------------------
   Info box
   --------------------------------------------------------- */
.info-box {
  background: var(--cream-mid);
  border: 0.5px solid var(--brown-light);
  padding: 1.25rem 1.5rem;
  font-size: 13px;
  color: var(--brown);
  line-height: 1.75;
}

.info-box strong { color: var(--ink); font-weight: 500; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--ink-deep);
  color: var(--brown-mid);
  padding: 2.5rem 2rem;
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer a { color: var(--brown-mid); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }

.footer-right { text-align: right; line-height: 2; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { height: 280px; }
  .hero-text h1 { font-size: 2.2rem; }
  .services-grid,
  .provider-grid { grid-template-columns: 1fr; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-img { position: static; height: 340px; }
  .treatment-item { flex-direction: column; gap: 0.5rem; }
  .treatment-meta { text-align: left; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--cream); border-bottom: 0.5px solid var(--brown-light); padding: 1rem; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-right { text-align: left; }
}
