:root{
  --primary-dark: #0A0A0A;
  --text-light: #E5E5E5;
  --accent-copper: #C67B4C;
  --accent-gold: #F8E3B6;
  --nav-grey: #A3AAB2;
}

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

html {scroll-behavior:smooth}

body {
  margin:0;font-family: 'Montserrat', sans-serif;color:var(--text-light);background:var(--primary-dark);
  -webkit-font-smoothing:antialiased;line-height:1.6;font-size:16px;
}

.logo-kovostyl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
  max-width: 380px; 
  padding: 20px 40px;
}

.gate-svg {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8))
          drop-shadow(0 0 12px rgba(198, 123, 76, 0.25));
}

@keyframes slideLeft {
  0%, 15% { transform: translateX(0); }
  100% { transform: translateX(-65px); } 
}

@keyframes slideRight {
  0%, 15% { transform: translateX(0); }
  100% { transform: translateX(65px); }
}

.gate-leaf-left {
  animation: slideLeft 5s cubic-bezier(0.25, 1, 0.2, 1) 0.5s forwards;
}

.gate-leaf-right {
  animation: slideRight 5s cubic-bezier(0.25, 1, 0.2, 1) 0.5s forwards;
}

.logo-text-wrap {
  text-align: center;
  line-height: 1.2;
}

.main-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(
    to right,
    var(--accent-copper) 0%,
    var(--accent-gold)   25%,
    #FFF4DC             45%,
    var(--accent-gold)   65%,
    var(--accent-copper) 100%
  );
  background-size: 200% auto;
  color: var(--accent-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite 2s;
}


@keyframes shineText {
  0% { background-position: 0% center; }
  100% { background-position: -200% center; }
}

.subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin: 5px 0 0 0;
  display: block;
  letter-spacing: 2px;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(5, 5, 5, 0.5);
  padding: 10px 5% 12px 5%;
  display: flex;
  justify-content: center;
  text-align: center;
  border-bottom: none;
}

.top-bar p {
  color: var(--nav-grey);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
        
.top-bar-info span { color: var(--accent-copper); font-weight: 600; }

header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
}

.logo-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold), var(--accent-copper));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nav-grey);
  margin-top: 6px;
}

@keyframes shine { to { background-position: 200% center; } }

nav ul { display: flex; list-style: none; gap: 35px; align-items: center; }
nav > ul > li { position: static; }
        
nav a { 
  font-family: 'Cinzel', serif; color: var(--nav-grey); text-decoration: none; 
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; 
  position: relative; transition: color 0.4s;
  display: flex; align-items: center; gap: 5px;
}
        
nav a::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--accent-gold); transition: width 0.4s ease, box-shadow 0.4s ease;
}
        
nav a:hover { color: var(--accent-gold); }
nav a:hover::after { width: 100%; box-shadow: 0 0 8px var(--accent-gold); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 5%;
  right: 5%;
  width: auto;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 123, 76, 0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 14px;
  opacity: 0; visibility: hidden; transform: translateY(15px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { padding: 0; width: 100%; }

.dropdown-menu a {
  padding: 16px 18px;
  border-bottom: none;
  height: 100%;
  display: flex; align-items: center; gap: 14px;
  font-size: 0.65rem; letter-spacing: 1px; line-height: 1.4;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: rgba(198, 123, 76, 0.1);
  border-color: rgba(198, 123, 76, 0.3);
  color: var(--accent-gold);
  padding-left: 18px;
}

.menu-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  stroke: var(--accent-copper);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
}

.dropdown-menu a:hover .menu-icon {
  stroke: var(--accent-gold);
  transform: scale(1.15) rotate(-3deg);
  filter: drop-shadow(0 0 6px rgba(248, 227, 182, 0.4));
}

.header-actions { display: flex; align-items: center; gap: 20px; }
       
.contact-icons { display: flex; gap: 14px; }

.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(198, 123, 76, 0.35);
  background: rgba(198, 123, 76, 0.06);
  backdrop-filter: blur(4px);
  text-decoration: none;
  overflow: visible;
  transition: border-color 0.4s ease, background 0.4s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

.icon-btn svg {
  width: 18px; height: 18px;
  fill: var(--accent-copper);
  position: relative; z-index: 2;
  transition: fill 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-ring {
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.icon-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(198, 123, 76, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45),
              0 0 20px rgba(198, 123, 76, 0.25);
}

.icon-btn:hover svg {
  fill: var(--accent-gold);
  transform: scale(1.12) rotate(-8deg);
}

.icon-btn:hover .icon-ring { animation: ringPulse 1.4s ease-out infinite; }

@keyframes ringPulse {
    0%   { opacity: 0.7; transform: scale(0.95); }
    100% { opacity: 0;   transform: scale(1.45); }
}

.icon-btn::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  white-space: nowrap;
  padding: 7px 14px;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(198, 123, 76, 0.35);
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
}

.icon-btn::before {
  content: '';
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(198, 123, 76, 0.45);
  opacity: 0; visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
}

.icon-btn:hover::after,
.icon-btn:hover::before { opacity: 1; visibility: visible; }
.icon-btn:hover::after { transform: translateX(-50%) translateY(0); }

.header-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(198, 123, 76, 0.5);
  color: var(--accent-gold);
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.45s ease, border-color 0.45s ease,
              box-shadow 0.45s ease, transform 0.45s ease;
}

