/* =========================================================
   سكن — منصة حجز خدمات منزلية
   Premium redesign — design tokens
   ========================================================= */
:root{
  --bg: #FBF8F3;
  --surface: #FFFFFF;
  --surface-2: #F5F1E8;
  --ink: #241F1B;
  --ink-soft: #6B6259;
  --ink-faint: #9C9184;
  --line: #E8E1D2;
  --line-soft: #F1EBDD;

  --primary: #123832;
  --primary-dark: #0A211D;
  --primary-soft: #E3ECE7;

  --accent: #9C7A45;
  --accent-soft: #F1E8D6;

  --today-bg: #E4EFE7;
  --today-text: #1F5C3E;
  --tomorrow-bg: #F3E9D3;
  --tomorrow-text: #8A6A2E;

  --danger: #A8452F;

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

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

  --shadow-soft: 0 12px 32px rgba(10,33,29,0.08);
  --shadow-modal: 0 26px 64px rgba(8,20,18,0.3);

  --container: 1180px;
  --container-narrow: 860px;
}

*{ 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.7;
  -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.32;
  font-weight: 700;
}

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, textarea{ font-family: inherit; }

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

: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: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, opacity .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: 16px 30px; font-size: 16px; }
.btn-sm{ padding: 10px 18px; font-size: 14px; }
.btn-block{ width: 100%; }

.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none; }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,248,243,0.92);
  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 24px rgba(10,33,29,0.05);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  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);
  letter-spacing: .01em;
}

.main-nav{ display: none; align-items: center; gap: 34px; }
.main-nav a{
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .15s ease;
}
.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: 76px;
  right: 0; left: 0;
  background: var(--surface);
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(10,33,29,0.08);
}
.main-nav.is-open a{ width: 100%; padding: 13px 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
   ========================================================= */
.hero{ position: relative; padding: 0; }

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

.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.2s ease;
}
.hero-slide.is-active{ opacity: 1; }
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,20,18,0.48) 0%, rgba(8,20,18,0.6) 45%, rgba(8,20,18,0.82) 100%),
    linear-gradient(90deg, rgba(8,20,18,0.58) 0%, rgba(8,20,18,0.18) 55%, rgba(8,20,18,0.04) 100%);
}

.hero-inner{ position: relative; z-index: 2; padding: 88px 0 110px; }
.hero-copy{ max-width: 640px; }

.hero .eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #F7F3E9;
  background: rgba(247,243,233,0.14);
  border: 1px solid rgba(247,243,233,0.28);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-copy h1{
  font-size: clamp(32px, 5.4vw, 50px);
  max-width: 15ch;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.hero-copy .hero-text{
  font-size: 18px;
  max-width: 42ch;
  color: rgba(247,243,233,0.88);
  margin-top: 14px;
}

.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 34px; }
.hero .btn-ghost{ border-color: rgba(247,243,233,0.55); color: #F7F3E9; }
.hero .btn-ghost:hover{ background: rgba(247,243,233,0.14); }

.hero-trust{ display: flex; gap: 12px; flex-wrap: wrap; }
.trust-badge{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(247,243,233,0.1);
  border: 1px solid rgba(247,243,233,0.24);
  color: #F7F3E9;
}
.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: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(247,243,233,0.4);
  background: rgba(8,20,18,0.32);
  color: #F7F3E9;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background-color .15s ease;
}
.hero-nav:hover{ background: rgba(8,20,18,0.55); }
.hero-nav-prev{ inset-inline-start: 20px; }
.hero-nav-next{ inset-inline-end: 20px; }

.hero-dots{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot{
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(247,243,233,0.4);
  border: none;
  padding: 0;
  transition: background-color .2s ease, width .2s ease;
}
.hero-dot.is-active{ background: #F7F3E9; width: 24px; }

@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: 18px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: -36px;
  transform: translateY(36px);
}
.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: 12px 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: 100px 0 84px; }
.section-head{ max-width: 600px; margin-bottom: 48px; }
.section-head.centered{ margin-inline: auto; text-align: center; }
.section-head .eyebrow-label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.section-head h2{ font-size: clamp(26px, 4vw, 34px); }
.section-head p{ margin: 0; font-size: 16px; }

/* =========================================================
   How it works — editorial numbered steps
   ========================================================= */
.how{ background: var(--surface); }
.how-steps{
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 820px){
  .how-steps{ grid-template-columns: repeat(4, 1fr); border-top: none; }
}

.how-steps li{
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 820px){
  .how-steps li{
    padding: 4px 28px 4px 0;
    border-bottom: none;
    border-inline-end: 1px solid var(--line);
  }
  .how-steps li:last-child{ border-inline-end: none; padding-inline-end: 0; }
}

.step-num{
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--accent);
  opacity: .85;
  margin-bottom: 14px;
}
.how-steps h3{ font-size: 18px; margin-bottom: 8px; }
.how-steps p{ font-size: 14.5px; margin: 0; max-width: 32ch; }

/* =========================================================
   Services — clean editorial list, minimal icons
   ========================================================= */
