:root {
  --cream: #f8efe5;
  --linen: #efe2d1;
  --sand: #d9c3aa;
  --taupe: #9b765f;
  --coffee: #6b3e21;
  --deep: #372114;
  --gold: #a87944;
  --rose: #b5836f;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(74, 42, 23, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--deep);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--deep);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 239, 229, 0.94);
  color: var(--deep);
  box-shadow: 0 12px 36px rgba(58, 33, 20, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 78px;
  height: 54px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: transparent;
}

.site-header.is-scrolled .brand-mark img,
.site-header.is-open .brand-mark img {
  filter: none;
  opacity: 1;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(107, 62, 33, 0.08);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(92, 63, 46, 0.08);
}

.site-nav .nav-cta {
  background: var(--cream);
  color: var(--coffee);
  box-shadow: inset 0 0 0 1px rgba(107, 62, 33, 0.16);
}

.site-header.is-scrolled .site-nav .nav-cta,
.site-header.is-open .site-nav .nav-cta {
  background: var(--coffee);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 7vw, 96px) 84px;
  color: var(--deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 253, 248, 0.84), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(168, 121, 68, 0.16), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(107, 62, 33, 0.12), transparent 28%),
    repeating-linear-gradient(135deg, rgba(107, 62, 33, 0.04) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(45deg, rgba(168, 121, 68, 0.035) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(248, 239, 229, 0.96) 54%, rgba(239, 226, 209, 0.98)),
    var(--cream);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  background: url("photos%20%26%20Logos/lp-logo-silhouette.svg") center/contain no-repeat;
  opacity: 0.075;
  filter: sepia(1) saturate(0.9);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 239, 229, 0.82), rgba(255, 253, 248, 0.36), rgba(248, 239, 229, 0.82)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(248, 239, 229, 0.58) 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(107, 62, 33, 0.14);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(520px, 74vw);
  height: auto;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: none;
  opacity: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(4rem, 10vw, 8.7rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.hero-copy {
  width: min(640px, 100%);
  margin: 20px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  font: inherit;
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--coffee);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(55, 33, 20, 0.22);
}

.button.secondary {
  color: var(--coffee);
  border-color: rgba(107, 62, 33, 0.32);
  background: rgba(255, 253, 248, 0.44);
}

.button.secondary.dark {
  color: var(--deep);
  border-color: rgba(107, 62, 33, 0.25);
  background: var(--white);
}

.text-button {
  color: var(--coffee);
  padding-inline: 12px;
}

.intro-band {
  padding: clamp(44px, 7vw, 78px) clamp(20px, 7vw, 96px);
  background: var(--white);
}

.intro-statement {
  text-align: center;
}

.intro-statement > div {
  width: min(880px, 100%);
  margin: 0 auto;
}

.intro-statement h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.intro-statement p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(47, 33, 26, 0.76);
  font-size: 1.08rem;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.intro-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(107, 62, 33, 0.18);
  border-radius: 999px;
  color: var(--coffee);
  background: rgba(248, 239, 229, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 7vw, 96px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  font-size: 1.05rem;
  color: rgba(47, 33, 26, 0.75);
}

.services-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.service-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 190px 1fr;
  background: var(--white);
  border: 1px solid rgba(107, 62, 33, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(72, 47, 28, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card p {
  margin: 14px 0 22px;
  color: rgba(47, 33, 26, 0.75);
}

.service-card a {
  margin-top: auto;
  color: var(--coffee);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.prices-section {
  background:
    linear-gradient(135deg, rgba(55, 33, 20, 0.98), rgba(107, 62, 33, 0.94)),
    var(--deep);
  color: var(--white);
}

.prices-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.78);
}

.prices-section .price-reminder {
  color: #ead3b2;
  font-weight: 800;
}

.price-heading-button {
  margin-top: 22px;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.fresha-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-category {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 8px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.menu-category:first-child {
  padding-top: 0;
}

.menu-category span {
  color: #ead3b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-category h3 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  text-align: right;
}

.treatment-row {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
}

.laser-area-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.microneedling-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fresha-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2.6vw, 24px);
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
}

.fresha-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  order: 2;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: #ead3b2;
  font-size: 0.88rem;
  font-weight: 800;
}

