/* ==========================================================================
   Waridi DelArt — Decor & Furniture
   Dark charcoal theme — mustard accent, gold highlights, plum bullets only
   ========================================================================== */

:root {
  --bg: oklch(0.23 0.008 80);
  --fg: oklch(0.94 0.01 85);
  --fg-muted: oklch(0.94 0.01 85 / 72%);
  --fg-faint: oklch(0.94 0.01 85 / 45%);
  --card: oklch(0.27 0.01 80);
  --card-alt: oklch(0.3 0.012 80);
  --border: oklch(0.36 0.015 80);
  --primary: oklch(0.77 0.13 85);
  --primary-hover: oklch(0.82 0.13 85);
  --primary-fg: oklch(0.2 0.02 80);
  --gold: oklch(0.83 0.13 90);
  --plum: oklch(0.55 0.1 300);
  --whatsapp: #25d366;

  --font-display: 'Marcellus', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', Arial, sans-serif;

  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --shadow: 0 16px 40px oklch(0 0 0 / 32%);
  --shadow-sm: 0 6px 18px oklch(0 0 0 / 22%);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.is-preloading { overflow: hidden; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--fg);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--card);
  color: var(--fg);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* --------------------------------------------------------------------- */
/* Preloader                                                              */
/* --------------------------------------------------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  animation: preloaderHide 0.6s ease forwards;
  animation-delay: 1.6s;
}

.preloader-mark {
  width: 64px;
  opacity: 0;
  margin-bottom: 16px;
  animation: preloaderMarkIn 0.7s ease forwards;
}

.preloader-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--fg);
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0;
  animation: preloaderTextIn 0.6s ease forwards;
  animation-delay: 0.35s;
}
.preloader-name em { font-style: normal; color: var(--primary); }

.preloader-rule {
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary);
  margin-top: 16px;
  animation: preloaderRuleIn 0.7s ease forwards;
  animation-delay: 0.7s;
}

@keyframes preloaderMarkIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes preloaderTextIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderRuleIn {
  to { width: 64px; }
}
@keyframes preloaderHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { animation-duration: 0.4s; animation-delay: 0.5s; }
  .preloader-mark,
  .preloader-name,
  .preloader-rule { animation-duration: 0.01s; animation-delay: 0s; }
}

/* --------------------------------------------------------------------- */
/* Fade-up (hero only)                                                    */
/* --------------------------------------------------------------------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }
.fade-up-5 { animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; animation: none; }
}

/* --------------------------------------------------------------------- */
/* Layout helpers                                                        */
/* --------------------------------------------------------------------- */

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

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 18px;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.lead {
  font-size: 1.08rem;
  max-width: 640px;
  color: var(--fg-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-hover); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--card); border-color: var(--primary); }
.btn-outline .icon { width: 20px; height: 20px; fill: currentColor; }

.btn-whatsapp {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-whatsapp:hover { background: var(--card); border-color: var(--primary); }
.btn-whatsapp .icon { width: 20px; height: 20px; fill: currentColor; }

/* --------------------------------------------------------------------- */
/* Header                                                                 */
/* --------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: oklch(0.23 0.008 80 / 92%);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark { width: 48px; height: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--fg);
  letter-spacing: 0.03em;
}
.brand-name em { font-style: normal; color: var(--primary); font-weight: 500; }

.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

.header-hours {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  white-space: nowrap;
}
.header-hours svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
}
.site-nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}
.site-nav a:not(.nav-cta):hover:after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: var(--primary-fg) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--primary-hover); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.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); }

/* --------------------------------------------------------------------- */
/* Hero                                                                   */
/* --------------------------------------------------------------------- */

.hero {
  background:
    radial-gradient(circle at 85% 0%, oklch(0.77 0.13 85 / 8%), transparent 55%),
    var(--bg);
  padding: 48px 24px 72px;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.hero-mark {
  width: 56px;
  height: auto;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}
.hero h1 .accent { display: block; color: var(--primary); }

.hero-lead {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--fg-faint);
}
.hero-reassurance svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--card);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border);
  pointer-events: none;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 4.6s ease-out;
}
.hero-photo img.is-active {
  opacity: 1;
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo img { transition: opacity 1.2s ease; }
  .hero-photo img.is-active { transform: none; }
}

/* --------------------------------------------------------------------- */
/* Quote form                                                             */
/* --------------------------------------------------------------------- */

.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 90px;
}
.quote-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.quote-card .quote-sub {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.quote-form { display: flex; flex-direction: column; gap: 14px; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.96rem;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9b98f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}

.quote-form .btn {
  width: 100%;
  margin-top: 4px;
}

.quote-call {
  text-align: center;
  font-size: 0.86rem;
  color: var(--fg-muted);
  margin-top: 14px;
}
.quote-call a { color: var(--gold); font-weight: 600; }
.quote-call a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------- */
/* Trust bar                                                              */
/* --------------------------------------------------------------------- */

.trust-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--fg);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* --------------------------------------------------------------------- */
/* About                                                                  */
/* --------------------------------------------------------------------- */

.about { background: var(--bg); }

.about-callout {
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-top: 28px;
  max-width: 640px;
}
.about-callout p { margin: 0; }
.about-callout p:first-child { color: var(--fg); font-weight: 500; }
.about-callout-tags {
  margin-top: 8px !important;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.vm-card {
  background: var(--card);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 28px 30px;
}

.vm-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.vm-card p { margin: 0; color: var(--fg-muted); }

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--fg);
}
.value-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plum);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------- */
/* Services                                                               */
/* --------------------------------------------------------------------- */

