/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-terracotta);
}
.btn-ghost {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}
.btn-small { padding: 0.65rem 1.35rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* Magnetic pointer-follow effect, applied via JS on fine-pointer devices */
.magnetic { will-change: transform; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
}
.site-header.is-scrolled {
  background: var(--glass-bg-strong);
  border-color: var(--sand-line);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-logo { border-radius: 50%; object-fit: cover; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
}
.brand-name em { font-style: normal; color: var(--terracotta); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.main-nav ul {
  display: flex;
  gap: 1.9rem;
}
.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 7px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-link:hover { color: var(--charcoal); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px 0;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--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); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.theme-toggle {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--sand-line);
  background: var(--cream-soft);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--gold); color: var(--gold); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(184, 134, 59, 0.14), transparent 45%),
    radial-gradient(circle at 8% 90%, rgba(193, 103, 62, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-thread {
  position: absolute;
  top: 0; right: 4%;
  width: 200px; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.hero-thread svg { width: 100%; height: 100%; }
.thread-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
}

.hero-visual {
  position: relative;
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}
.hero-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-lift);
  background: var(--sand);
  animation: portraitFloat 7s ease-in-out infinite;
  transition: box-shadow var(--dur-fast) var(--ease);
}
@media (prefers-reduced-motion: reduce) { .hero-portrait { animation: none; } }
@keyframes portraitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

.portrait-tag {
  position: absolute;
  top: -18px; right: 6%;
  background: var(--terracotta);
  color: var(--cream-soft);
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.tag-number { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.tag-label { font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }

.hero-badge {
  position: absolute;
  left: 6%; bottom: -30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow-lift);
}
.hero-badge-logo { border-radius: 8px; object-fit: cover; }
.hero-badge em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--charcoal);
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-title { margin-bottom: 0.2em; }
.hero-scribble {
  display: block;
  width: min(360px, 80%);
  height: 34px;
  margin: 0 auto var(--space-sm);
}
.hero-scribble path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: scribbleDraw 1.6s var(--ease) 0.3s forwards;
}
@keyframes scribbleDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-scribble path { animation: none; stroke-dashoffset: 0; } }

.hero-lede { font-size: 1.15rem; max-width: 46ch; margin-inline: auto; }
.hero-signature {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: -0.4rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: var(--space-lg) auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.scroll-indicator span {
  width: 1px; height: 34px;
  background: var(--charcoal-soft);
  position: relative;
  overflow: hidden;
}
.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: threadDrop 2.2s var(--ease) infinite;
}
@keyframes threadDrop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ===================== THREAD DIVIDER (signature) ===================== */
.thread-divider {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 40px;
}
.thread-divider svg { width: 100%; height: 100%; }
.thread-path-h {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.thread-divider.is-visible .thread-path-h { stroke-dashoffset: 0; }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: start;
}
.about-image {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
  box-shadow: var(--shadow-lift);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .lede { font-size: 1.1rem; color: var(--charcoal); }
.about-copy h3 {
  margin-top: var(--space-md);
  color: var(--terracotta);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: var(--space-md);
}
.mv-card {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.mv-label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.4rem;
}
.mv-card p { margin: 0; color: var(--charcoal); font-size: 0.95rem; }

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-soft);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(184, 134, 59, 0.18), rgba(193, 103, 62, 0.06));
  color: var(--terracotta);
  margin-bottom: 1rem;
  transition: transform var(--dur-fast) var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.06) rotate(-3deg); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; margin: 0; }

/* ===================== PORTFOLIO / GALLERY ===================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: var(--space-md);
}
.filter-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--sand-line);
  background: var(--cream-soft);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: all var(--dur-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--charcoal); }
.filter-btn.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--sand);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-med) var(--ease);
}
.gallery-item:nth-child(4n+1) { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.gallery-tag {
  position: absolute;
  left: 0.85rem; bottom: 0.85rem;
  background: rgba(58,46,40,0.72);
  color: var(--cream-soft);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 18, 0.92);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox-image {
  max-width: min(900px, 90vw);
  max-height: 74vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-caption {
  color: var(--cream-soft);
  margin-top: 1rem;
  font-size: 0.9rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--cream-soft);
  font-size: 2.2rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--cream-soft);
  font-size: 2.6rem;
  padding: 0.5rem 1rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--cream-soft);
  border: 1px solid var(--sand-line);
  border-left: 2px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-left-color: var(--gold);
}
.why-icon {
  color: var(--gold);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.75rem;
  transition: transform var(--dur-fast) var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(12deg); }
.why-card p { font-size: 0.93rem; margin: 0; }

/* ===================== STATS ===================== */
.stats {
  background: var(--sand);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--sand-line);
  border-bottom: 1px solid var(--sand-line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--terracotta);
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  opacity: 0.9;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream-soft);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 0;
  position: relative;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-soft);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}
.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--charcoal);
  font-style: italic;
}
.testimonial-card figcaption {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--terracotta);
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
}
.contact-list { margin: var(--space-md) 0; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--sand-line);
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: var(--charcoal);
}
.contact-list a { color: var(--terracotta); }
.contact-list a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.9rem; margin-top: var(--space-sm); }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sand-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: all var(--dur-fast) var(--ease);
}
.social-links a:hover { background: var(--terracotta); color: var(--cream-soft); border-color: var(--terracotta); }

.appointment-form {
  background: var(--cream-soft);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.form-row { margin-bottom: 1.25rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.optional { font-weight: 400; color: var(--charcoal-soft); }
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-line);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--terracotta);
  outline: none;
  box-shadow: 0 0 0 3px rgba(193, 103, 62, 0.15);
}
textarea { resize: vertical; }

.form-success {
  position: absolute;
  inset: 0;
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.form-success[hidden] {
  display: none;
}
.success-check {
  width: 64px; height: 64px;
  margin-bottom: 1rem;
}
.success-check circle {
  stroke: var(--terracotta);
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: circleDraw 0.6s var(--ease) forwards;
}
.success-check path {
  stroke: var(--terracotta);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: checkDraw 0.4s var(--ease) 0.5s forwards;
}
@keyframes circleDraw { to { stroke-dashoffset: 0; } }
@keyframes checkDraw { to { stroke-dashoffset: 0; } }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--cream-soft);
  color: var(--charcoal);
  border-top: 1px solid var(--sand-line);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer-brand .brand-name { color: var(--charcoal); }
.footer-brand .brand-name em { color: var(--terracotta); }
.footer-brand p { color: var(--charcoal-soft); font-size: 0.9rem; margin-top: 1rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--charcoal-soft); }
.footer-col a:hover { color: var(--terracotta); }
.footer-col .social-links a { border-color: var(--sand-line); color: var(--charcoal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid var(--sand-line);
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--charcoal-soft);
}
.footer-signature { font-family: var(--font-accent); font-size: 1.2rem; color: var(--gold); }
.footer-credit { font-size: 0.82rem; color: var(--charcoal-soft); }
.footer-credit a { color: var(--terracotta); font-weight: 600; }
.footer-credit a:hover { color: var(--gold); }

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #2FAE60;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(47, 174, 96, 0.4);
  z-index: 90;
  transition: transform var(--dur-fast) var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--sand-line);
  display: grid;
  place-items: center;
  color: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  box-shadow: var(--shadow-soft);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); color: var(--terracotta); }
.back-to-top svg { width: 18px; height: 18px; }

/* Image fallback placeholder (used when /images/*.png is missing) */
.img-fallback {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand), var(--cream));
  color: var(--charcoal-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
  width: 100%;
  height: 100%;
}
