:root{
  --burgundy:#5A1A2B;
  --burgundy-deep:#3D0F1C;
  --cream:#F2E8DC;
  --cream-light:#F8F1E6;
  --graphite:#1A1A1A;
  --rose-gold:#C9A47C;
  --nude:#E8D7C3;
  --line:rgba(26,26,26,0.12);
  --line-light:rgba(242,232,220,0.15);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--graphite);
  font-weight:300;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
.serif{font-family:'Playfair Display',serif}
.italic{font-style:italic}

/* CURSOR */
.cursor{
  position:fixed;
  width:24px;height:24px;
  border:1px solid var(--burgundy);
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  transition:transform .2s ease, width .3s ease, height .3s ease, background .3s ease;
  transform:translate(-50%,-50%);
  mix-blend-mode:difference;
  display:none;
}
@media(min-width:1024px){.cursor{display:block}}
.cursor.hover{width:48px;height:48px;background:var(--rose-gold);border-color:var(--rose-gold)}

/* HEADER */
header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:100;
  padding:28px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--cream);
}
.logo{
  font-family:'Playfair Display',serif;
  font-size:28px;
  letter-spacing:4px;
  font-weight:500;
}
.logo span{font-style:italic;color:var(--rose-gold)}
nav ul{
  display:flex;
  gap:42px;
  list-style:none;
}
nav a{
  color:inherit;
  text-decoration:none;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
  position:relative;
  transition:color .3s;
}
nav a::after{
  content:'';
  position:absolute;
  bottom:-6px;left:0;
  width:0;height:1px;
  background:var(--rose-gold);
  transition:width .4s ease;
}
nav a:hover::after{width:100%}
nav a:hover{color:var(--rose-gold)}
.header-actions{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.header-actions a{color:inherit;text-decoration:none}
.hamburger{
  display:none;
  width:32px;height:24px;
  position:relative;
  background:transparent;
  border:none;
  cursor:pointer;
  z-index:101;
}
.hamburger span{
  display:block;
  width:100%;height:1px;
  background:currentColor;
  position:absolute;
  left:0;
  transition:transform .4s, top .4s, opacity .3s;
}
.hamburger span:nth-child(1){top:6px}
.hamburger span:nth-child(2){top:14px}
.hamburger span:nth-child(3){top:22px}
.hamburger.active span:nth-child(1){top:14px;transform:rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:1;}
.hamburger.active span:nth-child(3){top:14px;transform:rotate(-45deg)}

@media(max-width:900px){
  header{padding:20px 24px}
  .hamburger{display:block}
  nav{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    background:var(--burgundy-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translateX(100%);
    transition:transform .6s cubic-bezier(.7,0,.3,1);
    z-index:100;
  }
  nav.active{transform:translateX(0)}
  nav ul{
    flex-direction:column;
    gap:32px;
    text-align:center;
  }
  nav a{font-size:18px;color:var(--cream)}
  .header-actions{display:none}
}

/* AGE GATE */
.age-gate{
  position:fixed;
  inset:0;
  background:rgba(15,8,12,0.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  z-index:9998;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.age-gate.hidden{display:none}
.age-modal{
  background:var(--cream);
  padding:64px 56px;
  max-width:540px;
  width:100%;
  text-align:center;
  border:1px solid var(--rose-gold);
}
.age-modal .mark{
  font-family:'Playfair Display',serif;
  font-size:14px;
  letter-spacing:6px;
  color:var(--rose-gold);
  margin-bottom:24px;
}
.age-modal h2{
  font-family:'Playfair Display',serif;
  font-size:34px;
  font-weight:400;
  line-height:1.2;
  margin-bottom:20px;
  color:var(--burgundy);
}
.age-modal h2 em{color:var(--graphite)}
.age-modal p{
  color:#555;
  font-size:14px;
  margin-bottom:36px;
  line-height:1.7;
}
.age-btns{
  display:flex;
  gap:12px;
  flex-direction:column;
}
.age-btns button{
  padding:18px 28px;
  font-family:inherit;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  cursor:pointer;
  border:1px solid var(--burgundy);
  transition:all .4s;
}
.btn-yes{background:var(--burgundy);color:var(--cream)}
.btn-yes:hover{background:var(--burgundy-deep)}
.btn-no{background:transparent;color:var(--burgundy)}
.btn-no:hover{background:rgba(90,26,43,0.06)}

/* HERO */
.hero{
  min-height:100vh;
  background:var(--burgundy-deep);
  color:var(--cream);
  position:relative;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  padding:140px 48px 80px;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at top right, rgba(201,164,124,0.18), transparent 60%);
  pointer-events:none;
}
.hero-text{
  position:relative;
  z-index:2;
  padding-right:40px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--rose-gold);
  margin-bottom:32px;
}
.eyebrow::before{
  content:'';
  width:40px;height:1px;
  background:var(--rose-gold);
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(44px,6.8vw,108px);
  line-height:0.98;
  font-weight:400;
  letter-spacing:-0.02em;
  margin-bottom:32px;
}
.hero h1 em{
  color:var(--rose-gold);
  font-weight:500;
}
.hero-sub{
  font-size:17px;
  max-width:480px;
  margin-bottom:48px;
  color:rgba(242,232,220,0.75);
  font-weight:300;
  line-height:1.7;
}
.cta-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:20px 36px;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  cursor:pointer;
  border:1px solid;
  text-decoration:none;
  transition:all .5s cubic-bezier(.7,0,.3,1);
  font-family:inherit;
  background:transparent;
}
.btn-primary{
  background:var(--rose-gold);
  border-color:var(--rose-gold);
  color:var(--graphite);
}
.btn-primary:hover{
  background:transparent;
  color:var(--rose-gold);
}
.btn-ghost{
  color:var(--cream);
  border-color:rgba(242,232,220,0.4);
}
.btn-ghost:hover{
  border-color:var(--cream);
  background:rgba(242,232,220,0.06);
}
.btn .arrow{
  display:inline-block;
  width:18px;height:1px;
  background:currentColor;
  position:relative;
  transition:transform .4s;
}
.btn .arrow::after{
  content:'';
  position:absolute;
  right:0;top:-3px;
  width:7px;height:7px;
  border-top:1px solid currentColor;
  border-right:1px solid currentColor;
  transform:rotate(45deg);
}
.btn:hover .arrow{transform:translateX(6px)}
.hero-visual{
  position:relative;
  height:100%;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.hero-visual img{
  width:100%;
  height:78vh;
  max-height:720px;
  object-fit:cover;
  filter:contrast(1.05) saturate(0.95);
}
.hero-meta{
  position:absolute;
  bottom:0;right:0;
  font-size:10px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(242,232,220,0.55);
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  padding:0 16px;
}
@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    padding:120px 24px 60px;
    gap:48px;
  }
  .hero-text{padding-right:0}
  .hero-visual{min-height:auto;height:auto}
  .hero-visual img{height:60vh}
  .hero-meta{display:none}
}

