    :root{
      --bg:#f7f3eb;
      --surface:#ffffff;
      --surface-2:#f5eee8;
      --surface-3:#fbf8f3;
      --text:#171513;
      --muted:#6b625b;
      --line:rgba(23,21,19,0.08);

      --accent:#7a2f2a;
      --accent-dark:#5a1f1b;
      --accent-soft:#e6c5c1;
      --accent-fade:#f7e7e4;

      --dark:#141210;
      --white:#ffffff;
      --whatsapp:#25D366;
      --instagram-1:#feda75;
      --instagram-2:#fa7e1e;
      --instagram-3:#d62976;
      --instagram-4:#962fbf;
      --instagram-5:#4f5bd5;

      --container:1240px;
      --shadow:0 16px 38px rgba(0,0,0,0.07);
      --shadow-soft:0 10px 24px rgba(0,0,0,0.05);
      --radius:24px;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(122,47,42,0.04), transparent 20%),
        radial-gradient(circle at bottom right, rgba(122,47,42,0.04), transparent 22%),
        var(--bg);
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      display:block;
      max-width:100%;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
      position:relative;
      z-index:2;
    }

    .section{
      padding:100px 0;
      position:relative;
      overflow:hidden;
    }

    .eyebrow{
      display:inline-block;
      font-size:12px;
      font-weight:700;
      letter-spacing:2px;
      text-transform:uppercase;
      color:var(--accent);
      margin-bottom:16px;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:28px;
      flex-wrap:wrap;
      margin-bottom:50px;
      position:relative;
      z-index:2;
    }

    .section-title{
      font-family:'Cormorant Garamond', serif;
      font-size:clamp(2.2rem, 4vw, 4rem);
      line-height:0.96;
      max-width:720px;
      font-weight:700;
      letter-spacing:-0.6px;
    }

    .section-text{
      max-width:540px;
      color:var(--muted);
      line-height:1.85;
      font-size:1rem;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:52px;
      padding:0 22px;
      border-radius:999px;
      transition:transform .28s ease, background .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
      font-weight:600;
      cursor:pointer;
      will-change:transform;
    }

    .btn:hover{
      transform:translateY(-2px);
    }

    .btn-primary{
      background:var(--dark);
      color:var(--white);
      border:1px solid var(--dark);
      box-shadow:0 10px 24px rgba(20,18,16,0.14);
    }

    .btn-primary:hover{
      background:#000;
    }

    .btn-secondary{
      border:1px solid rgba(122,47,42,0.18);
      color:var(--text);
      background:rgba(255,255,255,0.88);
    }

    .btn-secondary:hover{
      border-color:rgba(122,47,42,0.34);
      background:#fff;
    }

    .btn-whatsapp{
      background:var(--whatsapp);
      color:#fff;
      border:1px solid var(--whatsapp);
      box-shadow:0 12px 24px rgba(37,211,102,0.20);
    }

    .btn-whatsapp:hover{
      background:#1faa52;
      border-color:#1faa52;
    }

    .reveal{
      opacity:0;
      transform:translateY(24px);
      will-change:transform, opacity;
    }

    .wp-float{
      position:fixed;
      right:18px;
      bottom:18px;
      width:60px;
      height:60px;
      border-radius:50%;
      background:var(--whatsapp);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 24px rgba(37,211,102,0.28);
      z-index:1200;
      transition:transform .25s ease, box-shadow .25s ease;
      animation:wpPulse 2.4s infinite;
    }

    .wp-float:hover{
      transform:translateY(-3px) scale(1.03);
      box-shadow:0 14px 28px rgba(37,211,102,0.34);
    }

    .wp-float svg{
      width:30px;
      height:30px;
      fill:#fff;
    }

    @keyframes wpPulse{
      0%{box-shadow:0 0 0 0 rgba(37,211,102,0.22), 0 10px 24px rgba(37,211,102,0.28);}
      70%{box-shadow:0 0 0 16px rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,0.28);}
      100%{box-shadow:0 0 0 0 rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,0.28);}
    }

    .topbar{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:36px;
      background:linear-gradient(90deg, var(--accent-dark), var(--accent));
      color:#fff;
      overflow:hidden;
      z-index:1201;
      border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .topbar-track{
      display:flex;
      align-items:center;
      height:100%;
      width:max-content;
      animation:marquee 29s linear infinite;
      white-space:nowrap;
      will-change:transform;
    }

    .topbar-item{
      font-size:.84rem;
      letter-spacing:.15px;
      padding-right:42px;
      opacity:.98;
    }

    @keyframes marquee{
      0%{transform:translateX(0);}
      100%{transform:translateX(-50%);}
    }

    .navbar{
      position:fixed;
      top:5px;
      left:0;
      width:100%;
      z-index:1000;
      padding:26px 0;
      transition:all .3s ease;
    }

    .navbar.scrolled{
      top:24px;
      padding:14px 0;
      background:rgba(247,243,235,0.94);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(122,47,42,0.08);
    }

    .nav-inner{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .logo{
      
      display:flex;
      align-items:center;
      gap:14px;
      min-width:fit-content;
      position:relative;
      z-index:1002;
    }

    .logo-mark{
      width:100px;
      height:100px;
      object-fit:contain;
    }

    .logo-text{
      display:flex;
      flex-direction:column;
      line-height:1;
    }

    .logo-text strong{
      font-family:'Cormorant Garamond', serif;
      font-size:2rem;
      font-weight:700;
      color:#1c1715;
    }

    .logo-text span{
      font-size:11px;
      letter-spacing:2px;
      text-transform:uppercase;
      color:var(--muted);
      margin-top:6px;
      font-weight:600;
    }

    .nav-links{
      list-style:none;
      display:flex;
      align-items:center;
      gap:28px;
    }

    .nav-links a{
      position:relative;
      font-size:.96rem;
      font-weight:500;
      color:#1a1715;
    }

    .nav-links a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-6px;
      width:0;
      height:1.5px;
      background:var(--accent);
      transition:width .28s ease;
    }

    .nav-links a:hover::after{
      width:100%;
    }

    .mobile-toggle{
      display:none;
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid rgba(122,47,42,0.14);
      background:rgba(255,255,255,0.88);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      position:relative;
      z-index:1002;
    }

    .mobile-toggle span{
      width:18px;
      height:2px;
      background:var(--text);
      display:block;
      position:relative;
      transition:.28s ease;
    }

    .mobile-toggle span::before,
    .mobile-toggle span::after{
      content:"";
      position:absolute;
      left:0;
      width:18px;
      height:2px;
      background:var(--text);
      transition:.28s ease;
    }

    .mobile-toggle span::before{top:-6px;}
    .mobile-toggle span::after{top:6px;}

    .mobile-toggle.active span{
      background:transparent;
    }

    .mobile-toggle.active span::before{
      top:0;
      transform:rotate(45deg);
    }

    .mobile-toggle.active span::after{
      top:0;
      transform:rotate(-45deg);
    }

    .mobile-menu{
      position:fixed;
      inset:0;
      background:rgba(20,18,16,0.50);
      z-index:1001;
      opacity:0;
      visibility:hidden;
      transition:.3s ease;
    }

    .mobile-menu.active{
      opacity:1;
      visibility:visible;
    }

    .mobile-menu-panel{
      position:absolute;
      right:0;
      top:0;
      width:min(88vw, 360px);
      height:100%;
      background:#fbf8f3;
      padding:110px 24px 30px;
      box-shadow:-12px 0 30px rgba(0,0,0,0.10);
      transform:translateX(100%);
      transition:.35s ease;
    }

    .mobile-menu.active .mobile-menu-panel{
      transform:translateX(0);
    }

    .mobile-menu-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:24px;
      padding-bottom:18px;
      border-bottom:1px solid rgba(122,47,42,0.08);
    }

    .mobile-menu-brand img{
      width:64px;
      height:64px;
      object-fit:contain;
      border-radius:14px;
      background:#fff;
      padding:5px;
    }

    .mobile-menu-brand strong{
      display:block;
      font-family:'Cormorant Garamond', serif;
      font-size:1.8rem;
      color:var(--accent-dark);
      line-height:1;
    }

    .mobile-menu-brand span{
      display:block;
      font-size:.72rem;
      letter-spacing:1.6px;
      text-transform:uppercase;
      color:var(--muted);
      margin-top:4px;
      font-weight:700;
    }

    .mobile-menu-links{
      display:grid;
      gap:8px;
    }

    .mobile-menu-links a{
      padding:14px 14px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(122,47,42,0.08);
      font-weight:600;
    }

    .mobile-menu-links a:hover{
      background:var(--accent-fade);
    }

    .mobile-menu-actions{
      margin-top:18px;
      display:grid;
      gap:10px;
    }

    .hero{
      min-height:100vh;
      position:relative;
      overflow:hidden;
      background:#e8dfd2;
    }

    .hero-slider{
      position:absolute;
      inset:0;
      z-index:0;
    }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 1.5s ease;
    will-change: opacity, transform;
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
       
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(20,18,15,0.70) 0%, rgba(20,18,15,0.40) 42%, rgba(20,18,15,0.20) 100%),
        linear-gradient(180deg, rgba(122,47,42,0.08), rgba(20,18,15,0.26));
      z-index:1;
    }

    .hero-wrap{
      position:relative;
      z-index:2;
      min-height:100vh;
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      align-items:center;
      gap:40px;
      padding-top:180px;
      padding-bottom:70px;
    }

    .hero-content{
      max-width:720px;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:11px 16px;
      border-radius:999px;
      background:rgba(255,255,255,0.82);
      border:1px solid rgba(255,255,255,0.74);
      color:#2d2925;
      font-size:.9rem;
      margin-bottom:20px;
      box-shadow:0 8px 20px rgba(0,0,0,0.05);
    }

    .hero-badge i{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      display:inline-block;
    }

    .hero-copy{
      min-height:210px;
      position:relative;
    }

    .hero-text-wrap{
      transition:opacity .45s ease, transform .45s ease;
    }

    .hero-text-wrap.is-changing{
      opacity:0;
      transform:translateY(14px);
    }

    .hero-title{
      font-family:'Cormorant Garamond', serif;
      font-size:clamp(1.15rem, 2.4vw, 2.45rem);
      line-height:0.98;
      font-weight:150;
      color:#ffffff;
      letter-spacing:-0.7px;
      margin-bottom:16px;
      text-shadow:0 10px 26px rgba(0,0,0,0.16);
      max-width:390px;
    }

    .hero-title span{
      color:#f2d8d4;
    }

    .hero-text{
      max-width:210px;
      font-size:.58rem;
      line-height:1.85;
      color:rgba(255,255,255,0.90);
      margin-bottom:24px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:28px;
    }

    .hero-info{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
      max-width:760px;
    }

    .hero-info-card{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,0.14);
      border:1px solid rgba(255,255,255,0.18);
      color:#fff;
      backdrop-filter:blur(6px);
      transition:transform .25s ease, background .25s ease;
    }

    .hero-info-card:hover{
      transform:translateY(-4px);
      background:rgba(255,255,255,0.18);
    }

    .hero-info-card strong{
      display:block;
      font-size:1.03rem;
      margin-bottom:6px;
      font-weight:700;
    }

    .hero-info-card span{
      display:block;
      font-size:.88rem;
      line-height:1.55;
      color:rgba(255,255,255,0.84);
    }

    .hero-panel{
      justify-self:end;
      width:59%;
      max-width:330px ;
      background:rgba(255,255,255,0.88);
      border:1px solid rgba(255,255,255,0.72);
      border-radius:28px;
      padding:30px;
      box-shadow:var(--shadow);
      backdrop-filter:blur(8px);
      transition:transform .3s ease, box-shadow .3s ease;
    }

    .hero-panel:hover{
      transform:translateY(-4px);
      box-shadow:0 20px 44px rgba(0,0,0,0.10);
    }

    .hero-panel h3{
      font-family:'Cormorant Garamond', serif;
      font-size:2rem;
      line-height:1;
      margin-bottom:12px;
      color:var(--accent-dark);
    }

    .hero-panel p{
      color:var(--muted);
      line-height:1.8;
      font-size:.96rem;
    }

    .hero-list{
      list-style:none;
      display:grid;
      gap:12px;
      margin:22px 0 26px;
    }

    .hero-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#302c27;
      line-height:1.7;
      font-size:.95rem;
    }

    .hero-list li::before{
      content:"•";
      color:var(--accent);
      font-size:1.3rem;
      line-height:1;
      margin-top:-1px;
    }

    .slider-dots{
      position:absolute;
      bottom:28px;
      left:50%;
      transform:translateX(-50%);
      z-index:3;
      display:flex;
      gap:10px;
    }

    .slider-dot{
      width:11px;
      height:11px;
      border-radius:50%;
      border:none;
      background:rgba(255,255,255,0.45);
      cursor:pointer;
      transition:transform .25s ease, background .25s ease;
    }

    .slider-dot.active{
      background:#f3d7d3;
      transform:scale(1.12);
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:40px;
      align-items:center;
      position:relative;
      z-index:2;
    }

    .about-media{
      position:relative;
      min-height:620px;
    }

    .about-main,
    .about-second{
      position:absolute;
      overflow:hidden;
      border-radius:28px;
      box-shadow:var(--shadow);
    }

    .about-main{
      inset:0 90px 80px 0;
    }

    .about-second{
      width:280px;
      height:340px;
      right:0;
      bottom:0;
    }

    .about-main img,
    .about-second img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .about-floating{
      position:absolute;
      left:24px;
      bottom:104px;
      background:rgba(255,255,255,0.92);
      border:1px solid rgba(122,47,42,0.10);
      border-radius:22px;
      padding:18px 20px;
      box-shadow:var(--shadow);
    }

    .about-floating strong{
      display:block;
      font-size:1.35rem;
      margin-bottom:4px;
      color:var(--accent-dark);
    }

    .about-floating span{
      color:var(--muted);
      font-size:.95rem;
    }

    .about-content{
      position:relative;
      z-index:2;
    }

    .about-content p{
      color:var(--muted);
      line-height:1.9;
      margin-bottom:18px;
      font-size:1rem;
    }

    .about-points{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
      margin-top:26px;
    }

    .about-point{
      background:var(--surface);
      border:1px solid rgba(122,47,42,0.08);
      padding:22px;
      border-radius:22px;
      box-shadow:0 8px 20px rgba(0,0,0,0.02);
      transition:transform .25s ease, box-shadow .25s ease;
    }

    .about-point:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-soft);
    }

    .about-point h4{
      font-size:1.05rem;
      margin-bottom:8px;
      color:var(--text);
    }

    .about-point p{
      margin:0;
      font-size:.95rem;
      line-height:1.75;
    }

    .services{
      background:linear-gradient(180deg, transparent, rgba(122,47,42,0.03));
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      position:relative;
      z-index:2;
    }

    .service-card{
      background:var(--surface);
      border:1px solid rgba(122,47,42,0.08);
      border-radius:26px;
      padding:26px 22px;
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
      box-shadow:0 8px 20px rgba(0,0,0,0.03);
    }

    .service-card:hover{
      transform:translateY(-7px);
      box-shadow:var(--shadow);
      border-color:rgba(122,47,42,0.18);
      background:#fffdfb;
    }

    .service-icon{
      width:62px;
      height:62px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, var(--accent-fade), #fff);
      border:1px solid rgba(122,47,42,0.10);
      margin-bottom:18px;
      transition:transform .25s ease;
    }

    .service-card:hover .service-icon{
      transform:scale(1.05);
    }

    .service-icon svg{
      width:30px;
      height:30px;
      stroke:var(--accent-dark);
      stroke-width:1.8;
      fill:none;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .service-no{
      color:var(--accent);
      font-size:.82rem;
      font-weight:700;
      letter-spacing:2px;
      margin-bottom:10px;
      display:block;
    }

    .service-card h3{
      font-family:'Cormorant Garamond', serif;
      font-size:1.8rem;
      line-height:1;
      margin-bottom:12px;
      font-weight:700;
      color:var(--accent-dark);
    }

    .service-card p{
      color:var(--muted);
      line-height:1.8;
      font-size:.96rem;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      position:relative;
      z-index:2;
    }

    .stat-card{
      background:var(--surface);
      border:1px solid rgba(122,47,42,0.08);
      border-radius:24px;
      padding:34px 24px;
      text-align:center;
      box-shadow:0 8px 20px rgba(0,0,0,0.03);
      transition:transform .25s ease, box-shadow .25s ease;
    }

    .stat-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-soft);
    }

    .stat-card strong{
      display:block;
      font-family:'Cormorant Garamond', serif;
      font-size:3rem;
      line-height:1;
      margin-bottom:8px;
      color:var(--accent-dark);
    }

    .stat-card span{
      color:var(--muted);
      line-height:1.7;
      font-size:.95rem;
    }

    .gallery-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr;
      gap:18px;
      grid-auto-rows:250px;
      position:relative;
      z-index:2;
    }

    .gallery-item{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      box-shadow:var(--shadow);
    }

    .gallery-item.large{
      grid-row:span 2;
    }

    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .7s ease;
    }

    .gallery-item:hover img{
      transform:scale(1.06);
    }

    .gallery-caption{
      position:absolute;
      inset:auto 0 0 0;
      padding:22px;
      background:linear-gradient(180deg, transparent, rgba(0,0,0,0.52));
      color:#fff;
    }

    .gallery-caption h4{
      font-size:1.05rem;
      margin-bottom:5px;
      font-weight:600;
    }

    .gallery-caption span{
      font-size:.9rem;
      color:rgba(255,255,255,0.84);
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:22px;
      align-items:stretch;
      position:relative;
      z-index:2;
    }

    .contact-card,
    .map-card{
      background:var(--surface);
      border:1px solid rgba(122,47,42,0.08);
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }

    .contact-card{
      padding:30px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        linear-gradient(180deg, rgba(122,47,42,0.02), transparent 100%),
        var(--surface);
    }

    .contact-card h3{
      font-family:'Cormorant Garamond', serif;
      font-size:2rem;
      color:var(--accent-dark);
      margin-bottom:14px;
    }

    .contact-card p{
      color:var(--muted);
      line-height:1.85;
      margin-bottom:22px;
    }

    .contact-list{
      display:grid;
      gap:14px;
      margin-bottom:24px;
    }

    .contact-item{
      padding:16px 18px;
      border-radius:18px;
      background:var(--surface-2);
      color:#2f2a25;
      line-height:1.7;
      font-size:.96rem;
      transition:transform .25s ease, box-shadow .25s ease;
      border:1px solid rgba(122,47,42,0.06);
    }

    .contact-item:hover{
      transform:translateX(4px);
      box-shadow:var(--shadow-soft);
    }

    .contact-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .map-card iframe{
      width:100%;
      height:100%;
      min-height:460px;
      border:0;
      display:block;
    }

    .footer{
      padding:100px 0 30px;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 22%),
        radial-gradient(circle at top right, rgba(122,47,42,0.26), transparent 30%),
        linear-gradient(135deg, #100f0e 0%, #161311 45%, #221512 100%);
      color:#fff;
      position:relative;
      overflow:hidden;
      border-top:1px solid rgba(255,255,255,0.05);
    }

    .footer::before{
      content:"";
      position:absolute;
      inset:auto -10% -140px auto;
      width:360px;
      height:360px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(122,47,42,0.22) 0%, rgba(122,47,42,0) 70%);
      pointer-events:none;
    }

    .footer::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%);
      pointer-events:none;
    }

    .footer-shell{
      position:relative;
      z-index:1;
      padding:34px;
      border-radius:32px;
      background:rgba(255,255,255,0.03);
      border:1px solid rgba(255,255,255,0.08);
      backdrop-filter:blur(8px);
      box-shadow:0 18px 40px rgba(0,0,0,0.18);
      overflow:hidden;
    }

    .footer-top{
      display:grid;
      grid-template-columns:1.2fr .9fr .9fr 1.1fr;
      gap:28px;
      margin-bottom:34px;
      position:relative;
      z-index:1;
    }

    .footer-brand{
      padding-right:12px;
    }

    .footer-logo-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-bottom:18px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);
      color:#f4deda;
      font-size:.84rem;
      letter-spacing:.4px;
    }

    .footer-logo-badge i{
      width:8px;
      height:8px;
      border-radius:50%;
      background:#e7b9b3;
      display:inline-block;
      box-shadow:0 0 12px rgba(231,185,179,0.7);
    }

    .footer-brand-head{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      margin-bottom:20px;
    }

    .footer-brand-logo{
      width:120px;
      height:120px;
      object-fit:contain;
      border-radius:22px;
      background:rgba(255,255,255,0.92);
      padding:10px;
      border:1px solid rgba(255,255,255,0.10);
      box-shadow:0 10px 22px rgba(0,0,0,0.16);
      flex-shrink:0;
    }

    .footer-brand p{
      color:rgba(255,255,255,0.70);
      line-height:1.9;
      max-width:520px;
      margin-bottom:22px;
    }

    .footer-badges{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:24px;
    }

    .footer-badge{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      color:#f2ddd9;
      font-size:.86rem;
      transition:all .25s ease;
    }

    .footer-badge:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,0.07);
      border-color:rgba(255,255,255,0.18);
    }

    .footer-socials{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .footer-social{
      width:48px;
      height:48px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .footer-social:hover{
      transform:translateY(-4px);
      border-color:rgba(255,255,255,0.18);
      box-shadow:0 10px 24px rgba(0,0,0,0.18);
    }

    .footer-social svg{
      width:22px;
      height:22px;
      fill:#fff;
    }

    .footer-social.instagram{
      background:
        linear-gradient(135deg,
          rgba(254,218,117,0.18),
          rgba(250,126,30,0.18),
          rgba(214,41,118,0.18),
          rgba(150,47,191,0.18),
          rgba(79,91,213,0.18));
    }

    .footer-links{
      padding:18px 18px 20px;
      border-radius:24px;
      background:rgba(255,255,255,0.03);
      border:1px solid rgba(255,255,255,0.06);
      min-height:100%;
      position:relative;
      z-index:1;
    }

    .footer-links h4{
      margin-bottom:16px;
      color:#f6dfdb;
      font-size:1rem;
      font-weight:700;
      letter-spacing:.2px;
    }

    .footer-links a,
    .footer-links span{
      display:flex;
      align-items:flex-start;
      gap:8px;
      margin-bottom:12px;
      color:rgba(255,255,255,0.68);
      transition:transform .25s ease, color .25s ease;
      line-height:1.7;
      font-size:.96rem;
    }

    .footer-links a:hover{
      color:#fff;
      transform:translateX(4px);
    }

    .footer-links a::before{
      content:"›";
      color:#dcb7b1;
      font-size:1rem;
      line-height:1.4;
    }

    .footer-contact-card{
      padding:22px;
      border-radius:24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.03);
      border:1px solid rgba(255,255,255,0.08);
      margin-top:2px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .footer-contact-card strong{
      display:block;
      color:#fff;
      margin-bottom:12px;
      font-size:1.02rem;
    }

    .footer-contact-card span{
      display:block;
      color:rgba(255,255,255,0.72);
      line-height:1.8;
      font-size:.94rem;
      margin-bottom:8px;
    }

    .footer-bottom{
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,0.08);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,0.60);
      font-size:.92rem;
      position:relative;
      z-index:1;
    }

    .footer-bottom-left,
    .footer-bottom-right{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .footer-divider{
      width:5px;
      height:5px;
      border-radius:50%;
      background:rgba(255,255,255,0.25);
    }

    @media (max-width: 1100px){
      .hero-wrap,
      .about-grid,
      .contact-grid{
        grid-template-columns:1fr;
      }

      .footer-top{
        grid-template-columns:1fr 1fr;
      }

      .hero-panel{
        justify-self:start;
      }

      .service-grid,
      .stats-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .gallery-grid{
        grid-template-columns:1fr 1fr;
      }

      .gallery-item.large{
        grid-row:span 1;
      }
    }

    @media (max-width: 768px){
      .topbar{
        height:34px;
      }

      .topbar-item{
        font-size:.78rem;
        padding-right:28px;
      }

      .navbar{
        top:34px;
        padding:16px 0;
      }

      .navbar.scrolled{
        top:34px;
        padding:10px 0;
      }

      .section{
        padding:78px 0;
      }

      .nav-links,
      .nav-action{
        display:none;
      }

      .mobile-toggle{
        display:flex;
      }

      .logo-mark{
        width:84px;
        height:84px;
      }
        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .hero-slide:first-child {
            opacity: 1 !important;
        }

      .hero-wrap{
        min-height:auto;
        grid-template-columns:1fr;
        padding-top:150px;
        padding-bottom:84px;
        gap:24px;
      }

      .hero-copy{
        min-height:auto;
      }

      .hero-title{
        font-size:clamp(2rem, 8vw, 3rem);
        line-height:1.02;
      }

      .hero-text{
        font-size:.94rem;
        line-height:1.8;
      }

      .hero-actions{
        gap:10px;
      }

      .hero-actions .btn{
        width:100%;
      }

      .hero-info,
      .about-points,
      .service-grid,
      .stats-grid,
      .gallery-grid,
      .footer-top{
        grid-template-columns:1fr;
      }

      .hero-panel{
        width:100%;
        max-width:100%;
        padding:24px;
      }

      .hero-slide{
        background-size:cover;
        background-position:center center;
      }

      .about-media{
        min-height:440px;
      }

      .about-main{
        inset:0 50px 60px 0;
      }

      .about-second{
        width:180px;
        height:220px;
      }

      .about-floating{
        bottom:78px;
        left:16px;
        right:16px;
        width:auto;
      }

      .map-card iframe{
        min-height:340px;
      }

      .wp-float{
        width:56px;
        height:56px;
        right:14px;
        bottom:14px;
      }

      .footer{
        padding-top:78px;
      }

      .footer-shell{
        padding:22px;
        border-radius:26px;
      }

      .footer-brand{
        padding-right:0;
      }

      .footer-brand-logo{
        width:92px;
        height:92px;
      }

      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
      }

      .footer-bottom-left,
      .footer-bottom-right{
        width:100%;
      }
    }

    @media (prefers-reduced-motion: reduce){
      *{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
      }
      .reveal{
        opacity:1 !important;
        transform:none !important;
      }
    }


    /* GÜNCEL PAYLAŞIMLAR */
  .news-section {
    padding: 95px 0 40px;
    position: relative;
    overflow: hidden;
  }

  .news-shell {
    position: relative;
    z-index: 2;
  }

  .news-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .news-head .eyebrow,
  .news-head .section-title {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    position: relative;
    z-index: 3;
  }

  .news-head-left .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
  }

  .news-head-left h2 {
    margin: 0;
  }

  .news-slider-wrap {
    position: relative;
    padding: 0 72px;
  }


  .news-track {
    display: flex;
    gap: 10px;
    transition: transform 0.45s ease;
    will-change: transform;
  }

  .news-card {
    min-width: calc(25% - 14px);
    max-width: calc(25% - 14px);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: 0 18px 50px rgba(28, 24, 22, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    flex-shrink: 0;
  }

  .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(28, 24, 22, 0.15);
  }

  .news-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    line-height: 0;
  }

  .news-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
    background: transparent;
  }

  .news-card:hover .news-image-wrap img {
    transform: scale(1.06);
    filter: saturate(1.03);
  }

  .news-zoom-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(17, 17, 17, 0.62);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    backdrop-filter: blur(8px);
  }

  .news-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(122, 47, 42, 0.16);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 34px rgba(20, 20, 20, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  }

  .news-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.18);
    background: #fff;
  }

  .news-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #7a2f2a;
    stroke-width: 2.3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .news-arrow.prev {
    left: 0;
  }

  .news-arrow.next {
    right: 0;
  }

  .news-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
  }

  .news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(122, 47, 42, 0.22);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .news-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #7a2f2a;
  }

  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 9999;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox-inner {
    position: relative;
    width: min(1100px, 100%);
    animation: lightboxFade 0.25s ease;
  }

  .lightbox img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    background: #111;
  }

  .lightbox-close {
    position: absolute;
    top: -18px;
    right: -8px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    z-index: 2;
  }

  @keyframes lightboxFade {
    from {
      opacity: 0;
      transform: scale(0.96);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 1100px) {
    .news-card {
      min-width: calc(33.333% - 12px);
      max-width: calc(33.333% - 12px);
    }

    .news-image-wrap {
      height: 250px;
    }

    .news-slider-wrap {
      padding: 0 58px;
    }
  }

  @media (max-width: 768px) {
    .news-section {
      padding: 80px 0 24px;
    }

    .news-slider-wrap {
      padding: 0 50px;
    }

    .news-card {
      min-width: calc(50% - 10px);
      max-width: calc(50% - 10px);
    }

    .news-image-wrap {
      height: 220px;
    }

    .news-arrow {
      width: 44px;
      height: 44px;
    }

    .lightbox {
      padding: 18px;
    }

    .lightbox-close {
      top: -12px;
      right: -2px;
      width: 42px;
      height: 42px;
    }
  }

  @media (max-width: 576px) {
    .news-card {
      min-width: 100%;
      max-width: 100%;
    }

    .news-image-wrap {
      height: auto;
      aspect-ratio: 3 / 4;
      background: transparent;
    }

    .news-image-wrap img {
      object-fit: contain;
      object-position: center;
      width: 100%;
      height: 100%;
      background: transparent;
    }

    .news-card:hover .news-image-wrap img {
      transform: none;
      filter: none;
    }
  }
    