
:root{
  --bg:#f7f1e8;
  --bg-soft:#fbf7f1;
  --white:#ffffff;
  --dark:#21170f;
  --muted:#67564a;
  --gold:#b98645;
  --gold-dark:#986635;
  --line:#eadfd3;
  --shadow:0 28px 90px rgba(35,23,15,.11);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',Arial,sans-serif;
  background:var(--bg);
  color:var(--dark);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1440px,calc(100% - 96px));margin-inline:auto}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  background:rgba(251,247,241,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(35,23,15,.06);
}
.nav{
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
}
.brand img{height:58px;width:auto}
.menu{
  display:flex;
  align-items:center;
  gap:42px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.17em;
}
.menu a,.nav-cta{transition:.25s}
.menu a:hover,.nav-cta:hover{color:var(--gold)}
.nav-cta{
  border:1px solid #decfbd;
  padding:14px 25px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  background:rgba(255,255,255,.35);
}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding-top:94px;
}
.hero-image{
  position:absolute;
  inset:94px 0 0 0;
  width:100%;
  height:calc(100% - 94px);
  object-fit:cover;
  object-position:center;
}
.hero-shade{
  position:absolute;
  inset:94px 0 0 0;
  background:linear-gradient(90deg,rgba(247,241,232,.96) 0%,rgba(247,241,232,.82) 25%,rgba(247,241,232,.32) 52%,rgba(247,241,232,0) 78%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:80px 0 170px;
}
.eyebrow{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.33em;
  color:var(--gold);
}
h1,h2,h3{
  font-family:'Playfair Display',serif;
  font-weight:700;
  letter-spacing:-.045em;
}
h1{
  max-width:650px;
  font-size:clamp(54px,7vw,96px);
  line-height:.96;
  margin-top:24px;
}
.gold-line{
  width:110px;
  height:1px;
  background:#d9c5ad;
  margin:34px 0 28px;
  position:relative;
}
.gold-line::after{
  content:"";
  position:absolute;
  top:-1px;
  left:42px;
  width:30px;
  height:3px;
  border-radius:10px;
  background:var(--gold);
}
.lead{
  max-width:550px;
  font-size:20px;
  line-height:1.65;
  color:#514337;
}
.hero-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  min-height:56px;
  padding:0 30px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  font-size:13px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
  transition:.25s ease;
}
.btn-primary{
  background:var(--gold);
  color:white;
  box-shadow:0 18px 40px rgba(185,134,75,.25);
}
.btn-primary:hover{background:var(--gold-dark);transform:translateY(-2px)}
.btn-secondary{
  background:rgba(255,255,255,.55);
  border:1px solid #decfbd;
  color:var(--dark);
  backdrop-filter:blur(10px);
}
.btn-secondary:hover{background:white;transform:translateY(-2px)}