.header-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--accent-copper), #E0A06B);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.header-btn::after {
  content: '';
  position: absolute;
  left: 0; 
  right: 0; 
  bottom: 0;
  height: 1px;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
        
.header-btn:hover {
  color: #14100D;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(198, 123, 76, 0.35);
}

.header-btn:hover::before { transform: translateY(0); }
.header-btn:hover::after  { transform: scaleX(1); }
        
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu-btn svg { width: 28px; height: 28px; fill: var(--text-light); }

.hero-banner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner-grid-bg {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-banner-grid-bg img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.5) contrast(1.1);
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 9s ease-out,
              filter 2s ease;
  will-change: opacity, transform;
}

.hero-banner-grid-bg img.is-active {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(25%) brightness(0.55) contrast(1.1);
}

.hero-banner-grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.75));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.origin-tag {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 6px; color: var(--accent-copper); margin-bottom: 20px;
  display: inline-block; position: relative;
}

.origin-tag::before, .origin-tag::after {
  content: ''; position: absolute; top: 50%; width: 30px; height: 1px; background: var(--accent-copper);
}

.origin-tag::before { left: -45px; }
.origin-tag::after { right: -45px; }

.hero-banner h2 { 
  font-family: 'Cinzel', serif; font-size: 4.5rem; text-transform: uppercase; 
  letter-spacing: 5px; margin-bottom: 25px; line-height: 1.1;
  background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0px 10px 20px rgba(0,0,0,0.5);
}

