/* ==========================================================================
   الدمياطي للنجارة — Main Stylesheet
   Plain CSS (no preprocessor) on top of Bootstrap 5 RTL.
   Colors/spacing live in CSS custom properties below for easy editing.
   ========================================================================== */

:root {
  /* Color — warm walnut/wood palette, distinct from cool metal/glass themes */
  --walnut-900: #2b1d16;
  --walnut-800: #3e2723;
  --walnut-700: #55362b;
  --amber-600: #b8722e;
  --amber-500: #c97b3d;
  --amber-300: #d6a04f;
  --amber-200: #e6c48a;
  --cream-50: #faf3e9;
  --cream-100: #f2e8d8;
  --beige-200: #e8d9c3;
  --ink-900: #241a14;
  --ink-600: #6b5b4d;
  --white: #ffffff;

  --gradient-wood: linear-gradient(135deg, var(--walnut-800) 0%, var(--walnut-700) 55%, var(--amber-600) 130%);
  --gradient-amber: linear-gradient(120deg, var(--amber-600) 0%, var(--amber-300) 100%);

  --font-display: "Changa", "Segoe UI", sans-serif;
  --font-body: "Almarai", "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 45px -20px rgba(43, 29, 22, 0.4);
  --shadow-tight: 0 8px 20px -10px rgba(43, 29, 22, 0.35);

  --transition-base: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  --section-padding-y: 6.5rem;
  --section-padding-y-sm: 3.75rem;
  --container-max: 1240px;
}

/* Base ---------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--walnut-900);
  line-height: 1.35;
}

section h2 {
  font-size: clamp(2.5rem, 2rem + 2.8vw, 3.75rem);
  letter-spacing: -0.01em;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-600);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--amber-500);
  display: inline-block;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 0.9rem;
}

.section-heading p {
  color: var(--ink-600);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-heading.mx-auto {
  text-align: center;
}

section {
  padding-block: var(--section-padding-y);
}

@media (max-width: 767.98px) {
  section { padding-block: var(--section-padding-y-sm); }
}

.container { max-width: var(--container-max); }

::selection { background: var(--amber-300); color: var(--walnut-900); }

a { text-decoration: none; }
img { max-width: 100%; display: block; }

.text-amber { color: var(--amber-600); }
.bg-cream { background: var(--cream-100); }
.bg-walnut { background: var(--walnut-800); }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
}

/* Buttons --------------------------------------------------------------- */
.btn {
  font-weight: 700;
  padding: 0.75rem 1.9rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  border: none;
}

.btn-amber {
  background: var(--gradient-amber);
  color: var(--walnut-900);
  box-shadow: var(--shadow-tight);
}

.btn-amber:hover, .btn-amber:focus-visible {
  color: var(--walnut-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(185, 122, 62, 0.55);
}

.btn-outline-light-wood {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-light-wood:hover, .btn-outline-light-wood:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-wood-soft {
  background: rgba(184, 114, 46, 0.12);
  color: var(--amber-600);
}

.btn-wood-soft:hover, .btn-wood-soft:focus-visible {
  background: var(--amber-600);
  color: var(--white);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.whatsapp-fab {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6);
  transition: transform var(--transition-base);
}

.whatsapp-fab:hover, .whatsapp-fab:focus-visible {
  color: var(--white);
  transform: scale(1.08);
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulse-ring 2.6s ease-out infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  80% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Navbar ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1030;
  padding-block: 1.1rem;
  background: transparent;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(43, 29, 22, 0.94);
  backdrop-filter: blur(10px);
  padding-block: 0.6rem;
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--walnut-900);
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--beige-200);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  position: relative;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.nav-link-custom:hover, .nav-link-custom.active { color: var(--white); }
.nav-link-custom:hover::after, .nav-link-custom.active::after { transform: scaleX(1); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
}

.header-phone i { color: var(--amber-300); font-size: 1.2rem; }

.navbar-toggler-custom {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
}

.offcanvas-brand-nav {
  background: var(--walnut-800);
  color: var(--white);
}

.offcanvas-brand-nav .nav-link-custom::after { display: none; }

.offcanvas-brand-nav .offcanvas-header {
  align-items: flex-start;
  padding-inline-end: 1rem;
}

.offcanvas-brand-nav .offcanvas-title {
  font-size: 1rem;
  line-height: 1.4;
}

.offcanvas-brand-nav .offcanvas-title .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Hero — kept simple: real photo showcase, no decorative filler shapes --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  overflow: hidden;

  color: var(--white);

  background:
    linear-gradient(
      rgba(62, 38, 28, 0.72),
      rgba(62, 38, 28, 0.72)
    ),
    url("../images/wood-texture.jpg") center center / cover no-repeat;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber-200);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 1.5rem + 3vw, 3.4rem);
  margin-block: 1.1rem 1.25rem;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero p.lead.mx-auto {
  text-align: center;
}