.fresha-card-head span,
.fresha-card-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
}

.fresha-card h3 {
  font-size: clamp(1.28rem, 2.1vw, 1.62rem);
}

.fresha-card p {
  margin: 9px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.96rem;
}

.fresha-card b {
  color: var(--white);
}

.package-breakdown {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.package-breakdown ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 12px;
  padding-left: 20px;
  color: rgba(255, 253, 248, 0.82);
}

.package-breakdown p {
  font-size: 0.94rem;
}

.price-table {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.price-table .price-category {
  background: rgba(255, 253, 248, 0.12);
  padding-block: 14px;
}

.price-table .price-category span {
  color: #ead3b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table strong {
  color: #ead3b2;
  text-align: right;
}

.price-note {
  align-self: start;
  padding: 30px;
  background: var(--cream);
  color: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-note p {
  margin: 16px 0 24px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  background: var(--linen);
}

.about-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy p:not(.eyebrow) {
  font-size: 1.05rem;
  color: rgba(47, 33, 26, 0.78);
}

.booking-section {
  background: var(--cream);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(55, 33, 20, 0.98), rgba(107, 62, 33, 0.95)),
    var(--coffee);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.8);
}

.booking-panel .button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.08);
}

.patch-section {
  min-height: 480px;
  display: grid;
  align-items: center;
  padding: clamp(70px, 10vw, 124px) clamp(20px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(248, 239, 229, 0.98), rgba(248, 239, 229, 0.84), rgba(248, 239, 229, 0.62)),
    url("https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.patch-content {
  width: min(700px, 100%);
}

.patch-content p:not(.eyebrow) {
  font-size: 1.08rem;
  color: rgba(47, 33, 26, 0.78);
}

.faq-section {
  background:
    radial-gradient(circle at top left, rgba(195, 151, 86, 0.16), transparent 32%),
    linear-gradient(180deg, var(--cream), var(--white));
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-item {
  border: 1px solid rgba(92, 63, 46, 0.14);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 44px rgba(90, 61, 39, 0.08);
}

.faq-item summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 22px 64px 22px 24px;
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border: 1px solid rgba(92, 63, 46, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coffee);
  font-family: var(--sans);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item div {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item p {
  margin: 0 0 14px;
  line-height: 1.75;
}

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

.faq-item ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.faq-item li {
  position: relative;
  padding-left: 20px;
  line-height: 1.55;
}

.faq-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.faq-item .button {
  margin-top: 8px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(92, 63, 46, 0.11);
  border-radius: 8px;
  background: var(--cream);
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 12px 0 0;
  text-decoration: none;
  color: rgba(47, 33, 26, 0.78);
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--coffee);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--coffee);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(92, 63, 46, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(168, 121, 68, 0.2);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--coffee);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 34px clamp(20px, 7vw, 96px);
  background: var(--deep);
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.footer-legal {
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-legal strong,
.footer-legal b {
  color: var(--white);
}

.footer-legal a {
  color: rgba(255, 253, 248, 0.78);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #d8bd91;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 253, 248, 0.82);
}

.footer-links a:hover {
  color: #d8bd91;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    color: var(--deep);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .intro-band,
  .price-layout,
  .about-section,
  .booking-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .fresha-menu {
    grid-template-columns: 1fr;
  }

  .laser-area-row,
  .microneedling-row {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 58px;
    height: 40px;
  }

  .brand strong {
    max-width: 170px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 20px 56px;
  }

  .hero-logo {
    width: min(320px, 78vw);
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
  }

  .hero-actions,
  .booking-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .intro-item {
    padding: 24px 20px;
  }

  .section {
    padding: 62px 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .price-table div {
    grid-template-columns: 1fr;
  }

  .menu-category {
    display: grid;
    align-items: start;
  }

  .menu-category h3 {
    text-align: left;
  }

  .fresha-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-table strong {
    text-align: left;
  }

  .faq-item summary {
    padding: 20px 58px 20px 20px;
  }

  .faq-item div {
    padding: 0 20px 22px;
  }

  .faq-item ul {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
  }
}