.hero-banner p { font-size: 1.2rem; color: #D1D1D1; max-width: 750px; margin-bottom: 40px; font-weight: 300; letter-spacing: 1px; }
        
.cta-button {
  padding: 16px 45px;
  background: var(--accent-copper);
  border: 1px solid var(--accent-copper);
  color: var(--primary-dark);
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  text-transform: uppercase; font-weight: 700; letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transition: color 0.5s ease, background 0.5s ease,
    letter-spacing 0.5s ease, box-shadow 0.5s ease,
    transform 0.5s ease, border-color 0.5s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%; height: 100%;
  background: 
    linear-gradient(120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent);
  transform: skewX(-25deg);
  z-index: -1;
}

.cta-button:hover::before { animation: sheen 0.9s ease forwards; }

@keyframes sheen { to { left: 130%; } }

.cta-button:hover {
  background: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  letter-spacing: 4px;
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(248, 227, 182, 0.35),
              0 12px 30px rgba(0, 0, 0, 0.55),
              0 0 25px rgba(248, 227, 182, 0.15);
}

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

.nav-overlay { display: none; }

@media (max-width: 1100px) {
  .header-btn { display: none; }
  .hero-banner h2 { font-size: 2.8rem; }

  .contact-icons { display: none; }

  .mobile-menu-btn {
    display: grid;
    place-items: center;
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    z-index: 1600;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--text-light);
    transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .mobile-menu-btn svg .mid {
    fill: var(--accent-gold);
  }
  .mobile-menu-btn::before,
  .mobile-menu-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(248, 227, 182, 0.5);
    transform: translate(-50%, -50%) scaleX(0);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }

  header nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(87vw, 390px);
    height: 100vh;
    height: 100dvh;
    padding: 118px 0 40px;
    background:
      radial-gradient(130% 55% at 100% 0%, rgba(198, 123, 76, 0.16), transparent 60%),
      linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.99));
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(198, 123, 76, 0.28);
    box-shadow: -34px 0 60px rgba(0, 0, 0, 0.6);
    transform: translateX(105%);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 1500;
  }
  header nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent-copper), var(--accent-gold), var(--accent-copper), transparent);
    opacity: 0.75;
  }

  header nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 28px;
  }

  header nav > ul > li {
    position: static;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateX(26px);
  }

  header nav > ul > li > a {
    justify-content: flex-start;
    padding: 20px 4px;
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    color: var(--text-light);
  }
  header nav > ul > li > a::after { display: none; }
  header nav > ul > li > a:hover { color: var(--accent-gold); }

  .dropdown > a svg { margin-left: auto; transition: transform 0.4s ease; }
  .dropdown.open > a { color: var(--accent-gold); }
  .dropdown.open > a svg { transform: rotate(180deg); }

  .dropdown-menu {
    position: static;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.32);
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.76, 0, 0.24, 1), padding 0.4s ease;
  }
  .dropdown.open .dropdown-menu {
    max-height: 1000px;
    padding: 6px 0 14px;
  }
  .dropdown-menu li { border: none; }
  .dropdown-menu a {
    padding: 13px 10px 13px 6px;
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: var(--nav-grey);
    border: none;
  }
  .dropdown-menu a:hover {
    background: rgba(198, 123, 76, 0.1);
    border-color: transparent;
    padding-left: 12px;
    color: var(--accent-gold);
  }
  .dropdown-menu .menu-icon { width: 22px; height: 22px; }

  header nav .header-btn {
    display: block;
    margin: 32px 28px 4px;
    padding: 16px;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(14px);
  }

  header nav .contact-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 24px 28px 4px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(14px);
  }

  .icon-btn::after,
  .icon-btn::before {
    content: none;
    display: none;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, 0.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    z-index: 1400;
  }

  header .logo-small { transition: filter 0.55s ease, opacity 0.55s ease; }

  body.menu-open { overflow: hidden; }
  body.menu-open header { z-index: 2000; }
  body.menu-open header nav { transform: translateX(0); }
  body.menu-open .nav-overlay { opacity: 1; visibility: visible; }
  body.menu-open .logo-small { filter: blur(3px); opacity: 0.35; pointer-events: none; }

  body.menu-open .mobile-menu-btn { position: fixed; top: 42px; right: 5%; }
  body.menu-open .mobile-menu-btn svg { opacity: 0; transform: rotate(90deg) scale(0.4); }
  body.menu-open .mobile-menu-btn::before { transform: translate(-50%, -50%) rotate(45deg) scaleX(1); }
  body.menu-open .mobile-menu-btn::after  { transform: translate(-50%, -50%) rotate(-45deg) scaleX(1); }

  body.menu-open header nav > ul > li {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.menu-open header nav > ul > li:nth-child(1) { transition-delay: 0.10s; }
  body.menu-open header nav > ul > li:nth-child(2) { transition-delay: 0.16s; }
  body.menu-open header nav > ul > li:nth-child(3) { transition-delay: 0.22s; }
  body.menu-open header nav > ul > li:nth-child(4) { transition-delay: 0.28s; }
  body.menu-open header nav > ul > li:nth-child(5) { transition-delay: 0.34s; }
  body.menu-open header nav > ul > li:nth-child(6) { transition-delay: 0.40s; }
  body.menu-open header nav .header-btn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.44s, transform 0.5s ease 0.44s;
  }
  body.menu-open header nav .contact-icons {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
  }
}