/* MARQUEE */
.marquee{
  background:var(--graphite);
  color:var(--cream);
  padding:20px 0;
  overflow:hidden;
  border-top:1px solid rgba(242,232,220,0.1);
}
.marquee-track{
  display:flex;
  gap:64px;
  animation:scroll 35s linear infinite;
  white-space:nowrap;
}
.marquee span{
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:rgba(242,232,220,0.6);
}
.marquee span em{color:var(--rose-gold);font-style:normal;margin:0 12px}
@keyframes scroll{
  to{transform:translateX(-50%)}
}

/* SECTIONS */
section{padding:120px 48px}
@media(max-width:900px){section{padding:80px 24px}}
.section-head{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:end;
  margin-bottom:72px;
  gap:48px;
}
.section-head .label{
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--burgundy);
  margin-bottom:16px;
}
.section-head h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,4.5vw,68px);
  font-weight:400;
  line-height:1;
  letter-spacing:-0.02em;
}
.section-head h2 em{color:var(--burgundy)}
.section-head p{
  color:#555;
  max-width:380px;
  font-size:15px;
  line-height:1.7;
}
@media(max-width:900px){
  .section-head{grid-template-columns:1fr;gap:24px;margin-bottom:48px;align-items:start}
}

/* COLLECTIONS */
.collections{background:var(--cream)}
.collection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.collection-card{
  background:var(--cream);
  padding:48px 40px;
  cursor:pointer;
  transition:background .5s;
  position:relative;
  overflow:hidden;
  min-height:340px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.collection-card:hover{background:var(--cream-light)}
.collection-card .num{
  font-family:'Playfair Display',serif;
  font-size:14px;
  color:var(--rose-gold);
  letter-spacing:2px;
}
.collection-card h3{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:36px;
  font-weight:400;
  color:var(--graphite);
  line-height:1.1;
  transition:color .4s, transform .5s cubic-bezier(.7,0,.3,1);
}
.collection-card:hover h3{color:var(--burgundy);transform:translateX(8px)}
.collection-card .count{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#888;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.collection-card .count .arr{
  font-family:'Playfair Display',serif;
  font-size:20px;
  color:var(--burgundy);
  transition:transform .4s;
}
.collection-card:hover .count .arr{transform:translate(6px,-6px)}
@media(max-width:900px){
  .collection-grid{grid-template-columns:1fr 1fr}
  .collection-card{padding:32px 24px;min-height:240px}
  .collection-card h3{font-size:26px}
}
@media(max-width:520px){
  .collection-grid{grid-template-columns:1fr}
}

/* FEATURED EDITORIAL */
.featured{
  background:var(--nude);
  padding:0;
}
.featured-wrap{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  min-height:90vh;
}
.featured-img{
  position:relative;
  overflow:hidden;
}
.featured-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 8s ease;
}
.featured:hover .featured-img img{transform:scale(1.05)}
.featured-img .corner{
  position:absolute;
  top:32px;left:32px;
  font-size:10px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--cream);
  background:rgba(26,26,26,0.6);
  padding:8px 14px;
  backdrop-filter:blur(8px);
}
.featured-content{
  padding:100px 80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.featured-content .brand{
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--burgundy);
  margin-bottom:24px;
}
.featured-content h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,4vw,64px);
  font-weight:400;
  line-height:1.05;
  letter-spacing:-0.02em;
  margin-bottom:32px;
  color:var(--graphite);
}
.featured-content h2 em{color:var(--burgundy)}
.featured-content .desc{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:19px;
  line-height:1.7;
  color:#3a3a3a;
  margin-bottom:48px;
  max-width:460px;
}
.featured-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:32px;
  border-top:1px solid rgba(26,26,26,0.15);
  margin-bottom:32px;
  gap:32px;
}
.featured-price{
  font-family:'Playfair Display',serif;
  font-size:42px;
  color:var(--burgundy);
}
.featured-price small{
  font-size:13px;
  color:#888;
  letter-spacing:2px;
  margin-left:8px;
  font-family:'Inter',sans-serif;
}
@media(max-width:900px){
  .featured-wrap{grid-template-columns:1fr}
  .featured-content{padding:56px 24px}
  .featured-img{min-height:60vh}
}

