:root{
  --lux-wine-950:#18070d;
  --lux-wine-900:#2a0c14;
  --lux-wine-800:#4b1121;
  --lux-wine-700:#6d1930;
  --lux-wine-600:#8d1f3a;
  --lux-wine-500:#a62945;
  --lux-gold:#d0a24a;
  --lux-gold-soft:#f3e4bf;
  --lux-ink:#191113;
  --lux-ink-2:#2f2428;
  --lux-text:#5f5255;
  --lux-line:#e8dfe2;
  --lux-paper:#fffdfb;
  --lux-cloud:#f7f2ef;
  --lux-shadow:0 20px 60px rgba(17, 8, 11, .16);
  --lux-radius:18px;
}

html{scroll-behavior:smooth;}
body{
  position:relative;
  overflow-x:hidden;
  background:
    radial-gradient(circle at top left, rgba(166, 41, 69, .12) 0%, rgba(166, 41, 69, 0) 30%),
    radial-gradient(circle at 85% 0%, rgba(208, 162, 74, .18) 0%, rgba(208, 162, 74, 0) 24%),
    linear-gradient(135deg, #f8f3ee 0%, #f4ebe6 55%, #efe7e2 100%);
  color:var(--lux-text);
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

body::before,
body::after{
  content:"";
  position:fixed;
  inset:auto;
  width:34rem;
  height:34rem;
  border-radius:50%;
  filter:blur(90px);
  opacity:.24;
  pointer-events:none;
  z-index:-1;
  animation:floatGlow 18s ease-in-out infinite alternate;
}
body::before{
  top:-8rem;
  left:-8rem;
  background:rgba(166,41,69,.35);
}
body::after{
  bottom:-10rem;
  right:-10rem;
  background:rgba(208,162,74,.24);
  animation-duration:22s;
}

@keyframes floatGlow{
  from{transform:translate3d(0,0,0) scale(1);} 
  to{transform:translate3d(20px,-20px,0) scale(1.08);} 
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:'Archivo Expanded', Inter, serif; color:var(--lux-ink); letter-spacing:-.03em;}
p{margin:0 0 1rem;}
.wrap{max-width:1200px; margin:0 auto; padding:0 24px;}

.site-header{
  position:sticky;
  top:0;
  z-index:90;
  background:rgba(20,10,14,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(20,10,14,.15);
}
.site-header .brand-text,
.site-header .main-nav a,
.site-header .header-phone,
.site-header .nav-toggle{color:#fff;}
.site-header .brand-text{letter-spacing:.12em; font-size:13px;}
.site-header .main-nav a{
  position:relative;
  padding:6px 0;
  font-weight:700;
  letter-spacing:.02em;
  opacity:.8;
  transition:color .2s ease, opacity .2s ease;
}
.site-header .main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--lux-gold), rgba(255,255,255,.8));
  transition:width .2s ease;
}
.site-header .main-nav a:hover,
.site-header .main-nav a.active{
  opacity:1;
  color:#fff;
}
.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after{width:100%;}

.hero,
.page-hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background-size:cover;
  background-position:center;
  box-shadow:inset 0 -60px 80px rgba(0,0,0,.08);
}
.hero::before,
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(15,3,6,.86) 0%, rgba(15,3,6,.55) 45%, rgba(15,3,6,.24) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.36) 100%);
  z-index:-1;
}
.hero::after,
.page-hero::after{
  content:"";
  position:absolute;
  inset:-20% -20% auto auto;
  width:26rem;
  height:26rem;
  border-radius:50%;
  background:radial-gradient(circle, rgba(208,162,74,.3), transparent 70%);
  transform:translate(18%, -18%);
  z-index:-1;
  animation:heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow{from{transform:translate(10%, -12%) scale(1);} to{transform:translate(18%, -20%) scale(1.1);} }
.hero-inner,
.page-hero-inner{position:relative; z-index:2; padding:110px 0 90px; max-width:720px;}
.hero h1,
.page-hero h1{color:#fff; font-size:clamp(36px, 5.2vw, 70px); line-height:1.02; margin-bottom:16px; text-shadow:0 12px 40px rgba(0,0,0,.35);}
.hero p,
.page-hero p{font-size:1.05rem; color:rgba(255,255,255,.86); max-width:620px;}
.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--lux-gold);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--lux-gold), rgba(255,255,255,.4));
}