@media (max-width: 1100px) and (prefers-reduced-motion: reduce) {
  header nav,
  header nav > ul > li,
  header nav .header-btn,
  header nav .contact-icons,
  header .logo-small,
  .dropdown-menu,
  .dropdown > a svg,
  .nav-overlay,
  .mobile-menu-btn svg,
  .mobile-menu-btn::before,
  .mobile-menu-btn::after { transition: none !important; }
}

@media (min-width: 1101px) and (max-width: 1300px) {
  header { padding: 2rem 3.5%; }
  .logo-name { font-size: 1.55rem; letter-spacing: 3px; }
  nav ul { gap: 18px; }
  nav a { font-size: 0.62rem; letter-spacing: 1px; }
  .header-actions { gap: 12px; }
  .contact-icons { gap: 10px; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 15px; height: 15px; }
  .header-btn { padding: 10px 18px; font-size: 0.62rem; letter-spacing: 1px; }
}

@media (max-width: 600px) {
  .logo-name { font-size: 1.65rem; letter-spacing: 4px; }
  header { padding: 1.5rem 5%; }
  header nav { width: min(92vw, 360px); }
  body.menu-open .mobile-menu-btn { top: 34px; }
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  aspect-ratio: 1 / 1.08;
  max-width: 620px;
  width: 100%;
  margin-inline: auto;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.about-frame {
  grid-area: 1 / 1 / 10 / 9;
  border: 2px solid rgba(198, 123, 76, 0.45);
  transform: translate3d(-34px, 34px, -50px);
  pointer-events: none;
  z-index: 0;
}

.about-img {
  position: relative;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.65);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.6s ease;
  transform-style: preserve-3d;
}

.about-img--main {
  grid-area: 1 / 1 / 10 / 9;
  z-index: 1;
}

.about-img--sub {
  grid-area: 7 / 6 / 13 / 13;
  border: 8px solid var(--primary-dark);
  transform: translateZ(55px);
  z-index: 2;
}

.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(35%) brightness(0.75) contrast(1.05);
  transform: scale(1.03);
  transition: filter 0.7s ease, transform 1.1s cubic-bezier(0.22,1,0.36,1);
}

.about-img figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(transparent, rgba(5,5,5,0.92));
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease;
}

.about-img:hover img { filter: grayscale(0%) brightness(0.95) contrast(1.05); transform: scale(1.09); }
.about-img:hover figcaption { opacity: 1; transform: translateY(0); }
.about-img:hover { box-shadow: 0 40px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(248, 227, 182, 0.25); }

.about-badge {
  grid-area: 1 / 8 / 4 / 12;
  place-self: center;
  z-index: 3;
  width: 136px; height: 136px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(198, 123, 76, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 35px rgba(198, 123, 76, 0.25);
  animation: badgeFloat 5s ease-in-out infinite;
}

.about-badge-num {
  font-family: 'Cinzel', serif;
  font-size: 3.3rem; font-weight: 700;
  line-height: 1;
  color: var(--accent-gold);
}
.about-badge-num::after {
  content: '+';
  font-size: 3rem;
  vertical-align: super;
  color: var(--accent-copper);
}

.about-badge-txt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nav-grey);
  text-align: center;
  margin-top: 5px;
  line-height: 1.4;
}

@keyframes badgeFloat {
  0%, 100% { transform: translate3d(0, 0, 80px); }
  50%      { transform: translate3d(0, -9px, 80px); }
}

.about-inner {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.about-content { max-width: 620px; }
.about-content .origin-tag { margin-left: 45px; }

.about-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.15;
  margin-bottom: 28px;
  background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content > p {
  font-family: 'Montserrat', sans-serif;
  color: var(--nav-grey);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-content > p:last-of-type { margin-bottom: 0; }

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 40px 0 44px;
}

.about-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(198, 123, 76, 0.2);
  background: rgba(198, 123, 76, 0.04);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nav-grey);
  transition: all 0.4s ease;
  cursor: default;
}