.hero-benefits{
  position:absolute;
  z-index:3;
  bottom:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-top:1px solid rgba(35,23,15,.07);
}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
  padding-block:23px;
}
.benefit{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.benefit span{
  width:48px;
  height:48px;
  flex:0 0 48px;
  border:1px solid #dfd2c4;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}
.benefit strong{
  display:block;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:5px;
}
.benefit p{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.intro-section{
  padding:110px 0;
  background:var(--bg-soft);
}
.intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:80px;
  align-items:end;
}
.intro-grid h2,.section-title h2,.why h2,.contact h2{
  font-size:clamp(44px,5vw,72px);
  line-height:1;
  margin-top:18px;
}
.intro-grid>p{
  font-size:19px;
  line-height:1.75;
  color:var(--muted);
  max-width:650px;
}

.categories{
  padding:40px 0 130px;
  background:white;
}
.section-title{
  text-align:center;
  margin-bottom:78px;
}
.category-row{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:42px;
  align-items:center;
  margin-bottom:46px;
}
.category-row.reverse{
  grid-template-columns:1.22fr .78fr;
}
.category-row.reverse .category-copy{order:2}
.category-copy{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:36px;
  padding:52px;
}
.category-copy h3{
  font-size:clamp(38px,4.4vw,62px);
  line-height:1.03;
  margin:20px 0 22px;
}
.category-copy p{
  color:var(--muted);
  font-size:18px;
  line-height:1.68;
}
.text-link{
  display:inline-block;
  margin-top:28px;
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.category-image{
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.category-image img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  transition:.7s;
}
.category-image:hover img{transform:scale(1.035)}

.why{
  padding:125px 0;
  background:var(--bg);
}
.why-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
}
.why-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.why-cards article{
  background:white;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px;
}
.why-cards h3{
  font-family:'Inter',Arial,sans-serif;
  font-size:13px;
  letter-spacing:.2em;
  color:var(--gold);
  margin-bottom:24px;
}
.why-cards strong{
  display:block;
  font-size:20px;
  margin-bottom:12px;
}
.why-cards p{
  color:var(--muted);
  line-height:1.65;
}

.contact{
  padding:125px 0;
  background:white;
}
.contact-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:64px;
  align-items:start;
}
.contact-copy p:not(.eyebrow){
  color:var(--muted);
  font-size:19px;
  line-height:1.7;
  margin-top:24px;
}
.contact-info{
  margin-top:34px;
  font-weight:800;
  color:var(--gold);
}
.contact-form{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:38px;
  padding:42px;
  box-shadow:0 18px 55px rgba(35,23,15,.07);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
label{
  display:block;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#4b3a2d;
  margin-bottom:18px;
}
input,textarea,select{
  width:100%;
  margin-top:9px;
  border:1px solid #e4d7c8;
  border-radius:18px;
  background:white;
  padding:16px 17px;
  font:inherit;
  outline:none;
  color:var(--dark);
  transition:.2s;
}
input:focus,textarea:focus,select:focus{border-color:var(--gold)}
textarea{resize:vertical}

.footer{
  background:var(--dark);
  color:white;
  padding:45px 0;
}
.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.footer img{height:52px;filter:brightness(1.1)}
.footer p{color:rgba(255,255,255,.68)}

.cookie-popup{
  position:fixed;
  left:24px;
  bottom:24px;
  z-index:200;
  width:min(430px,calc(100% - 48px));
  background:rgba(255,255,255,.94);
  border:1px solid #e4d7c8;
  border-radius:24px;
  padding:22px;
  box-shadow:0 20px 80px rgba(35,23,15,.18);
  backdrop-filter:blur(18px);
  display:none;
  gap:18px;
  align-items:flex-end;
}
.cookie-popup.show{display:flex}
.cookie-popup strong{
  display:block;
  margin-bottom:6px;
}
.cookie-popup p{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.cookie-popup button{
  flex:0 0 auto;
  border:0;
  background:var(--dark);
  color:white;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
}

@media(max-width:1100px){
  .container{width:min(100% - 48px,1440px)}
  .menu,.nav-cta{display:none}
  .hero-shade{background:linear-gradient(90deg,rgba(247,241,232,.98),rgba(247,241,232,.78),rgba(247,241,232,.18))}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .intro-grid,.why-grid,.contact-layout{grid-template-columns:1fr}
  .category-row,.category-row.reverse{grid-template-columns:1fr}
  .category-row.reverse .category-copy{order:0}
  .why-cards{grid-template-columns:1fr}
}
@media(max-width:680px){
  .container{width:min(100% - 32px,1440px)}
  .nav{min-height:78px}
  .site-header{height:78px}
  .brand img{height:46px}
  .hero{padding-top:78px;min-height:880px;align-items:flex-start}
  .hero-image{inset:78px 0 0 0;height:calc(100% - 78px);object-position:62% center}
  .hero-shade{inset:78px 0 0 0;background:linear-gradient(180deg,rgba(247,241,232,.98),rgba(247,241,232,.86),rgba(247,241,232,.28))}
  .hero-content{padding:80px 0 230px}
  .lead{font-size:17px}
  .benefit-grid{grid-template-columns:1fr;padding-block:22px}
  .hero-benefits{position:absolute}
  .intro-section,.why,.contact{padding:82px 0}
  .categories{padding:40px 0 85px}
  .category-copy{padding:32px;border-radius:28px}
  .category-image{border-radius:28px}
  .form-grid{grid-template-columns:1fr;gap:0}
  .contact-form{padding:28px;border-radius:28px}
  .footer-grid{flex-direction:column;text-align:center}
  .cookie-popup{flex-direction:column;align-items:flex-start}
}


.footer{
  background:#1E1712;
  padding:70px 0 42px;
  margin-top:0;
}

.footer-premium{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.footer-brand img{
  height:62px;
  width:auto;
  opacity:.98;
}

.footer-brand p{
  margin-top:18px;
  color:rgba(255,255,255,.58);
  font-size:15px;
  letter-spacing:.02em;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:34px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-links a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  transition:.25s ease;
}

.footer-links a:hover{
  color:#ffffff;
}

.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:26px;
}

.footer-social span{
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
}

.footer-social a{
  color:rgba(255,255,255,.62);
  text-decoration:none;
  font-size:14px;
  transition:.25s ease;
}

.footer-social a:hover{
  color:#ffffff;
}

@media(max-width:700px){

  .footer{
    padding:56px 0 34px;
  }

  .footer-links{
    gap:18px;
  }

}


/* Final polished footer */
.footer{
  background:#1E1712 !important;
  padding:42px 0 !important;
  margin-top:0 !important;
}

.footer-premium{
  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center !important;
  gap:36px !important;
  text-align:initial !important;
}

.footer-left{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

.footer-left img{
  height:54px;
  width:auto;
  opacity:.98;
  display:block;
}

.footer-center{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.footer-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-center a,
.footer-right a{
  color:rgba(255,255,255,.74);
  text-decoration:none;
  transition:.25s ease;
}

.footer-center a{
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.footer-right a{
  font-size:14px;
  font-weight:500;
}

.footer-center a:hover,
.footer-right a:hover{
  color:#fff;
}

.footer-right span{
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
  display:block;
}

@media(max-width:850px){
  .footer-premium{
    grid-template-columns:1fr !important;
    text-align:center !important;
    gap:24px !important;
  }

  .footer-left,
  .footer-center,
  .footer-right{
    justify-content:center;
  }

  .footer{
    padding:48px 0 36px !important;
  }
}


/* Refined category typography */
.category-copy h3{
  font-size:clamp(30px,3.2vw,46px) !important;
  line-height:1.08 !important;
  max-width:560px;
}

.category-copy p{
  font-size:17px !important;
  line-height:1.9 !important;
  color:#6d5c50 !important;
  max-width:620px;
}

.text-link{
  margin-top:24px !important;
  font-size:12px !important;
  letter-spacing:.16em !important;
}

.contact h2{
  font-size:clamp(40px,4vw,58px) !important;
}

@media(max-width:700px){
  .category-copy h3{
    font-size:34px !important;
  }

  .category-copy p{
    font-size:16px !important;
    line-height:1.8 !important;
  }
}


/* Better mobile hero visibility */
@media(max-width:700px){

  .hero{
    min-height:720px !important;
    align-items:flex-start !important;
  }

  .hero-content{
    padding:48px 0 170px !important;
  }

  .hero-image{
    object-position:center center !important;
    opacity:1 !important;
  }

  .hero-shade{
    background:
      linear-gradient(
        180deg,
        rgba(247,241,232,.72) 0%,
        rgba(247,241,232,.42) 28%,
        rgba(247,241,232,.18) 55%,
        rgba(247,241,232,.08) 100%
      ) !important;
  }

  h1{
    font-size:42px !important;
    line-height:1.02 !important;
    max-width:320px !important;
    margin-top:18px !important;
  }

  .lead{
    font-size:15px !important;
    line-height:1.7 !important;
    max-width:310px !important;
    margin-bottom:0 !important;
  }

  .gold-line{
    margin:24px 0 20px !important;
  }

  .hero-actions{
    margin-top:24px !important;
  }

  .btn{
    min-height:50px !important;
    padding:0 22px !important;
    font-size:11px !important;
  }

  .hero-benefits{
    position:absolute !important;
    bottom:0 !important;
  }

  .benefit-grid{
    gap:18px !important;
    padding-block:18px !important;
  }

}


/* Stronger mobile hero image presence */
@media(max-width:700px){

  .hero{
    min-height:640px !important;
    background:#f7f1e8 !important;
  }

  .hero-image{
    object-position:72% center !important;
    transform:scale(1.08) !important;
    filter:saturate(1.02) contrast(1.02) !important;
  }

  .hero-shade{
    background:
      linear-gradient(
        180deg,
        rgba(247,241,232,.42) 0%,
        rgba(247,241,232,.12) 26%,
        rgba(247,241,232,.04) 52%,
        rgba(247,241,232,.10) 100%
      ) !important;
  }

  .hero-content{
    padding:32px 0 150px !important;
  }

  h1{
    font-size:36px !important;
    max-width:260px !important;
    color:#231811 !important;
    text-shadow:0 2px 18px rgba(255,255,255,.35);
  }

  .lead{
    max-width:250px !important;
    font-size:14px !important;
    line-height:1.6 !important;
    color:#43362d !important;
  }

  .eyebrow{
    font-size:10px !important;
    letter-spacing:.28em !important;
  }

  .btn{
    min-height:46px !important;
    padding:0 18px !important;
    font-size:10px !important;
    letter-spacing:.12em !important;
  }

  .hero-actions{
    gap:10px !important;
  }

  .benefit{
    gap:12px !important;
  }

  .benefit span{
    width:40px !important;
    height:40px !important;
    flex:0 0 40px !important;
    font-size:18px !important;
  }

  .benefit strong{
    font-size:11px !important;
  }

  .benefit p{
    font-size:12px !important;
  }

}


/* Full banner visible on mobile */
@media(max-width:700px){

  .hero{
    min-height:auto !important;
    padding-top:78px !important;
    display:block !important;
    background:#f7f1e8 !important;
  }

  .hero-image{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    height:auto !important;
    object-fit:contain !important;
    object-position:center center !important;
    transform:none !important;
    display:block !important;
  }

  .hero-shade{
    position:absolute !important;
    inset:78px 0 auto 0 !important;
    height:42% !important;
    background:
      linear-gradient(
        180deg,
        rgba(247,241,232,.18) 0%,
        rgba(247,241,232,.04) 55%,
        rgba(247,241,232,0) 100%
      ) !important;
    pointer-events:none;
  }

  .hero-content{
    position:absolute !important;
    top:96px !important;
    left:0 !important;
    right:0 !important;
    z-index:5 !important;
    padding:0 0 0 !important;
  }

  .hero .container{
    width:min(100% - 32px,1440px) !important;
  }

  h1{
    font-size:34px !important;
    max-width:240px !important;
  }

  .lead{
    max-width:230px !important;
    font-size:13px !important;
  }

  .hero-actions{
    margin-top:18px !important;
  }

  .hero-benefits{
    position:relative !important;
    margin-top:-4px !important;
  }

}


/* Fix mobile hero text overlap */
@media(max-width:700px){

  .hero{
    position:relative !important;
    overflow:hidden !important;
  }

  .hero-content{
    position:absolute !important;
    top:94px !important;
    left:0 !important;
    right:0 !important;
    z-index:10 !important;
  }

  .hero .container{
    position:relative !important;
  }

  .eyebrow{
    display:block !important;
    margin-bottom:12px !important;
    max-width:180px !important;
  }

  h1{
    display:block !important;
    margin-top:0 !important;
    margin-bottom:16px !important;
    max-width:220px !important;
    line-height:1.05 !important;
  }

  .gold-line{
    margin:0 0 16px !important;
  }

  .lead{
    display:block !important;
    max-width:210px !important;
    margin-bottom:18px !important;
  }

  .hero-actions{
    display:flex !important;
    flex-wrap:wrap !important;
    width:210px !important;
  }

  .hero-benefits{
    z-index:15 !important;
  }

}


/* Premium mobile hero redesign */
@media(max-width:700px){

  .hero{
    background:#f6f1ea !important;
    padding-top:72px !important;
  }

  .hero-image{
    width:calc(100% - 24px) !important;
    margin:14px auto 0 !important;
    border-radius:28px !important;
    overflow:hidden !important;
    box-shadow:
      0 18px 50px rgba(35,23,15,.10),
      0 4px 18px rgba(35,23,15,.06) !important;
    display:block !important;
  }

  .hero-image img,
  .hero-image picture,
  .hero-image source{
    border-radius:28px !important;
  }

  .hero-content{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    padding:34px 0 10px !important;
  }

  .hero .container{
    width:min(100% - 28px,1440px) !important;
  }

  .eyebrow{
    font-size:11px !important;
    letter-spacing:.24em !important;
    margin-bottom:14px !important;
    color:#ba8a49 !important;
  }

  h1{
    font-size:52px !important;
    line-height:.93 !important;
    letter-spacing:-0.04em !important;
    max-width:100% !important;
    margin-bottom:20px !important;
    text-shadow:none !important;
  }

  .gold-line{
    margin:0 0 20px !important;
    width:100px !important;
  }

  .lead{
    max-width:100% !important;
    font-size:17px !important;
    line-height:1.85 !important;
    color:#5d5047 !important;
    margin-bottom:26px !important;
  }

  .hero-actions{
    width:100% !important;
    gap:12px !important;
    flex-wrap:wrap !important;
  }

  .btn{
    min-height:52px !important;
    padding:0 24px !important;
    border-radius:18px !important;
    font-size:11px !important;
    letter-spacing:.14em !important;
  }

  .hero-benefits{
    margin-top:26px !important;
    position:relative !important;
    background:#fff !important;
    border-radius:28px 28px 0 0 !important;
    box-shadow:0 -10px 30px rgba(35,23,15,.04) !important;
  }

}


/* Mobile menu */
.mobile-toggle{
  display:none;
}

@media(max-width:900px){

  .menu{
    display:none !important;
  }

  .mobile-toggle{
    width:48px;
    height:48px;
    border:none;
    background:transparent;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
    margin-left:auto;
  }

  .mobile-toggle span{
    width:22px;
    height:2px;
    background:#241811;
    border-radius:20px;
    transition:.25s ease;
    display:block;
  }

  .mobile-menu{
    position:fixed;
    top:84px;
    left:16px;
    right:16px;
    background:#fff;
    border-radius:28px;
    padding:28px;
    box-shadow:
      0 20px 50px rgba(35,23,15,.12),
      0 5px 16px rgba(35,23,15,.08);
    display:flex;
    flex-direction:column;
    gap:20px;
    z-index:999;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.28s ease;
  }

  .mobile-menu.active{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .mobile-menu a{
    color:#241811;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
  }

  .mobile-socials{
    display:flex;
    gap:18px;
    padding-top:10px;
    border-top:1px solid rgba(36,24,17,.08);
  }

  .mobile-socials a{
    font-size:13px;
    text-transform:none;
    letter-spacing:0;
    font-weight:500;
    color:#7c6c61;
  }

}


/* FORCE VISIBLE MOBILE HAMBURGER MENU */
.mobile-toggle{
  display:none;
}

.mobile-menu{
  display:none;
}

@media(max-width:900px){
  .site-header{
    z-index:9999 !important;
  }

  .nav{
    position:relative !important;
  }

  .menu,
  .nav-cta{
    display:none !important;
  }

  .mobile-toggle{
    display:flex !important;
    width:48px !important;
    height:48px !important;
    border:1px solid rgba(36,24,17,.10) !important;
    border-radius:16px !important;
    background:rgba(255,255,255,.62) !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:5px !important;
    margin-left:auto !important;
    cursor:pointer !important;
    padding:0 !important;
    position:relative !important;
    z-index:10001 !important;
  }

  .mobile-toggle span{
    display:block !important;
    width:22px !important;
    height:2px !important;
    background:#241811 !important;
    border-radius:99px !important;
  }

  .mobile-menu{
    position:fixed !important;
    top:88px !important;
    left:16px !important;
    right:16px !important;
    display:flex !important;
    flex-direction:column !important;
    gap:20px !important;
    padding:28px !important;
    background:rgba(255,255,255,.96) !important;
    border:1px solid rgba(36,24,17,.08) !important;
    border-radius:28px !important;
    box-shadow:0 24px 80px rgba(35,23,15,.18) !important;
    backdrop-filter:blur(18px) !important;
    z-index:10000 !important;
    opacity:0 !important;
    visibility:hidden !important;
    transform:translateY(-12px) !important;
    transition:.25s ease !important;
    pointer-events:none !important;
  }

  .mobile-menu.active{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
    pointer-events:auto !important;
  }

  .mobile-menu a{
    color:#241811 !important;
    text-decoration:none !important;
    font-size:14px !important;
    font-weight:800 !important;
    letter-spacing:.12em !important;
    text-transform:uppercase !important;
  }

  .mobile-socials{
    display:flex !important;
    gap:18px !important;
    padding-top:16px !important;
    border-top:1px solid rgba(36,24,17,.09) !important;
  }

  .mobile-socials a{
    color:#79685c !important;
    font-size:13px !important;
    font-weight:600 !important;
    letter-spacing:0 !important;
    text-transform:none !important;
  }
}


/* Hide hamburger on desktop completely */
@media(min-width:901px){

  .mobile-toggle{
    display:none !important;
  }

  .mobile-menu{
    display:none !important;
  }

}


/* === Final premium polish === */

/* Header - softer glass look */
.site-header{
  background:rgba(255,255,255,.82) !important;
  backdrop-filter:blur(20px) saturate(1.08) !important;
  -webkit-backdrop-filter:blur(20px) saturate(1.08) !important;
  border-bottom:1px solid rgba(35,23,15,.055) !important;
  box-shadow:0 10px 40px rgba(35,23,15,.035) !important;
}

/* Better hero text width on large screens */
.hero-content{
  max-width:620px !important;
}

/* Premium desktop motion */
@media(min-width:901px){
  .category-image img,
  .hero-image{
    transition:transform .9s ease, filter .9s ease !important;
  }

  .category-image:hover img{
    transform:scale(1.025) !important;
  }

  .btn:hover,
  .nav-cta:hover{
    transform:translateY(-2px) !important;
  }

  .category-copy,
  .why-cards article,
  .contact-form{
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
  }

  .category-copy:hover,
  .why-cards article:hover,
  .contact-form:hover{
    transform:translateY(-3px) !important;
    box-shadow:0 20px 70px rgba(35,23,15,.07) !important;
  }
}

/* Contact section upgrade */
.contact{
  background:
    radial-gradient(circle at 16% 14%, rgba(185,134,75,.12), transparent 34%),
    linear-gradient(180deg,#fff 0%,#fbf7f1 100%) !important;
}

.contact-layout{
  align-items:center !important;
}

.contact-form{
  background:rgba(255,255,255,.86) !important;
  backdrop-filter:blur(18px) !important;
  -webkit-backdrop-filter:blur(18px) !important;
  border:1px solid rgba(185,134,75,.18) !important;
  box-shadow:0 28px 90px rgba(35,23,15,.09) !important;
}

input, textarea, select{
  border-color:rgba(185,134,75,.20) !important;
  background:rgba(255,255,255,.92) !important;
}

input:focus, textarea:focus, select:focus{
  border-color:#b98645 !important;
  box-shadow:0 0 0 4px rgba(185,134,75,.10) !important;
}

/* Cookie popup polish */
.cookie-popup{
  background:rgba(255,255,255,.90) !important;
  backdrop-filter:blur(24px) saturate(1.08) !important;
  -webkit-backdrop-filter:blur(24px) saturate(1.08) !important;
  border:1px solid rgba(185,134,75,.16) !important;
  box-shadow:0 24px 90px rgba(35,23,15,.18) !important;
  padding:18px 20px !important;
}

.cookie-popup button{
  background:linear-gradient(135deg,#bf8b4a,#8f5f31) !important;
  color:white !important;
  box-shadow:0 12px 28px rgba(185,134,75,.25) !important;
}

/* Footer final touch */
.footer{
  border-top:1px solid rgba(255,255,255,.08) !important;
  padding:36px 0 !important;
}

.footer-left img{
  height:50px !important;
}

.footer-right a{
  position:relative;
}

.footer-right a[href*="instagram"]::before{
  content:"◎";
  margin-right:8px;
  opacity:.8;
}

.footer-right a[href*="facebook"]::before{
  content:"f";
  margin-right:8px;
  font-weight:900;
  opacity:.8;
}

/* Terms page readability */
.terms-card{
  max-width:1120px;
  margin:0 auto;
}

.terms-content{
  font-size:15px !important;
  line-height:1.95 !important;
}

/* Mobile refinements preserved */
@media(max-width:700px){
  .site-header{
    background:rgba(251,247,241,.92) !important;
  }

  .hero-content{
    max-width:none !important;
  }

  .contact-copy p:not(.eyebrow){
    font-size:16px !important;
    line-height:1.75 !important;
  }

  .contact-form{
    box-shadow:0 18px 60px rgba(35,23,15,.08) !important;
  }

  .footer{
    padding:38px 0 32px !important;
  }

  .footer-left img{
    height:48px !important;
  }
}


/* Final desktop hero alignment correction */
@media(min-width:901px){
  .hero-content{
    max-width:620px !important;
    margin-left:0 !important;
    margin-right:auto !important;
    padding-left:0 !important;
    transform:none !important;
  }

  .hero .container{
    justify-content:flex-start !important;
  }

  .hero h1,
  .hero .lead,
  .hero .eyebrow{
    text-align:left !important;
  }

  .hero-actions{
    justify-content:flex-start !important;
  }
}

/* Cookie popup restored */
.cookie-popup{
  position:fixed;
  left:24px;
  bottom:24px;
  z-index:99999;
  width:min(430px,calc(100% - 48px));
  background:rgba(255,255,255,.92);
  border:1px solid rgba(185,134,75,.18);
  border-radius:24px;
  padding:18px 20px;
  box-shadow:0 24px 90px rgba(35,23,15,.18);
  backdrop-filter:blur(24px) saturate(1.08);
  -webkit-backdrop-filter:blur(24px) saturate(1.08);
  display:none;
  gap:18px;
  align-items:flex-end;
}

.cookie-popup.show{
  display:flex;
}

.cookie-popup strong{
  display:block;
  margin-bottom:6px;
  color:#21170f;
}

.cookie-popup p{
  color:#67564a;
  font-size:14px;
  line-height:1.5;
}

.cookie-popup button{
  flex:0 0 auto;
  border:0;
  background:linear-gradient(135deg,#bf8b4a,#8f5f31);
  color:white;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(185,134,75,.25);
}

@media(max-width:700px){
  .cookie-popup{
    left:16px;
    right:16px;
    bottom:16px;
    width:auto;
    flex-direction:column;
    align-items:flex-start;
  }
}


/* Hero text slight right alignment fix */
@media(min-width:901px){
  .hero-content{
    padding-left:42px !important;
  }
}





/* === REBUILT PREMIUM INTRO SECTION === */
.rebuilt-intro{
  padding:110px 0 96px !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(185,134,75,.06), transparent 34%),
    linear-gradient(180deg,#fffaf4 0%,#fbf7f1 100%) !important;
}

.rebuilt-intro-wrap{
  display:grid !important;
  grid-template-columns:minmax(420px,.9fr) minmax(680px,1.1fr) !important;
  gap:92px !important;
  align-items:start !important;
}

.rebuilt-intro-left{
  max-width:650px !important;
  padding:0 !important;
  margin:0 !important;
}

.rebuilt-intro-left .eyebrow{
  margin-bottom:18px !important;
}

.rebuilt-intro-left h2{
  font-family:'Playfair Display',serif !important;
  font-size:clamp(58px,5.3vw,86px) !important;
  line-height:.94 !important;
  letter-spacing:-.055em !important;
  margin:0 0 28px !important;
  color:#21170f !important;
}

.intro-gold-line{
  width:58px !important;
  height:2px !important;
  background:#b98645 !important;
  margin:0 0 28px !important;
  opacity:.78 !important;
}

.rebuilt-intro-left > p{
  max-width:600px !important;
  font-size:16px !important;
  line-height:1.75 !important;
  color:#5f5148 !important;
  margin:0 0 22px !important;
}

.intro-note{
  display:flex !important;
  gap:16px !important;
  align-items:flex-start !important;
  margin-top:32px !important;
}

.intro-note span{
  color:#b98645 !important;
  font-size:26px !important;
  line-height:1 !important;
}

.intro-note p{
  margin:0 !important;
  color:#5f5148 !important;
  font-size:15px !important;
  line-height:1.7 !important;
  max-width:430px !important;
}

.rebuilt-intro-right{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:54px 62px !important;
  padding-top:12px !important;
}

.tech-card{
  position:relative !important;
  min-height:190px !important;
  padding-top:0 !important;
}

.tech-number{
  color:#b98645 !important;
  opacity:.86 !important;
  font-size:15px !important;
  font-weight:800 !important;
  letter-spacing:.18em !important;
  line-height:1 !important;
  margin-bottom:0 !important;
}

.tech-divider{
  position:absolute !important;
  top:8px !important;
  left:42px !important;
  right:0 !important;
  height:1px !important;
  background:rgba(185,134,75,.22) !important;
}

.tech-body{
  display:grid !important;
  grid-template-columns:82px 1fr !important;
  gap:28px !important;
  align-items:center !important;
  margin-top:42px !important;
}

.tech-icon{
  width:82px !important;
  height:82px !important;
  border-radius:50% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(255,255,255,.82) !important;
  border:1px solid rgba(185,134,75,.11) !important;
  box-shadow:
    0 18px 52px rgba(35,23,15,.06),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.tech-icon svg{
  width:44px !important;
  height:44px !important;
  stroke:#be8a49 !important;
  stroke-width:2.05 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

.tech-card h3{
  font-family:'Inter',Arial,sans-serif !important;
  font-size:18px !important;
  line-height:1.28 !important;
  font-weight:800 !important;
  margin:0 0 12px !important;
  color:#21170f !important;
  letter-spacing:0 !important;
}

.tech-card p{
  max-width:310px !important;
  font-size:15px !important;
  line-height:1.68 !important;
  color:#5f5148 !important;
  margin:0 !important;
}

.tech-card:hover .tech-icon{
  transform:translateY(-3px) !important;
  background:rgba(255,255,255,.94) !important;
  box-shadow:
    0 26px 68px rgba(35,23,15,.085),
    inset 0 1px 0 rgba(255,255,255,1) !important;
}

.tech-icon{
  transition:.28s ease !important;
}

@media(max-width:1200px){
  .rebuilt-intro-wrap{
    grid-template-columns:1fr !important;
    gap:54px !important;
  }

  .rebuilt-intro-left{
    max-width:760px !important;
  }

  .rebuilt-intro-left h2{
    max-width:760px !important;
    font-size:clamp(48px,8vw,74px) !important;
  }

  .rebuilt-intro-right{
    max-width:900px !important;
  }
}

@media(max-width:700px){
  .rebuilt-intro{
    padding:78px 0 76px !important;
  }

  .rebuilt-intro-wrap{
    gap:40px !important;
  }

  .rebuilt-intro-left h2{
    font-size:clamp(42px,12vw,56px) !important;
  }

  .rebuilt-intro-left > p{
    font-size:16px !important;
    line-height:1.75 !important;
  }

  .rebuilt-intro-right{
    grid-template-columns:1fr !important;
    gap:30px !important;
  }

  .tech-card{
    min-height:auto !important;
  }

  .tech-body{
    grid-template-columns:62px 1fr !important;
    gap:20px !important;
    margin-top:30px !important;
  }

  .tech-icon{
    width:62px !important;
    height:62px !important;
  }

  .tech-icon svg{
    width:34px !important;
    height:34px !important;
  }

  .tech-card p{
    max-width:100% !important;
  }
}


/* Premium subpages */
.subpage-hero{
  padding:170px 0 105px;
  background:
    radial-gradient(circle at 18% 18%, rgba(185,134,75,.08), transparent 35%),
    linear-gradient(180deg,#fffaf4 0%,#fbf7f1 100%);
}

.subpage-hero-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:58px;
  align-items:center;
}

.subpage-hero-copy h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(48px,5.6vw,86px);
  line-height:.96;
  letter-spacing:-.055em;
  color:#21170f;
  margin:20px 0 28px;
  max-width:720px;
}

.subpage-hero-copy > p:not(.eyebrow){
  font-size:18px;
  line-height:1.85;
  color:#5f5148;
  max-width:660px;
}

.subpage-line{
  width:70px;
  height:2px;
  background:#b98645;
  margin:0 0 28px;
  opacity:.78;
}

.subpage-hero-image{
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 28px 90px rgba(35,23,15,.11);
  background:white;
}

.subpage-hero-image img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  transition:.7s ease;
}

.subpage-hero-image:hover img{
  transform:scale(1.025);
}

.subpage-details{
  padding:100px 0 110px;
  background:white;
}

.subpage-details-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 56px;
}

.subpage-details-title h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,4.8vw,68px);
  line-height:1;
  letter-spacing:-.045em;
  margin-top:18px;
}

.subpage-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.subpage-cards article{
  background:#fbf7f1;
  border:1px solid rgba(185,134,75,.16);
  border-radius:30px;
  padding:36px;
  box-shadow:0 18px 55px rgba(35,23,15,.05);
  transition:.28s ease;
}

.subpage-cards article:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 70px rgba(35,23,15,.08);
}

.subpage-cards span{
  display:block;
  width:44px;
  height:2px;
  background:#b98645;
  margin-bottom:26px;
  opacity:.75;
}

.subpage-cards h3{
  font-family:'Playfair Display',serif;
  font-size:30px;
  line-height:1.1;
  margin-bottom:14px;
  letter-spacing:-.035em;
}

.subpage-cards p{
  color:#67564a;
  line-height:1.75;
  font-size:16px;
}

@media(max-width:1000px){
  .subpage-hero-grid{
    grid-template-columns:1fr;
  }

  .subpage-hero{
    padding:130px 0 80px;
  }

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

@media(max-width:700px){
  .subpage-hero{
    padding:110px 0 66px;
  }

  .subpage-hero-grid{
    gap:34px;
  }

  .subpage-hero-image{
    border-radius:26px;
  }

  .subpage-details{
    padding:76px 0 80px;
  }

  .subpage-cards article{
    padding:28px;
    border-radius:24px;
  }
}





/* Premium dropdown navigation */
.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 18px);
  left:-24px;
  min-width:260px;
  padding:16px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(185,134,75,.14);
  box-shadow:0 24px 80px rgba(35,23,15,.10);
  display:flex;
  flex-direction:column;
  gap:6px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.24s ease;
  z-index:999;
}

.nav-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  padding:12px 14px;
  border-radius:14px;
  color:#5f5148;
  font-size:15px;
  font-weight:600;
  transition:.22s ease;
}

.dropdown-menu a:hover{
  background:#f7f1e8;
  color:#b98645;
}

@media(max-width:1100px){
  .nav-dropdown .dropdown-menu{
    display:none;
  }
}


/* Refined premium mobile hamburger menu */
@media(max-width:1100px){

  .mobile-toggle{
    width:50px !important;
    height:50px !important;
    border-radius:18px !important;
    background:rgba(255,255,255,.72) !important;
    border:1px solid rgba(35,23,15,.10) !important;
    box-shadow:0 10px 30px rgba(35,23,15,.06) !important;
    gap:6px !important;
  }

  .mobile-toggle span{
    width:21px !important;
    height:2px !important;
    background:#21170f !important;
    border-radius:999px !important;
  }

  .mobile-menu{
    top:92px !important;
    left:18px !important;
    right:18px !important;
    padding:10px !important;
    border-radius:30px !important;
    background:rgba(255,255,255,.96) !important;
    border:1px solid rgba(185,134,75,.14) !important;
    box-shadow:0 26px 80px rgba(35,23,15,.16) !important;
    backdrop-filter:blur(24px) saturate(1.05) !important;
    -webkit-backdrop-filter:blur(24px) saturate(1.05) !important;
    gap:0 !important;
    overflow:hidden !important;
  }

  .mobile-menu a{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding:17px 18px !important;
    border-radius:20px !important;
    color:#21170f !important;
    font-size:14px !important;
    font-weight:750 !important;
    letter-spacing:.10em !important;
    text-transform:uppercase !important;
    line-height:1.2 !important;
    transition:.22s ease !important;
  }

  .mobile-menu a + a{
    margin-top:4px !important;
  }

  .mobile-menu a:hover,
  .mobile-menu a:active{
    background:#f7f1e8 !important;
    color:#b98645 !important;
  }

  .mobile-menu a::after{
    content:"›";
    font-size:20px;
    line-height:1;
    color:rgba(185,134,75,.72);
    font-weight:400;
    margin-left:18px;
  }

  .mobile-socials{
    margin-top:10px !important;
    padding:14px 8px 6px !important;
    border-top:1px solid rgba(35,23,15,.08) !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
  }

  .mobile-socials a{
    justify-content:center !important;
    padding:13px 12px !important;
    border-radius:16px !important;
    background:#fbf7f1 !important;
    color:#67564a !important;
    text-transform:none !important;
    letter-spacing:0 !important;
    font-size:14px !important;
    font-weight:650 !important;
  }

  .mobile-socials a::after{
    display:none !important;
  }

}

@media(max-width:430px){
  .mobile-menu{
    top:86px !important;
    left:14px !important;
    right:14px !important;
  }

  .mobile-menu a{
    padding:16px 16px !important;
    font-size:13px !important;
  }
}


/* Final mobile subpage order: image first, text second */
@media(max-width:1000px){
  .subpage-hero-grid{
    display:flex !important;
    flex-direction:column !important;
  }

  .subpage-hero-image{
    order:1 !important;
  }

  .subpage-hero-copy{
    order:2 !important;
  }
}

/* Final mobile menu: simple links with equal spacing */
@media(max-width:1100px){

  .mobile-toggle{
    width:48px !important;
    height:48px !important;
    border:1px solid rgba(36,24,17,.10) !important;
    border-radius:16px !important;
    background:rgba(255,255,255,.62) !important;
    box-shadow:none !important;
    gap:5px !important;
  }

  .mobile-toggle span{
    width:22px !important;
    height:2px !important;
    background:#241811 !important;
    border-radius:99px !important;
  }

  .mobile-menu{
    top:88px !important;
    left:16px !important;
    right:16px !important;
    padding:28px !important;
    border-radius:28px !important;
    background:rgba(255,255,255,.96) !important;
    border:1px solid rgba(36,24,17,.08) !important;
    box-shadow:0 24px 80px rgba(35,23,15,.18) !important;
    backdrop-filter:blur(18px) !important;
    -webkit-backdrop-filter:blur(18px) !important;
    gap:18px !important;
    overflow:visible !important;
  }

  .mobile-menu a{
    display:block !important;
    padding:0 !important;
    margin:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#241811 !important;
    font-size:14px !important;
    font-weight:800 !important;
    letter-spacing:.12em !important;
    text-transform:uppercase !important;
    line-height:1.4 !important;
  }

  .mobile-menu a + a{
    margin-top:0 !important;
  }

  .mobile-menu a:hover,
  .mobile-menu a:active{
    background:transparent !important;
    color:#b98645 !important;
  }

  .mobile-menu a::after{
    display:none !important;
    content:none !important;
  }

  .mobile-socials{
    display:flex !important;
    gap:18px !important;
    padding-top:16px !important;
    margin-top:0 !important;
    border-top:1px solid rgba(36,24,17,.09) !important;
  }

  .mobile-socials a{
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#79685c !important;
    font-size:13px !important;
    font-weight:600 !important;
    letter-spacing:0 !important;
    text-transform:none !important;
  }
}


@media(max-width:1100px){

  .mobile-menu{
    display:flex !important;
    flex-direction:column !important;
  }

  .mobile-menu a{
    margin:0 !important;
    padding:0 !important;
  }

  .mobile-menu > a{
    padding:4px 0 !important;
  }

  .mobile-menu{
    gap:16px !important;
  }

  .mobile-socials{
    margin-top:6px !important;
  }
}


/* Dynamic gallery */
.gallery-section{
  padding:100px 0 110px;
  background:#fbf7f1;
}

.gallery-head{
  max-width:760px;
  margin:0 auto 52px;
  text-align:center;
}

.gallery-head h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,4.8vw,68px);
  line-height:1;
  letter-spacing:-.045em;
  margin:18px 0 18px;
  color:#21170f;
}

.gallery-head p:not(.eyebrow){
  color:#67564a;
  line-height:1.8;
  font-size:17px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}

.gallery-item{
  display:block;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 60px rgba(35,23,15,.07);
  border:1px solid rgba(185,134,75,.13);
  aspect-ratio:1/1;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s ease;
}

.gallery-item:hover img{
  transform:scale(1.045);
}

.gallery-empty{
  grid-column:1/-1;
  text-align:center;
  color:#67564a;
  background:white;
  border:1px solid rgba(185,134,75,.14);
  border-radius:24px;
  padding:34px;
}

/* Admin pages */
.admin-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(185,134,75,.16), transparent 36%),
    linear-gradient(135deg,#fff,#fbf7f1);
  padding:48px 18px;
}

.admin-card{
  width:min(980px,100%);
  margin:0 auto;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(185,134,75,.16);
  border-radius:34px;
  box-shadow:0 28px 90px rgba(35,23,15,.12);
  padding:44px;
}

.admin-logo{
  width:250px;
  max-width:80%;
  display:block;
  margin:0 auto 34px;
}

.admin-card h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(38px,5vw,62px);
  line-height:1;
  letter-spacing:-.045em;
  margin-bottom:18px;
  text-align:center;
}

