  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold: #C9A882;
    --gold-light: #D9BFA0;
    --gold-dark: #A07850;
    --cream: #F5EFE6;
    --dark: #FAFAF7;
    --dark-2: #F3F1EE;
    --dark-3: #EAE8E4;
    --text-light: #2C2C2C;
    --text-muted: #7A6E65;
    --nav-bg: rgba(250,250,247,0.96);
    --nav-border: rgba(201,168,130,0.25);
    --hero-overlay-top: rgba(250,250,247,0.72);
    --hero-overlay-mid: rgba(250,250,247,0.25);
    --text-strong: #1A1A1A;
    color-scheme: light;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    cursor: default;
  }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: linear-gradient(to bottom, rgba(250,250,247,0.6) 0%, transparent 100%);
    transition: transform .35s ease, background .4s ease, padding .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  }
  nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    padding: 16px 60px;
    border-bottom: 1px solid var(--nav-border);
  }
  nav.nav-hidden { transform: translateY(-100%); }

  .logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .logo img {
    height: 48px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text-strong);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color .3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* ─── HERO ─── */
  #hero {
    height: 100vh;
    position: relative;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }

  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(250,250,247,0.45) 0%, rgba(250,250,247,0.15) 50%, transparent 100%);
  }

  .hero-grain {
    position: absolute; inset: 0;
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 60px 100px;
    max-width: 680px;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
    opacity: 0; animation: fadeUp .8s .3s forwards;
  }
  .hero-eyebrow span {
    font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
  }
  .eyebrow-line {
    width: 40px; height: 1px; background: var(--gold);
  }

  .hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--text-strong);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0; animation: fadeUp .8s .5s forwards;
  }

  .hero-divider {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
    opacity: 0; animation: fadeUp .8s .65s forwards;
  }

  .hero-sub {
    font-size: 16px; font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0; animation: fadeUp .8s .75s forwards;
  }

  .hero-ctas {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp .8s .9s forwards;
  }

  .btn-primary {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase; font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196,154,108,0.35);
  }

  .btn-outline {
    padding: 14px 32px;
    background: transparent;
    color: var(--text-strong);
    border: 1px solid var(--nav-border);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase; font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .3s;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .nav-links a { color: rgba(42,34,32,0.75); }
  .btn-outline { color: var(--text-strong); border-color: rgba(42,34,32,0.2); }
  .hero-sub { color: rgba(42,34,32,0.8); }
  .premium-title,
  .reviewer-name { color: var(--text-strong); }
  .review-card { background: rgba(255,255,255,0.62); border-color: rgba(139,103,64,0.16); }
  .review-text { color: rgba(42,34,32,0.72); }
  .gallery-slide-label { background: linear-gradient(transparent, rgba(250,250,248,0.9)); }
  .form-input,
  .form-textarea,
  .form-select {
    background: rgba(255,255,255,0.7);
    color: var(--text-strong);
    border-color: rgba(139,103,64,0.22);
  }
  .form-select option { background: #fff; color: var(--text-strong); }

  .btn-primary:focus, .btn-outline:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
  .nav-links a:focus { outline: 2px solid var(--gold); outline-offset: 4px; }
  .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,108,0.1); }
  button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  .hero-scroll {
    position: absolute; bottom: 40px; right: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s 1.5s forwards;
  }
  .hero-scroll span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; }
  .scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }

  /* ─── STATS BAR ─── */
  .stats-bar { background: var(--dark-3); border-top: 1px solid rgba(196,154,108,0.15); border-bottom: 1px solid rgba(196,154,108,0.15); display: flex; justify-content: center; }
  .stats-inner { display: flex; width: 100%; max-width: 1100px; }
  .stat-item { flex: 1; padding: 32px 40px; border-right: 1px solid rgba(196,154,108,0.1); text-align: center; opacity: 0; transform: translateY(20px); transition: all .6s ease; }
  .stat-item:last-child { border-right: none; }
  .stat-item.visible { opacity: 1; transform: none; }
  .stat-num { font-family: 'DM Sans', sans-serif; font-size: 42px; font-weight: 200; color: var(--gold); line-height: 1; display: inline; }
  .stat-suffix { font-family: 'DM Sans', sans-serif; font-size: 42px; font-weight: 200; color: var(--gold); line-height: 1; }
  .stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; display: block; }

  /* ─── ABOUT ─── */
  #about { padding: 120px 60px; position: relative; overflow: hidden; }
  .wood-waves { position: absolute; inset: 0; opacity: .06; background: repeating-linear-gradient(-5deg, transparent, transparent 8px, rgba(196,154,108,0.5) 8px, rgba(196,154,108,0.5) 9px); }
  .about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
  .section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  .section-title { font-family: 'DM Sans', sans-serif; font-size: clamp(34px, 3.5vw, 50px); font-weight: 300; line-height: 1.2; color: var(--text-strong); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.14em; }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .about-text { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--text-muted); margin-bottom: 16px; }
  .about-visual { position: relative; }
  .about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%); }
  .about-img-accent { position: absolute; bottom: -24px; left: -24px; width: 45%; aspect-ratio: 1; object-fit: cover; border: 4px solid var(--dark); clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px)); }
  .about-badge { position: absolute; top: 24px; right: -20px; background: var(--gold); color: var(--dark); padding: 20px; text-align: center; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }
  .about-badge strong { font-family: 'DM Sans', sans-serif; font-size: 36px; font-weight: 700; display: block; line-height: 1; }
  .about-badge span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

  /* ─── SERVICES ─── */
  #services { background: var(--dark-2); padding: 120px 60px; position: relative; }
  .services-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
  .services-header .section-label { justify-content: center; }
  .services-header .section-label::before { display: none; }
  .services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card { background: var(--dark-3); padding: 50px 40px; position: relative; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease, background .3s ease; }
  .service-card.visible { opacity: 1; transform: none; }
  .service-card:hover { background: rgba(196,154,108,0.08); }
  .service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { width: 52px; height: 52px; border: 1px solid rgba(196,154,108,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; position: relative; transition: border-color .3s; }
  .service-card:hover .service-icon { border-color: var(--gold); }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
  .service-num { position: absolute; top: 24px; right: 24px; font-family: 'DM Sans', sans-serif; font-size: 60px; font-weight: 200; color: rgba(196,154,108,0.07); line-height: 1; pointer-events: none; }
  .service-title { font-family: 'DM Sans', sans-serif; font-size: 26px; font-weight: 300; color: var(--text-strong); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em; }
  .service-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-muted); }

  /* ─── ACHIEVEMENTS ─── */
  #achievements { padding: 120px 60px; }
  .achievements-inner { max-width: 1100px; margin: 0 auto; }
  .achievements-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 56px; gap: 32px; }
  .achievements-header .section-label { justify-content: center; }
  .achievements-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
  .before-after-slider { max-width: 620px; margin: 0 auto 56px; }
  .gallery-wrapper { overflow: hidden; }
  .gallery-track { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; touch-action: pan-x; }
  .gallery-track::-webkit-scrollbar { display: none; }
  .gallery-slide { flex: 0 0 300px; height: 400px; overflow: hidden; position: relative; cursor: pointer; flex-shrink: 0; }
  .gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; filter: brightness(.88) saturate(.9); }
  .gallery-slide:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
  .gallery-slide-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px 20px; background: linear-gradient(transparent, rgba(20,16,14,0.85)); transform: translateY(100%); transition: transform .4s ease; }
  .gallery-slide:hover .gallery-slide-label { transform: none; }
  .gallery-slide-label span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
  .gallery-nav { display: flex; gap: 12px; margin-top: 20px; justify-content: flex-end; }
  .gallery-btn { width: 48px; height: 48px; border: 1px solid rgba(196,154,108,0.3); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all .2s; font-size: 18px; }
  .gallery-btn:hover { background: var(--gold); color: var(--cream); }

  /* ─── PREMIUM ─── */
  #premium { background: var(--dark-2); padding: 120px 60px; }
  .premium-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
  .premium-header .section-label { justify-content: center; }
  .premium-header .section-label::before { display: none; }
  .premium-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
  .premium-card { border: 1px solid rgba(196,154,108,0.15); padding: 48px 36px; text-align: center; position: relative; overflow: hidden; transition: all .4s ease; opacity: 0; transform: translateY(30px); }
  .premium-card.visible { opacity: 1; transform: none; }
  .premium-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(196,154,108,0.06) 0%, transparent 70%); opacity: 0; transition: opacity .4s; }
  .premium-card:hover { border-color: rgba(196,154,108,0.4); }
  .premium-card:hover::after { opacity: 1; }
  .premium-icon { width: 60px; height: 60px; margin: 0 auto 28px; position: relative; }
  .premium-icon::before { content: ''; position: absolute; inset: 0; border: 1px solid rgba(196,154,108,0.4); transform: rotate(45deg); }
  .premium-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; position: relative; z-index: 1; }
  .premium-title { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 300; color: var(--text-strong); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em; }
  .premium-text { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-muted); }
  .cta-center { text-align: center; }

  /* ─── REVIEWS ─── */
  #reviews { padding: 120px 60px; position: relative; overflow: hidden; }
  .reviews-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1617806118233-18e1de247200?w=1600&q=60') center/cover no-repeat; opacity: .04; }
  .reviews-header { text-align: center; max-width: 600px; margin: 0 auto 24px; position: relative; z-index: 1; }
  .reviews-header .section-label { justify-content: center; }
  .reviews-header .section-label::before { display: none; }
  .stars-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 8px; }
  .star { color: #F5A623; font-size: 20px; }
  .rating-text { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 60px; position: relative; z-index: 1; }
  .reviews-track { display: flex; gap: 20px; overflow-x: auto; max-width: 1200px; margin: 0 auto; padding-bottom: 8px; scrollbar-width: none; position: relative; z-index: 1; }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 300px; background: rgba(53,46,42,0.6); border: 1px solid rgba(196,154,108,0.1); padding: 28px; backdrop-filter: blur(8px); transition: border-color .3s, transform .3s; }
  .review-card:hover { border-color: rgba(196,154,108,0.3); transform: translateY(-4px); }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 14px; color: #fff; flex-shrink: 0; }
  .reviewer-name { font-size: 14px; font-weight: 500; color: #fff; }
  .reviewer-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
  .review-stars span { color: #F5A623; font-size: 13px; }
  .review-text { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(232,221,208,0.7); }
  .review-more { font-size: 11px; color: var(--gold); margin-top: 10px; cursor: pointer; }
  .google-badge { text-align: center; margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; z-index: 1; }
  .google-badge span { font-size: 13px; color: var(--text-muted); }

  /* ─── FOOTER ─── */
  footer { background: #F0EEEA; border-top: 1px solid rgba(196,154,108,0.15); padding: 80px 60px 40px; }
  .footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 200px 1fr; gap: 80px; margin-bottom: 60px; }
  .footer-brand p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-muted); margin-top: 20px; max-width: 280px; }
  .footer-links h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
  .footer-links ul { list-style: none; }
  .footer-links li { margin-bottom: 12px; }
  .footer-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 300; transition: color .3s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-contact h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; text-align: right; }
  .contact-item { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 16px; font-size: 14px; font-weight: 300; color: var(--text-muted); }
  .contact-item a { color: inherit; text-decoration: none; }
  .contact-item a:hover { color: var(--gold-light); }
  .contact-icon { width: 36px; height: 36px; border: 1px solid rgba(196,154,108,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }
  .social-row { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }
  .social-btn { width: 40px; height: 40px; border: 1px solid rgba(196,154,108,0.2); display: flex; align-items: center; justify-content: center; transition: all .3s; cursor: pointer; text-decoration: none; color: var(--text-muted); }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,154,108,0.06); }
  .social-btn svg { width: 16px; height: 16px; fill: currentColor; }
  .footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(196,154,108,0.08); display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; color: var(--text-muted); letter-spacing: .5px; }
  .footer-bottom a { color: var(--text-muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.7); opacity: .5; } }
  @keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
  @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
  @keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
  @keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
  @keyframes rotateBounce { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(5deg); } }
  @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

  .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  .hero-eyebrow { animation: slideInLeft .8s .3s forwards; }
  .hero-title { animation: fadeUp .8s .5s forwards; }
  .hero-divider { animation: fadeUp .8s .65s forwards; }
  .hero-sub { animation: fadeUp .8s .75s forwards; }
  .hero-ctas { animation: fadeUp .8s .9s forwards; }
  .hero-scroll { animation: fadeIn 1s 1.5s forwards; }
  .scroll-line { animation: scrollPulse 2s infinite; }
  .service-card { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease, background .3s ease; }
  .service-card.visible { opacity: 1; transform: none; }
  .premium-card { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
  .premium-card.visible { opacity: 1; transform: none; }
  .stat-item { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
  .stat-item.visible { opacity: 1; transform: none; }
  .service-card:hover { transform: translateY(-5px); }
  .premium-card:hover { transform: translateY(-5px); }
  .gallery-slide:hover img { transform: scale(1.06); }
  .review-card:hover { transform: translateY(-4px); }

  /* ─── LANGUAGE SWITCHER ─── */
  .lang-switcher { display: flex; gap: 8px; align-items: center; }
  .lang-btn { width: 32px; height: 32px; border: 1px solid rgba(196,154,108,0.3); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all .3s; font-size: 18px; overflow: hidden; padding: 0; }
  .lang-btn .fi { width: 20px; height: 20px; border-radius: 50%; background-size: cover; }
  .lang-btn:hover, .lang-btn.active { border-color: var(--gold); background: rgba(196,154,108,0.1); }

  /* ─── LANG DESKTOP/MOBILE ─── */
  .lang-desktop { display: flex; gap: 8px; align-items: center; }
  .nav-lang-item { display: none; border-bottom: none !important; }
  .nav-lang-inner { display: flex; flex-direction: column; gap: 14px; padding: 20px 0 8px; }
  .nav-lang-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
  .nav-lang-flags { display: flex; gap: 8px; flex-wrap: wrap; }
  .nav-lang-flags .lang-btn { width: auto; height: auto; border-radius: 8px; padding: 8px 10px; flex-direction: column; gap: 5px; font-size: 9px; }
  .lang-code { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--text-strong); line-height: 1; }

  /* ─── BEFORE/AFTER SLIDER ─── */
  @keyframes ba-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,130,0.7); } 60% { box-shadow: 0 0 0 14px rgba(201,168,130,0); } }
  @keyframes ba-hint { 0% { left:50%; } 25% { left:30%; } 75% { left:70%; } 100% { left:50%; } }
  .before-after-slider { position: relative; width: 100%; height: 740px; overflow: hidden; border-radius: 2px; cursor: ew-resize; }
  .ba-image { display: block; width: 100%; height: 100%; object-fit: cover; }
  .ba-before { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
  .ba-before img { width: 100%; height: 100%; object-fit: cover; display: block; min-width: calc(100vw - 120px); }
  .ba-handle { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: var(--gold); cursor: ew-resize; z-index: 3; user-select: none; }
  .ba-handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; background: var(--gold); border-radius: 50%; animation: ba-pulse 2s ease-in-out infinite; }
  .ba-handle::after { content: '◀  ▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 10px; color: #fff; letter-spacing: 2px; z-index: 4; pointer-events: none; white-space: nowrap; }
  .ba-label { position: absolute; top: 16px; padding: 4px 12px; background: rgba(0,0,0,0.55); color: #fff; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; z-index: 2; }
  .ba-before-label { left: 16px; }
  .ba-after-label { right: 16px; }

  /* ─── FLOATING CTA ─── */
  .float-cta { position: fixed; bottom: 32px; left: 32px; z-index: 99; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
  .float-btn { background: var(--gold); color: var(--dark); border: none; cursor: pointer; padding: 12px 20px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: all .3s; display: flex; align-items: center; gap: 8px; }
  .float-btn:hover { background: var(--gold-light); transform: translateX(4px); }
  .float-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

  /* ─── QUOTE FORM ─── */
  #quote { background: var(--dark-3); padding: 120px 60px; }
  .quote-inner { max-width: 700px; margin: 0 auto; }
  .quote-inner .section-label { justify-content: center; }
  .quote-inner .section-label::before { display: none; }
  .quote-header { text-align: center; margin-bottom: 60px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-strong); }
  .form-input, .form-textarea, .form-select { background: rgba(255,255,255,0.75); border: 1px solid rgba(196,154,108,0.25); padding: 14px 16px; color: var(--text-strong); font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color .3s; width: 100%; }
  .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,108,0.1); }
  .form-select { appearance: none; cursor: pointer; color-scheme: light; }
  .form-select option { background: #fff; color: var(--text-strong); }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-submit { margin-top: 32px; text-align: center; }

  /* ─── MOBILE MENU ─── */
  .menu-toggle {
    display: none; flex-direction: column; gap: 5.5px; cursor: pointer;
    background: rgba(250,250,247,0.92);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,130,0.3);
    padding: 10px 12px; border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    transition: border-color .25s, background .25s, box-shadow .25s;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-toggle:hover { border-color: var(--gold); background: rgba(250,250,247,1); }
  .menu-toggle.active { border-color: var(--gold); background: rgba(250,250,247,1); box-shadow: 0 2px 16px rgba(201,168,130,0.22); }
  .menu-toggle span {
    width: 20px; height: 1.5px;
    background: var(--text-strong);
    border-radius: 2px;
    display: block;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── COOKIE BANNER ─── */
  .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 2px solid var(--gold); padding: 20px 30px; z-index: 1000; transform: translateY(100%); transition: transform 0.3s ease; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
  .cookie-banner.show { transform: translateY(0); }
  .cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
  .cookie-text { flex: 1; color: var(--text-light); font-size: 14px; line-height: 1.5; }
  .cookie-text p { margin: 0 0 10px 0; }
  .cookie-text a { color: var(--gold); text-decoration: none; }
  .cookie-text a:hover { color: var(--gold-light); }
  .cookie-buttons { display: flex; gap: 15px; flex-shrink: 0; }
  .cookie-btn { padding: 10px 20px; border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; font-family: 'DM Sans', sans-serif; }
  .cookie-btn-accept { background: var(--gold); color: var(--dark); }
  .cookie-btn-accept:hover { background: var(--gold-light); transform: translateY(-1px); }
  .cookie-btn-decline { background: transparent; color: var(--text-light); border: 1px solid var(--text-muted); }
  .cookie-btn-decline:hover { background: var(--text-muted); color: var(--dark); }
  .cookie-btn-settings { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
  .cookie-btn-settings:hover { background: var(--gold); color: var(--dark); }
  .cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 1001; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
  .cookie-modal.show { opacity: 1; visibility: visible; }
  .cookie-modal-content { background: var(--dark); border-radius: 12px; padding: 40px; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; border: 1px solid var(--gold); }
  .cookie-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
  .cookie-modal-title { font-family: 'DM Sans', sans-serif; font-size: 28px; color: var(--gold); margin: 0; }
  .cookie-modal-close { background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; padding: 5px; }
  .cookie-modal-close:hover { color: var(--gold); }
  .cookie-setting { margin-bottom: 25px; padding: 20px; background: var(--dark-2); border-radius: 8px; border-left: 4px solid var(--gold); }
  .cookie-setting h4 { font-family: 'DM Sans', sans-serif; font-size: 18px; color: var(--gold); margin: 0 0 10px 0; }
  .cookie-setting p { color: var(--text-muted); font-size: 14px; margin: 0 0 15px 0; }
  .cookie-toggle { display: flex; align-items: center; gap: 15px; }
  .cookie-toggle input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--gold); }
  .cookie-modal-actions { display: flex; gap: 15px; justify-content: flex-end; margin-top: 30px; }

  /* ─── ROOMVO ─── */
  /* ─── ROOMVO ─── */
  .roomvo-section { padding: 100px 60px; background: var(--dark); }
  .roomvo-container { max-width: 1100px; margin: 0 auto; }

  .roomvo-header { text-align: center; margin-bottom: 56px; }
  .roomvo-diamond { width: 22px; height: 22px; color: var(--gold); margin-bottom: 10px; opacity: 0.8; }
  .roomvo-logo-img { height: 36px; width: auto; object-fit: contain; margin-bottom: 20px; opacity: 0.85; filter: brightness(0) saturate(100%) invert(65%) sepia(20%) saturate(500%) hue-rotate(10deg); }
  .roomvo-eyebrow-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
  .roomvo-rule { flex: 0 0 40px; height: 1px; background: var(--gold); opacity: 0.5; }
  .roomvo-eyebrow-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
  .roomvo-title { font-size: clamp(28px, 4vw, 48px); font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-strong); margin-bottom: 12px; }
  .roomvo-subtitle-italic { font-size: 16px; color: var(--text-muted); font-style: normal; }
  .roomvo-subtitle-italic em { font-style: italic; color: var(--gold); }

  .roomvo-main { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .roomvo-main-solo { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .roomvo-selector { display: flex; flex-direction: column; gap: 0; }
  .roomvo-selector-centered { justify-content: center; align-items: stretch; gap: 20px; }
  .roomvo-cta-desc { font-size: 15px; line-height: 1.8; color: var(--text-muted); text-align: center; max-width: 420px; margin: 0 auto; }
  .roomvo-launch-btn-lg { padding: 20px 40px; font-size: 12px; letter-spacing: 3px; }

  .roomvo-launch-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #fff; border: none; padding: 14px 28px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background .2s; font-family: 'DM Sans', sans-serif; width: 100%; justify-content: center; }
  .roomvo-launch-btn:hover { background: #B88A5A; }
  .roomvo-powered { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; text-align: center; opacity: 0.6; }

  .roomvo-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: rgba(201,168,130,0.15); border: 1px solid rgba(201,168,130,0.15); }
  .roomvo-feature { background: var(--dark); padding: 32px 28px; }
  .roomvo-feature-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 1px solid rgba(201,168,130,0.3); }
  .roomvo-feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
  .roomvo-feature h3 { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-strong); margin-bottom: 10px; font-weight: 600; }
  .roomvo-feature p { color: var(--text-muted); line-height: 1.7; font-size: 13px; }

  /* ─── RESPONSIVE ─── */

  /* ── Tablet large: hamburger kicks in ── */
  @media (max-width: 1200px) {
    nav { padding: 16px 32px; background: transparent; backdrop-filter: none; border-bottom: none; }
    nav.scrolled { padding: 14px 32px; background: var(--nav-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--nav-border); }
    .menu-toggle { display: flex; }
    .lang-desktop { display: none; }
    .nav-lang-item { display: block; }
    .nav-links {
      position: fixed; top: 80px; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--nav-bg); backdrop-filter: blur(16px);
      padding: 0 32px;
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .4s ease;
      z-index: 99;
    }
    .nav-links.active { max-height: 720px; padding: 12px 32px; border-bottom: 1px solid var(--nav-border); }
    .nav-links li { padding: 14px 0; border-bottom: 1px solid rgba(196,154,108,0.1); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { font-size: 12px; letter-spacing: 1.5px; }
  }

  /* ── Tablet: layout adjustments ── */
  @media (max-width: 1024px) {
    #about, #services, #achievements, #premium, #reviews, #quote { padding: 80px 32px; }
    footer { padding: 60px 32px 32px; }
    .about-grid { gap: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { letter-spacing: 0.10em; }
    .section-title { letter-spacing: 0.08em; }
    .service-title { letter-spacing: 0.07em; }
  }

  /* ── Mobile ── */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 14px 20px; }
    .nav-links { top: 72px; padding: 0 20px; }
    .nav-links.active { padding: 12px 20px; }
    .logo img { height: 56px; }

    #hero { height: 100svh; }
    .hero-bg { background: linear-gradient(to top, rgba(250,250,247,0.55) 0%, rgba(250,250,247,0.18) 50%, transparent 100%); }
    .hero-content { padding: 0 20px 80px; max-width: 100%; }
    .hero-title { font-size: clamp(26px, 7vw, 38px); letter-spacing: 0.07em; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-ctas a { width: 100%; justify-content: center; min-height: 48px; }
    .hero-scroll { display: none; }

    #about { padding: 64px 20px 80px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-accent { width: 38%; bottom: -16px; left: -8px; }
    .about-badge { right: 0; top: 16px; }

    #services { padding: 64px 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { padding: 32px 20px; }
    .service-title { font-size: 20px; letter-spacing: 0.06em; }
    .services-header { padding: 0; }

    #achievements { padding: 64px 20px; }
    .achievements-header { flex-direction: column; align-items: center; text-align: center; gap: 16px; margin-bottom: 36px; }
    .before-after-slider { height: 480px; margin-bottom: 36px; }
    .ba-before img { min-width: calc(100vw - 40px); }
    .gallery-track { gap: 10px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
    .gallery-slide { flex: 0 0 75vw; height: 300px; scroll-snap-align: start; }

    #premium { padding: 64px 20px; }
    .premium-header { padding: 0; }
    .premium-grid { grid-template-columns: 1fr; gap: 16px; }
    .premium-card { padding: 36px 24px; }
    .premium-title { letter-spacing: 0.06em; }

    #reviews { padding: 64px 20px; }
    .reviews-header { padding: 0; }
    .reviews-track { padding: 0; }
    .review-card { flex: 0 0 85vw; }

    .section-title { letter-spacing: 0.06em; font-size: clamp(26px, 6vw, 38px); }
    .showroom-title, .roomvo-title { font-size: 28px; letter-spacing: 0.06em; }
    .showroom-subtitle, .roomvo-subtitle { font-size: 17px; }
    .showroom-section, .roomvo-section { padding: 64px 20px; }
    .showroom-container { gap: 32px; }
    .showroom-3d { height: 340px; }
    .showroom-features { grid-template-columns: 1fr; gap: 12px; }
    .showroom-controls { flex-direction: column; gap: 12px; align-items: stretch; }
    .showroom-control-group { justify-content: center; }
    .roomvo-main { grid-template-columns: 1fr; gap: 32px; }
    .roomvo-room-img { height: 260px; }
    .roomvo-features { grid-template-columns: 1fr; gap: 1px; }

    #quote { padding: 64px 20px; }
    .quote-inner { padding: 0; }
    .form-grid { grid-template-columns: 1fr; gap: 16px; }
    .form-input, .form-textarea, .form-select { min-height: 48px; font-size: 16px; }

    footer { padding: 56px 20px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-contact h4 { text-align: left; }
    .contact-item { justify-content: flex-start; }
    .social-row { justify-content: flex-start; }

    .stats-inner { flex-direction: column; }
    .stat-item { padding: 24px 20px; border-right: none; border-bottom: 1px solid rgba(196,154,108,0.1); }
    .stat-item:last-child { border-bottom: none; }

    .float-cta { bottom: 16px; left: 16px; }
    .float-btn { padding: 12px 16px; font-size: 10px; min-height: 44px; }

    .cookie-content { flex-direction: column; gap: 16px; text-align: center; }
    .cookie-buttons { flex-direction: column; width: 100%; }
    .cookie-btn { flex: 1; text-align: center; min-height: 44px; }
    .cookie-modal-content { padding: 28px 18px; margin: 16px; }
    .cookie-modal-title { font-size: 22px; }

    .before-after-slider { height: 380px; }
  }

  @media (max-width: 480px) {
    nav { padding: 12px 16px; }
    .logo img { height: 36px; }
    .hero-title { font-size: clamp(22px, 8vw, 32px); letter-spacing: 0.05em; }
    .hero-content { padding: 0 16px 64px; }
    .hero-sub { font-size: 14px; }
    .section-title { font-size: clamp(22px, 7vw, 30px); letter-spacing: 0.04em; }
    .service-title { font-size: 18px; letter-spacing: 0.04em; }
    .showroom-title, .roomvo-title { font-size: 24px; letter-spacing: 0.04em; }
    .btn-primary, .btn-outline { padding: 14px 20px; font-size: 10px; }
    .stat-num { font-size: 32px; }
    .stat-suffix { font-size: 32px; }
    .service-card { padding: 28px 16px; }
    .premium-card { padding: 28px 18px; }
    .review-card { flex: 0 0 90vw; }
    .gallery-slide { flex: 0 0 86vw; height: 280px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .lang-btn { width: 26px; height: 26px; }
    .about-badge { right: 0; padding: 14px; }
    .about-badge strong { font-size: 28px; }
  }

/* ─── TAWK.TO PULSE RING ─── */
#tawk-ring {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999997;
}
@media (max-width: 768px) {
  #tawk-ring {
    right: 22px;
    bottom: 15px;
  }
}
#tawk-ring::before,
#tawk-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  animation: tawkRing 2.4s ease-out infinite;
}
#tawk-ring::after {
  animation-delay: 1.2s;
}
@keyframes tawkRing {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(2);    opacity: 0; }
}

