: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: 74px;
  height: 58px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 760px) {
  .brand img {
    width: 92px;
    height: 68px;
  }
}

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


.home-video-showcase {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(196, 136, 120, 0.28);
  background:
    radial-gradient(circle at top left, rgba(196, 136, 120, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(240,235,228,0.62));
  box-shadow: 0 24px 70px rgba(36, 33, 31, 0.14);
  padding: clamp(10px, 2vw, 18px);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 22px;
  pointer-events: none;
  z-index: 1;
}

.home-feature-video {
  display: block;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  background: #1f211f;
}

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


.image-frame {
  margin: 0;
  display: block;
}

.image-frame img {
  display: block;
}

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

.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 .contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sage);
  font-weight: 700;
}

.contact-card .contact-link: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: 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(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-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;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer span {
  color: inherit;
}

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

  .home-video-showcase {
    padding-bottom: 48px;
  }

  .home-feature-video {
    aspect-ratio: 4 / 5;
    max-height: 680px;
  }


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

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

  .price-panel img {
    position: static;
  }

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

/* Empty image placeholders used while gallery photos are being replaced */
.image-placeholder,
.gallery-placeholder {
  min-height: 220px;
  border: 1px dashed rgba(201, 169, 106, .45);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201, 169, 106, .12), rgba(255, 255, 255, .04));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  box-shadow: inset 0 0 35px rgba(201, 169, 106, .08);
}
.gallery-placeholder {
  grid-column: 1 / -1;
}
.service-list article .image-placeholder,
.service-grid article .image-placeholder {
  min-height: 180px;
}
.price-panel .image-placeholder,
.split .image-placeholder {
  min-height: 280px;
}

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

.compact-hero {
  margin-top: 1.5rem;
}

.booking-note {
  margin-bottom: 4rem;
}

/* First-visit welcome disclaimer */
.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.disclaimer-modal.is-visible {
  display: flex;
}

.disclaimer-card {
  width: min(92vw, 590px);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(201, 169, 106, 0.55);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 44px);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 106, 0.20), transparent 36%),
    linear-gradient(145deg, #ffffff, #fff8eb);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48), 0 0 46px rgba(201, 169, 106, 0.18);
  text-align: center;
  color: #070707;
}

.disclaimer-kicker {
  margin: 0 0 10px;
  color: #8b6f4e;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.disclaimer-card h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.72rem, 7vw, 3rem);
  line-height: 1.05;
  color: #070707;
}

.disclaimer-card h3 {
  margin: 0 0 18px;
  color: #8b6f4e;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclaimer-card p {
  margin: 0 auto 15px;
  max-width: 49ch;
  color: rgba(7, 7, 7, 0.84);
  line-height: 1.75;
  font-weight: 500;
}

.disclaimer-card .disclaimer-policy {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(7, 7, 7, 0.68);
  font-weight: 700;
}

.disclaimer-continue {
  width: 100%;
  max-width: 260px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #c9a96a, #8b6f4e);
  color: #070707;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(201, 169, 106, 0.28);
}

.disclaimer-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(201, 169, 106, 0.36);
}

body.disclaimer-locked {
  overflow: hidden;
}

.gallery-empty {
  min-height: 240px;
  border: 1px dashed rgba(201,169,106,.45);
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(245,234,216,.78);
  background: rgba(255,255,255,.04);
}
.hero-placeholder {
  min-height: 420px;
}


/* Premium Duration & Rate section */
.luxury-rates-hero,
.luxury-rates-section,
.service-includes-section,
.extras-section,
.booking-policy-card {
  --bg: #070707;
  --panel: rgba(255,255,255,0.06);
  --panel-border: rgba(201,169,106,0.28);
  --gold: #c9a96a;
  --cream: #f5ead8;
  --muted: rgba(245,234,216,0.72);
  --soft-brown: #8b6f4e;
}

.luxury-rates-hero {
  padding: 120px clamp(18px, 6vw, 90px) 58px;
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(201,169,106,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(139,111,78,0.16), transparent 40%),
    #070707;
}

.lux-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(201,169,106,0.45);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(201,169,106,0.08);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.luxury-rates-hero h1,
.service-includes-section h2,
.extras-section h2,
.booking-policy-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 7vw, 76px);
  line-height: .95;
  color: var(--cream);
}