/* Scroll cue — animated "mouse" indicator, distinct from a bouncing arrow */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-300);
  animation: scroll-dot-move 1.8s ease-in-out infinite;
}

@keyframes scroll-dot-move {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 767.98px) { .hero-scroll-cue { display: none; } }

/* About ------------------------------------------------------------------ */
.about-media { position: relative; }

.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.about-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
  display: grid;
  gap: 0.9rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink-600);
}

.about-points i {
  color: var(--white);
  background: var(--amber-600);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* Trust badges — individual elevated cards instead of one dark strip */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}

@media (max-width: 767.98px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .trust-badges { grid-template-columns: 1fr; }
}

.trust-badge {
  background: var(--white);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-tight);
  transition: transform var(--transition-base);
}

.trust-badge:hover { transform: translateY(-4px); }

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1rem;
}

.trust-badge b {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.35rem);
  color: var(--walnut-800);
  line-height: 1.1;
}

.trust-badge span {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink-600);
  font-size: 0.92rem;
}

/* Services ----------------------------------------------------------------- */
.service-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card .service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--amber-600);
  margin-bottom: 1.4rem;
  transition: background var(--transition-base), color var(--transition-base);
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-600); font-size: 0.96rem; margin-bottom: 0; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-tight);
  border-color: transparent;
}

.service-card:hover .service-icon { background: var(--amber-600); color: var(--white); }

.service-card.is-featured {
  background: var(--gradient-wood);
  border-color: transparent;
  color: var(--white);
}

.service-card.is-featured h3 { color: var(--white); }
.service-card.is-featured p { color: rgba(255, 255, 255, 0.75); }
.service-card.is-featured .service-icon { background: rgba(255, 255, 255, 0.12); color: var(--amber-200); }
.service-card.is-featured:hover .service-icon { background: var(--amber-500); color: var(--walnut-900); }

/* Gallery grids (cards, no slider) ------------------------------------- */
.gallery-section.alt-surface {
  background: var(--walnut-800);
  color: var(--white);
}

.gallery-section.alt-surface h2,
.gallery-section.alt-surface h3,
.gallery-section.alt-surface h4 {
  color: var(--white);
}

.gallery-section.alt-surface .section-heading p {
  color: var(--beige-200);
}

.gallery-section.alt-surface .section-eyebrow {
  color: var(--amber-200);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-tight);
  height: 100%;
  isolation: isolate;
}

/* Image --------------------------------------------------------------- */

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  filter: brightness(1);

  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.25s ease;
}

/* Elegant dark overlay ----------------------------------------------- */

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(20, 12, 8, 0.72),
      rgba(20, 12, 8, 0.08) 55%,
      transparent
    );

  opacity: 0.75;

  transition: opacity 0.25s ease;

  pointer-events: none;
}

/* Image hover --------------------------------------------------------- */

.gallery-card:hover img {
  transform: scale(1.055);
  filter: brightness(1.08);
}

/* Overlay hover ------------------------------------------------------- */

.gallery-card:hover::after {
  opacity: 0.95;
}

/* Caption ------------------------------------------------------------- */

.gallery-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;

  padding: 1.4rem 1.1rem 1rem;

  background: transparent;
  color: var(--white);

  font-weight: 700;
  font-size: 0.96rem;

  transform: translateY(0);

  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease;
}

.gallery-card:hover figcaption {
  transform: translateY(-5px);
  color: var(--amber-200);
}

