/* Chana Beauty Lounge — global styles */
:root {
  --cream: #f7f4ef;
  --cream-dark: #ebe6dc;
  --white: #fffcf8;
  --olive: #3d4f3d;
  --olive-soft: #5a6e58;
  --rose: #e8c4c8;
  --rose-deep: #d4a4ab;
  --gold: #c9a962;
  --gold-soft: #dcc9a0;
  --ink: #2a2a28;
  --muted: #5c5a56;
  --shadow: 0 18px 50px rgba(61, 79, 61, 0.08);
  --shadow-soft: 0 10px 30px rgba(61, 79, 61, 0.06);
  --radius: 18px;
  --radius-lg: 26px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.5rem;
}

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

a {
  color: var(--olive);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--olive-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--olive);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.u-muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.u-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 600;
}

.u-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 79, 61, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-link img {
  height: 64px;
  width: auto;
  margin: 0;
}

.logo-link span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--olive);
  display: none;
}

@media (min-width: 480px) {
  .logo-link span {
    display: block;
  }
}

@media (max-width: 479px) {
  .logo-link img {
    height: 54px;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  padding: 0 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 320px);
  background: var(--white);
  padding: calc(var(--header-h) + 1rem) 1.25rem 2rem;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 60;
}

.nav.is-open {
  transform: translateX(0);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 40, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 55;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .nav {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-overlay {
    display: none;
  }
}

.nav a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--olive);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(232, 196, 200, 0.35);
}

@media (min-width: 900px) {
  .nav a {
    padding: 0.5rem 0.75rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background: var(--olive-soft);
  color: var(--white);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn--outline {
  background: var(--white);
  color: var(--olive);
  border: 1px solid rgba(61, 79, 61, 0.2);
  box-shadow: var(--shadow-soft);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--olive);
}

.btn--ghost {
  background: transparent;
  color: var(--olive);
  border: 1px solid transparent;
}

.btn--ghost:hover {
  background: rgba(255, 252, 248, 0.8);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  background: radial-gradient(120% 80% at 50% 0%, rgba(232, 196, 200, 0.35), transparent),
    linear-gradient(180deg, var(--white), var(--cream));
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.8);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.9rem;
}

.hero-brand img {
  width: 150px;
  max-width: 36vw;
  height: auto;
  margin: 0 !important;
  mix-blend-mode: multiply;
}

.hero-brand small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 700;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.hero__card img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.hero__card--visual {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-visual {
  width: 100%;
  min-height: 380px;
  max-height: 560px;
  object-fit: cover;
  margin: 0 !important;
}

.signature-card {
  margin: 1rem;
  margin-top: -7rem;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.signature-card h3 {
  margin-bottom: 0.4rem;
}

.signature-card p {
  margin-bottom: 0.9rem;
}

.section {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.section--alt {
  background: var(--white);
}

.section__head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.visual-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 780px) {
  .visual-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin: 0 !important;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.5), rgba(20, 20, 20, 0.08));
}

.visual-card__label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
}

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

.process-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(61, 79, 61, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  margin-bottom: 0;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: auto;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(232, 196, 200, 0.45);
  color: var(--olive);
  font-weight: 500;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--white), var(--cream-dark));
  border: 1px solid rgba(201, 169, 98, 0.18);
}

.feature h3 {
  font-size: 1.15rem;
}

.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.quote p {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.quote footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
}

.faq details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(61, 79, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--olive);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
}

.notice {
  background: rgba(232, 196, 200, 0.35);
  border: 1px solid rgba(212, 164, 171, 0.45);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--olive);
  font-weight: 500;
}

.notice p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--olive);
  color: rgba(255, 252, 248, 0.88);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.site-footer a {
  color: var(--gold-soft);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 1.1rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 252, 248, 0.78);
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 252, 248, 0.55);
  text-align: center;
}

