/* ==========================================================================
   Dawrung — style.css
   Design tokens: burgundy #3A0C18 / cream #F5F0EA / gold #C9A15B
   ========================================================================== */

:root {
  --color-bg: #F5F0EA;
  --color-burgundy: #3A0C18;
  --color-burgundy-light: #4C1522;
  --color-gold: #C9A15B;
  --color-gold-dark: #8a6a30;
  --color-text: #262222;
  --color-text-soft: rgba(38, 34, 34, 0.8);
  --color-text-softer: rgba(38, 34, 34, 0.65);
  --color-text-faint: rgba(38, 34, 34, 0.6);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-body);
  color: var(--color-text);
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }

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

section, .section { scroll-margin-top: 80px; }

/* ---------- Header ---------- */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-burgundy);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 200;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex: none;
}

.logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--color-gold);
  letter-spacing: 0.5px;
}

.logo-rule {
  width: 34px;
  height: 1px;
  background: var(--color-gold);
  margin-top: 6px;
  opacity: 0.7;
}

.burger-btn {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-bar {
  width: 24px;
  height: 1.5px;
  background: #fff;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}

.burger-btn.is-open .burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.is-open .burger-bar:nth-child(2) { opacity: 0; }
.burger-btn.is-open .burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 4, 8, 0.4);
  z-index: 190;
  display: none;
}
.nav-overlay.is-open { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 84vw);
  background: var(--color-burgundy);
  z-index: 195;
  display: flex;
  flex-direction: column;
  padding: 90px 34px 40px;
  gap: 28px;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer a {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.2px;
}

.nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 6px 0;
}

.lang-switch {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.lang-switch button.is-active {
  color: var(--color-gold);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #2c0a12, #3A0C18 55%, #3A0C18);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-copy { padding: 20px clamp(20px, 6vw, 60px) 60px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  margin: 0;
}
.hero-title .line-1 { color: var(--color-gold); }
.hero-title .line-2 { color: #ffffff; }

.hero-rule {
  width: 70px;
  height: 1px;
  background: var(--color-gold);
  margin: 26px 0;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--color-gold);
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-image {
  aspect-ratio: 4 / 5;
  min-width: 280px;
  position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Buttons ---------- */
.btn-solid {
  background: var(--color-gold);
  color: var(--color-burgundy);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-outline.small {
  font-size: 12.5px;
  padding: 9px 20px;
}

.link-underline {
  font-size: 13.5px;
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.2px;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--color-burgundy-light);
  padding: 24px clamp(16px, 5vw, 60px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item svg { flex: none; }

.trust-title { color: #fff; font-size: 14.5px; font-weight: 600; }
.trust-sub { color: rgba(255, 255, 255, 0.6); font-size: 12.5px; }

.trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Generic section layout ---------- */
.section-pad {
  background: var(--color-bg);
  padding: 64px clamp(20px, 6vw, 60px);
}

/* Reduced top gap specifically between the About section and the
   "Erotic Massage" heading — was 64px (About bottom) + 64px (this
   section's default top) = 128px, felt too spacious. */
#erotic {
  padding-top: 32px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--color-text);
  text-align: center;
  margin: 0 0 18px;
}

.section-rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 30px;
}

.body-copy {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-soft);
  margin: 0 0 18px;
}

/* ---------- About ---------- */
.about-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#about .section-rule {
  margin-bottom: 38px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 30px auto 38px;
}

.about-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e0d6;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 560px) {
  .about-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 26px auto 32px;
  }
}

.about-cta {
  margin-bottom: 0;
}

.why-block {
  margin-top: 72px;
}

@media (max-width: 640px) {
  .why-block { margin-top: 56px; }
}

.why-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 14px;
}

.why-intro {
  font-size: 15px;
  color: var(--color-text-softer);
  max-width: 560px;
  margin: 0 auto 44px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 38px 34px;
  text-align: left;
  max-width: 1100px;
  margin: 56px auto 0;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item svg { flex: none; margin-top: 2px; }
.why-item-title { font-weight: 600; font-size: 15px; color: var(--color-text); margin-bottom: 5px; }
.why-item-desc { font-size: 13.5px; color: rgba(38, 34, 34, 0.68); line-height: 1.55; }

/* ---------- Erotic massage ---------- */
.erotic-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}

.erotic-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--color-text);
  margin: 0 0 20px;
}

.erotic-image {
  aspect-ratio: 4 / 5;
  position: relative;
  background: #e7e0d6;
}
.erotic-image img { width: 100%; height: 100%; object-fit: cover; }