section{padding:88px 0; position:relative;}
.section-head{max-width:700px; margin-bottom:40px;}
.section-head h2{font-size:clamp(28px, 3.3vw, 42px); margin-bottom:8px;}
.section-head p{font-size:1rem; color:var(--lux-text); max-width:650px;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  position:relative;
  overflow:hidden;
}
.btn:hover{transform:translateY(-2px); box-shadow:0 12px 30px rgba(20,10,14,.16);}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.24) 45%, transparent 100%);
  transform:translateX(-140%);
  transition:transform .55s ease;
}
.btn:hover::before{transform:translateX(140%);} 
.btn-primary,
.btn-secondary{background:linear-gradient(135deg, var(--lux-wine-600), var(--lux-wine-800)); color:#fff; border-color:rgba(255,255,255,.15); box-shadow:0 12px 30px rgba(166,41,69,.22);}
.btn-primary:hover,
.btn-secondary:hover{background:linear-gradient(135deg, var(--lux-wine-700), var(--lux-wine-500));}
.btn-ghost{
  background:rgba(255,255,255,.7);
  color:var(--lux-wine-700);
  border-color:rgba(166,41,69,.16);
  box-shadow:0 10px 24px rgba(20,10,14,.05);
}
.btn-ghost:hover{background:#fff; border-color:rgba(166,41,69,.26);} 
.btn-row{display:flex; gap:12px; flex-wrap:wrap;}

.grid{display:grid; gap:22px;}
.grid-2{grid-template-columns:1fr 1fr;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);} 
.grid-5{grid-template-columns:repeat(5,1fr);} 

.card,
.prod-card,
.surface,
.feature-card,
.safety-card,
.station-card,
.photo-frame,
.quote,
.contact-card,
.table-card,
.form-field input,
.form-field select,
.form-field textarea{
  border-radius:var(--lux-radius);
  box-shadow:var(--lux-shadow);
}
.card,
.prod-card,
.surface,
.feature-card,
.safety-card,
.station-card,
.quote,
.contact-card,
.table-card{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border:1px solid rgba(166,41,69,.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover,
.prod-card:hover,
.surface:hover,
.feature-card:hover,
.safety-card:hover,
.station-card:hover,
.contact-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 60px rgba(17,8,11,.14);
  border-color:rgba(166,41,69,.16);
}
.prod-card{padding:30px 24px; text-align:center;}
.prod-card .cyl-icon{margin:0 auto 18px; width:54px; height:70px; border-radius:14px 14px 8px 8px; background:linear-gradient(135deg, var(--lux-wine-700), var(--lux-wine-500)); box-shadow:0 14px 30px rgba(166,41,69,.23); position:relative;}
.prod-card .cyl-icon::before{content:""; position:absolute; top:-11px; left:50%; width:18px; height:11px; transform:translateX(-50%); background:linear-gradient(135deg, var(--lux-wine-900), #5b1f2d); border-radius:4px 4px 0 0;}
.prod-card h4{margin-bottom:8px; font-size:1.05rem;}
.prod-card .cyl-note{font-size:.92rem; color:var(--lux-text);}
.prod-card .cyl-price{font-size:1rem; color:var(--lux-wine-700); font-weight:700;}

.photo-frame{overflow:hidden; position:relative; border:1px solid rgba(166,41,69,.08);}
.photo-frame img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease, filter .6s ease;}
.photo-frame:hover img{transform:scale(1.06); filter:saturate(1.08);}
.photo-caption{position:absolute; left:16px; right:16px; bottom:16px; padding:14px 16px; border-radius:14px; background:linear-gradient(180deg, rgba(15,3,6,.1), rgba(15,3,6,.75)); color:#fff; backdrop-filter:blur(6px);}

.trust-strip{background:linear-gradient(135deg, var(--lux-wine-900), var(--lux-wine-800)); color:#fff; padding:28px 0; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08);} 
.trust-grid{display:flex; gap:18px; flex-wrap:wrap; align-items:center; justify-content:space-between;}
.trust-item{display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.9); font-size:.94rem;}

.safety-card{padding:24px; background:linear-gradient(135deg, rgba(240,227,197,.5), rgba(255,255,255,.9)); border-left:3px solid var(--lux-gold);}
.quote{padding:28px 32px; border-left:4px solid var(--lux-gold); background:linear-gradient(135deg, rgba(240,227,197,.35), rgba(255,255,255,.95)); font-family:'Archivo Expanded', Inter, serif; color:var(--lux-ink-2);}

.site-footer{background:linear-gradient(135deg, var(--lux-wine-950), var(--lux-wine-900)); color:#e7d3db; padding:72px 0 24px; border-top:1px solid rgba(255,255,255,.1);} 
.site-footer h5, .site-footer a:hover, .site-footer .footer-brand span{color:#fff;} 
.site-footer a{color:#e7d3db; transition:color .2s ease;}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid rgba(166,41,69,.14);
  background:rgba(255,255,255,.85);
  color:var(--lux-ink);
  padding:13px 14px;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:rgba(166,41,69,.35);
  box-shadow:0 0 0 4px rgba(166,41,69,.12);
  transform:translateY(-1px);
}

.data-table{width:100%; border-collapse:collapse; background:rgba(255,255,255,.92); overflow:hidden; border-radius:var(--lux-radius); box-shadow:var(--lux-shadow);} 
.data-table th,.data-table td{padding:14px 16px; border-bottom:1px solid rgba(166,41,69,.08);} 
.data-table thead th{font-size:.74rem; letter-spacing:.15em; text-transform:uppercase; color:var(--lux-wine-700);} 

.reveal{opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1; transform:none;}

@media (max-width: 980px){
  .grid-5{grid-template-columns:repeat(3,1fr);} 
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr 1fr;} 
  .site-header .header-phone{display:none;} 
  .hero-inner,.page-hero-inner{padding:86px 0 72px;}
}

@media (max-width: 760px){
  .wrap{padding:0 20px;} 
  .grid-2,.grid-3,.grid-4,.grid-5{grid-template-columns:1fr;} 
  section{padding:72px 0;}
  .btn-row{display:grid; grid-template-columns:1fr;}
  .btn-row .btn{width:100%;}
  .hero-inner,.page-hero-inner{padding:78px 0 62px;}
  .trust-grid{justify-content:flex-start;}
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
  .reveal{opacity:1; transform:none;}
}