.about-features li:hover {
  border-color: rgba(198, 123, 76, 0.55);
  background: rgba(198, 123, 76, 0.1);
  color: var(--accent-gold);
  transform: translateX(6px);
}

.feat-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke: var(--accent-copper);
  stroke-width: 1.3; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  transition: all 0.4s ease;
}
.about-features li:hover .feat-icon {
  stroke: var(--accent-gold);
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(248, 227, 182, 0.4));
}

.about-content .cta-button {
  display: inline-block;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .about-inner { gap: 60px; }
}

@media (max-width: 1100px) {
  .about-inner { grid-template-columns: 1fr; gap: 80px; justify-items: center; }
  .about-visual { order: -1; max-width: 540px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .about-badge { animation: none; }
  .stat-number-wrap { animation: none; }
}

.why-us {
  position: relative;
  padding: 100px 5%;
  background: radial-gradient(circle at 50% 20%, rgba(198, 123, 76, 0.06) 0%, rgba(10, 10, 10, 1) 75%);
  border-top: 1px solid rgba(198, 123, 76, 0.15);
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-copper), transparent);
  opacity: 0.6;
}

.why-us-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.why-us-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.why-us-header .origin-tag {
  margin-left: 0;
  margin-bottom: 16px;
}

.why-us-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.15;
  background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.why-card {
  position: relative;
  background: rgba(15, 15, 15, 0.7);
  border: 2px solid rgba(198, 123, 76, 0.2);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent-copper), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 123, 76, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(198, 123, 76, 0.12);
  background: rgba(22, 22, 22, 0.85);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(198, 123, 76, 0.08);
  border: 1px solid rgba(198, 123, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-copper);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
  background: rgba(198, 123, 76, 0.2);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}

.why-card:hover .why-card-icon svg {
  stroke: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(248, 227, 182, 0.5));
}

.why-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.3;
}

.why-card p {
  font-family: 'Montserrat', sans-serif;
  color: var(--nav-grey);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  margin: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(12, 12, 12, 0.95));
  border: 1px solid rgba(198, 123, 76, 0.3);
  padding: 45px 30px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.why-stats::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(198, 123, 76, 0.4), transparent, rgba(248, 227, 182, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 20px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(198, 123, 76, 0.35), transparent);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
  animation: statVibrate 4.5s ease-in-out infinite;
  will-change: transform, filter;
}

.stat-item:nth-child(1) .stat-number-wrap { animation-delay: 0s; }
.stat-item:nth-child(2) .stat-number-wrap { animation-delay: 0.8s; }
.stat-item:nth-child(3) .stat-number-wrap { animation-delay: 1.6s; }

@keyframes statVibrate {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 5px rgba(248, 227, 182, 0.25));
  }
  25% {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 0 15px rgba(248, 227, 182, 0.5));
  }
  50% {
    transform: translateY(1px) scale(0.995);
    filter: drop-shadow(0 0 3px rgba(198, 123, 76, 0.3));
  }
  75% {
    transform: translateY(-2px) scale(1.01);
    filter: drop-shadow(0 0 11px rgba(248, 227, 182, 0.4));
  }
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-gold);
  text-shadow: 0 0 0 rgba(248, 227, 182, 0.2);
}

.stat-unit {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-copper);
  margin-left: 4px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--nav-grey);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 70px 5%;
  }
  .why-stats {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 35px 20px;
  }
  .stat-item:not(:last-child)::after {
    right: auto;
    bottom: -18px;
    top: auto;
    left: 20%;
    width: 60%;
    height: 1px;
    background: rgba(198, 123, 76, 0.2);
  }
}

.recent-works {
  position: relative;
  padding: 100px 0;
  background: var(--primary-dark);
  border-top: 1px solid rgba(198, 123, 76, 0.15);
  overflow: hidden;
}

.recent-works-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
  padding: 0 5%;
}

.recent-works-header .origin-tag {
  margin-left: 0;
  margin-bottom: 16px;
}

.recent-works-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.15;
  background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.works-grid-container {
  max-width: 1300px;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  justify-content: center;
}

