/* ============================================================
   KROPSRO — Massage hjemme hos dig i København
   Design system: "Aftenspa" — spa nocturno elegante
   ============================================================ */

:root{
  --bg:            #14100c;
  --bg-alt:        #1b1510;
  --surface:       #221a14;
  --surface-2:     #2a2019;
  --line:          rgba(201,162,75,0.18);
  --line-strong:   rgba(201,162,75,0.35);

  --text:          #f3ece1;
  --text-muted:    #bfb2a0;
  --text-faint:    #8c8072;

  --gold:          #c9a24b;
  --gold-soft:     #e4c98a;
  --gold-deep:     #8a6a2f;
  --terracotta:    #b06a4a;

  --whatsapp:      #25d366;

  --font-head: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-lg: 2px;
  --container: 1180px;

  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,0.6);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--text);
  letter-spacing: .01em;
}
h1{ font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 460; }
h2{ font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3{ font-size: clamp(1.15rem, 2vw, 1.5rem); }

p{ margin: 0 0 1em; color: var(--text-muted); }
a{ color: inherit; text-decoration: none; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 1em;
}
.eyebrow-dash{
  width: 26px; height: 1px;
  margin-right: .6em;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section{ padding: clamp(56px, 9vw, 108px) 0; }
.section-tight{ padding: clamp(36px, 6vw, 64px) 0; }
.bg-alt{ background: var(--bg-alt); }
.bg-surface{ background: var(--surface); }
.border-top{ border-top: 1px solid var(--line); }
.border-bottom{ border-bottom: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1410;
}
.btn-primary:hover{ background: linear-gradient(180deg, var(--gold-soft), var(--gold-soft)); }
.btn-ghost{
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold-soft); }
.btn-whatsapp{
  background: var(--whatsapp);
  color: #08210f;
}
.btn-whatsapp:hover{ background: #2fe374; }
.btn-block{ width: 100%; }
.btn-lg{ padding: 16px 34px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 14, 10, 0.98);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark{ width: 34px; height: 34px; flex-shrink: 0; }
.brand-text{ display: flex; flex-direction: column; line-height: 1; }
.brand-name{
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: .02em;
  color: var(--text);
}
.brand-sub{
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 3px;
}

.main-nav{ display: flex; align-items: center; gap: 30px; }
.main-nav ul{ display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.main-nav a{
  font-size: .9rem;
  color: var(--text-muted);
  transition: color .15s ease;
  position: relative;
}
.main-nav a:hover, .main-nav a.active{ color: var(--gold-soft); }
.header-actions{ display: flex; align-items: center; gap: 12px; }

.lang-toggle{
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.lang-toggle button{
  background: transparent;
  color: var(--text-faint);
  border: none;
  padding: 7px 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  transition: background .15s ease, color .15s ease;
}
.lang-toggle button.is-active{
  background: var(--gold);
  color: #1a1410;
}

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    overflow-y: auto;
  }
  .main-nav.is-open{ opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav ul{ flex-direction: column; gap: 4px; }
  .main-nav ul li a{
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .header-actions{ margin-top: 22px; justify-content: space-between; }
  .nav-toggle{ display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: clamp(64px, 12vw, 132px) 0 clamp(48px, 8vw, 90px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 500px at 82% -10%, rgba(201,162,75,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 90%, rgba(176,106,74,0.12), transparent 60%),
    var(--bg);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .8rem;
  color: var(--text-muted);
}
.badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-photo{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-alt) 70%);
}
.hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.hero-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(20,16,12,0) 50%, rgba(20,16,12,0.62) 100%);
  pointer-events: none;
}
.hero-photo .ring{
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.hero-photo .ring.r1{ width: 130px; height: 130px; top: -40px; right: -40px; }
.hero-photo .ring.r2{ width: 86px; height: 86px; top: -18px; right: -18px; opacity: .65; }
.hero-photo-tag{
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20,16,12,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
}
.hero-photo-tag svg{ width: 20px; height: 20px; flex-shrink: 0; }
.hero-photo-tag span{
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .01em;
  color: var(--text);
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-photo{ order: -1; max-width: 380px; margin: 0 auto; }
}

/* ---------- Cards / Grids ---------- */
.grid{ display: grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover{ border-color: var(--line-strong); transform: translateY(-3px); }
.card-icon{
  width: 42px; height: 42px;
  margin-bottom: 18px;
  color: var(--gold);
}
.card-price{
  margin-top: 16px;
  font-family: var(--font-head);
  color: var(--gold-soft);
  font-size: 1.15rem;
}
.card a.card-link{
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: .85rem; font-weight: 700; color: var(--gold-soft);
}

.section-head{
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Timeline / process ---------- */
.process{ counter-reset: step; }
.process-item{
  position: relative;
  padding-left: 56px;
  margin-bottom: 30px;
}
.process-item::before{
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  color: var(--gold-soft);
}

/* ---------- Opening hours table ---------- */
.hours-table{ width: 100%; border-collapse: collapse; }
.hours-table td{ padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--text-muted); }
.hours-table td:last-child{ text-align: right; color: var(--text); font-weight: 600; }
.hours-table tr.is-today td{ color: var(--gold-soft); }

/* ---------- Pricing table ---------- */
.price-table{ width: 100%; border-collapse: collapse; margin-top: 10px; }
.price-table th, .price-table td{
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table th{
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--gold-soft);
  font-size: .95rem;
}
.price-table td:last-child, .price-table th:last-child{ text-align: right; font-weight: 700; }
.price-table tbody tr:hover{ background: rgba(201,162,75,0.05); }

/* ---------- FAQ accordion ---------- */
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.faq-q .plus{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content: ""; position: absolute; background: var(--gold-soft);
}
.faq-q .plus::before{ width: 10px; height: 1.5px; }
.faq-q .plus::after{ width: 1.5px; height: 10px; transition: transform .2s ease; }
.faq-item.is-open .plus::after{ transform: scaleY(0); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-item.is-open .faq-a{ max-height: 480px; }
.faq-a-inner{ padding: 0 0 22px; max-width: 720px; }

/* ---------- Testimonials ---------- */
.testimonial{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.stars{ color: var(--gold); letter-spacing: .12em; margin-bottom: 12px; font-size: .9rem; }
.testimonial-name{ margin-top: 16px; font-weight: 700; color: var(--text); font-size: .9rem; }
.testimonial-loc{ color: var(--text-faint); font-size: .8rem; }

/* ---------- Areas list ---------- */
.area-chip{
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .85rem;
  color: var(--text-muted);
  display: inline-block;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--surface-2), var(--bg-alt));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2{ margin-bottom: .3em; }

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  font-size: .8rem;
  color: var(--text-faint);
  padding: 18px 0;
}
.breadcrumb a{ color: var(--text-faint); }
.breadcrumb a:hover{ color: var(--gold-soft); }
.breadcrumb span{ margin: 0 8px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: 40px 0 60px;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero p.lead{ max-width: 640px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 64px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}
.footer-col h4{
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; }
.footer-col li{ margin-bottom: 10px; }
.footer-col a{ color: var(--text-muted); font-size: .9rem; }
.footer-col a:hover{ color: var(--gold-soft); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-faint);
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-legal{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-faint);
}
.footer-legal a{ color: var(--text-faint); }
.footer-legal a:hover{ color: var(--gold-soft); }
.footer-legal .cookie-settings-link{ color: var(--text-faint); font-size: .8rem; }
.footer-legal .cookie-settings-link:hover{ color: var(--gold-soft); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #08210f;
  padding: 13px 20px 13px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: .88rem;
}
.whatsapp-float svg{ width: 22px; height: 22px; }

/* ---------- Booking form (funnel → WhatsApp) ---------- */
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 26px;
}
.form-group-full{ grid-column: 1 / -1; }
.form-group label{
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 14px;
  transition: border-color .15s ease, background .15s ease;
}
.form-group textarea{ resize: vertical; min-height: 88px; }
.form-group input::placeholder,
.form-group textarea::placeholder{ color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}
.form-group input[type="date"]{ color-scheme: dark; }
.form-group select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a24b' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option{ background: var(--bg-alt); color: var(--text); }
@media (max-width: 620px){
  .form-grid{ grid-template-columns: 1fr; }
}

/* ---------- Utilities ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.small{ font-size: .85rem; }
.divider{ height: 1px; background: var(--line); border: none; margin: 40px 0; }
.sr-only{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* El toggle de idioma manda siempre sobre cualquier otra regla de "display"
   (evita conflictos de especificidad con selectores de componentes) */
[data-lang="en"]{ display: none !important; }
html[data-current-lang="en"] [data-lang="da"]{ display: none !important; }
html[data-current-lang="en"] [data-lang="en"]{ display: revert !important; }

/* ---------- Cookie-banner ---------- */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 28px rgba(0,0,0,.35);
  padding: 20px;
}
.cookie-banner[hidden]{ display: none !important; }
.cookie-banner-inner{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}
.cookie-banner-text{ flex: 1 1 420px; }
.cookie-banner-text p{ margin: 0; font-size: .92rem; color: var(--text-muted); line-height: 1.6; }
.cookie-banner-text a{ color: var(--gold-soft); }
.cookie-banner-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.cookie-banner-actions .btn{ white-space: nowrap; }
.cookie-embed-placeholder{
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  background: var(--surface-2);
}
.cookie-embed-placeholder p{ margin: 0 0 14px; font-size: .92rem; color: var(--text-muted); }
.cookie-settings-link{
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--text-muted); text-decoration: underline; font-size: inherit; font-family: inherit;
}
@media (max-width: 620px){
  .cookie-banner-actions{ width: 100%; }
  .cookie-banner-actions .btn{ flex: 1 1 auto; }
}
