/* =========================================================
   سكن — منصة حجز خدمات منزلية
   Design tokens
   ========================================================= */
:root{
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --surface-2: #FBFAF7;
  --ink: #202826;
  --ink-soft: #5B6663;
  --ink-faint: #8A928F;
  --line: #E4E1D6;
  --line-soft: #EEECE3;

  --primary: #16504A;
  --primary-dark: #0F3D38;
  --primary-soft: #E6EFEB;
  --accent: #B98A4A;
  --accent-soft: #F3E9D6;

  --today-bg: #E6F1EA;
  --today-text: #1F6E45;
  --tomorrow-bg: #F4ECDD;
  --tomorrow-text: #8A6A2E;

  --danger: #B5473A;

  --font-display: 'Noto Kufi Arabic', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-soft: 0 10px 30px rgba(22,80,74,0.08);
  --shadow-modal: 0 24px 60px rgba(15,30,28,0.28);

  --container: 1180px;
}

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

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--primary-dark);
  margin: 0 0 .5em;
  line-height: 1.3;
}

p{ margin: 0 0 1em; color: var(--ink-soft); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul,ol{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor: pointer; }
input, select{ font-family: inherit; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

:focus-visible{
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }

.btn-primary{ background: var(--primary); color: #fff; }
.btn-primary:hover{ background: var(--primary-dark); }

.btn-ghost{ background: transparent; color: var(--primary-dark); border-color: var(--primary); }
.btn-ghost:hover{ background: var(--primary-soft); }

.btn-lg{ padding: 15px 28px; font-size: 16px; }
.btn-sm{ padding: 9px 16px; font-size: 14px; }
.btn-block{ width: 100%; }

.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,245,240,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled{
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(15,30,28,0.05);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand{ display: flex; align-items: center; gap: 10px; }
.brand-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary-dark);
}

.main-nav{ display: none; align-items: center; gap: 30px; }
.main-nav a{
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover{ color: var(--primary-dark); }

.header-actions{ display: flex; align-items: center; gap: 12px; }
.header-actions .btn-sm{ display: none; }

.nav-toggle{
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span{
  width: 18px; height: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.main-nav.is-open{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: absolute;
  top: 72px;
  right: 0; left: 0;
  background: var(--surface);
  padding: 10px 20px 18px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(15,30,28,0.08);
}
.main-nav.is-open a{ width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }

@media (min-width: 900px){
  .main-nav{ display: flex; position: static; background: none; box-shadow: none; padding: 0; flex-direction: row; }
  .header-actions .btn-sm{ display: inline-flex; }
  .nav-toggle{ display: none; }
}

/* =========================================================
   Hero + slider
   ========================================================= */
.hero{
  position: relative;
  padding: 0;
}

.hero-stage{
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
@media (max-width: 480px){
  .hero-stage{ min-height: 620px; }
}

.hero-slider{ position: absolute; inset: 0; z-index: 0; }
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active{ opacity: 1; }
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,28,26,0.5) 0%, rgba(10,26,24,0.62) 45%, rgba(9,23,21,0.82) 100%),
    linear-gradient(90deg, rgba(9,23,21,0.55) 0%, rgba(9,23,21,0.15) 55%, rgba(9,23,21,0.05) 100%);
}

.hero-inner{
  position: relative;
  z-index: 2;
  padding: 84px 0 100px;
}

.hero-copy{ max-width: 620px; }

.hero .eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #F4EFE6;
  background: rgba(244,239,230,0.16);
  border: 1px solid rgba(244,239,230,0.28);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-copy h1{
  font-size: clamp(30px, 5.2vw, 46px);
  max-width: 14ch;
  color: #FFFFFF;
}
.hero-copy .hero-text{
  font-size: 18px;
  max-width: 40ch;
  color: rgba(244,239,230,0.86);
}

.hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 30px; }
.hero .btn-ghost{
  border-color: rgba(244,239,230,0.55);
  color: #F4EFE6;
}
.hero .btn-ghost:hover{ background: rgba(244,239,230,0.14); }

.hero-trust{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(244,239,230,0.22);
}
.trust-badge{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244,239,230,0.12);
  border: 1px solid rgba(244,239,230,0.24);
  color: #F4EFE6;
}
.trust-badge svg{ flex-shrink: 0; opacity: 0.9; }
.trust-badge span{ font-size: 13px; font-weight: 600; white-space: nowrap; }

/* Slider controls */
.hero-nav{
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(244,239,230,0.4);
  background: rgba(10,26,24,0.35);
  color: #F4EFE6;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background-color .15s ease;
}
.hero-nav:hover{ background: rgba(10,26,24,0.55); }
.hero-nav-prev{ inset-inline-start: 16px; }
.hero-nav-next{ inset-inline-end: 16px; }

.hero-dots{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(244,239,230,0.4);
  border: none;
  padding: 0;
  transition: background-color .2s ease, width .2s ease;
}
.hero-dot.is-active{ background: #F4EFE6; width: 22px; border-radius: 999px; }

@media (min-width: 700px){
  .hero-nav{ display: flex; }
}

/* Search bar */
.search-bar{
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: -34px;
  transform: translateY(34px);
}
.search-field{ display: flex; flex-direction: column; gap: 6px; }
.search-field label{ font-size: 12px; font-weight: 700; color: var(--ink-faint); }
.search-field select, .search-field input{
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  background: var(--surface-2);
  color: var(--ink);
  width: 100%;
}
.search-submit{ width: 100%; }

@media (min-width: 760px){
  .search-bar{ grid-template-columns: repeat(4, 1fr) auto; align-items: end; }
}

/* =========================================================
   Section shell
   ========================================================= */
section{ padding: 96px 0 76px; }
.services{ padding-top: 116px; }
.section-head{ max-width: 560px; margin-bottom: 40px; }
.section-head h2{ font-size: clamp(24px, 4vw, 32px); }
.section-head p{ margin: 0; }

/* =========================================================
   Services
   ========================================================= */
.services-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .services-grid{ grid-template-columns: repeat(4, 1fr); } }

.service-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}
.service-card h3{ font-size: 17px; margin-bottom: 6px; }
.service-card p{ font-size: 14px; margin: 0; }