.admin-card > p{
  text-align:center;
  color:#67564a;
  line-height:1.75;
  margin-bottom:34px;
}

.admin-form{
  display:grid;
  gap:18px;
  max-width:520px;
  margin:0 auto;
}

.admin-form label{
  display:grid;
  gap:8px;
  font-weight:700;
  color:#21170f;
}

.admin-form input,
.admin-form select{
  width:100%;
  border:1px solid rgba(185,134,75,.22);
  background:#fff;
  border-radius:16px;
  padding:15px 16px;
  font-size:16px;
}

.admin-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:34px;
}

.admin-panel{
  background:#fbf7f1;
  border:1px solid rgba(185,134,75,.14);
  border-radius:26px;
  padding:28px;
}

.admin-panel h2{
  font-size:22px;
  margin-bottom:18px;
}

.admin-message{
  padding:14px 18px;
  border-radius:16px;
  background:#f2eadf;
  color:#5f4327;
  margin-bottom:22px;
}

.admin-photo-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.admin-photo-row{
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:14px;
  align-items:center;
  background:white;
  border-radius:18px;
  padding:10px;
  border:1px solid rgba(185,134,75,.12);
}

.admin-photo-row img{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:14px;
}

.admin-small-link{
  color:#b98645;
  font-weight:800;
  text-decoration:none;
}