.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.wa-fab svg {
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .wa-fab span {
    display: none;
  }

  .wa-fab {
    padding: 0.85rem;
  }
}

/* Form */
.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--olive);
  margin-bottom: 0.35rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(61, 79, 61, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(201, 169, 98, 0.55);
  outline-offset: 2px;
}

.form-success {
  display: none;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(232, 196, 200, 0.4);
  border: 1px solid rgba(212, 164, 171, 0.5);
  color: var(--olive);
  font-weight: 500;
}

.form-success.is-visible {
  display: block;
}

.treatment-cat {
  margin-bottom: 2.5rem;
}

.treatment-cat.is-hidden {
  display: none;
}

.treatment-nav-wrap {
  margin-bottom: 2rem;
}

.treatment-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.treatment-nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 79, 61, 0.16);
  background: var(--white);
  text-decoration: none;
  font-weight: 600;
  color: var(--olive);
  font-size: 0.92rem;
}

.treatment-nav a.is-active {
  background: rgba(232, 196, 200, 0.35);
  border-color: rgba(201, 169, 98, 0.45);
}

.treatment-cat h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201, 169, 98, 0.35);
}

.treatment-details details {
  background: var(--white);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(61, 79, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.treatment-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--olive);
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.treatment-details summary span:first-child {
  color: var(--olive);
  font-weight: 700;
}

.treatment-details summary::-webkit-details-marker {
  display: none;
}

.treatment-details details[open] summary {
  margin-bottom: 0.45rem;
}

.treatment-details p {
  margin: 0;
}

.summary-price {
  display: inline-block;
  padding: 0;
  color: #6e4f14;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 460px) {
  .treatment-details summary {
    flex-wrap: wrap;
  }
}

.treatment-detail-layout {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 760px) {
  .treatment-detail-layout {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1rem;
  }
}

.treatment-detail-layout div {
  display: grid;
  gap: 0.45rem;
}

.treatment-price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  align-self: start;
  justify-self: end;
}

.treatment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 560px) {
  .treatment-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.treatment-list li {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(61, 79, 61, 0.06);
  color: var(--muted);
}

.page-hero {
  padding: clamp(2rem, 5vw, 3rem) 0 1.5rem;
  text-align: center;
}

.page-hero .container {
  max-width: 720px;
}

/* Homepage style matching inspiration */
.home-hero {
  text-align: center;
}

.centered-head {
  text-align: center;
  max-width: 760px;
}

.centered-head p {
  margin-inline: auto;
}

.home-hero__logo {
  margin: 0.9rem auto 1.1rem;
  width: min(98%, 500px);
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.home-hero__logo img {
  width: 100%;
  height: auto;
  margin: 0 !important;
  display: block;
}

.service-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}

.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(61, 79, 61, 0.14);
  border-color: rgba(201, 169, 98, 0.45);
}

.card-link:focus-visible {
  outline: 2px solid rgba(201, 169, 98, 0.75);
  outline-offset: 3px;
}

.gift-highlight {
  background: var(--white);
  border: 1px solid rgba(61, 79, 61, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.gift-highlight p {
  max-width: 56ch;
  margin-inline: auto;
}

/* Arrangement detail page */
.arr-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.arr-hero img {
  width: 100%;
  height: clamp(230px, 42vw, 460px);
  object-fit: cover;
  margin: 0 !important;
}

.arr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.62), rgba(20, 20, 20, 0.08));
}

.arr-hero__title {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 1;
  color: #fff;
  margin: 0;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
}

.arr-content {
  max-width: 860px;
  margin-inline: auto;
}

.arr-content h2 {
  margin-top: 1.2rem;
}

.arr-price {
  margin: 0.15rem 0 0.7rem;
  color: #6e4f14;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.arr-expect {
  background: var(--white);
  border: 1px solid rgba(61, 79, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
}

.arr-expect ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.arr-expect li {
  margin-bottom: 0.45rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--olive);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}