/* ─── WOOD BANNER ─── */
.wood-banner {
  position: relative;
  height: 480px;
  background-image: url('../images/stock images/AdobeStock_915087080-scaled.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.wood-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 16, 13, 0.62);
}
.wood-banner-content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 40px;
}
.wood-banner-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 20px;
}
.wood-banner-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300; letter-spacing: 0.10em; text-transform: uppercase;
  color: #FAFAF7; line-height: 1.15; margin-bottom: 36px;
}
.wood-banner-title em {
  font-style: italic; color: var(--gold-light);
}
.wood-banner-cta {
  display: inline-flex; align-items: center;
  background: transparent;
  border: 1px solid rgba(201,168,130,0.7);
  color: var(--gold-light);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  padding: 14px 36px;
  transition: background .25s, border-color .25s, color .25s;
}
.wood-banner-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .wood-banner { height: 380px; background-attachment: scroll; }
  .wood-banner-content { padding: 0 24px; }
}

/* ─── BLOG PREVIEW (homepage) ─── */
#blog-preview {
  padding: 100px 60px;
  background: var(--cream-2);
}
.blog-preview-inner {
  max-width: 1100px; margin: 0 auto;
}
.blog-preview-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.blog-preview-header .section-eyebrow { margin-bottom: 10px; }
.blog-preview-header .section-title { margin-bottom: 0; }
.blog-preview-link {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s; white-space: nowrap;
}
.blog-preview-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.blog-preview-link:hover { color: var(--gold-dark); }
.blog-preview-link:hover svg { transform: translateX(4px); }
.blog-preview-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-preview-card {
  background: #fff;
  border: 1px solid rgba(201,168,130,0.18);
  border-radius: 2px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.blog-preview-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-preview-card-meta { display: flex; align-items: center; gap: 10px; }
.blog-preview-card-tag {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 4px 10px; border-radius: 20px; color: #fff;
}
.blog-preview-card-read { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }
.blog-preview-card-title {
  font-size: 16px; font-weight: 500; line-height: 1.4; color: var(--text);
}
.blog-preview-card-excerpt {
  font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1;
}
.blog-preview-card-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.blog-preview-card-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.blog-preview-card:hover .blog-preview-card-cta svg { transform: translateX(4px); }
@media (max-width: 1024px) {
  .blog-preview-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #blog-preview { padding: 60px 20px; }
  .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-preview-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── FAQ ─── */
#faq {
  padding: 100px 60px;
  background: var(--dark-3);
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.faq-inner .section-title { margin-bottom: 0; }
.faq-list {
  margin-top: 56px;
  text-align: left;
  border-top: 1px solid rgba(201,168,130,0.2);
}
.faq-item {
  border-bottom: 1px solid rgba(201,168,130,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 20px; height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer-wrap { max-height: 320px; }
.faq-answer { padding-bottom: 22px; }
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.faq-cta p {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  #faq { padding: 70px 24px; }
  .faq-question { font-size: 15px; padding: 18px 0; }
  .faq-list { margin-top: 40px; }
  .faq-cta { margin-top: 40px; }
}