.services { background: var(--card-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--card-alt);
}
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}
.service-photo img.is-active {
  opacity: 1;
}

.service-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.service-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.94 0.01 85 / 45%);
  box-shadow: 0 0 0 1px oklch(0 0 0 / 25%);
  transition: background 0.3s ease;
}
.service-dots span.is-active {
  background: var(--primary);
}

.service-icon {
  position: absolute;
  left: 18px;
  bottom: -20px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 50%;
  box-shadow: 0 4px 10px oklch(0 0 0 / 30%);
}
.service-icon svg { width: 100%; height: 100%; }

.service-body {
  padding: 32px 24px 24px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.service-card ul li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
}
.service-card ul li:first-child { border-top: none; }
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  background: var(--plum);
  border-radius: 50%;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--fg);
}
.service-pill svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* --------------------------------------------------------------------- */
/* Mid-page CTA strip                                                    */
/* --------------------------------------------------------------------- */

.cta-strip {
  background: var(--primary);
  padding: 34px 24px;
  margin-top: 48px;
  border-radius: var(--radius);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-strip p {
  color: var(--primary-fg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}
.cta-strip .btn-whatsapp {
  background: var(--primary-fg);
  color: var(--primary);
  border-color: var(--primary-fg);
}
.cta-strip .btn-whatsapp:hover { background: oklch(0.2 0.02 80 / 88%); }

.cta-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.cta-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band-inner p {
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------- */
/* Gallery                                                                */
/* --------------------------------------------------------------------- */

.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.gallery-item {
  border: 1px solid var(--border);
  padding: 0;
  background: var(--card);
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 var(--primary);
  transition: box-shadow 0.2s ease;
  border-radius: var(--radius-sm);
}
.gallery-item:hover::after { box-shadow: inset 0 0 0 3px var(--primary); }

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* --------------------------------------------------------------------- */
/* Why Us                                                                 */
/* --------------------------------------------------------------------- */

.why-us { background: var(--card-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.why-card {
  padding: 26px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card h3 { color: var(--fg); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--fg-muted); font-size: 0.92rem; margin: 0; }

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.how-step { text-align: center; }

.how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
}

.how-step h3 { color: var(--fg); font-size: 1.1rem; margin-bottom: 8px; }
.how-step p { color: var(--fg-muted); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------- */
/* Contact                                                                */
/* --------------------------------------------------------------------- */

.contact { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.contact-card-main {
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
}
.contact-card-main .contact-mark {
  width: 52px;
  margin-bottom: 18px;
}
.contact-card-main h3 {
  color: var(--primary-fg);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: oklch(0.2 0.02 80 / 12%);
  border: 1px solid oklch(0.2 0.02 80 / 22%);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--primary-fg);
  font-weight: 500;
  font-size: 0.94rem;
  min-height: 48px;
  transition: background 0.15s ease;
}
.contact-link-btn:hover { background: oklch(0.2 0.02 80 / 20%); }
.contact-link-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: oklch(0.2 0.02 80 / 85%);
}
.contact-hours svg { width: 17px; height: 17px; flex-shrink: 0; }

.contact-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  font-weight: 500;
  color: var(--fg-muted);
}
.icon-inline { width: 18px; height: 18px; fill: var(--gold); }

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */

.site-footer {
  background: var(--card-alt);
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  padding: 48px 24px 30px;
  text-align: center;
}

.footer-inner { max-width: 640px; margin: 0 auto; }

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: 0.04em;
  margin: 0 0 2px;
}
.footer-brand-name em { font-style: normal; color: var(--primary); }

.footer-tagline {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-area {
  font-size: 0.86rem;
  color: var(--fg-faint);
  margin-bottom: 18px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-faint);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* --------------------------------------------------------------------- */
/* Lightbox                                                               */
/* --------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: oklch(0.1 0.005 80 / 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px 20px;
}
.lightbox[hidden] { display: none; }

.lightbox figure { margin: 0; max-width: 900px; text-align: center; }

.lightbox img {
  max-width: 100%;
  max-height: 76vh;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px oklch(0 0 0 / 45%);
}

.lightbox figcaption {
  color: var(--fg);
  margin-top: 16px;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--primary); }

/* --------------------------------------------------------------------- */
/* WhatsApp floating button                                               */
/* --------------------------------------------------------------------- */

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px oklch(0 0 0 / 35%);
  z-index: 400;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: currentColor; }

/* --------------------------------------------------------------------- */
/* Mobile sticky action bar                                              */
/* --------------------------------------------------------------------- */

.mobile-sticky-bar {
  display: none;
}

/* --------------------------------------------------------------------- */
/* Responsive                                                             */
/* --------------------------------------------------------------------- */

@media (min-width: 640px) {
  .header-hours { display: flex; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 60px 20px; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { align-self: flex-start; }

  .vm-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 14px; }

  .hero-actions .btn { flex: 1; justify-content: center; }

  .cta-strip-inner,
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-strip .btn,
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; justify-content: center; }

  .whatsapp-fab { display: none; }

  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 450;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px oklch(0 0 0 / 30%);
  }
  .mobile-sticky-bar .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
  .mobile-sticky-bar .btn .icon { width: 18px; height: 18px; }

  body { padding-bottom: 68px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