.admin-danger{
  color:#b42318;
  font-weight:800;
  text-decoration:none;
}

@media(max-width:800px){
  .admin-card{
    padding:30px 22px;
  }

  .admin-grid{
    grid-template-columns:1fr;
  }

  .admin-photo-row{
    grid-template-columns:60px 1fr;
  }

  .admin-photo-row a{
    grid-column:2;
  }
}


/* Premium gallery lightbox */
body.lightbox-open{
  overflow:hidden;
}

.premium-lightbox{
  position:fixed;
  inset:0;
  z-index:999999;
  background:rgba(24,17,12,.86);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.premium-lightbox.active{
  display:flex;
}

.lightbox-stage{
  position:relative;
  width:min(1100px,88vw);
  height:min(760px,82vh);
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-stage img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:28px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  background:#fff;
}

.lightbox-close{
  position:absolute;
  top:28px;
  left:28px;
  z-index:2;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  color:white;
  border-radius:999px;
  padding:14px 22px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:62px;
  height:62px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.12);
  color:white;
  font-size:48px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:.2s ease;
}

.lightbox-arrow:hover,
.lightbox-close:hover{
  background:rgba(255,255,255,.22);
}

.lightbox-prev{
  left:34px;
}

.lightbox-next{
  right:34px;
}

