:root {
  --lph-cream: #f8f3ef;
  --lph-gold: #c1a070;
  --lph-gold-dark: #a98b5f;
  --lph-blue: #6fa6d1;
  --lph-olive: #585649;
  --lph-dark: #3f3f38;
  --lph-body: #494944;
  --lph-white: #ffffff;
  --lph-shadow: 0 18px 45px rgba(70, 65, 55, .10);
  --lph-heading-font: "Bodoni 72", "Bodoni 72 Smallcaps", "Playfair Display", Georgia, serif;
  --lph-body-font: "Acumin Variable Concept Condensed", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --lph-script-font: "Wendy LP Light", "Snell Roundhand", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lph-cream);
  color: var(--lph-body);
  font-family: var(--lph-body-font);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: inline-block; }
.lph-container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.lph-center { text-align: center; }

/* Header: stored in /header/site-header.php */
.lph-site-header {
  position: relative;
  z-index: 20;
  background: var(--lph-gold);
  border-bottom-left-radius: 50% 18px;
  border-bottom-right-radius: 50% 18px;
}
.lph-header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}
.lph-primary-nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 7vw, 115px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.lph-primary-nav a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 12px;
  line-height: 1;
  transition: opacity .2s ease;
}
.lph-primary-nav a:hover { opacity: .75; }
.lph-menu-toggle { display: none; }

.site-main { min-height: 55vh; }
.lph-page-wrap { padding: 90px 0 110px; }
.lph-content-card { text-align: center; }
.lph-page-title, .lph-section-title {
  margin: 0 0 12px;
  font-family: var(--lph-heading-font);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  color: var(--lph-blue);
  line-height: 1.08;
}
.lph-subhead { font-weight: 700; color: var(--lph-dark); margin-bottom: 18px; }

.lph-full-height { min-height: calc(100vh - 70px); display: flex; align-items: center; }
.lph-hero { padding: 80px 0; }
.lph-hero-logo { width: min(520px, 84vw); margin-bottom: 42px; }
.lph-script {
  font-family: var(--lph-script-font);
  font-size: clamp(34px, 5.8vw, 66px);
  line-height: 1.2;
  color: #73716a;
  margin: 0 0 55px;
  letter-spacing: 0;
}
.lph-fade-delay { opacity: 0; animation: lphFadeIn 1.5s ease 1.5s forwards; }
@keyframes lphFadeIn { to { opacity: 1; } }

.lph-button, .elementor-widget-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 42px;
  border: 0;
  border-radius: 0;
  background: var(--lph-gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  font: 700 13px/1 var(--lph-body-font);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lph-button:hover, .elementor-widget-button .elementor-button:hover { background: var(--lph-gold-dark); transform: translateY(-1px); }

.lph-treatment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 34px;
  width: min(640px, 100%);
  margin: 62px auto 70px;
}
.lph-treatment-card {
  background: #fff;
  padding: 48px 32px 42px;
  box-shadow: var(--lph-shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lph-treatment-card:hover { transform: translateY(-4px); box-shadow: 0 25px 55px rgba(70,65,55,.13); }
.lph-treatment-card img { height: 74px; margin-bottom: 22px; }
.lph-treatment-card h3 {
  margin: 0 0 7px;
  font: 400 36px/1.1 var(--lph-heading-font);
  color: var(--lph-blue);
}
.lph-treatment-card p { margin: 0; font-size: 16px; }

.lph-accreditations { text-align: center; margin: 55px auto 0; }
.lph-lotus { width: 125px; margin-bottom: 20px; opacity: .9; }
.lph-accreditations p { margin: 0 0 22px; font-weight: 700; font-size: 15px; }
.lph-accreditation-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.lph-accreditation-logos a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(193,160,112,.25);
  color: var(--lph-dark);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 18px;
}

/* Contact form shortcode, usable inside Elementor. */
.lph-contact-form { width: min(650px, 100%); margin: 35px auto; }
.lph-contact-form label { display: block; margin-bottom: 7px; text-align: left; }
.lph-contact-form span { display: block; margin-bottom: 2px; font-size: 14px; }
.lph-contact-form input, .lph-contact-form textarea {
  width: 100%; border: 0; background: #fff; padding: 14px 16px; font: 16px/1.4 var(--lph-body-font); color: var(--lph-dark);
  box-shadow: inset 0 0 0 1px rgba(193,160,112,.12);
}
.lph-contact-form button { margin: 18px auto 0; display: flex; min-width: 220px; padding: 14px 38px; border: 0; background: var(--lph-gold); color:#fff; text-transform: uppercase; letter-spacing: 5px; cursor: pointer; }
.lph-form-success { width: min(650px,100%); margin: 20px auto; padding: 14px 18px; text-align:center; background:#eef7f0; color:#2f6934; }

/* Footer: stored in /footer/site-footer.php */
.lph-site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background: var(--lph-olive);
  color: rgba(255,255,255,.88);
  text-align: center;
  padding: 78px 0 54px;
  border-top-left-radius: 50% 34px;
  border-top-right-radius: 50% 34px;
}
.lph-footer-logo { width: min(280px, 70vw); margin-bottom: 18px; }
.lph-footer-content p { margin: 4px 0; font-size: 15px; }
.lph-footer-phone, .lph-footer-email { font-size: 22px !important; color: #fff; font-weight: 700; letter-spacing: .05em; }
.lph-footer-socials { display:flex; gap: 18px; justify-content:center; margin-top:20px; font-size:13px; text-transform:uppercase; letter-spacing:.18em; color:#d6c4a6; }

/* Elementor helper classes */
.lph-inner-logo { width: min(360px, 70vw); margin: 70px auto 35px; display:block; }
.lph-narrow { width: min(850px, calc(100% - 48px)); margin-inline:auto; }
.lph-pricing-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 40px auto; text-align:center; }
.lph-price-item strong { display:block; font-weight:700; color:var(--lph-dark); }

@media (max-width: 900px) {
  .lph-primary-nav ul { gap: 26px; flex-wrap: wrap; }
  .lph-primary-nav a { letter-spacing: 3px; font-size: 11px; }
  .lph-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .lph-accreditation-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .lph-header-inner { justify-content: flex-end; min-height: 62px; }
  .lph-menu-toggle { display: inline-flex; background: transparent; color:#fff; border:1px solid rgba(255,255,255,.55); padding: 9px 13px; text-transform:uppercase; letter-spacing:3px; }
  .lph-primary-nav { display:none; position:absolute; left:0; right:0; top:62px; background:var(--lph-gold); padding:18px 0 24px; }
  body.lph-menu-open .lph-primary-nav { display:block; }
  .lph-primary-nav ul { display:block; text-align:center; }
  .lph-primary-nav li + li { margin-top:16px; }
  .lph-hero { padding: 58px 0; }
  .lph-script { font-size: 35px; margin-bottom: 35px; }
  .lph-treatment-cards { grid-template-columns: 1fr; margin-top: 42px; }
  .lph-pricing-grid { grid-template-columns: 1fr; }
  .lph-accreditation-logos { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lph-site-footer { margin-top:50px; padding-top:62px; }
}