.gallery-grid {
  row-gap: 1.75rem;
}

.gallery-more-wrap {
  text-align: center;
  margin-top: 2.25rem;
}

/* Door-accent hover effect — themed to a carpentry business, but the photo
   itself is ALWAYS fully visible (this replaces an earlier version where
   solid panels covered the photo until hovered, which was confusing since
   visitors couldn't tell there was a photo underneath at all). Now it's a
   pair of slim decorative door-frame strips at the inner edges of the
   card; on hover they swing outward like little doors opening wider,
   while the photo itself simply zooms in slightly. */
/* .door-panel {
  position: absolute;
  inset-block: 6px;
  width: 7px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
  border-radius: 3px;
  opacity: 0.85;
  pointer-events: none;
}

.door-left {
  inset-inline-start: 8px;
  transform-origin: left center;
}

.door-right {
  inset-inline-end: 8px;
  transform-origin: right center;
} */

@media (hover: hover) and (pointer: fine) {
  .gallery-card.door-hover {
    perspective: 1200px;
  }

  .door-panel {
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
  }

  .gallery-card.door-hover:hover .door-left {
    transform: rotateY(-55deg) translateX(-2px);
    opacity: 1;
  }

  .gallery-card.door-hover:hover .door-right {
    transform: rotateY(55deg) translateX(2px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-panel { transition: none !important; }
}

/* Why us — horizontal numbered steps (fresh layout vs. plain icon list) */
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

@media (max-width: 991.98px) {
  .step-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .step-row { grid-template-columns: 1fr; }
}

.step-card {
  background: var(--white);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-tight);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--beige-200);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.1rem;
}

.step-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--ink-600); margin-bottom: 0; font-size: 0.92rem; }

.quote-strip {
  background: var(--white);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-tight);
  height: 100%;
}

.quote-strip i.quote-mark {
  font-size: 2rem;
  color: var(--amber-500);
  display: block;
  margin-bottom: 0.85rem;
}

.quote-strip p.quote-text {
  font-size: 1.05rem;
  color: var(--walnut-900);
}

.quote-strip .quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quote-strip .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-wood);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-strip .quote-author b { display: block; }
.quote-strip .quote-author span { color: var(--ink-600); font-size: 0.85rem; }

/* Dark testimonial variant — visually distinct treatment for this project */
.quote-strip-dark {
  background: var(--walnut-800);
  border-color: transparent;
  color: var(--white);
}

.quote-strip-dark i.quote-mark { color: var(--amber-300); }
.quote-strip-dark p.quote-text { color: var(--white); }
.quote-strip-dark .quote-author span { color: var(--beige-200); }
.quote-strip-dark .avatar { background: var(--gradient-amber); color: var(--walnut-900); }

/* Location / Contact ------------------------------------------------------ */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.location-details { padding: 2.5rem; }

.location-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  margin: 0;
}

.location-details dt {
  color: var(--amber-600);
  font-size: 1.2rem;
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}

.location-details dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 600;
}

.location-details dd small {
  display: block;
  color: var(--ink-600);
  font-weight: 400;
  margin-top: 0.15rem;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: sepia(0.12) contrast(1.02);
}

.contact-strip {
  background: var(--gradient-wood);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-strip h3 { color: var(--white); margin-bottom: 0.4rem; }
.contact-strip p { color: rgba(255, 255, 255, 0.78); margin-bottom: 0; }
.contact-strip .contact-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--walnut-900);
  color: var(--beige-200);
  padding-block: 4rem 1.75rem;
}

.site-footer h5 { color: var(--white); margin-bottom: 1.1rem; font-size: 1.05rem; }

.site-footer .footer-brand {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.site-footer p { font-size: 0.92rem; line-height: 1.9; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul.footer-links li { margin-bottom: 0.65rem; }

.site-footer ul.footer-links a {
  color: var(--beige-200);
  transition: color var(--transition-base);
}

.site-footer ul.footer-links a:hover { color: var(--amber-300); }

.site-footer .footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }

.site-footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.site-footer .footer-social a:hover { background: var(--amber-600); }

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Scroll reveal ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: none; margin-bottom: 25px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}