.work-card {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(198, 123, 76, 0.25);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
}

.work-card-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(248, 227, 182, 0.3);
  pointer-events: none;
  z-index: 2;
  transition: all 0.5s ease;
}

.work-card-frame::before,
.work-card-frame::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--accent-copper);
  transition: all 0.5s ease;
}

.work-card-frame::before {
  top: -2px; left: -2px;
  border-right: none; border-bottom: none;
}

.work-card-frame::after {
  bottom: -2px; right: -2px;
  border-left: none; border-top: none;
}

.work-card-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 35px 20px 16px;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.6) 60%, transparent 100%);
  z-index: 3;
  transform: translateY(10px);
  opacity: 0.85;
  transition: all 0.5s ease;
}

.work-card-caption h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin: 0;
}

.work-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75),
              0 0 25px rgba(198, 123, 76, 0.35);
}

.work-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

.work-card:hover .work-card-frame {
  inset: 8px;
  border-color: rgba(248, 227, 182, 0.75);
  box-shadow: inset 0 0 15px rgba(198, 123, 76, 0.25);
}

.work-card:hover .work-card-frame::before,
.work-card:hover .work-card-frame::after {
  border-color: var(--accent-gold);
  width: 14px;
  height: 14px;
}

.work-card:hover .work-card-caption {
  transform: translateY(0);
  opacity: 1;
}

.recent-works-cta {
  text-align: center;
  margin-top: 55px;
}

.recent-works-cta .cta-button {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .recent-works {
    padding: 70px 40px;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .work-card {
    height: 220px;
  }

  .about-inner {padding: 100px 40px;}
}




.creative-contact-section {
  position: relative;
  background: var(--primary-dark);
  padding: 100px 5%;
  overflow: hidden;
  border-top: 1px solid rgba(198, 123, 76, 0.15);
}

.creative-contact-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(198, 123, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-copper);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--nav-grey);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(198, 123, 76, 0.25);
  border-radius: 8px;
  padding: 45px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--nav-grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 123, 76, 0.2);
  border-radius: 4px;
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group select option {
  background: #111;
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(198, 123, 76, 0.05);
  box-shadow: 0 0 15px rgba(198, 123, 76, 0.15);
}

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(198, 123, 76, 0.15);
  flex-wrap: wrap;
  gap: 20px;
}

.privacy-consent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-consent input[type="checkbox"] {
  accent-color: var(--accent-copper);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.privacy-consent label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--nav-grey);
  font-weight: 300;
}

.privacy-consent a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold));
  color: var(--primary-dark);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px rgba(198, 123, 76, 0.3);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(198, 123, 76, 0.5), 0 0 20px rgba(248, 227, 182, 0.4);
}

.submit-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .contact-form {
    padding: 25px;
  }
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}




.site-footer {
  position: relative;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 100px 5% 40px;
  border-top: 1px solid rgba(198, 123, 76, 0.25);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 15% 10%, rgba(198, 123, 76, 0.07) 0%, transparent 55%),
              radial-gradient(circle at 85% 90%, rgba(248, 227, 182, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 220px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(198, 123, 76, 0.18);
  align-items: center;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold), var(--accent-copper));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nav-grey);
  display: block;
}

.footer-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--nav-grey);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 31px;
  max-width: 450px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.globe-icon {
  width: 14px;
  height: 14px;
  stroke: var(--accent-copper);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--nav-grey);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(198, 123, 76, 0.35);
  background: rgba(198, 123, 76, 0.06);
  color: var(--accent-copper);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.footer-socials a svg {
  width: 17px;
  height: 17px;
}

.footer-socials a:hover {
  border-color: var(--accent-gold);
  background: rgba(198, 123, 76, 0.2);
  color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(198, 123, 76, 0.25);
}

.footer-right-col {
  display: flex;
  flex-direction: column;
}

.footer-quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.footer-feature-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.footer-feature-box:hover {
  transform: translateY(-3px);
}

.box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-title-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-copper);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

.footer-feature-box:hover .footer-title-icon {
  stroke: var(--accent-gold);
}