.lightbox-counter{
  position:absolute;
  left:50%;
  bottom:-46px;
  transform:translateX(-50%);
  color:rgba(255,255,255,.78);
  font-size:14px;
  font-weight:700;
  letter-spacing:.12em;
}

@media(max-width:700px){
  .premium-lightbox{
    padding:18px;
  }

  .lightbox-stage{
    width:100%;
    height:74vh;
  }

  .lightbox-stage img{
    border-radius:20px;
  }

  .lightbox-close{
    top:16px;
    left:16px;
    padding:12px 18px;
    font-size:12px;
  }

  .lightbox-arrow{
    width:48px;
    height:48px;
    font-size:38px;
  }

  .lightbox-prev{
    left:14px;
  }

  .lightbox-next{
    right:14px;
  }

  .lightbox-counter{
    bottom:-38px;
  }
}


/* Premium category gallery CTA */
.premium-gallery-link{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:12px !important;
  margin-top:18px !important;
  padding:16px 28px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#c39252 0%,#b98645 100%) !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
  box-shadow:0 18px 42px rgba(185,134,75,.28) !important;
  transition:.28s ease !important;
}

.premium-gallery-link span{
  font-size:18px !important;
  line-height:1 !important;
  transition:.28s ease !important;
}

.premium-gallery-link:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 26px 62px rgba(185,134,75,.38) !important;
}