/* BESTSELLERS */
.bestsellers{background:var(--cream-light)}
.products-scroll{
  display:flex;
  gap:32px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:24px;
  margin:0 -48px;
  padding-left:48px;
  padding-right:48px;
  scrollbar-width:thin;
}
.products-scroll::-webkit-scrollbar{height:2px}
.products-scroll::-webkit-scrollbar-thumb{background:var(--rose-gold)}
.product-card{
  flex:0 0 320px;
  scroll-snap-align:start;
  cursor:pointer;
}
.product-img{
  background:var(--nude);
  aspect-ratio:4/5;
  margin-bottom:20px;
  overflow:hidden;
  position:relative;
}
.product-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,0,.2,1);
}
.product-card:hover .product-img img{transform:scale(1.06)}
.badge{
  position:absolute;
  top:16px;left:16px;
  background:var(--cream);
  color:var(--burgundy);
  font-size:9px;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:6px 12px;
  font-weight:500;
}
.badge.dark{background:var(--graphite);color:var(--cream)}
.product-brand{
  font-size:10px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#888;
  margin-bottom:8px;
}
.product-name{
  font-family:'Playfair Display',serif;
  font-size:20px;
  font-weight:500;
  margin-bottom:6px;
  color:var(--graphite);
}
.product-price{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  font-weight:500;
  color:var(--burgundy);
}
.product-price span{
  font-size:10px;
  letter-spacing:2px;
  color:#888;
  font-weight:300;
  text-transform:uppercase;
}
@media(max-width:900px){
  .products-scroll{margin:0 -24px;padding-left:24px;padding-right:24px}
  .product-card{flex:0 0 260px}
}

