:root {
  --ink: #24211f;
  --muted: #6f6962;
  --paper: #fbfaf7;
  --soft: #f0ebe4;
  --sage: #526b5d;
  --rose: #c48878;
  --line: #ddd5cb;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span {
  margin: 0 0;
}

.menu-toggle::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-toggle::after {
  position: absolute;
  transform: translateY(6px);
}

.site-header.menu-open .menu-toggle span {
  opacity: 0;
}

.site-header.menu-open .menu-toggle::before {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 9px 12px;
}

nav a:hover,
.text-link:hover {
  color: var(--sage);
}

nav a[aria-current="page"] {
  color: var(--white);
  background: var(--sage);
}

.book-link {
  border: 1px solid var(--line);
}

.book-link[aria-current="page"] {
  border-color: var(--sage);
}

.button {
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1f211f;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  opacity: 0.74;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 72px;
  color: var(--white);
}

.hero h1,
.page-hero h1 {
  margin: 8px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  color: var(--white);
  background: var(--sage);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.icon-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.intro,
.split,
.page-hero,
.contact-layout,
.reviews,
.price-panel,
.certification,
.gallery-grid,
.service-list,
.escort-services {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 8px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.service-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.service-grid article,
.service-list article,
.review-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-grid img,
.service-list img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-grid h3,
.service-grid p,
.service-list h2,
.service-list p,
.review-card,
.contact-card {
  padding-left: 20px;
  padding-right: 20px;
}

.service-grid p,
.service-list p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 70px 0 90px;
}

.split img,
.price-panel img,
.certification img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.certificate-stack {
  display: grid;
  gap: 18px;
}

.certificate-stack img {
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}

.split img {
  aspect-ratio: 4 / 5;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  color: var(--sage);
}

.page-hero {
  padding: 70px 0 34px;
}

.page-hero p {
  max-width: 690px;
  color: var(--muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0 84px;
}

.service-list article {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
}

.escort-services {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: 0 0 88px;
}

.escort-services > div:first-child {
  position: sticky;
  top: 104px;
}

.escort-services p {
  color: var(--muted);
}

.escort-services h2 {
  max-width: 560px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(196, 136, 120, 0.12), transparent 30%),
    var(--white);
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.9);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.gallery-grid {
  padding: 20px 0 84px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid a:hover img {
  transform: scale(1.03);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding: 20px 0 84px;
}

.contact-card {
  padding-top: 22px;
  padding-bottom: 22px;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sage);
  font-weight: 700;
}

.contact-card a:last-child {
  border-bottom: 0;
}

.contact-link svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-link span {
  overflow-wrap: anywhere;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: var(--paper);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 20px 0 40px;
}

.review-card {
  padding-top: 20px;
  padding-bottom: 20px;
}

.stars {
  color: var(--rose);
  font-weight: 800;
}

.review-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.price-panel,
.certification {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 36px;
  padding: 20px 0 84px;
}

.certificates-only {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 78px) 0 92px;
}

.certificates-only .certificate-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.certificate-frame {
  position: relative;
  padding: clamp(14px, 2.2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(196, 136, 120, 0.14), transparent 32%),
    var(--white);
  box-shadow: 0 20px 60px rgba(55, 47, 39, 0.1);
}

.certificate-frame a {
  display: block;
}

.certificate-frame img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(36, 33, 31, 0.06);
  transition: transform 180ms ease;
}

.certificate-frame:hover img {
  transform: scale(1.01);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(20, 22, 20, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.lightbox button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 25px;
  line-height: 1;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 64px 12px 84px;
  }

  .lightbox img {
    max-height: 76vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-experience {
  align-items: start;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 58px);
  padding-top: 24px;
}

.price-visual {
  position: sticky;
  top: 104px;
  align-self: start;
}

.price-visual img {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 28px 70px rgba(55, 47, 39, 0.14);
}

.price-visual-note {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-visual-note span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.price-content {
  min-width: 0;
}

.price-content h2 {
  max-width: 680px;
}

.price-intro {
  max-width: 680px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.price-list.detailed .price-row {
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(55, 47, 39, 0.06);
}

.price-list.detailed .price-row span {
  display: grid;
  gap: 6px;
}

.price-list.detailed .price-row b {
  font-size: 17px;
  line-height: 1.25;
}

.price-list.detailed .price-row small,
.booking-details p {
  color: var(--muted);
}

.price-list.detailed .price-row strong {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.booking-details {
  margin: 22px 0 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.booking-details h3 {
  margin-top: 0;
}

.booking-details p {
  margin: 8px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding: 12px 0 4px;
  }

  .site-header.menu-open nav {
    display: grid;
  }

  nav a {
    display: block;
    padding: 12px 14px;
  }

  .hero-content .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-icons {
    order: 1;
  }

  .hero-content .button.primary {
    order: 2;
  }

  .hero {
    min-height: 620px;
  }

  .intro,
  .split,
  .contact-layout,
  .price-panel,
  .certificates-only,
  .certification {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid,
  .reviews,
  .service-list,
  .escort-services,
  .certificates-only .certificate-stack {
    grid-template-columns: 1fr;
  }

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

  .escort-services > div:first-child {
    position: static;
  }

  .price-experience {
    gap: 24px;
  }

  .price-visual {
    position: static;
  }

  .price-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .price-list.detailed .price-row {
    flex-direction: column;
    gap: 14px;
  }

  .price-list.detailed .price-row strong {
    font-size: 22px;
  }
}