.premium-gallery-link:hover span{
  transform:translateX(4px) !important;
}

.category-image-link{
  display:block !important;
  overflow:hidden !important;
  border-radius:inherit !important;
}

.category-image-link img{
  transition:.55s ease !important;
}

.category-image-link:hover img{
  transform:scale(1.03) !important;
}

@media(max-width:700px){
  .premium-gallery-link{
    width:100% !important;
  }
}


/* Mobile gallery CTA on category images */
.category-image{
  position:relative;
}

.category-image-link{
  position:relative;
  display:block;
  border-radius:inherit;
  overflow:hidden;
}

.mobile-gallery-cta{
  display:none;
}

@media(max-width:700px){
  .category-image-link::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0) 45%,rgba(0,0,0,.42) 100%);
    pointer-events:none;
  }

  .mobile-gallery-cta{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:#21170f;
    font-size:12px;
    font-weight:850;
    letter-spacing:.12em;
    text-transform:uppercase;
    box-shadow:0 16px 46px rgba(0,0,0,.18);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:.2s ease;
  }

  .mobile-gallery-cta::after{
    content:"→";
    margin-left:8px;
    color:#b98645;
    font-size:16px;
    line-height:1;
  }

  .category-image-link:active .mobile-gallery-cta{
    transform:scale(.98);
  }
}