/* PHILOSOPHY */
.philosophy{
  background:var(--graphite);
  color:var(--cream);
}
.philo-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  max-width:1400px;
  margin:0 auto;
}
.philo-img{
  position:relative;
}
.philo-img img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  filter:grayscale(1) contrast(1.1);
}
.philo-img .cap{
  position:absolute;
  bottom:-28px;left:-28px;
  background:var(--burgundy);
  color:var(--cream);
  padding:20px 28px;
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:14px;
  letter-spacing:1px;
}
.philo-text .label{
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--rose-gold);
  margin-bottom:24px;
}
.philo-text h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,3.6vw,56px);
  line-height:1.1;
  font-weight:400;
  margin-bottom:36px;
  letter-spacing:-0.01em;
}
.philo-text h2 em{color:var(--rose-gold)}
.philo-text p{
  color:rgba(242,232,220,0.7);
  font-size:15px;
  margin-bottom:20px;
  line-height:1.8;
}
.philo-sign{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:18px;
  color:var(--rose-gold);
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid rgba(201,164,124,0.3);
  display:inline-block;
}
@media(max-width:900px){
  .philo-wrap{grid-template-columns:1fr;gap:48px}
  .philo-img .cap{bottom:-20px;left:0;font-size:12px;padding:14px 20px}
}

/* BRANDS */
.brands{background:var(--cream);padding:80px 48px}
.brands-label{
  text-align:center;
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  color:#888;
  margin-bottom:48px;
}
.brand-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.brand-item{
  padding:32px 16px;
  text-align:center;
  font-family:'Playfair Display',serif;
  font-size:18px;
  font-weight:500;
  color:#555;
  letter-spacing:1px;
  border-right:1px solid var(--line);
  transition:all .4s;
  cursor:pointer;
}
.brand-item:nth-child(6n){border-right:none}
.brand-item:hover{
  background:var(--burgundy);
  color:var(--cream);
}
@media(max-width:900px){
  .brands{padding:60px 24px}
  .brand-row{grid-template-columns:repeat(3,1fr)}
  .brand-item:nth-child(6n){border-right:1px solid var(--line)}
  .brand-item:nth-child(3n){border-right:none}
  .brand-item{font-size:14px;padding:24px 8px}
}

/* GUIDES */
.guides{background:var(--cream-light)}
.guide-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.guide-card{cursor:pointer}
.guide-img{
  aspect-ratio:5/6;
  overflow:hidden;
  margin-bottom:24px;
  background:var(--nude);
}
.guide-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 1.4s cubic-bezier(.2,0,.2,1);
}
.guide-card:hover .guide-img img{transform:scale(1.06)}
.guide-rubric{
  font-size:10px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--burgundy);
  margin-bottom:12px;
}
.guide-card h3{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:26px;
  font-weight:400;
  color:var(--graphite);
  line-height:1.25;
  margin-bottom:16px;
  transition:color .4s;
}
.guide-card:hover h3{color:var(--burgundy)}
.guide-meta{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#888;
  display:flex;
  align-items:center;
  gap:14px;
}
.guide-meta::before{
  content:'';width:24px;height:1px;background:var(--rose-gold);
}
@media(max-width:900px){
  .guide-grid{grid-template-columns:1fr;gap:48px}
}

/* VALUES */
.values{
  background:var(--cream);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
}
.value-item{
  background:var(--cream);
  padding:48px 32px;
  text-align:center;
}
.value-icon{
  width:48px;height:48px;
  margin:0 auto 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--burgundy);
}
.value-icon svg{width:100%;height:100%}
.value-item h4{
  font-family:'Playfair Display',serif;
  font-size:18px;
  font-weight:500;
  margin-bottom:8px;
  color:var(--graphite);
}
.value-item p{
  font-size:13px;
  color:#666;
  line-height:1.6;
}
@media(max-width:900px){
  .values-grid{grid-template-columns:1fr 1fr}
}

/* TESTIMONIALS */
.testimonials{background:var(--burgundy)}
.testimonials .section-head h2,
.testimonials .section-head .label,
.testimonials .section-head p{color:var(--cream)}
.testimonials .section-head .label{color:var(--rose-gold)}
.testimonials .section-head p{color:rgba(242,232,220,0.7)}
.test-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}
.test-card{
  background:rgba(242,232,220,0.04);
  border:1px solid rgba(242,232,220,0.12);
  padding:48px 40px;
  position:relative;
}
.test-card::before{
  content:'"';
  position:absolute;
  top:8px;left:24px;
  font-family:'Playfair Display',serif;
  font-size:120px;
  color:var(--rose-gold);
  line-height:1;
  opacity:1;.6;
}
.test-card p{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:18px;
  line-height:1.7;
  color:var(--cream);
  margin-bottom:32px;
  margin-top:24px;
  position:relative;
}
.test-author{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--rose-gold);
  display:flex;
  align-items:center;
  gap:14px;
}
.test-author::before{
  content:'';width:30px;height:1px;background:var(--rose-gold);
}
@media(max-width:900px){
  .test-grid{grid-template-columns:1fr;gap:24px}
  .test-card{padding:36px 28px}
}