.luxury-rates-hero p {
  max-width: 860px;
  margin: 22px auto 0;
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
}

.luxury-rates-section,
.service-includes-section,
.extras-section,
.booking-policy-card {
  padding: 62px clamp(16px, 5vw, 80px);
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(201,169,106,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(139,111,78,0.16), transparent 40%),
    #070707;
}

.rate-grid,
.service-include-grid,
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.rate-card,
.service-include-card,
.extra-card,
.booking-policy-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 169, 106, 0.28);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.rate-card {
  padding: 24px;
}

.rate-card:hover,
.service-include-card:hover,
.extra-card:hover,
.booking-policy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,106,0.7);
  box-shadow: 0 24px 80px rgba(201,169,106,0.18);
}

.rate-top,
.extra-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rate-top span {
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rate-top strong,
.extra-card strong {
  background: linear-gradient(135deg, #f5ead8, #c9a96a, #8b6f4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 900;
}

.rate-card h3,
.service-include-card h3,
.extra-card h3 {
  margin: 18px 0 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.1;
}

.gold-line {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, transparent, rgba(201,169,106,0.82), transparent);
}

.rate-card p,
.service-include-card p,
.extra-card p,
.booking-policy-card p,
.custom-note {
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.rate-btn {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9a96a, #8b6f4e);
  color: #070707;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(201,169,106,0.25);
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
}

.custom-note {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(201,169,106,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  text-align: center;
}

.service-includes-section,
.extras-section {
  text-align: center;
}

.service-includes-section h2,
.extras-section h2 {
  margin-bottom: 28px;
}

.service-include-card,
.extra-card {
  padding: 24px;
  text-align: left;
}

.booking-policy-card {
  max-width: 1040px;
  margin: 0 auto 68px;
}

.policy-btn {
  margin-top: 12px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .luxury-rates-hero { padding-top: 96px; }
  .rate-grid, .service-include-grid, .extras-grid { grid-template-columns: 1fr; }
  .rate-card, .service-include-card, .extra-card { border-radius: 20px; padding: 20px; }
  .rate-top { align-items: flex-start; flex-direction: column; gap: 6px; }
}


/* About Tianna page */
.home-about-tianna,
.about-tianna-hero,
.about-tianna-story,
.about-values-grid,
.about-signature-card {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.home-about-tianna {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(52px, 7vw, 96px) 0 24px;
}

.home-about-tianna .about-copy,
.about-hero-copy {
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(221,213,203,0.9);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 24px 70px rgba(36,33,31,0.10);
}

.home-about-tianna h2,
.about-tianna-story h2,
.about-signature-card h2 {
  margin: 8px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
}

.about-feature-image img,
.about-hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-tianna-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(48px, 7vw, 94px) 0 clamp(28px, 5vw, 70px);
}

.about-tianna-hero h1 {
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.about-tianna-story {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  padding: clamp(28px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: clamp(42px, 6vw, 80px) 0;
}

.about-values-grid article {
  min-height: 260px;
  border: 1px solid rgba(221,213,203,0.95);
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(240,235,228,0.66));
  box-shadow: 0 18px 56px rgba(36,33,31,0.08);
}

.about-values-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 22px;
}

.about-values-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.about-values-grid p,
.about-tianna-story p,
.about-signature-card p,
.home-about-tianna p {
  color: var(--muted);
}

.about-signature-card {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 96px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  border: 1px solid rgba(201,169,106,0.35);
  background:
    radial-gradient(circle at top left, rgba(201,169,106,0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,235,228,0.84));
  box-shadow: 0 28px 80px rgba(36,33,31,0.12);
}

.about-signature-card p {
  max-width: 760px;
  margin: 0 auto 24px;
}

@media (max-width: 920px) {
  .home-about-tianna,
  .about-tianna-hero,
  .about-tianna-story {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .home-about-tianna .about-copy,
  .about-hero-copy,
  .about-signature-card {
    border-radius: 24px;
  }
}

/* Expanded About Tianna profile content */
.about-longform-card,
.about-profile-grid,
.about-offer-card {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.about-profile-hero {
  padding-bottom: clamp(30px, 5vw, 72px);
}

.about-tianna-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-longform-card,
.about-offer-card {
  border: 1px solid rgba(221,213,203,0.9);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(201,169,106,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(240,235,228,0.72));
  box-shadow: 0 24px 72px rgba(36,33,31,0.10);
  padding: clamp(26px, 5vw, 58px);
  margin-bottom: clamp(32px, 5vw, 70px);
}

.about-longform-card h2,
.about-offer-card h2 {
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.about-longform-card p,
.about-offer-card p,
.about-detail-card p {
  color: var(--muted);
  line-height: 1.82;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 70px);
}

.about-detail-card {
  border: 1px solid rgba(221,213,203,0.92);
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(240,235,228,0.66));
  box-shadow: 0 18px 54px rgba(36,33,31,0.08);
}

.about-detail-card.wide {
  grid-column: span 2;
}

.about-detail-card span {
  display: block;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-detail-card strong,
.about-detail-card h3 {
  display: block;
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
  color: var(--ink);
}

.about-offer-card h3 {
  margin-top: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
}

.about-offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.about-offer-list li {
  position: relative;
  border: 1px solid rgba(201,169,106,0.28);
  border-radius: 18px;
  padding: 16px 16px 16px 44px;
  background: rgba(255,255,255,0.55);
  color: var(--muted);
  line-height: 1.55;
}

.about-offer-list li::before {
  content: "✦";
  position: absolute;
  left: 18px;
  top: 16px;
  color: #c9a96a;
}

@media (max-width: 920px) {
  .about-profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-detail-card.wide {
    grid-column: span 2;
  }
  .about-offer-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .about-profile-grid {
    grid-template-columns: 1fr;
  }
  .about-detail-card.wide {
    grid-column: auto;
  }
  .about-longform-card,
  .about-offer-card {
    border-radius: 24px;
  }
}

/* Make Booking Policy note readable with black text */
.booking-policy-card {
  background: rgba(245, 234, 216, 0.94) !important;
  border-color: rgba(201,169,106,0.55) !important;
  color: #070707 !important;
}

.booking-policy-card h2,
.booking-policy-card p {
  color: #070707 !important;
}

.booking-policy-card .policy-btn {
  color: #070707 !important;
}

/* Hidden Terms & Conditions page/section - matched to home theme */
.terms-hero,
.terms-shell,
.hidden-terms-section {
  --terms-ink: var(--ink);
  --terms-muted: var(--muted);
  --terms-paper: var(--paper);
  --terms-soft: var(--soft);
  --terms-line: var(--line);
  --terms-gold: #c9a96a;
}

.terms-hero {
  padding: 120px clamp(18px, 6vw, 90px) 54px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(196,136,120,0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(82,107,93,0.12), transparent 38%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.terms-hero .eyebrow,
.hidden-terms-inner .eyebrow {
  color: var(--sage);
}

.terms-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 8vw, 84px);
  line-height: .95;
}

.terms-hero p {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
}

.terms-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 56px clamp(16px, 5vw, 80px) 78px;
  background:
    radial-gradient(circle at top right, rgba(196,136,120,0.10), transparent 34%),
    linear-gradient(180deg, var(--paper), var(--soft));
}

.terms-card,
.hidden-terms-inner {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(36,33,31,0.10);
  padding: 24px;
}

.terms-card h2,
.hidden-terms-inner h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1.15;
}

.terms-card p,
.hidden-terms-inner p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.terms-list {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.terms-list li {
  margin: 6px 0;
}

.terms-highlight {
  border-color: rgba(196,136,120,0.38);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(240,235,228,0.72));
}

.terms-card .rate-btn,
.hidden-terms-inner .rate-btn {
  display: inline-flex;
  margin-top: 8px;
}

.hidden-terms-section {
  display: none;
  padding: 90px clamp(16px, 5vw, 80px);
  background:
    radial-gradient(circle at top left, rgba(196,136,120,0.14), transparent 35%),
    var(--paper);
}

.hidden-terms-section:target {
  display: block;
}

.hidden-terms-inner {
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .terms-shell { grid-template-columns: 1fr; }
  .terms-card, .hidden-terms-inner { border-radius: 20px; padding: 20px; }
}

/* Price page: match the soft Tianna home theme */
.luxury-rates-hero,
.luxury-rates-section,
.service-includes-section,
.extras-section,
.booking-policy-card {
  --gold: #c9a96a;
  --cream: var(--ink);
  --muted: var(--muted);
  --soft-brown: #8b6f4e;
}

.luxury-rates-hero {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at top left, rgba(196,136,120,0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(82,107,93,0.14), transparent 40%),
    var(--paper) !important;
}

.luxury-rates-section,
.service-includes-section,
.extras-section {
  color: var(--ink) !important;
  background:
    linear-gradient(180deg, var(--paper), var(--soft)) !important;
}

.luxury-rates-hero h1,
.service-includes-section h2,
.extras-section h2,
.booking-policy-card h2,
.rate-card h3,
.service-include-card h3,
.extra-card h3 {
  color: var(--ink) !important;
}

.luxury-rates-hero p,
.rate-card p,
.service-include-card p,
.extra-card p,
.booking-policy-card p,
.custom-note,
.rate-top span {
  color: var(--muted) !important;
}

.lux-badge {
  color: var(--sage) !important;
  border-color: rgba(82,107,93,0.24) !important;
  background: rgba(82,107,93,0.09) !important;
}

.rate-card,
.service-include-card,
.extra-card,
.booking-policy-card,
.custom-note {
  background: rgba(255,255,255,0.78) !important;
  border: 1px solid rgba(221,213,203,0.92) !important;
  box-shadow: 0 24px 70px rgba(36,33,31,0.10) !important;
  backdrop-filter: blur(16px);
}

.rate-card:hover,
.service-include-card:hover,
.extra-card:hover,
.booking-policy-card:hover {
  border-color: rgba(201,169,106,0.58) !important;
  box-shadow: 0 24px 76px rgba(36,33,31,0.16), 0 0 0 1px rgba(201,169,106,0.20) !important;
}

.rate-top strong,
.extra-card strong {
  background: linear-gradient(135deg, var(--sage), #c9a96a, var(--rose)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.gold-line {
  background: linear-gradient(90deg, transparent, rgba(201,169,106,0.72), transparent) !important;
}

.rate-btn {
  background: linear-gradient(135deg, var(--sage), #8b6f4e) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 34px rgba(82,107,93,0.24) !important;
}

.booking-policy-card {
  color: var(--ink) !important;
}


/* FAQ page - matched to Tianna’s Wellness Haven theme */
.faq-hero {
  padding: 112px clamp(18px, 6vw, 90px) 54px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(196,136,120,0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(82,107,93,0.12), transparent 38%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.faq-photo-wrap {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  border-radius: 34px;
  padding: 10px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(196,136,120,0.25);
  box-shadow: 0 24px 70px rgba(36,33,31,0.12);
}

.faq-feature-photo {
  display: block;
  width: 100%;
  height: clamp(300px, 52vw, 620px);
  object-fit: cover;
  border-radius: 26px;
}

.faq-hero .eyebrow { color: var(--sage); }

.faq-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 8vw, 84px);
  line-height: .95;
}

.faq-hero p {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
}

.faq-quote {
  width: min(900px, 100%);
  margin: 28px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(196,136,120,0.22);
  box-shadow: 0 18px 54px rgba(36,33,31,0.08);
}

.faq-quote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.55;
}

.faq-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--sage);
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 78px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(36,33,31,0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-weight: 850;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--sage));
  box-shadow: 0 8px 24px rgba(82,107,93,0.18);
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.form-status-message {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(201, 169, 106, 0.35);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(60, 44, 28, 0.12);
  color: #1d1712;
}

.form-status-message strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.form-status-message span {
  display: block;
  color: rgba(29, 23, 18, 0.78);
  line-height: 1.55;
}

.form-status-message.is-loading,
.form-status-message.is-success,
.form-status-message.is-error {
  display: block;
}

.form-status-message.is-success {
  border-color: rgba(88, 132, 76, 0.45);
  background: rgba(245, 250, 241, 0.95);
}

.form-status-message.is-error {
  border-color: rgba(150, 59, 59, 0.42);
  background: rgba(255, 246, 246, 0.96);
}

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