.service-icon{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary-soft);
  margin-bottom: 16px;
  position: relative;
}
.service-icon::before{
  content:"";
  position: absolute; inset: 12px;
  background: var(--primary);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.service-icon[data-icon="clean"]::before{
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3l4 4-8 8 4 4 8-8 4 4 2-2-12-12z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3l4 4-8 8 4 4 8-8 4 4 2-2-12-12z'/></svg>");
}
.service-icon[data-icon="deep"]::before{
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C9 6 6 9.5 6 13a6 6 0 0 0 12 0c0-3.5-3-7-6-11z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C9 6 6 9.5 6 13a6 6 0 0 0 12 0c0-3.5-3-7-6-11z'/></svg>");
}
.service-icon[data-icon="iron"]::before{
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 15l6-9h9a3 3 0 0 1 3 3c0 3-3 6-8 6H8l-3 3z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 15l6-9h9a3 3 0 0 1 3 3c0 3-3 6-8 6H8l-3 3z'/></svg>");
}
.service-icon[data-icon="tidy"]::before{
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4h16v4H4V4zm0 6h16v4H4v-4zm0 6h10v4H4v-4z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4h16v4H4V4zm0 6h16v4H4v-4zm0 6h10v4H4v-4z'/></svg>");
}

/* =========================================================
   Workers
   ========================================================= */
.filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.filter-chip{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.filter-chip:hover{ border-color: var(--primary); }
.filter-chip.is-active{ background: var(--primary); border-color: var(--primary); color: #fff; }

.workers-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .workers-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px){ .workers-grid{ grid-template-columns: repeat(3, 1fr); } }

.worker-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease;
}
.worker-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-2px); }