/* NEWSLETTER */
.newsletter{
  background:var(--burgundy-deep);
  color:var(--cream);
  text-align:center;
  padding:120px 48px;
}
.newsletter-wrap{
  max-width:640px;
  margin:0 auto;
}
.newsletter .eyebrow{
  justify-content:center;
  margin-bottom:32px;
}
.newsletter .eyebrow::before{display:none}
.newsletter h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,3.4vw,52px);
  font-weight:400;
  line-height:1.15;
  margin-bottom:20px;
  letter-spacing:-0.01em;
}
.newsletter h2 em{color:var(--rose-gold)}
.newsletter .sub{
  color:rgba(242,232,220,0.7);
  font-size:15px;
  margin-bottom:48px;
}
.news-form{
  display:flex;
  border:1px solid rgba(242,232,220,0.3);
  background:rgba(242,232,220,0.04);
}
.news-form input{
  flex:1;
  padding:22px 24px;
  background:transparent;
  border:none;
  color:var(--cream);
  font-family:inherit;
  font-size:14px;
  letter-spacing:1px;
  outline:none;
}
.news-form input::placeholder{color:rgba(242,232,220,0.4)}
.news-form button{
  padding:22px 36px;
  background:var(--rose-gold);
  color:var(--graphite);
  border:none;
  font-family:inherit;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  cursor:pointer;
  font-weight:500;
  transition:background .4s;
}
.news-form button:hover{background:var(--cream)}
.news-policy{
  margin-top:20px;
  font-size:11px;
  color:rgba(242,232,220,0.5);
  letter-spacing:1px;
}
.news-policy a{color:var(--rose-gold);text-decoration:none;border-bottom:1px solid rgba(201,164,124,0.3)}
.form-msg{
  margin-top:16px;
  font-size:12px;
  color:var(--rose-gold);
  min-height:18px;
  letter-spacing:1px;
}
@media(max-width:600px){
  .news-form{flex-direction:column}
  .news-form button{padding:20px}
}

/* FOOTER */
footer{
  background:var(--graphite);
  color:var(--cream);
  padding:100px 48px 32px;
}
.foot-top{
  display:grid;
  grid-template-columns:1.4fr repeat(4,1fr);
  gap:48px;
  margin-bottom:80px;
  padding-bottom:64px;
  border-bottom:1px solid rgba(242,232,220,0.1);
}
.foot-brand .logo{
  font-size:36px;
  margin-bottom:20px;
  display:block;
}
.foot-brand p{
  color:rgba(242,232,220,0.55);
  font-size:14px;
  line-height:1.7;
  max-width:300px;
  margin-bottom:24px;
}
.foot-socials{
  display:flex;
  gap:16px;
}
.foot-socials a{
  width:40px;height:40px;
  border:1px solid rgba(242,232,220,0.2);
  display:flex;align-items:center;justify-content:center;
  color:var(--cream);
  text-decoration:none;
  transition:all .4s;
}
.foot-socials a:hover{
  background:var(--rose-gold);
  border-color:var(--rose-gold);
  color:var(--graphite);
}
.foot-col h5{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--rose-gold);
  margin-bottom:24px;
  font-weight:500;
}
.foot-col ul{list-style:none;display:flex;flex-direction:column;gap:14px}
.foot-col a{
  color:rgba(242,232,220,0.65);
  text-decoration:none;
  font-size:13px;
  transition:color .3s;
}
.foot-col a:hover{color:var(--rose-gold)}
.foot-col .contact-line{
  color:rgba(242,232,220,0.65);
  font-size:13px;
  line-height:1.7;
}
.foot-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
  font-size:11px;
  letter-spacing:1px;
  color:rgba(242,232,220,0.4);
}
.switchers{
  display:flex;
  gap:32px;
}
.switcher{
  display:flex;
  gap:10px;
  align-items:center;
}
.switcher span{
  color:rgba(242,232,220,0.4);
  cursor:pointer;
  transition:color .3s;
  text-transform:uppercase;
}
.switcher span.active{color:var(--rose-gold)}
.switcher span:hover{color:var(--cream)}
@media(max-width:1024px){
  .foot-top{grid-template-columns:1fr 1fr;gap:40px}
}
@media(max-width:600px){
  footer{padding:80px 24px 24px}
  .foot-top{grid-template-columns:1fr;gap:40px;margin-bottom:48px;padding-bottom:48px}
  .foot-bottom{flex-direction:column;align-items:flex-start;text-align:left}
}
