:root {
  --ink: #20191d;
  --muted: #695d62;
  --paper: #fffaf7;
  --white: #ffffff;
  --rose: #d98798;
  --rose-dark: #a84560;
  --sage: #627b65;
  --mint: #dce8dc;
  --clay: #b46a4c;
  --gold: #b08a44;
  --charcoal: #342931;
  --line: rgba(32, 25, 29, 0.14);
  --shadow: 0 18px 55px rgba(32, 25, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 30px);
  width: 100%;
  padding: 22px clamp(18px, 3.2vw, 46px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 8px 28px rgba(32, 25, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 1rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 4px;
  opacity: 0.84;
  white-space: nowrap;
}

.site-nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid currentColor;
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  flex: 0 0 auto;
  min-width: 118px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 25, 29, 0.82), rgba(32, 25, 29, 0.38) 47%, rgba(32, 25, 29, 0.1));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 108px);
  padding-top: 58px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5dd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.button.primary {
  border-color: var(--rose-dark);
  color: var(--white);
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.button.ghost {
  color: var(--rose-dark);
  background: transparent;
}

.text-link {
  color: var(--rose-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.experience,
.contact,
.testimonials,
.price-section,
.trust,
.location-section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 278px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(32, 25, 29, 0.05);
}

.service-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card strong {
  color: var(--rose-dark);
}

.price-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 660px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.price-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.price-section .eyebrow {
  color: #f5c8d1;
}

.price-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.price-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.6fr;
  gap: 16px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
}

.price-row:first-child {
  border-top: 0;
}

.price-head {
  color: #f5c8d1;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-row strong {
  color: #ffffff;
  text-align: right;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--mint);
}

.experience-copy {
  max-width: 720px;
}

.experience-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: #39443a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.check-list,
.trust-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.trust-list li {
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}

.check-list li::before,
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 2px;
  background: var(--sage);
}

.appointment-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage);
  box-shadow: var(--shadow);
}

.appointment-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.appointment-panel h3 {
  margin-bottom: 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.appointment-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.appointment-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.appointment-panel dt {
  color: rgba(255, 255, 255, 0.72);
}

.appointment-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 680px);
  gap: clamp(28px, 6vw, 78px);
  background: #f7ece7;
}

.trust-list {
  margin-top: 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
}

.testimonials blockquote {
  margin: 0;
  padding: 34px;
  border-radius: 8px;
  background: var(--paper);
}

.testimonials p {
  margin-bottom: 18px;
  color: #41383c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.testimonials cite {
  color: var(--rose-dark);
  font-style: normal;
  font-weight: 900;
}

.location-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.location-section article {
  padding: clamp(34px, 6vw, 70px);
  background: var(--white);
}

.location-section p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 540px);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 42px rgba(32, 25, 29, 0.08);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 135, 152, 0.3);
  border-color: var(--rose);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--sage);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

.verification-question {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 14px;
  }

  .intro-band,
  .testimonials,
  .experience,
  .contact,
  .price-section,
  .trust,
  .location-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 86vh;
    align-items: end;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(32, 25, 29, 0.88), rgba(32, 25, 29, 0.3));
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 118px 18px 52px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

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

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .site-footer {
    display: grid;
  }
}
