:root {
  --ink: #28151f;
  --muted: #7d6471;
  --paper: #fff7fb;
  --soft: #f7e4ee;
  --sage: #0f766e;
  --rose: #d6487c;
  --line: #ead0dd;
  --white: #fff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #fff0f7;
    --muted: #c7a8b7;
    --paper: #150d13;
    --soft: #271721;
    --sage: #2db6a8;
    --rose: #ff6fa3;
    --line: #4a2a3a;
    --white: #1e121a;
  }
}

[data-theme="dark"] {
  --ink: #fff0f7;
  --muted: #c7a8b7;
  --paper: #150d13;
  --soft: #271721;
  --sage: #2db6a8;
  --rose: #ff6fa3;
  --line: #4a2a3a;
  --white: #1e121a;
}

[data-theme="light"] {
  --ink: #28151f;
  --muted: #7d6471;
  --paper: #fff7fb;
  --soft: #f7e4ee;
  --sage: #0f766e;
  --rose: #d6487c;
  --line: #ead0dd;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

main,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
}

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);
  transition: background-color 300ms ease, border-color 300ms ease;
}

[data-theme="dark"] .site-header {
  background: rgba(26, 24, 21, 0.94);
}

.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);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 300ms ease, background-color 300ms ease, color 300ms ease;
  padding: 0;
  font-size: 20px;
}

.theme-toggle:hover {
  border-color: var(--muted);
}

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

.brand span {
  min-width: 0;
}

.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);
}

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

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

.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(33, 13, 27, 0.06), rgba(33, 13, 27, 0.72));
}

.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,
.escort-services,
.contact-layout,
.reviews,
.price-panel,
.certification,
.gallery-grid,
.service-list {
  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;
}

.escort-services {
  padding: 18px 0 10px;
}

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

.escort-services p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
}

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

.service-list img {
  width: 100%;
  height: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.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;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

:where(input, textarea, select):focus-visible {
  border-color: var(--sage);
  outline-offset: 2px;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  line-height: 1.45;
}

.checkbox-label input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 4px;
}

.checkbox-label a,
.age-gate a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 12, 19, 0.88);
}

.age-gate-panel {
  width: min(540px, 100%);
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.age-gate-panel h2 {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
}

.age-gate-panel p:not(.eyebrow) {
  color: var(--muted);
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.age-gate .button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}

.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;
}

.form-honeypot {
  display: none;
}

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

.price-panel img {
  position: sticky;
  top: 106px;
}

.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(216, 72, 124, 0.16), transparent 32%),
    var(--white);
  box-shadow: 0 20px 60px rgba(87, 25, 54, 0.12);
}

.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(24, 12, 19, 0.9);
}

.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-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.investment-content h2 {
  margin-top: 0;
}

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

.investment-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.investment-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.investment-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

.investment-heading strong {
  flex: 0 0 auto;
  color: var(--sage);
  font-size: 20px;
}

.investment-item p,
.booking-details p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.booking-details h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.detail-signature {
  color: var(--sage);
  font-weight: 800;
}

.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;
}

.pricing-teaser {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 84px;
  border-top: 1px solid var(--line);
}

.pricing-teaser > div {
  max-width: 720px;
}

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.teaser-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--sage);
  margin-bottom: 8px;
}

.teaser-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.legal-content {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-content article {
  color: var(--ink);
}

.legal-content h2 {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 20px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin: 8px 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--sage);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--rose);
}

@media (max-width: 860px) {
  main,
  .site-header,
  .site-footer,
  .hero {
    width: 100vw;
    max-width: 100vw;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 10px;
  }

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

  .site-footer div {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
    max-width: calc(100% - 108px);
    font-size: 12px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .menu-toggle,
  .theme-toggle {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
  }

  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: 560px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1;
  }

  .hero-content {
    width: calc(100vw - 28px);
    margin: 0 14px 48px;
  }

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

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

  .pricing-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .price-panel img {
    position: static;
  }

  .investment-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
