 /* ── CSS VARIABLES ── */
    :root {
      --bg: #fafaf8;
      --white: #ffffff;
      --ink: #1a1a1a;
      --ink-light: #5a5a5a;
      --ink-faint: #a0a0a0;
      --sky: #e8f4f8;
      --sky-mid: #c8e6f0;
      --accent: #1a6b8a;
      --accent-light: #2589b0;
      --accent-pale: #eaf5fa;
      --amber: #e8923a;
      --amber-pale: #fef3e8;
      --bdr: #e8e6e0;
      --bdr-light: #f0ede8;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; }

    /* ── NAVBAR ── */
    .bm-nav {
      background: rgba(250,250,248,0.93) !important;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--bdr);
      height: 68px;
    }
    .logo-mark {
      width: 38px; height: 38px; background: var(--accent);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: white;
    }
    .logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
    .logo-text span { color: var(--accent); }
    .nav-link-custom {
      font-size: 0.88rem; font-weight: 500; color: var(--ink-light) !important;
      text-decoration: none; position: relative; transition: color 0.25s;
    }
    .nav-link-custom::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: var(--accent); transition: width 0.3s;
    }
    .nav-link-custom:hover { color: var(--accent) !important; }
    .nav-link-custom:hover::after { width: 100%; }
    .btn-nav-cta {
      background: var(--accent); color: white !important;
      padding: 0.5rem 1.3rem; border-radius: 8px; font-weight: 600;
      font-size: 0.85rem; text-decoration: none;
      box-shadow: 0 4px 16px rgba(26,107,138,0.25);
      transition: background 0.3s;
    }
    .btn-nav-cta:hover { background: var(--accent-light) !important; }

    /* ── HERO ── */
    .hero-section {
      min-height: 100vh; background: var(--white);
      padding: 100px 0 60px; position: relative; overflow: hidden;
    }
    .hero-bg-shape {
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, #e8f4f8 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    .hero-bg-dots {
      position: absolute; bottom: 0; left: 0;
      width: 280px; height: 280px;
      background-image: radial-gradient(circle, #c8e6f0 1.5px, transparent 1.5px);
      background-size: 24px 24px; opacity: 0.4; z-index: 0;
    }
    .hero-left { position: relative; z-index: 2; }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent-pale); border: 1px solid var(--sky-mid);
      color: var(--accent); font-size: 0.78rem; font-weight: 600;
      padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 2rem;
      animation: slideUp 0.7s ease forwards;
    }
    .pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 2s infinite; }
    @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 700; line-height: 1.06; color: var(--ink);
      margin-bottom: 1.6rem; animation: slideUp 0.8s ease 0.1s forwards; opacity: 0;
    }
    .hero h1 em { font-style: italic; color: var(--accent); }
    .ul-wrap { display: inline-block; position: relative; }
    .ul-wrap::after {
      content: ''; position: absolute; bottom: 5px; left: 0; right: 0; height: 8px;
      background: linear-gradient(90deg, #c8e6f0, #e8f4f8); z-index: -1; border-radius: 4px;
    }
    .hero-desc {
      font-size: 1.05rem; color: var(--ink-light); line-height: 1.75; max-width: 480px;
      margin-bottom: 2.5rem; animation: slideUp 0.8s ease 0.2s forwards; opacity: 0;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: slideUp 0.8s ease 0.3s forwards; opacity: 0; }
    .btn-solid {
      background: var(--accent); color: white; padding: 0.85rem 2rem; border-radius: 10px;
      font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s;
      box-shadow: 0 6px 24px rgba(26,107,138,0.3); display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-solid:hover { background: var(--accent-light); color: white; transform: translateY(-2px); }
    .btn-ghost {
      background: transparent; color: var(--ink); padding: 0.85rem 2rem; border-radius: 10px;
      font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s;
      border: 1.5px solid var(--bdr);
    }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); }
    .hero-trust {
      margin-top: 3rem; display: flex; align-items: center; gap: 1.5rem;
      animation: slideUp 0.8s ease 0.4s forwards; opacity: 0;
    }
    .trust-avs { display: flex; }
    .tav {
      width: 36px; height: 36px; border-radius: 50%; border: 2px solid white; margin-left: -8px;
      background: var(--accent-pale); display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: var(--accent); font-family: 'Cormorant Garamond', serif;
    }
    .tav:first-child { margin-left: 0; }
    .trust-text { font-size: 0.82rem; color: var(--ink-light); }
    .trust-text strong { color: var(--ink); }
    /* HERO CARDS */
    .hero-right { animation: slideUp 0.9s ease 0.2s forwards; opacity: 0; }
    .hcard {
      background: var(--bg); border: 1px solid var(--bdr);
      border-radius: 16px; padding: 1.5rem; transition: all 0.3s; height: 100%;
    }
    .hcard:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); border-color: var(--sky-mid); }
    .hcard.sky { background: var(--accent-pale); border-color: var(--sky-mid); }
    .hcard.amber { background: var(--amber-pale); border-color: #f0c89a; }
    .hc-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
    .hc-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--ink); display: block; margin-bottom: 0.2rem; }
    .sky .hc-num { color: var(--accent); }
    .amber .hc-num { color: var(--amber); }
    .hc-label { font-size: 0.8rem; color: var(--ink-faint); font-weight: 500; }
    .hero-banner {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 16px; padding: 1.8rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: white;
    }
    .hb-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
    .hb-text p { font-size: 0.8rem; opacity: 0.7; margin: 0; }
    .hb-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 600; white-space: nowrap; }

    @keyframes slideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

    /* ── MARQUEE ── */
    .marquee-bar { background: var(--accent); padding: 0.9rem 0; overflow: hidden; }
    .marquee-inner { display: flex; gap: 3.5rem; animation: mq 24s linear infinite; white-space: nowrap; }
    .mq-item { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 1.2px; text-transform: uppercase; flex-shrink: 0; }
    @keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ── NUMBERS STRIP ── */
    .nums-strip { background: var(--white); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 60px 0; }
    .ns-item { padding: 1.5rem; text-align: center; }
    .ns-item + .ns-item { border-left: 1px solid var(--bdr); }
    .ns-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
    .ns-label { font-size: 0.82rem; color: var(--ink-faint); font-weight: 500; margin-top: 0.5rem; display: block; }

    /* ── SHARED ── */
    .sec-pad { padding: 100px 0; }
    .eyebrow { font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.8rem; }
    .st { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.15; color: var(--ink); }
    .ssub { font-size: 1rem; color: var(--ink-light); line-height: 1.75; }

    /* ── ABOUT ── */
    .about-sec { background: var(--white); }
    .about-item-card {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.2rem 1.4rem; border-radius: 12px;
      background: var(--bg); border: 1px solid var(--bdr-light); transition: all 0.3s;
    }
    .about-item-card:hover { border-color: var(--sky-mid); background: var(--accent-pale); }
    .ai-ico {
      width: 42px; height: 42px; border-radius: 10px; background: var(--white);
      border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .ai-t strong { font-size: 0.9rem; color: var(--ink); display: block; margin-bottom: 2px; }
    .ai-t span { font-size: 0.82rem; color: var(--ink-faint); }
    .av-card { border-radius: 16px; padding: 2rem 1.5rem; text-align: center; }
    .av-card.a1 { background: var(--accent); color: white; }
    .av-card.a2 { background: var(--amber-pale); border: 1px solid #f0c89a; }
    .av-card.a3 { background: var(--accent-pale); border: 1px solid var(--sky-mid); }
    .av-n { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; display: block; }
    .a1 .av-n { color: white; }
    .a2 .av-n { color: var(--amber); }
    .a3 .av-n { color: var(--accent); }
    .av-l { font-size: 0.8rem; font-weight: 500; margin-top: 0.4rem; display: block; }
    .a1 .av-l { color: rgba(255,255,255,0.6); }
    .a2 .av-l, .a3 .av-l { color: var(--ink-light); }

    /* ── SERVICES ── */
    .svc-sec { background: var(--bg); }
    .sc {
      background: var(--white); border: 1px solid var(--bdr);
      border-radius: 16px; padding: 2rem; transition: all 0.35s; cursor: pointer; height: 100%;
    }
    .sc:hover { border-color: var(--accent); box-shadow: 0 12px 40px rgba(26,107,138,0.1); transform: translateY(-4px); }
    .sc-ico {
      width: 52px; height: 52px; border-radius: 12px; background: var(--accent-pale);
      border: 1px solid var(--sky-mid); display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1.4rem; transition: all 0.3s;
    }
    .sc:hover .sc-ico { background: var(--accent); }
    .sc h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 0.7rem; }
    .sc p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1.5rem; }
    .sc-link { font-size: 0.8rem; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s; text-decoration: none; }
    .sc:hover .sc-link { gap: 10px; }
    .sc.featured { background: linear-gradient(145deg, var(--accent), #0e4d66); border-color: transparent; }
    .sc.featured h3 { color: white; }
    .sc.featured p { color: rgba(255,255,255,0.65); }
    .sc.featured .sc-ico { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
    .sc.featured .sc-link { color: rgba(255,255,255,0.8); }
    .sc.featured:hover { box-shadow: 0 16px 50px rgba(26,107,138,0.35); }

    /* ── WHY ── */
    .why-sec { background: var(--white); }
    .wc {
      background: var(--bg); border: 1px solid var(--bdr);
      border-radius: 14px; padding: 1.5rem; transition: all 0.3s; height: 100%;
    }
    .wc:hover { border-color: var(--sky-mid); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
    .wc-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--sky-mid); line-height: 1; margin-bottom: 0.6rem; }
    .wc h4 { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
    .wc p { font-size: 0.8rem; color: var(--ink-faint); line-height: 1.6; margin: 0; }
    .why-big { background: var(--accent); border-radius: 20px; padding: 2.5rem; color: white; margin-top: 2.5rem; }
    .wb-v { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; display: block; color: white; line-height: 1; }
    .wb-l { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; display: block; }
    .wb-div { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

    /* ── TESTIMONIALS ── */
    .testi-sec { background: var(--bg); }
    .tc {
      background: var(--white); border: 1px solid var(--bdr);
      border-radius: 16px; padding: 2rem; transition: all 0.3s; height: 100%;
    }
    .tc:hover { border-color: var(--sky-mid); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
    .tc-stars { color: #f5a623; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .tc p { font-size: 0.88rem; color: var(--ink-light); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
    .tc-av {
      width: 42px; height: 42px; border-radius: 50%; background: var(--accent-pale);
      border: 2px solid var(--sky-mid); display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--accent);
      flex-shrink: 0;
    }
    .tc-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
    .tc-role { font-size: 0.75rem; color: var(--ink-faint); }

    /* ── CONTACT ── */
    .contact-sec { background: var(--white); border-top: 1px solid var(--bdr); }
    .cic {
      display: flex; gap: 1rem; align-items: center;
      padding: 1.2rem 1.4rem; border-radius: 12px;
      background: var(--bg); border: 1px solid var(--bdr-light); transition: all 0.3s;
    }
    .cic:hover { border-color: var(--sky-mid); }
    .cic-ico {
      width: 44px; height: 44px; border-radius: 10px; background: var(--accent-pale);
      border: 1px solid var(--sky-mid); display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .cic-l { font-size: 0.75rem; color: var(--ink-faint); margin-bottom: 2px; }
    .cic-v { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
    .form-ctrl {
      padding: 0.8rem 1rem; border: 1.5px solid var(--bdr); border-radius: 10px;
      background: var(--bg); font-family: 'Outfit', sans-serif; font-size: 0.88rem;
      color: var(--ink); outline: none; width: 100%; transition: border-color 0.25s, box-shadow 0.25s;
    }
    .form-ctrl:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,107,138,0.1); outline: none; }
    .form-label-custom { font-size: 0.8rem; font-weight: 600; color: var(--ink-light); margin-bottom: 0.4rem; display: block; }

    /* ── FOOTER ── */
    .bm-footer { background: var(--ink); padding: 60px 0 30px; }
    .fl { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 1rem; }
    .fl span { color: #7ec8e3; }
    .fd { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 1.5rem; }
    .fsoc {
      width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 700;
      text-decoration: none; transition: all 0.3s;
    }
    .fsoc:hover { border-color: #7ec8e3; color: #7ec8e3; }
    .fch { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.3); font-weight: 700; margin-bottom: 1.2rem; }
    .fcl { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
    .fcl a { text-decoration: none; font-size: 0.84rem; color: rgba(255,255,255,0.4); transition: color 0.25s; }
    .fcl a:hover { color: #7ec8e3; }
    .fb-text { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
    .footer-divider { border-color: rgba(255,255,255,0.08); }
/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── TESTIMONIAL SLIDER ── */
.testi-slider-wrap {
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-slide {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  min-width: calc((100% - 2.4rem) / 3);
}
/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sky-mid);
  border: none; cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
/* Mobile: 1 card */
@media (max-width: 767px) {
  .testi-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
/* Tablet: 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
  .testi-slide {
    flex: 0 0 calc((100% - 1.2rem) / 2);
    min-width: calc((100% - 1.2rem) / 2);
  }
}

/* ── GALLERY ── */
.gallery-sec { background: var(--bg); }

/* Filter buttons */
.gf-btn {
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--bdr);
  border-radius: 50px;
  background: var(--white);
  color: var(--ink-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.gf-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); }
.gf-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

/* Gallery items */
.gallery-item { transition: opacity 0.35s, transform 0.35s; }
.gallery-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); display: none; }

.gi-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--sky);
}
.gi-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gi-wrap:hover img { transform: scale(1.07); }

.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,40,55,0.85) 0%, rgba(10,40,55,0.15) 60%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 1.1rem;
  opacity: 0; transition: opacity 0.35s;
}
.gi-wrap:hover .gi-overlay { opacity: 1; }
.gi-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.gi-title { color: white; font-size: 0.88rem; font-weight: 600; margin: 0 0 0.2rem; text-align: center; }
.gi-tag { color: rgba(255,255,255,0.6); font-size: 0.72rem; margin: 0; text-align: center; }

/* ── LIGHTBOX ── */
.lb-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,20,30,0.85); z-index: 2000;
  backdrop-filter: blur(6px);
}
.gallery-lightbox {
  display: none; position: fixed; inset: 0; z-index: 2001;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.gallery-lightbox.open,
.gallery-lightbox.open ~ .lb-backdrop { display: flex; }
.lb-content {
  max-width: 860px; width: 100%;
  background: transparent; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: lbIn 0.3s ease;
}
@keyframes lbIn { from{opacity:0;transform:scale(0.94)} to{opacity:1;transform:scale(1)} }
.lb-content img {
  width: 100%; max-height: 80vh; object-fit: cover; display: block; border-radius: 20px;
}
.lb-info { display: none; }
.lb-title { display: none; }
.lb-desc { display: none; }
.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 2002;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-arrow {
  position: fixed; top: 50%; z-index: 2002; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
@media (max-width: 576px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-arrow { width: 36px; height: 36px; font-size: 1rem; }
}

/* ── BLOG SECTION ── */
.blog-sec { background: var(--bg); }

.blog-card {
  background: var(--white);
  border: 1px solid var(--bdr-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,107,138,0.10);
}

.bc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.bc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .bc-img { transform: scale(1.06); }

.bc-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: white;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  text-transform: uppercase;
}
.bc-tag.amber-tag { background: var(--amber); }
.bc-tag.sky-tag   { background: var(--accent-light); }

.bc-body { padding: 1.4rem 1.4rem 1.6rem; }

.bc-meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--ink-faint);
  margin-bottom: 0.75rem;
}
.bc-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-faint); display: inline-block;
}

