
:root{
--wood:#2d1810;
--wood-dark:#1a0f08;
--wood-light:#3d2817;
--accent:#e8a76c;
--accent-light:#f0b87d;
--dark:#000;
--surface1:#0a0a0a;
--surface2:#141414;
--surface3:#1f1f1f;
--border:#2d2d2d;
--text-primary:#ffffff;
--text-secondary:#b0b0b0;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Segoe UI', Inter, Arial, sans-serif;
  background:linear-gradient(135deg, var(--dark) 0%, #0d0d0d 50%, var(--surface1) 100%);
  color:var(--text-primary);
  overflow-x:hidden;
  position:relative;
}

body::before{
  content:'';
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:
    repeating-linear-gradient(90deg, 
      rgba(232, 167, 108, 0.02) 0px,
      rgba(232, 167, 108, 0.01) 2px,
      transparent 4px,
      transparent 6px,
      rgba(232, 167, 108, 0.015) 8px,
      rgba(232, 167, 108, 0.01) 10px),
    repeating-linear-gradient(0deg,
      transparent 0px,
      transparent 40px,
      rgba(232, 167, 108, 0.008) 40px,
      rgba(232, 167, 108, 0.008) 80px),
    radial-gradient(circle at 20% 50%, rgba(232, 167, 108, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 167, 108, 0.02) 0%, transparent 50%);
  background-size:12px 100%, 100% 80px, 100% 100%, 100% 100%;
  pointer-events:none;
  z-index:-1;
}

/* ===== NAVIGATION ===== */
.nav{
  width:100%;
  top:0;
  z-index:100;
  position:relative;
}

.sticky{
  position:sticky;
  background:rgba(10, 10, 10, 0.75);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(164, 113, 72, 0.15);
  box-shadow:0 8px 32px rgba(0, 0, 0, 0.3);
  transition:all 0.3s ease;
}

.nav-inner{
  max-width:1500px;
  margin:auto;
  padding:16px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.nav-logo{
  height:42px;
  filter:brightness(0.9);
  transition:all 0.3s ease;
}

.nav-logo:hover{
  filter:brightness(1.1) drop-shadow(0 0 8px rgba(212, 163, 115, 0.4));
}

.nav ul, .nav-menu{
  list-style:none;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:var(--text-secondary);
  text-decoration:none;
  font-size:0.95rem;
  font-weight:500;
  padding:8px 14px;
  border-radius:8px;
  transition:all 0.25s ease;
  position:relative;
  overflow:hidden;
}

.nav a::before{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.3s ease;
  z-index:-1;
}

.nav a:hover{
  color:var(--accent);
  background:rgba(164, 113, 72, 0.1);
}

.nav a.active{
  color:var(--accent);
  background:rgba(164, 113, 72, 0.15);
  border-bottom:2px solid var(--accent);
}

.insta{
  color:var(--accent) !important;
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:8px;
  z-index:101;
}

.hamburger span{
  width:24px;
  height:2.5px;
  background:var(--accent);
  border-radius:2px;
  transition:all 0.3s ease;
}

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(8px, -8px);
}

.nav-menu.active{
  max-height:500px;
  opacity:1;
  padding:20px 0;
}

/* ===== FAB BUTTON ===== */
.fab-button{
  position:fixed;
  bottom:24px;
  right:24px;
  width:56px;
  height:56px;
  background:linear-gradient(135deg, var(--wood) 0%, var(--accent) 100%);
  border-radius:50%;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99;
  box-shadow:0 8px 24px rgba(232, 167, 108, 0.3);
  transition:all 0.3s ease;
}

.fab-button a{
  color:#fff;
  font-size:1.8rem;
  font-weight:300;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

.fab-button:hover{
  transform:scale(1.1);
  box-shadow:0 12px 36px rgba(232, 167, 108, 0.4);
}

/* ===== HERO ===== */
.hero{
  height:100vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  animation:heroFade 0.8s ease-out;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index:1;
}

.hero-content{
  position:relative;
  text-align:center;
  z-index:2;
  max-width:900px;
  animation:contentSlideUp 0.8s ease-out 0.2s both;
}

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

.hero h1{
  font-size:clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing:3px;
  margin-bottom:20px;
  font-weight:800;
  background:linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero p{
  font-size:clamp(1rem, 2vw, 1.25rem);
  opacity:0.9;
  margin-bottom:30px;
  font-weight:300;
  letter-spacing:0.5px;
}

.hero-actions{
  margin-top:40px;
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.hero.small-hero{
  height:55vh;
  min-height:350px;
  background-color:var(--surface1);
}

/* ===== SECTIONS ===== */
.section{
  max-width:1500px;
  margin:0 auto;
  padding:100px 24px;
  position:relative;
  border-bottom:1px solid rgba(164, 113, 72, 0.08);
  animation:fadeInUp 0.6s ease-out;
}

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

.section:last-of-type{
  border-bottom:none;
}

.section h2{
  font-size:clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom:24px;
  font-weight:700;
  letter-spacing:1px;
  background:linear-gradient(90deg, var(--text-primary), var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.section h3{
  color:var(--accent);
  font-weight:600;
  font-size:1.4rem;
  margin-top:0;
  margin-bottom:16px;
}

.intro{
  text-align:center;
  max-width:900px;
  margin:0 auto;
}

.intro p{
  font-size:1.1rem;
  line-height:1.8;
  opacity:0.85;
  color:var(--text-secondary);
}

/* ===== GRID & CARDS ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:24px;
  margin-top:40px;
}

.card{
  padding:32px;
  background:linear-gradient(135deg, var(--surface2) 0%, var(--surface3) 100%);
  border:1px solid rgba(164, 113, 72, 0.15);
  border-radius:16px;
  transition:all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
  line-height:1.7;
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

.card::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.1), transparent);
  transition:left 0.5s ease;
  z-index:0;
}

.card:hover::before{
  left:100%;
}

.card:hover{
  border-color:rgba(164, 113, 72, 0.4);
  background:linear-gradient(135deg, rgba(164, 113, 72, 0.08), var(--surface3));
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(164, 113, 72, 0.2), 0 0 20px rgba(164, 113, 72, 0.1);
}

.card strong{
  color:var(--accent);
  font-weight:700;
  font-size:1.05rem;
}

.card p{
  margin:0;
  color:var(--text-secondary);
}

/* ===== HIGHLIGHTS ===== */
.highlight{
  background:linear-gradient(120deg, rgba(164, 113, 72, 0.06) 0%, rgba(164, 113, 72, 0.02) 100%);
  border-top:2px solid rgba(164, 113, 72, 0.15);
  border-bottom:2px solid rgba(164, 113, 72, 0.15);
}

.highlight h2{
  text-align:center;
}

/* ===== SPLIT LAYOUT ===== */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.split ul{
  list-style:none;
  padding-left:0;
}

.split li{
  padding:12px 0;
  padding-left:28px;
  position:relative;
  color:var(--text-secondary);
  font-size:1.05rem;
  line-height:1.6;
  transition:all 0.3s ease;
}

.split li::before{
  content:'▸';
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:bold;
  font-size:1.2rem;
}

.split li:hover{
  color:var(--accent);
  padding-left:32px;
}

.reverse{
  direction:rtl;
}

.reverse *{
  direction:ltr;
}

/* ===== IMAGE CARDS ===== */
.image-card{
  height:340px;
  border-radius:20px;
  background:var(--surface1);
  overflow:hidden;
  position:relative;
  border:1px solid rgba(164, 113, 72, 0.1);
  box-shadow:0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(164, 113, 72, 0.05);
  transition:all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.45s cubic-bezier(0.23, 1, 0.320, 1);
}

.image-card:hover{
  border-color:rgba(164, 113, 72, 0.3);
  box-shadow:0 30px 80px rgba(164, 113, 72, 0.25), inset 0 0 40px rgba(164, 113, 72, 0.1);
}

.image-card:hover img{
  transform:scale(1.1) rotate(1deg);
}

.large{
  height:420px;
}

/* ===== GALLERY ===== */
.gallery-category{
  margin-top:60px;
  padding-top:40px;
  border-top:1px solid rgba(164, 113, 72, 0.1);
  animation:fadeInUp 0.6s ease-out;
}

.category-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.category-header h3{
  margin:0;
  font-size:1.8rem;
}

.gallery-toggle{
  padding:12px 24px;
  border:2px solid rgba(164, 113, 72, 0.3);
  border-radius:25px;
  background:rgba(164, 113, 72, 0.08);
  color:var(--accent);
  cursor:pointer;
  font-weight:600;
  font-size:0.95rem;
  transition:all 0.3s ease;
  box-shadow:0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-toggle:hover{
  background:rgba(164, 113, 72, 0.2);
  border-color:var(--accent);
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(164, 113, 72, 0.25);
}

.gallery-hidden{
  display:none !important;
}

.image-card{
  height:260px;
  border-radius:18px;
  background:var(--surface1);
  overflow:hidden;
  position:relative;
  border:1px solid rgba(164, 113, 72, 0.1);
  cursor:pointer;
  box-shadow:0 20px 40px rgba(0, 0, 0, 0.5);
  transition:all 0.35s ease;
}

.image-card:hover{
  border-color:rgba(164, 113, 72, 0.3);
  box-shadow:0 30px 70px rgba(164, 113, 72, 0.25);
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0, 0, 0, 0.95);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1000;
  backdrop-filter:blur(8px);
  animation:fadeInLightbox 0.3s ease;
}

@keyframes fadeInLightbox{
  from{opacity:0;backdrop-filter:blur(0px);}
  to{opacity:1;backdrop-filter:blur(8px);}
}

.lightbox.open{
  display:flex;
}

.lightbox-inner{
  position:relative;
  max-width:min(95vw, 1200px);
  max-height:85vh;
  overflow:auto;
}

.lightbox img{
  width:auto;
  max-width:100%;
  height:auto;
  max-height:calc(85vh - 40px);
  border-radius:16px;
  box-shadow:0 40px 100px rgba(0, 0, 0, 0.8);
  animation:zoomIn 0.3s ease;
}

@keyframes zoomIn{
  from{opacity:0;transform:scale(0.95);}
  to{opacity:1;transform:scale(1);}
}

.lightbox-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  width:48px;
  height:48px;
  border:2px solid rgba(164, 113, 72, 0.3);
  border-radius:50%;
  background:rgba(164, 113, 72, 0.1);
  color:var(--accent);
  font-size:1.8rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(0, 0, 0, 0.4);
  transition:all 0.3s ease;
  font-weight:300;
  line-height:1;
}

.lightbox-close:hover{
  background:rgba(164, 113, 72, 0.25);
  border-color:var(--accent);
  transform:rotate(90deg) scale(1.1);
}

/* ===== BUTTONS ===== */
.btn{
  padding:14px 36px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg, var(--wood) 0%, var(--accent) 100%);
  color:var(--text-primary);
  font-weight:600;
  font-size:1rem;
  cursor:pointer;
  transition:all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
  text-decoration:none;
  display:inline-block;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(164, 113, 72, 0.25),
             inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing:0.5px;
}

.btn::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  background:rgba(255, 255, 255, 0.2);
  border-radius:50%;
  transform:translate(-50%, -50%);
  transition:width 0.6s, height 0.6s;
  z-index:0;
}

.btn:hover::before{
  width:300px;
  height:300px;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(164, 113, 72, 0.35),
             inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:active{
  transform:translateY(-1px);
}

.btn.ghost{
  background:transparent;
  border:2px solid var(--accent);
  color:var(--accent);
  padding:12px 34px;
  box-shadow:0 4px 15px rgba(164, 113, 72, 0.1);
}

.btn.ghost:hover{
  background:rgba(164, 113, 72, 0.12);
  box-shadow:0 12px 30px rgba(164, 113, 72, 0.25);
}

/* ===== CTA SECTION ===== */
.cta-section{
  text-align:center;
  background:linear-gradient(135deg, rgba(164, 113, 72, 0.08) 0%, rgba(212, 163, 115, 0.03) 100%);
  border:2px solid rgba(164, 113, 72, 0.15);
  border-radius:24px;
  padding:60px 40px;
  position:relative;
  overflow:hidden;
}

.cta-section::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-section h2{
  text-align:center;
  margin-bottom:16px;
}

.cta-section p{
  font-size:1.05rem;
  opacity:0.85;
  margin-bottom:30px;
  color:var(--text-secondary);
}

/* ===== CONTACT ===== */
.contact-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  margin-top:30px;
}

.contact-card{
  padding:24px;
  background:linear-gradient(135deg, var(--surface2), var(--surface3));
  border:1px solid rgba(164, 113, 72, 0.15);
  border-radius:16px;
  transition:all 0.3s ease;
}

.contact-card:hover{
  border-color:var(--accent);
  background:linear-gradient(135deg, rgba(164, 113, 72, 0.08), var(--surface3));
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(164, 113, 72, 0.15);
}

.contact-card strong{
  display:block;
  margin-bottom:12px;
  font-size:1.1rem;
  color:var(--accent);
}

.contact-card p{
  margin:8px 0;
  color:var(--text-secondary);
  font-size:0.95rem;
}

.contact-card a{
  color:var(--accent);
  text-decoration:none;
  transition:all 0.2s ease;
}

.contact-card a:hover{
  text-decoration:underline;
  opacity:0.8;
}

.contact-form{
  padding:32px;
  background:linear-gradient(135deg, var(--surface2), var(--surface3));
  border:1px solid rgba(164, 113, 72, 0.15);
  border-radius:20px;
  box-shadow:0 20px 60px rgba(0, 0, 0, 0.35);
}

.contact-info{
  margin-top:30px;
  opacity:0.8;
}

/* ===== FORMS ===== */
.form{
  display:grid;
  gap:16px;
  margin-top:0;
}

input, textarea{
  padding:14px 16px;
  background:linear-gradient(135deg, var(--surface1), var(--surface2));
  border:1.5px solid rgba(164, 113, 72, 0.2);
  color:var(--text-primary);
  border-radius:12px;
  transition:all 0.3s ease;
  font-family:'Segoe UI', Inter, Arial, sans-serif;
  font-size:1rem;
}

input::placeholder, textarea::placeholder{
  color:var(--text-secondary);
  opacity:0.6;
}

input:focus, textarea:focus{
  outline:none;
  border-color:var(--accent);
  background:linear-gradient(135deg, var(--surface2), var(--surface1));
  box-shadow:0 0 20px rgba(164, 113, 72, 0.2), inset 0 0 8px rgba(164, 113, 72, 0.05);
}

textarea{
  resize:vertical;
  min-height:120px;
}

/* ===== PAGE LAYOUT ===== */
.page{
  max-width:1500px;
  margin:0 auto;
  padding:140px 24px;
}

/* ===== FOOTER ===== */
footer{
  text-align:center;
  padding:48px 24px;
  font-size:0.85rem;
  opacity:0.5;
  border-top:1px solid rgba(164, 113, 72, 0.08);
  background:linear-gradient(180deg, transparent, rgba(164, 113, 72, 0.02));
  transition:opacity 0.3s ease;
}

footer:hover{
  opacity:0.7;
}

footer p{
  margin:8px 0;
}

footer a{
  color:var(--accent);
  text-decoration:none;
  transition:all 0.2s ease;
}

footer a:hover{
  text-decoration:underline;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger{
    display:flex;
  }

  .nav ul, .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(10, 10, 10, 0.95);
    backdrop-filter:blur(20px);
    flex-direction:column;
    align-items:center;
    gap:0;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:all 0.3s ease;
    border-bottom:1px solid rgba(232, 167, 108, 0.15);
  }

  .nav-menu.active, .nav ul.active{
    max-height:500px;
    opacity:1;
    padding:20px 0;
  }

  .nav-menu li{
    width:100%;
    text-align:center;
    border-bottom:1px solid rgba(232, 167, 108, 0.08);
  }

  .nav-menu a{
    display:block;
    padding:16px 24px !important;
    color:var(--text-secondary);
  }

  .nav-menu a:hover, .nav-menu a.active{
    background:rgba(232, 167, 108, 0.1);
    color:var(--accent);
  }

  .nav-inner{
    flex-wrap:wrap;
    gap:12px;
    padding:12px 18px;
  }

  .fab-button{
    display:flex;
  }

  .nav a{
    font-size:.9rem;
  }

  .hero{
    height:auto;
    padding:80px 18px;
  }

  .hero h1{
    font-size:2.2rem;
  }

  .hero p{
    font-size:1rem;
  }

  .hero-actions{
    flex-direction:column;
    gap:12px;
  }

  .btn{
    width:100%;
    padding:16px 24px;
  }

  .section{
    padding:60px 18px;
  }

  .page{
    padding:60px 18px;
  }

  .split{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-cards{
    grid-template-columns:1fr;
  }

  .reverse{
    direction:ltr;
  }

  .image-card{
    height:240px;
  }

  .grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .card{
    padding:24px;
  }

  .cta-section{
    padding:40px 20px;
  }

  footer{
    text-align:left;
    padding:30px 18px;
  }
}
