/* ============================================================
   HOLZWERK BIELER — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary:       #3E2410;
  --primary-mid:   #6A3D1F;
  --accent:        #C47C2B;
  --accent-light:  #E8A84A;
  --bg:            #FAF7F2;
  --bg-warm:       #F0E9DC;
  --dark:          #1A0E05;
  --text:          #3A2515;
  --text-muted:    #7A6450;
  --border:        #DDD0BE;
  --white:         #FFFFFF;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, -apple-system, sans-serif;

  --r:    6px;
  --r-lg: 14px;
  --sh-s: 0 2px 10px rgba(62,36,16,.08);
  --sh-m: 0 6px 28px rgba(62,36,16,.13);
  --sh-l: 0 12px 56px rgba(62,36,16,.2);
  --nav-h: 70px;
  --max-w: 1200px;
  --t: .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Lenis smooth-scroll base styles (required by the library) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media(min-width:768px){ .container{ padding: 0 2rem; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--sh-m); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.nav__logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-icon svg { width: 22px; height: 22px; }

.nav__links {
  display: none; align-items: center; gap: .2rem;
}
.nav__links a {
  padding: .45rem .85rem;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t), background var(--t);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--primary);
  background: var(--bg-warm);
}
.nav__links .nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: .45rem 1.2rem !important;
  font-weight: 600 !important;
  transition: background var(--t), transform var(--t) !important;
}
.nav__links .nav-cta:hover {
  background: var(--primary) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem; z-index: 1001;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all var(--t);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(min-width:768px){
  .nav__toggle { display: none; }
  .nav__links  { display: flex; }
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-m);
  padding: .75rem 1.25rem 1.25rem;
  z-index: 999;
  flex-direction: column;
  gap: .2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: .75rem 1rem;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--t), color var(--t);
}
.nav__mobile a:hover { background: var(--bg-warm); color: var(--primary); }
.nav__mobile .nav-cta-m {
  margin-top: .5rem;
  background: var(--accent);
  color: var(--white) !important;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media(min-width:640px)  { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand .nav__logo { color: var(--white); margin-bottom: .875rem; }
.footer__brand .nav__logo-icon { background: rgba(255,255,255,.15); }
.footer__brand p { font-size: .875rem; line-height: 1.75; max-width: 250px; }

.footer__col h4 {
  font-family: var(--font-h);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}
.footer__col ul li a:hover { color: var(--accent-light); }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; margin-bottom: .65rem;
  color: rgba(255,255,255,.7);
}
.footer__contact-item a { color: rgba(255,255,255,.7); transition: color var(--t); }
.footer__contact-item a:hover { color: var(--accent-light); }
.footer__contact-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  fill: var(--accent-light);
}

.footer__bottom {
  display: flex; flex-direction: column; gap: .5rem;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
@media(min-width:640px){ .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a { color: rgba(255,255,255,.4); transition: color var(--t); }
.footer__bottom a:hover { color: rgba(255,255,255,.8); }
.footer__bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.875rem;
  border-radius: 50px;
  font-size: .9375rem; font-weight: 600;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-2px); box-shadow: var(--sh-m);
}
.btn--outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1); border-color: var(--white);
}
.btn--outline-dark {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary); color: var(--white);
}
.btn--sm { padding: .625rem 1.25rem; font-size: .875rem; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .75rem;
}
.label::before {
  content: ''; display: block;
  width: 22px; height: 2px; background: var(--accent);
}
.label--white { color: var(--accent-light); }
.label--white::before { background: var(--accent-light); }

.section { padding: 5.5rem 0; }
.section-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header p {
  color: var(--text-muted);
  margin-top: .875rem;
  font-size: 1.0625rem; line-height: 1.75;
}

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 4.5rem;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: .875rem; }
.page-hero p { font-size: 1.1rem; opacity: .85; max-width: 540px; line-height: 1.75; }

/* ============================================================
   SCROLL-DRIVEN ANIMATION HERO  (index.html only)
   ============================================================ */
#scroll-zone {
  position: relative;
  height: 350vh;
}
#scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scroll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Dark fallback while video loads */
  background: var(--dark);
}
/* On phones we load a dedicated portrait video (see index.html / main.js),
   so `cover` now fills the screen cleanly with no bars and nothing important
   cropped — the video aspect ratio matches the phone. */
@media (max-width: 767px) {
  #scroll-video { object-fit: cover; }
}
.scroll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,14,5,.45) 0%,
    rgba(26,14,5,.2)  45%,
    rgba(26,14,5,.65) 100%
  );
}
#hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 1.5rem;
  max-width: 780px;
  transition: opacity .15s ease, transform .15s ease;
}
.hero-tag {
  display: inline-block;
  background: rgba(196,124,43,.92);
  color: var(--white);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
#hero-content h1 {
  font-size: clamp(2.25rem, 6.5vw, 4.75rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
#hero-content p {
  font-size: clamp(.975rem, 2.5vw, 1.25rem);
  opacity: .9; line-height: 1.75;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.65); font-size: .8rem;
  animation: cue-bounce 2s ease-in-out infinite;
}
.scroll-cue svg { width: 22px; height: 22px; fill: rgba(255,255,255,.65); }
@keyframes cue-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   STATIC HERO  (mobile only) — replaces the video animation on phones
   ============================================================ */
.mobile-hero { display: none; }