/* Homepage category mobile gallery lightbox */
.homepage-lightbox{
  position:fixed;
  inset:0;
  z-index:999999;
  background:rgba(18,13,9,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.homepage-lightbox.active{
  display:flex;
}

.homepage-lightbox-stage{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.homepage-lightbox-stage img{
  max-width:100%;
  max-height:82vh;
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.homepage-lightbox-close{
  position:absolute;
  top:18px;
  left:18px;
  border:none;
  background:rgba(255,255,255,.12);
  color:white;
  border-radius:999px;
  padding:12px 18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}

.homepage-lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:white;
  font-size:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(10px);
}

.homepage-lightbox-arrow.prev{
  left:16px;
}

.homepage-lightbox-arrow.next{
  right:16px;
}


.homepage-lightbox-empty{
  display:none;
  max-width:420px;
  margin:0;
  padding:34px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.86);
  text-align:center;
  font-size:16px;
  line-height:1.7;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}


/* Gallery image CTA desktop + mobile */
.mobile-gallery-cta{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:3;
  display:flex !important;
  align-items:center;
  justify-content:center;
  min-height:56px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#21170f;
  font-size:13px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  transition:.24s ease;
}

.mobile-gallery-cta::after{
  content:"→";
  margin-left:8px;
  color:#b98645;
  font-size:16px;
  line-height:1;
}

.category-image-link:hover .mobile-gallery-cta{
  transform:translateY(-2px);
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}

.category-image-link::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 45%,rgba(0,0,0,.42) 100%);
  pointer-events:none;
}

