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

:root {
  --deep: #1a1210;
  --deep-light: #2d201c;
  --rose: #d4a373;
  --rose-light: #e8c4a0;
  --sage: #7b9a8b;
  --sage-light: #a8c4b5;
  --cream: #f5efe0;
  --warm-white: #faf5ee;
  --shadow: rgba(0,0,0,0.5);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep);
  color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== Header ===== */
header {
  position: fixed; top: 0; width: 100%;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: linear-gradient(180deg, rgba(26,18,16,0.9) 0%, transparent 100%);
  transition: background 0.3s ease;
}
header.scrolled { background: rgba(26,18,16,0.97); }
header .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--cream); text-decoration: none;
}
header .logo span { color: var(--rose); }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px;
  background: none; border: 1px solid rgba(212,163,115,0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  transition: border-color 0.3s;
}
.hamburger:hover { border-color: var(--rose); }
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Full-screen overlay menu */
.overlay {
  position: fixed; inset: 0;
  background: rgba(26,18,16,0.98);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  z-index: 99;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.overlay.open { opacity: 1; visibility: visible; }
.overlay ul { list-style: none; text-align: center; }
.overlay ul li { margin: 24px 0; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.overlay.open ul li { opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(1) { transition-delay: 0.1s; }
.overlay.open ul li:nth-child(2) { transition-delay: 0.15s; }
.overlay.open ul li:nth-child(3) { transition-delay: 0.2s; }
.overlay.open ul li:nth-child(4) { transition-delay: 0.25s; }
.overlay ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  color: var(--cream); text-decoration: none;
  transition: color 0.3s;
}
.overlay ul li a:hover { color: var(--rose); }

/* ===== Sections ===== */
section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

/* Ornament */
.ornament {
  text-align: center;
  font-size: 1.8rem;
  color: var(--rose);
  opacity: 0.5;
  letter-spacing: 6px;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,163,115,0.06) 0%, transparent 60%);
}
.hero .ornament { margin-bottom: 12px; font-size: 2rem; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--rose); }
.hero p {
  max-width: 600px; margin: 0 auto 36px;
  color: var(--sage); font-size: 1.05rem; line-height: 1.8;
}
.btn {
  display: inline-block; padding: 16px 40px;
  border-radius: 50px;
  font-weight: 500; text-decoration: none;
  transition: all 0.3s ease; font-size: 0.92rem;
  border: none; cursor: pointer;
}
.btn-primary {
  background: var(--rose); color: var(--deep);
}
.btn-primary:hover { background: var(--rose-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245,239,224,0.2);
  margin-left: 12px;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }

/* ===== About ===== */
.about {
  background: var(--deep-light);
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.about-text .dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--rose);
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 4px;
}
.about-text p { color: var(--sage); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.about-cards {
  display: grid; gap: 14px;
}
.acard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123,154,139,0.12);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex; justify-content: space-between;
  font-size: 0.9rem;
}
.acard .l { color: var(--sage); }
.acard .r { color: var(--cream); text-align: right; font-weight: 500; }

/* ===== Services ===== */
.svc-list { max-width: 750px; margin: 0 auto; }
.svc-item {
  border-bottom: 1px solid rgba(123,154,139,0.1);
  padding: 20px 0;
  cursor: pointer;
}
.svc-item:first-child { border-top: 1px solid rgba(123,154,139,0.1); }
.svc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
}
.svc-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}
.svc-header .svc-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212,163,115,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--rose);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.svc-item.open .svc-toggle { transform: rotate(45deg); }
.svc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 40px 0 0;
}
.svc-item.open .svc-body {
  max-height: 300px;
  padding: 12px 40px 8px 0;
}
.svc-body p { color: var(--sage); font-size: 0.92rem; line-height: 1.75; }

/* ===== Gallery/Grid ===== */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
}
.gallery-grid .g-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--deep-light);
  border: 1px solid rgba(123,154,139,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--sage);
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.gallery-grid .g-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(212,163,115,0.05) 0%, transparent 60%);
}
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(2) { grid-column: span 1; }
.gallery-grid .g-item:nth-child(3) { grid-column: span 1; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
.gallery-grid .g-item:nth-child(5) { grid-column: span 1; }
.gallery-grid .g-item .glabel { position: relative; z-index: 1; }
.gallery-grid .g-item .gicon { font-size: 2rem; margin-bottom: 8px; }

/* ===== Testimonials ===== */
.testi-single {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.testi-single .tmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.8;
  color: var(--rose);
  opacity: 0.15;
  margin-bottom: 12px;
}
.testi-single .ttext {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testi-single .tauthor { color: var(--rose); font-size: 0.95rem; font-weight: 500; }
.testi-single .trole { color: var(--sage); font-size: 0.85rem; }

/* ===== CTA ===== */
.cta {
  text-align: center;
  background: var(--deep-light);
  border-top: 1px solid rgba(123,154,139,0.06);
}
.cta .orph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--rose);
  margin-bottom: 8px;
}
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--sage); max-width: 500px; margin: 0 auto 28px; }
.cta .cta-tel {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--rose);
  text-decoration: none;
  margin-bottom: 24px;
}

/* ===== Footer ===== */
footer {
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(123,154,139,0.06);
}
.fbot {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(123,154,139,0.06);
  font-size: 0.85rem; color: var(--sage);
}
.fbot a { color: var(--sage); text-decoration: none; }
.fbot a:hover { color: var(--rose); }
.fbot .fnav a { margin: 0 12px; }

/* ===== Sub-pages ===== */
.page-hd {
  padding: 140px 40px 50px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,163,115,0.04) 0%, transparent 60%);
}
.page-hd h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--cream);
}
.page-hd p { color: var(--sage); max-width: 520px; margin: 10px auto 0; }

/* Contact form */
.cform { max-width: 600px; margin: 0 auto; }
.cform input, .cform textarea {
  width: 100%; padding: 14px 18px;
  background: var(--deep-light); border: 1px solid rgba(123,154,139,0.12);
  border-radius: var(--radius-sm); color: var(--cream); font-size: 0.95rem;
  margin-bottom: 14px; font-family: inherit;
  transition: border-color 0.3s;
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--rose); }
.cform textarea { min-height: 130px; resize: vertical; }

/* Privacy */
.privacy { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.privacy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--cream);
  margin: 32px 0 10px;
}
.privacy p { color: var(--sage); line-height: 1.8; margin-bottom: 10px; font-size: 0.95rem; }
.privacy .contact-box {
  background: var(--deep-light);
  border: 1px solid rgba(123,154,139,0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 16px 0;
}
.privacy .contact-box p { color: var(--cream); margin-bottom: 4px; font-size: 0.9rem; }

@media (max-width: 1024px) {
  section { padding: 80px 24px; }
  .hero h1 { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  header { padding: 16px 20px; }
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .overlay ul li a { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 1; }
  .page-hd { padding: 110px 20px 30px; }
  .page-hd h1 { font-size: 2.2rem; }
  .fbot { flex-direction: column; text-align: center; }
  .fbot .fnav a { margin: 0 8px; }
}
