/* ============================================================
   PROFESSIONAL TOUCH SALON & MED SPA
   Inspired by Acacia Spa aesthetic — adapted for salon
   ============================================================ */

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

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

:root {
  --sage:        #8aaa82;
  --sage-dark:   #5a7a52;
  --sage-light:  #c8ddc3;
  --sage-pale:   #eef4ec;
  --blush:       #c47a8a;
  --blush-light: #f5e4e8;
  --cream:       #faf8f5;
  --charcoal:    #2d2d2d;
  --mid-gray:    #666;
  --light-gray:  #f4f4f4;
  --white:       #ffffff;
  --slate-band:  #2b3d2e;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --track-wide:  0.22em;
  --track-xl:    0.35em;
  --track-tight: 0.08em;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-xl);
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--charcoal);
}

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

.body-text {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.85;
  font-weight: 400;
}

/* Ghost button — the ONLY button style (Acacia pattern) */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-xl);
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-dark {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-sage {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-sage:hover {
  background: var(--sage-dark);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent over hero */
#nav.transparent {
  background: transparent;
}

/* Solid after scroll */
#nav.solid {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo .logo-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}

#nav.transparent .logo-wordmark { color: var(--white); }
#nav.transparent .logo-sub { color: rgba(255,255,255,0.6); }
#nav.solid .logo-wordmark { color: var(--charcoal); }
#nav.solid .logo-sub { color: var(--sage); }

/* Contact strip (right side of nav) */
.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.nav-contact .nav-phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sage);
}

.nav-contact .nav-addr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#nav.transparent .nav-addr { color: rgba(255,255,255,0.55); }
#nav.solid .nav-addr { color: var(--mid-gray); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links li { display: flex; align-items: center; }

.nav-links li + li::before {
  content: '|';
  font-size: 10px;
  padding: 0 16px;
  opacity: 0.3;
}

#nav.transparent .nav-links li + li::before { color: var(--white); }
#nav.solid .nav-links li + li::before { color: var(--charcoal); }

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  transition: color 0.2s;
}

#nav.transparent .nav-links a { color: rgba(255,255,255,0.85); }
#nav.transparent .nav-links a:hover { color: var(--white); }
#nav.solid .nav-links a { color: var(--charcoal); }
#nav.solid .nav-links a:hover { color: var(--sage); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
}
#nav.solid .nav-toggle span { background: var(--charcoal); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a2b1c;
}

/* Full-bleed background photo with subtle overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 32, 18, 0.55) 0%,
    rgba(20, 32, 18, 0.45) 50%,
    rgba(20, 32, 18, 0.70) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: block;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 32px;
}

/* Thin-bordered tagline frame (Acacia signature) */
.hero-tagline-frame {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 18px 44px;
  margin-bottom: 44px;
}

.hero-tagline-frame p {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 2;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--white);
  padding: 100px 48px;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.services-header p {
  margin-top: 20px;
}

/* 2-column then 3 — Acacia-style service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

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

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,32,18,0.75) 0%, rgba(20,32,18,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.3s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(20,32,18,0.85) 0%, rgba(20,32,18,0.25) 70%);
}

.service-card-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 6px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 360px;
}

/* Bottom row — 3 cards */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   AWARD / SOCIAL PROOF BAND
   ============================================================ */
#award {
  position: relative;
  padding: 100px 48px;
  background-image: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

#award::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 27, 0.72);
}

.award-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-bottom: 32px;
}

.award-badge svg {
  width: 38px;
  height: 38px;
  fill: var(--sage-light);
}

.award-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.award-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  padding: 100px 48px;
  background: var(--cream);
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .section-title { margin-bottom: 28px; }

.about-inner .body-text { margin-bottom: 18px; }

.about-photo {
  margin: 52px auto 0;
  max-width: 720px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-photo:hover img { transform: scale(1.03); }

/* ============================================================
   SLATE BAND — full-width dark section break (Acacia pattern)
   ============================================================ */
.slate-band {
  background: var(--slate-band);
  padding: 64px 48px;
  text-align: center;
}

.slate-band .eyebrow { color: var(--sage-light); }
.slate-band p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
}

/* ============================================================
   CONTACT / EXPERIENCE SECTION
   ============================================================ */
#contact {
  padding: 100px 48px;
  background: var(--white);
}

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

.contact-info .section-title { margin-bottom: 32px; }

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail .detail-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.contact-detail .detail-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  line-height: 1.4;
}

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

.contact-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Map */
.contact-map {
  width: 100%;
  height: 400px;
  background: var(--light-gray);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

/* ============================================================
   BOOKING FORM SECTION
   ============================================================ */
#booking {
  padding: 100px 48px;
  background: var(--sage-pale);
}

.booking-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.booking-inner .section-title { margin-bottom: 16px; }

.booking-inner > .body-text {
  margin-bottom: 52px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.booking-form .full-width { grid-column: 1 / -1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  border-bottom: 1.5px solid rgba(90,122,82,0.3);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

.form-field textarea { resize: none; height: 80px; }

.booking-form-footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
#gallery {
  padding: 100px 48px;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.gallery-item {
  overflow: hidden;
  background: var(--light-gray);
}

.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item.tall img { height: 100%; min-height: 523px; }

.gallery-item:hover img { transform: scale(1.05); }

.gallery-cta { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 72px 48px 36px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.footer-brand .logo-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 22px;
}

.footer-brand address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

.footer-brand .footer-phone {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.06em;
}

.footer-col h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sage-light); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--sage);
  background: rgba(138,170,130,0.1);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: rgba(255,255,255,0.6);
  transition: fill 0.2s;
}

.footer-social a:hover svg { fill: var(--sage-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: auto; height: 260px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .nav-toggle { display: flex; }

  #hero { min-height: 100svh; }
  .hero-tagline-frame { padding: 14px 24px; }
  .hero-tagline-frame p { font-size: 9px; letter-spacing: 0.2em; }

  #services, #award, #about, #contact, #booking, #gallery { padding: 72px 24px; }
  .slate-band { padding: 48px 24px; }
  footer { padding: 56px 24px 28px; }

  .services-grid-3 { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .full-width { grid-column: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { padding: 13px 28px; font-size: 10px; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--sage-dark); }

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--charcoal);
  line-height: 1;
}