@media (max-width: 767px) {
  /* Hide the scroll-driven video hero, show the static image hero instead. */
  #scroll-zone { display: none; }

  .mobile-hero {
    display: flex;
    align-items: flex-end;
    position: relative;
    min-height: 100svh;              /* fills the screen, respects mobile UI bars */
    padding: 0 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
    background: var(--dark) url("../img/hero-mobil.jpg") center 30% / cover no-repeat;
    overflow: hidden;
  }
  .mobile-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,14,5,.30) 0%,
      rgba(26,14,5,.45) 45%,
      rgba(26,14,5,.82) 100%
    );
  }
  .mobile-hero__content {
    position: relative; z-index: 1;
    color: var(--white);
    max-width: 560px;
    animation: hero-rise .9s cubic-bezier(.22,.61,.36,1) both;
  }
  .mobile-hero__content .hero-tag {
    display: inline-block;
    background: rgba(196,124,43,.92);
    color: var(--white);
    font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    padding: .3rem .85rem; border-radius: 50px;
    margin-bottom: 1rem;
  }
  .mobile-hero__content h1 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: .9rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .mobile-hero__content p {
    font-size: 1rem; line-height: 1.65;
    opacity: .92; margin-bottom: 1.5rem;
    text-shadow: 0 1px 10px rgba(0,0,0,.35);
  }
  .mobile-hero__content .hero-btns {
    display: flex; flex-direction: column; gap: .65rem;
  }
  .mobile-hero__content .hero-btns .btn { justify-content: center; }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary); padding: 2.75rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
@media(min-width:640px){ .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; color: var(--white); }
.stat__num {
  font-family: var(--font-h);
  font-size: 2.25rem; font-weight: 700;
  color: var(--accent-light); display: block;
}
.stat__lbl { font-size: .875rem; opacity: .7; margin-top: .2rem; }

/* ============================================================
   REAL IMAGES (replacing placeholders)
   ============================================================ */
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

.photo {
  width: 100%;
  object-fit: cover; display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-s);
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media(min-width:600px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--sh-s);
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-m); }
.service-card__icon {
  width: 54px; height: 54px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 28px; height: 28px; fill: var(--accent); }
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(140deg, var(--primary-mid) 0%, var(--primary) 100%);
  padding: 5.5rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(196,124,43,.1);
  border-radius: 50%;
  top: -150px; right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(196,124,43,.08);
  border-radius: 50%;
  bottom: -100px; left: -60px;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem; max-width: 510px;
  margin: 0 auto 2rem; line-height: 1.75;
}
.cta-banner .cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media(min-width:600px)  { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }

.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8ddd0 0%, #d0c0a8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem; color: var(--text-muted);
  font-size: .8rem; text-align: center; padding: 1rem;
}
.gallery-placeholder svg { width: 36px; height: 36px; fill: var(--text-muted); opacity: .4; }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(62,36,16,.82);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--t);
  padding: 1.5rem; text-align: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.gallery-item__overlay p  { font-size: .875rem; opacity: .85; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media(min-width:1024px){ .contact-grid { grid-template-columns: 1fr 1.6fr; } }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  margin-bottom: .75rem;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--bg-warm);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.contact-info-text strong { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .15rem; }
.contact-info-text span, .contact-info-text a {
  font-size: .9375rem; color: var(--text-muted); line-height: 1.5;
}
.contact-info-text a:hover { color: var(--accent); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .6rem 0; font-size: .9375rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

.map-placeholder {
  height: 260px;
  background: linear-gradient(135deg, var(--bg-warm), var(--border));
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); gap: .75rem;
  border: 1px solid var(--border);
  font-size: .875rem; text-align: center;
}
.map-placeholder svg { width: 40px; height: 40px; fill: var(--text-muted); opacity: .4; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 500;
  font-size: .9375rem; margin-bottom: .375rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-b); font-size: 1rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,124,43,.16); }
.form-group textarea { resize: vertical; min-height: 140px; }

.privacy-note {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .875rem 1rem;
  font-size: .8rem; color: var(--text-muted);
  margin-top: 1.25rem; line-height: 1.65;
}
.privacy-note a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center;
}
@media(min-width:1024px){ .about-grid { grid-template-columns: 1fr 1fr; } }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media(min-width:600px){ .values-grid { grid-template-columns: repeat(2,1fr); } }

.value-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.value-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--bg-warm);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.value-card h4 { font-family: var(--font-h); font-size: 1rem; margin-bottom: .25rem; }
.value-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.img-placeholder {
  background: linear-gradient(135deg, var(--bg-warm), var(--border));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); gap: .75rem;
  border-radius: var(--r-lg);
  font-size: .875rem; text-align: center;
  padding: 2rem;
  border: 1px dashed var(--border);
}
.img-placeholder svg { width: 36px; height: 36px; fill: var(--text-muted); opacity: .4; }
.img-placeholder span { display: block; font-size: .75rem; opacity: .7; margin-top: .25rem; }

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
@media(min-width:768px){ .service-detail { grid-template-columns: auto 1fr; } }
.service-detail:last-child { border-bottom: none; }
.service-detail__icon {
  width: 80px; height: 80px;
  background: var(--bg-warm);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-detail__icon svg { width: 40px; height: 40px; fill: var(--accent); }
.service-detail h3 { margin-bottom: .75rem; }
.service-detail p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.service-detail ul { display: flex; flex-direction: column; gap: .4rem; }
.service-detail ul li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9375rem; color: var(--text-muted);
}
.service-detail ul li::before {
  content: ''; display: block; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fi.in { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: .1s; }
.fi-d2 { transition-delay: .2s; }
.fi-d3 { transition-delay: .3s; }
.fi-d4 { transition-delay: .4s; }
.fi-d5 { transition-delay: .5s; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.bg-warm { background: var(--bg-warm); }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: calc(var(--nav-h) + 3rem) 0 4rem; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 .75rem; }
.legal p, .legal li {
  font-size: .9375rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: .65rem;
}
.legal ul { list-style: disc; padding-left: 1.5rem; }
.legal a { color: var(--accent); text-decoration: underline; }