@media(max-width:700px){
  .mobile-gallery-cta{
    left:18px;
    right:18px;
    bottom:18px;
    min-height:52px;
    font-size:12px;
  }
}


/* Admin ALT editor */
.admin-photo-meta{
  display:grid;
  gap:10px;
}

.admin-alt-form{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.admin-alt-form label{
  display:grid;
  gap:8px;
  font-size:13px;
  color:#67564a;
  font-weight:700;
}

.admin-alt-form input{
  width:100%;
  border:1px solid rgba(185,134,75,.20);
  border-radius:14px;
  padding:11px 13px;
  font:inherit;
  background:#fff;
}

.admin-alt-form .btn{
  width:max-content;
  min-height:42px;
  padding:0 18px;
  font-size:11px;
}

@media(max-width:800px){
  .admin-photo-meta{
    grid-column:2;
  }

  .admin-alt-form .btn{
    width:100%;
  }
}


/* Contact form validation */
.form-note.form-error{
  display:none;
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:16px;
  background:#fff3ed;
  border:1px solid rgba(180,55,30,.20);
  color:#9a3412;
  font-weight:700;
  line-height:1.55;
}

.form-note.form-error.show{
  display:block;
}

.field-note{
  display:none;
  margin-top:7px;
  color:#9a3412;
  font-size:13px;
  line-height:1.45;
}

.field-invalid{
  border-color:#c2410c !important;
  box-shadow:0 0 0 4px rgba(194,65,12,.10) !important;
}

.field-invalid + .field-note{
  display:block;
}