.footer-feature-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin: 0;
}

.box-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--nav-grey);
  line-height: 1.55;
  margin: 0 0 15px 0;
}

.box-text strong {
  color: var(--text-light);
  font-weight: 600;
}

.box-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #8a9199;
  font-style: italic;
  margin: 0;
}

.box-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--nav-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

.box-links a:hover {
  color: var(--accent-gold);
}

.divider-slash {
  color: var(--accent-copper);
  margin: 0 4px;
}

.tax-info {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #8a9199;
  line-height: 1.5;
  margin: 0;
}

.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--nav-grey);
  text-transform: uppercase;
  margin: 0;
}

.footer-bottom a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 650px) {
  .site-footer {
    padding: 70px 5% 30px;
  }
  .footer-quad-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}




.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-popup.is-active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(198, 123, 76, 0.3);
    border-radius: 8px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(198, 123, 76, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-popup.is-active .popup-content {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--nav-grey);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.popup-close svg {
    width: 24px;
    height: 24px;
}

.popup-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(198, 123, 76, 0.08);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(248, 227, 182, 0.15);
}

.popup-icon svg {
    width: 34px;
    height: 34px;
}

.popup-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.popup-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--nav-grey);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.popup-btn {
    padding: 12px 35px;
    font-size: 0.75rem;
}




.section-pad {
    padding: 100px 5%;
    position: relative;
    background: var(--primary-dark);
}

.subpage-hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    border-bottom: 1px solid rgba(198, 123, 76, 0.2);
}

.subpage-hero-bg {
    position: absolute; inset: 0; z-index: -2;
}

.subpage-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%) brightness(0.4) contrast(1.1);
    transform: scale(1.05);
    animation: zoomOut 12s ease-out forwards;
}

@keyframes zoomOut {
    to { transform: scale(1); }
}

.subpage-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,1) 100%);
}

.subpage-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.subpage-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 25px rgba(0,0,0,0.8);
}

.subpage-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--nav-grey);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-copper);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.hero-scroll-indicator svg { width: 30px; height: 30px; fill: none; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -15px); }
    60% { transform: translate(-50%, -7px); }
}

.product-intro-grid {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-intro-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--nav-grey);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-checklist {
    list-style: none;
    margin-top: 30px;
}

.product-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-checklist li svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.product-intro-visual {
    position: relative;
    border-radius: 4px;
    transform-style: preserve-3d;
}

.visual-frame {
    position: absolute;
    inset: -15px 15px 15px -15px;
    border: 1px solid rgba(198, 123, 76, 0.4);
    z-index: 0;
    pointer-events: none;
}

.visual-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    position: relative;
    z-index: 1;
    filter: grayscale(20%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.visual-highlight {
    position: absolute;
    bottom: 30px;
    right: -20px;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold));
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 15px 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transform: translateZ(30px);
}

.process-section {
    background: radial-gradient(circle at 50% 0%, rgba(198, 123, 76, 0.05) 0%, var(--primary-dark) 70%);
    border-top: 1px solid rgba(198, 123, 76, 0.15);
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 123, 76, 0.4), transparent);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--primary-dark);
    border: 2px solid rgba(198, 123, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(10,10,10,1);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    border-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(198, 123, 76, 0.2);
}

.process-step h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--nav-grey);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .product-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .product-intro-visual { margin-top: 30px; max-width: 600px; margin-inline: auto;}
    .visual-highlight { right: 10px; }
    
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }
    .process-timeline::before { display: none; }
}

@media (max-width: 650px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .subpage-title { font-size: 2.2rem; }
}

.detailed-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.detailed-info-header .intro-text {
    max-width: 850px;
    margin: 30px auto 0;
    color: var(--nav-grey);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-weight: 300;
}

.detailed-info-header .intro-text p {
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-box {
    background: linear-gradient(145deg, rgba(20,20,20,0.6) 0%, rgba(15,15,15,0.9) 100%);
    border: 1px solid rgba(198, 123, 76, 0.15);
    padding: 40px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 123, 76, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-copper), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-box:hover::before {
    transform: scaleX(1);
}

.info-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.info-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--nav-grey);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-box strong {
    color: var(--text-light);
    font-weight: 600;
}