.services{ background: var(--primary-dark); }
.services .section-head h2, .services .section-head p{ color: #F7F3E9; }
.services .section-head p{ color: rgba(247,243,233,0.68); }

.services-list{ border-top: 1px solid rgba(247,243,233,0.16); }
.service-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(247,243,233,0.16);
}
.service-row h3{ color: #F7F3E9; font-size: 19px; margin: 0; flex-shrink: 0; }
.service-row p{ color: rgba(247,243,233,0.66); font-size: 14.5px; margin: 0; text-align: end; max-width: 44ch; }

@media (max-width: 620px){
  .service-row{ flex-direction: column; gap: 6px; }
  .service-row p{ text-align: start; }
}

/* =========================================================
   Workers
   ========================================================= */
.filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter-chip{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  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: 28px 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px){ .workers-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .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 .2s ease, transform .2s ease;
}
.worker-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.worker-media{
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--primary-soft);
}
.worker-media img{ width: 100%; height: 100%; object-fit: cover; }
.worker-badge{
  position: absolute;
  top: 14px; inset-inline-start: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  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: 14px; inset-inline-end: 14px;
  background: rgba(10,33,29,0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}

.worker-body{ padding: 22px 22px 24px; 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: 19px; 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 11px;
  border-radius: 8px;
  color: var(--ink-soft);
}

.worker-services{ font-size: 13.5px; 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: 14px;
  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: 20px; 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: 6px; }
.worker-actions .btn{ flex: 1; }

.empty-state{
  grid-column: 1 / -1;
  text-align: center;
  padding: 54px 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: 0;
}

/* =========================================================
   Why Sakan — minimal checklist, no boxed icon cards
   ========================================================= */
.why{ background: var(--surface); }
.why-list{
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  max-width: 760px;
}
@media (min-width: 700px){ .why-list{ grid-template-columns: 1fr 1fr; } }

.why-item{ display: flex; gap: 14px; align-items: flex-start; }
.why-check{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-item h3{ font-size: 16px; margin: 0 0 4px; }
.why-item p{ font-size: 14px; margin: 0; }

/* =========================================================
   Visual CTA
   ========================================================= */
.visual-cta{
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.visual-cta-bg{
  position: absolute; inset: 0;
  background-image: url('../images/hero-02.jpg');
  background-size: cover;
  background-position: center;
}
.visual-cta-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,18,0.62), rgba(8,20,18,0.8));
}
.visual-cta-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px;
}
.visual-cta-inner h2{ color: #FFFFFF; font-size: clamp(26px, 4vw, 34px); }
.visual-cta-inner p{ color: rgba(247,243,233,0.85); font-size: 16px; margin-bottom: 26px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq{ background: var(--surface); }
.faq-list{ border-top: 1px solid var(--line); }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: start;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-icon{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  transition: transform .25s ease, background-color .2s ease;
}
.faq-item.is-open .faq-icon{ background: var(--primary-soft); transform: rotate(45deg); }

.faq-answer{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-item.is-open .faq-answer{ grid-template-rows: 1fr; }
.faq-answer-inner{ overflow: hidden; }
.faq-answer p{ margin: 0 0 22px; font-size: 14.5px; max-width: 62ch; color: var(--ink-soft); }

/* =========================================================
   Modal — booking experience
   ========================================================= */
.modal-overlay{
  position: fixed; inset: 0;
  background: rgba(8,20,18,0.58);
  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: 660px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow-modal);
  position: relative;
  padding: 28px 22px 32px;
}
@media (min-width: 700px){
  .modal-overlay{ align-items: center; padding: 20px; }
  .modal{ border-radius: var(--radius-lg); padding: 34px; }
}

.modal-close{
  position: absolute;
  top: 18px; inset-inline-end: 18px;
  width: 38px; height: 38px;
  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-head{ display: flex; gap: 16px; align-items: center; margin-bottom: 20px; padding-inline-end: 42px; }
.detail-avatar{ width: 80px; height: 80px; border-radius: 16px; overflow: hidden; flex-shrink: 0; }
.detail-avatar img{ width: 100%; height: 100%; object-fit: cover; }
.detail-head h2{ font-size: 22px; 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: 20px; }
.detail-badges span{
  font-size: 12px; font-weight: 700; padding: 6px 13px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--ink-soft);
}

.detail-section-title{ font-size: 15.5px; font-weight: 700; color: var(--ink); margin: 24px 0 12px; }
.detail-section-title:first-of-type{ margin-top: 6px; }

/* Package selector (4h / 6h / 8h / day) */
.package-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 480px){ .package-grid{ grid-template-columns: repeat(4, 1fr); } }

.package-option{
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .15s ease, background-color .15s ease;
}
.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);
}
.package-note{ font-size: 12px; color: var(--ink-faint); margin: -2px 0 22px; }

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

.field{ display: flex; flex-direction: column; gap: 7px; }
.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: 12px 13px;
  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: 16px 18px;
  background: var(--primary-soft);
  border-radius: 14px;
  margin: 20px 0;
}
.price-line span{ color: var(--primary-dark); font-weight: 600; font-size: 14px; }
.price-line strong{ font-family: var(--font-display); font-size: 23px; color: var(--primary-dark); }

.summary-box{
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
  display: grid;
  gap: 9px;
}
.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: 12px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background: var(--primary-dark); color: rgba(247,243,233,0.75); padding: 68px 0 0; }
.site-footer .brand-name{ color: #F7F3E9; }
.footer-grid{
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247,243,233,0.14);
}
@media (min-width: 760px){ .footer-grid{ grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand p{ color: rgba(247,243,233,0.6); font-size: 14px; max-width: 34ch; margin-top: 14px; }
.footer-col h4{ color: #F7F3E9; font-size: 14px; margin-bottom: 15px; }
.footer-col a{ display: block; padding: 6px 0; font-size: 14px; color: rgba(247,243,233,0.72); }
.footer-col a:hover{ color: #F7F3E9; }
.footer-wa{ margin-top: 10px; }
.footer-bottom{
  padding: 22px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(247,243,233,0.5);
}

/* =========================================================
   Toast
   ========================================================= */
.toast{
  position: fixed;
  bottom: 22px;
  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); }