.worker-media{
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--primary-soft);
}
.worker-media img{ width: 100%; height: 100%; object-fit: cover; }
.worker-badge{
  position: absolute;
  top: 12px; inset-inline-start: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.worker-badge.today{ background: var(--today-bg); color: var(--today-text); }
.worker-badge.tomorrow{ background: var(--tomorrow-bg); color: var(--tomorrow-text); }

.worker-rating{
  position: absolute;
  top: 12px; inset-inline-end: 12px;
  background: rgba(32,40,38,0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}

.worker-body{ padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.worker-name-row{ display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.worker-name-row h3{ font-size: 18px; margin: 0; }
.worker-nat{ font-size: 13px; color: var(--ink-faint); }

.worker-meta{ display: flex; flex-wrap: wrap; gap: 8px; }
.worker-meta span{
  font-size: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
}

.worker-services{ font-size: 13px; color: var(--ink-soft); }
.worker-services strong{ color: var(--ink); }

.worker-price-block{
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.worker-price-from{ font-size: 13px; color: var(--ink-faint); }
.worker-price-amt{ font-family: var(--font-display); font-size: 19px; color: var(--primary-dark); }
.worker-price-unit{ font-size: 13px; color: var(--ink-soft); }
.worker-price-hint{ font-size: 12px; color: var(--ink-faint); margin: -6px 0 0; }

.worker-actions{ display: flex; gap: 10px; margin-top: 4px; }
.worker-actions .btn{ flex: 1; }
.worker-actions .btn-primary{ flex: 1.3; }

.empty-state{
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: var(--ink-faint);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.demo-disclaimer{
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  margin: 28px 0 0;
}

/* =========================================================
   How it works
   ========================================================= */
.how{ background: var(--primary-dark); }
.how .section-head h2, .how .section-head p{ color: #F4EFE6; }
.how .section-head p{ color: rgba(244,239,230,0.7); }

.how-steps{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px){ .how-steps{ grid-template-columns: repeat(4, 1fr); } }

.how-steps li{
  background: rgba(244,239,230,0.06);
  border: 1px solid rgba(244,239,230,0.14);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  position: relative;
}
.step-num{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #23180A;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}
.how-steps h3{ color: #F4EFE6; font-size: 17px; margin-bottom: 6px; }
.how-steps p{ color: rgba(244,239,230,0.72); font-size: 14px; margin: 0; }

/* =========================================================
   Why us
   ========================================================= */
.why-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .why-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .why-grid{ grid-template-columns: repeat(4, 1fr); } }
.why-card{
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--accent);
}
.why-card h3{ font-size: 16px; margin-bottom: 6px; }
.why-card p{ font-size: 14px; margin: 0; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band{
  background: var(--primary-soft);
  padding: 54px 0;
}
.cta-band-inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cta-band h2{ font-size: 24px; margin-bottom: 4px; }
.cta-band p{ margin: 0; }
@media (min-width: 700px){
  .cta-band-inner{ flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background: var(--primary-dark); color: rgba(244,239,230,0.75); padding: 60px 0 0; }
.site-footer .brand-name{ color: #F4EFE6; }
.footer-grid{
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244,239,230,0.14);
}
@media (min-width: 760px){ .footer-grid{ grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand p{ color: rgba(244,239,230,0.6); font-size: 14px; max-width: 34ch; }
.footer-col h4{ color: #F4EFE6; font-size: 14px; margin-bottom: 14px; }
.footer-col a{ display: block; padding: 6px 0; font-size: 14px; color: rgba(244,239,230,0.72); }
.footer-col a:hover{ color: #F4EFE6; }
.footer-contact{ font-size: 14px; color: rgba(244,239,230,0.72); margin: 0 0 6px; }
.footer-wa{ margin-top: 10px; }
.footer-bottom{ padding: 20px 0 26px; font-size: 13px; color: rgba(244,239,230,0.5); }

/* =========================================================
   Modal
   ========================================================= */
.modal-overlay{
  position: fixed; inset: 0;
  background: rgba(15,25,23,0.55);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  padding: 0;
}
.modal-overlay.is-open{ display: flex; }

.modal{
  background: var(--surface);
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 22px 22px 0 0;
  box-shadow: var(--shadow-modal);
  position: relative;
  padding: 26px 20px 30px;
}
@media (min-width: 700px){
  .modal-overlay{ align-items: center; padding: 20px; }
  .modal{ border-radius: var(--radius-lg); padding: 30px; }
}

.modal-close{
  position: absolute;
  top: 16px; inset-inline-end: 16px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 20px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  z-index: 2;
}

/* Detail content built by JS */
.detail-head{ display: flex; gap: 16px; align-items: center; margin-bottom: 18px; padding-inline-end: 40px; }
.detail-avatar{ width: 76px; height: 76px; border-radius: 16px; overflow: hidden; flex-shrink: 0; }
.detail-avatar img{ width: 100%; height: 100%; object-fit: cover; }
.detail-head h2{ font-size: 21px; margin: 0 0 4px; }
.detail-sub{ font-size: 13px; color: var(--ink-faint); margin:0; }

.detail-badges{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.detail-badges span{
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--ink-soft);
}

.detail-section-title{ font-size: 15px; font-weight: 700; color: var(--ink); margin: 22px 0 10px; }
.detail-section-title:first-of-type{ margin-top: 4px; }

/* Package selector (4h / 6h / 8h / day) */
.package-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
@media (min-width: 480px){
  .package-grid{ grid-template-columns: repeat(4, 1fr); }
}
.package-option{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.package-option .package-label{ font-weight: 700; font-size: 14px; color: var(--ink); }
.package-option .package-price{ font-family: var(--font-display); font-size: 15px; color: var(--primary-dark); }
.package-option.is-active{
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 1px var(--primary) inset;
}
.package-note{
  font-size: 12px;
  color: var(--ink-faint);
  margin: -2px 0 20px;
}

.booking-fields{ display: grid; gap: 12px; margin-bottom: 6px; }
.field-row{ display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 520px){ .field-row.two{ grid-template-columns: 1fr 1fr; } }

.field{ display: flex; flex-direction: column; gap: 6px; }
.field label{ font-size: 13px; font-weight: 700; color: var(--ink); }
.field select, .field input, .field textarea{
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  background: var(--surface-2);
  color: var(--ink);
  width: 100%;
  resize: vertical;
}

.price-line{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--primary-soft);
  border-radius: 12px;
  margin: 18px 0;
}
.price-line span{ color: var(--primary-dark); font-weight: 600; font-size: 14px; }
.price-line strong{ font-family: var(--font-display); font-size: 22px; color: var(--primary-dark); }
.price-formula{ font-size: 12px; color: var(--ink-faint); margin-top: -12px; margin-bottom: 16px; }

.summary-box{
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
  display: grid;
  gap: 8px;
}
.summary-row{ display: flex; justify-content: space-between; font-size: 14px; }
.summary-row span:first-child{ color: var(--ink-faint); }
.summary-row span:last-child{ font-weight: 700; color: var(--ink); }
.summary-row.total span:last-child{ color: var(--primary-dark); font-size: 17px; font-family: var(--font-display); }

.field-error{ font-size: 12px; color: var(--danger); margin-top: -8px; }
.form-note{ font-size: 12px; color: var(--ink-faint); margin-top: 10px; }

/* =========================================================
   Toast
   ========================================================= */
.toast{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 200;
  transition: transform .25s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.toast.is-visible{ transform: translateX(-50%) translateY(0); }