.steps-band {
  background: var(--color-burgundy);
  padding: 64px clamp(20px, 6vw, 60px);
  margin-top: 56px;
}

.steps-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--color-bg);
  text-align: center;
  margin: 0 0 46px;
}

.steps-row {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.step {
  padding: 0 34px;
  max-width: 230px;
  text-align: center;
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
  font-size: 24px;
  margin-bottom: 12px;
}

.step-title { font-weight: 600; font-size: 15.5px; color: var(--color-bg); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: rgba(245, 240, 234, 0.68); line-height: 1.6; }

.statement-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--color-text);
  margin: 0 0 36px;
}

.statement-text.on-dark { color: var(--color-bg); }

.statement-cta-band {
  background: var(--color-burgundy);
  padding: 64px clamp(20px, 6vw, 60px);
  text-align: center;
  margin-top: 56px;
}

/* ---------- Ladies ---------- */
.ladies-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.ladies-intro-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--color-text);
  margin: 0 0 14px;
}

.ladies-grid-wrap {
  background: var(--color-bg);
  padding: 44px clamp(20px, 6vw, 60px) 70px;
  display: flex;
  justify-content: center;
}

.ladies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
  max-width: 1080px;
  width: 100%;
}

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

@media (max-width: 560px) {
  .ladies-grid { grid-template-columns: 1fr; }
}

.lady-card {
  display: flex;
  flex-direction: column;
}

.lady-photo {
  aspect-ratio: 3 / 4;
  position: relative;
  margin-bottom: 16px;
  background: #e7e0d6;
  overflow: hidden;
}
.lady-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lady-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--color-text);
  text-align: center;
}

.lady-meta {
  font-size: 13px;
  color: var(--color-text-faint);
  text-align: center;
  margin-top: 4px;
}
.lady-meta.langs { margin-top: 2px; }

.lady-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-faint);
  text-align: center;
  margin-top: 10px;
}

.lady-cta { text-align: center; margin-top: auto; padding-top: 14px; }

/* ---------- Prices ---------- */
.prices-wrap {
  display: flex;
  justify-content: center;
}

.prices-inner { max-width: 640px; width: 100%; }

.price-list { display: flex; flex-direction: column; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(38, 34, 34, 0.1);
}

.price-duration {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text);
}

.price-popular-tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.4px;
  border: 1px solid var(--color-gold);
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 12px;
  vertical-align: middle;
}

.price-amount { font-size: 19px; color: var(--color-gold-dark); font-weight: 600; }

.price-note { font-size: 13.5px; color: var(--color-text-faint); margin-top: 24px; }
.price-note + .price-note { margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.contact-list-label { font-weight: 600; color: var(--color-text); margin-bottom: 3px; }

.contact-map-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.contact-map {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #e7e0d6;
  border: 1px solid rgba(38, 34, 34, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
}

@media (max-width: 480px) {
  .contact-map iframe { height: 260px; }
}

.map-route-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-burgundy);
  padding: 50px clamp(20px, 6vw, 60px) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--color-gold);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 13px;
  color: var(--color-gold);
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a.footer-link-current {
  color: var(--color-gold);
  font-weight: 600;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1240px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.age-notice {
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-legal-numbers {
  margin-top: 10px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.2px;
}

/* ---------- WhatsApp float button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 50;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: scale(1.07);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  opacity: 1;
}

@media (max-width: 480px) {
  .whatsapp-fab { right: 14px; bottom: 14px; width: 48px; height: 48px; }
}

/* ---------- Legal subpages (privacy / disclaimer / house-rules) ---------- */
.legal-hero {
  background: var(--color-burgundy);
  padding: 46px clamp(20px, 6vw, 60px) 38px;
  text-align: center;
}

.legal-hero-back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
}

.legal-hero-back:hover { opacity: 0.8; }

.legal-hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--color-gold);
  margin: 0;
}

.legal-page { background: var(--color-bg); }

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-soft);
  margin: 0 0 30px;
}

.legal-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  margin: 34px 0 12px;
}

.legal-heading:first-child { margin-top: 0; }

.legal-body { margin-bottom: 0; }

@media (max-width: 560px) {
  .legal-hero { padding: 38px 20px 30px; }
  .legal-heading { margin: 28px 0 10px; font-size: 18px; }
  .legal-intro { margin-bottom: 24px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 24px;
  }
  .trust-item { width: 100%; justify-content: flex-start; }
  .trust-divider { display: none; }
}

/* ---------- Accessibility ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-drawer, .burger-bar { transition: none; }
}
