:root {
  --cream: #f8f4eb;
  --linen: #efe8dc;
  --blue: #b9d8dd;
  --blue-dark: #6f9ca4;
  --gold: #d59a3b;
  --coral: #e9b49d;
  --ink: #252522;
  --muted: #706b62;
  --surface: rgba(255, 252, 246, 0.86);
  --line: rgba(37, 37, 34, 0.14);
  --shadow: 0 24px 70px rgba(54, 45, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(185, 216, 221, 0.32), transparent 34%),
    linear-gradient(180deg, var(--cream), #fffaf2 42%, var(--linen));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(213, 154, 59, 0.46);
  outline-offset: 3px;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.demo-banner {
  margin: 0;
  padding: 9px 16px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fffaf2;
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(37, 37, 34, 0.08);
  background: rgba(248, 244, 235, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold);
  background: #fffaf3;
  box-shadow: 0 12px 32px rgba(54, 45, 32, 0.08);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.nav-cta,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.nav-cta {
  padding: 8px 15px;
  color: #fffaf2;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 82px) 0 50px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -28%;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(185, 216, 221, 0.56);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.05fr) minmax(320px, 470px);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  width: max-content;
  max-width: 100%;
  font-size: clamp(3.2rem, 4.6vw, 4.75rem);
  line-height: 1;
  white-space: nowrap;
}

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

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  padding: 12px 18px;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fffaf2;
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(213, 154, 59, 0.24);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 0;
}

.hero-facts div,
.service-card,
.booking-card,
.request-form,
.trust-list li,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(54, 45, 32, 0.08);
}

.hero-facts div {
  padding: 14px;
}

dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.inline-link {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 3px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-media {
  position: relative;
  min-height: 590px;
}

.poster-shell {
  position: absolute;
  inset: 0 28px 72px 0;
  overflow: hidden;
  border: 10px solid rgba(255, 252, 246, 0.86);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.poster-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 45%;
  filter: saturate(0.92) contrast(0.98);
}

.booking-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, 78%);
  padding: 20px;
}

.booking-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 500;
}

.booking-card span,
.trust-list span,
.section-heading p,
.appointment-copy p,
.footer-grid p {
  color: var(--muted);
}

.service-band,
.appointment-section {
  padding: 76px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: grid;
  gap: 16px;
  min-height: 250px;
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf2;
  background: var(--blue-dark);
  font-weight: 900;
}

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

.trust-section {
  padding: 80px 0;
  background: #fffaf3;
  border-top: 1px solid rgba(37, 37, 34, 0.08);
  border-bottom: 1px solid rgba(37, 37, 34, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.trust-grid > div {
  display: grid;
  gap: 18px;
}

.trust-grid > div p {
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.trust-list strong {
  font-size: 1.05rem;
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.appointment-copy {
  display: grid;
  gap: 20px;
}

.contact-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.contact-panel a,
.contact-panel span {
  overflow-wrap: anywhere;
}

.booking-widget,
.modal-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(54, 45, 32, 0.08);
}

.booking-widget {
  gap: 20px;
  padding: 22px;
}

.widget-head {
  display: grid;
  gap: 4px;
}

.widget-head p,
.modal-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.widget-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 500;
}

.widget-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.widget-head-row strong {
  font-size: 1.2rem;
}

.widget-head-row span {
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: rgba(185, 216, 221, 0.25);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-choice,
.slot-grid {
  display: grid;
  gap: 10px;
}

.service-option,
.slot-grid button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-option {
  display: grid;
  gap: 3px;
}

.service-option span,
.slot-grid strong {
  font-weight: 900;
}

.service-option small {
  color: var(--muted);
}

.service-option:hover,
.service-option:focus-visible,
.slot-grid button:hover,
.slot-grid button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(213, 154, 59, 0.48);
}

.service-option.is-selected {
  border-color: rgba(111, 156, 164, 0.55);
  background: rgba(185, 216, 221, 0.24);
}

.slot-panel {
  display: grid;
  gap: 12px;
}

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

.slot-grid button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 34, 0.42);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  gap: 16px;
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-card h2 {
  padding-right: 44px;
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.modal-summary,
.modal-success {
  color: var(--muted);
}

.modal-form {
  display: grid;
  gap: 13px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(37, 37, 34, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf3;
}

textarea {
  resize: vertical;
}

.modal-success {
  border: 1px dashed rgba(111, 156, 164, 0.55);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(185, 216, 221, 0.18);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(37, 37, 34, 0.08);
  background: var(--ink);
  color: #fffaf2;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-grid p:last-child {
  text-align: right;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  h1 {
    width: auto;
    white-space: normal;
  }

  .hero-grid,
  .section-heading,
  .trust-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

  .poster-shell {
    inset: 0 0 72px;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 22px, 1120px);
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-media {
    min-height: 440px;
  }

  .poster-shell {
    border-width: 7px;
  }

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

  .footer-grid p:last-child {
    text-align: left;
  }
}