.info-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--nav-grey);
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 300;
}

.info-list li svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 850px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        padding: 30px 20px;
    }
}




.section-pad {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.product-intro {
  background: radial-gradient(circle at 50% 20%, rgba(198, 123, 76, 0.06) 0%, rgba(10, 10, 10, 1) 75%);
}

.product-intro-text {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
}

.product-intro-text h2.section-title,
.product-intro-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.15;
  background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.product-intro-text p {
  font-family: 'Montserrat', sans-serif;
  color: var(--nav-grey);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 18px;
}

.product-intro-text p:last-child {
  margin-bottom: 0;
}

.detailed-info-section {
  position: relative;
  padding: 100px 5%;
  background: var(--primary-dark);
  border-top: 1px solid rgba(198, 123, 76, 0.15);
}

.detailed-info-container {
  max-width: 1340px;
  margin: 0 auto;
}

.detailed-info-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.detailed-info-header .section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.15;
  background: linear-gradient(to bottom, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.detailed-info-header .intro-text p {
  font-family: 'Montserrat', sans-serif;
  color: var(--nav-grey);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
}

.detailed-info-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin-top: -16px;
}

.detailed-info-container thead tr {
  background: transparent !important;
  border: none !important;
}

.detailed-info-container th {
  background: transparent !important;
  padding: 0 20px 10px 20px !important;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-copper) !important;
  border: none !important;
  text-transform: uppercase;
}

.detailed-info-container tbody tr {
  background-color: rgba(15, 15, 15, 0.7);
  background-image: linear-gradient(90deg, var(--accent-copper), var(--accent-gold));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 0;
  border: 1px solid rgba(198, 123, 76, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.detailed-info-container tbody tr:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 123, 76, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
              0 0 25px rgba(198, 123, 76, 0.12);
  background-color: rgba(22, 22, 22, 0.85);
  background-size: 100% 2px;
}

.detailed-info-container td {
  padding: 24px 20px !important;
  border: none !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--nav-grey);
  background: transparent !important;
  transition: color 0.3s ease;
}

.detailed-info-container tbody tr td:first-child {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.detailed-info-container tbody tr td:nth-child(2) {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--accent-copper);
}

.detailed-info-container tbody tr:hover td {
  color: var(--text-light);
}

.detailed-info-container tbody tr:hover td:first-child,
.detailed-info-container tbody tr:hover td:nth-child(2) {
  color: var(--accent-gold);
}

.detailed-info-container p[style*="margin-top"] {
  background: rgba(15, 15, 15, 0.7);
  border-left: 2px solid var(--accent-copper);
  border-top: 1px solid rgba(198, 123, 76, 0.2);
  border-right: 1px solid rgba(198, 123, 76, 0.2);
  border-bottom: 1px solid rgba(198, 123, 76, 0.2);
  padding: 24px 30px;
  margin-top: 40px !important;
  font-family: 'Montserrat', sans-serif;
  color: var(--nav-grey) !important;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  backdrop-filter: blur(8px);
}

.detailed-info-container div[style*="overflow-x"] {
  overflow-x: auto;
  padding-bottom: 10px;
}

.detailed-info-container div[style*="overflow-x"]::-webkit-scrollbar {
  height: 4px;
}

.detailed-info-container div[style*="overflow-x"]::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0.5);
}

.detailed-info-container div[style*="overflow-x"]::-webkit-scrollbar-thumb {
  background: var(--accent-copper);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-pad,
  .detailed-info-section {
    padding: 70px 5%;
  }

  .product-intro-text {
    padding: 30px 20px;
  }

  .detailed-info-container th {
    display: none;
  }

  .detailed-info-container td {
    padding: 16px 20px !important;
    display: block;
    width: 100%;
    text-align: left;
  }

  .detailed-info-container tbody tr {
    display: block;
    margin-bottom: 16px;
    border-radius: 4px;
  }

}