.bc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  line-height: 1.4; margin-bottom: 0.65rem;
  transition: color 0.25s;
}
.blog-card:hover .bc-title { color: var(--accent); }

.bc-excerpt {
  font-size: 0.85rem; color: var(--ink-light);
  line-height: 1.7; margin-bottom: 1.1rem;
}

.bc-read {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.02em; transition: gap 0.2s;
}
.blog-card:hover .bc-read { text-decoration: underline; }

/* ── BLOG DETAIL PAGE ── */
.blog-detail-hero {
  background: var(--white);
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--bdr-light);
}
.bd-category {
  display: inline-block;
  background: var(--accent-pale); color: var(--accent);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.bd-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2; color: var(--ink);
  margin-bottom: 1.2rem;
}
.bd-meta {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  font-size: 0.83rem; color: var(--ink-faint); margin-bottom: 0;
}
.bd-meta .bd-author {
  display: flex; align-items: center; gap: 0.5rem; color: var(--ink-light);
}
.bd-meta .bd-author-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.bd-cover-wrap {
  border-radius: 16px; overflow: hidden;
  margin: 3rem 0; max-height: 460px;
}
.bd-cover-wrap img {
  width: 100%; height: 460px; object-fit: cover;
}
.bd-content {
  font-size: 1.02rem; color: var(--ink-light);
  line-height: 1.9; max-width: 780px; margin: 0 auto;
}
.bd-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700; color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.bd-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  margin: 2rem 0 0.8rem;
}
.bd-content p { margin-bottom: 1.4rem; }
.bd-content blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-pale);
  padding: 1.2rem 1.5rem; border-radius: 0 10px 10px 0;
  margin: 2rem 0; font-style: italic; color: var(--ink);
}
.bd-content ul { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.bd-content ul li { margin-bottom: 0.5rem; }

.bd-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--bdr-light); }
.bd-tag-pill {
  background: var(--accent-pale); color: var(--accent);
  font-size: 0.78rem; font-weight: 500;
  padding: 0.3rem 0.9rem; border-radius: 50px;
}

.bd-related { background: var(--bg); padding: 60px 0; }
.bd-related .st { font-size: 1.6rem; }

/* ── BLOG SKELETON LOADER ── */
.blog-skeleton {
  height: 340px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--bdr-light) 25%, #f5f3ef 50%, var(--bdr-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
