/* Parfums de Elias — Old Money Black/Gold
   Minimal, editorial, premium. */

/* =========================
   TOKENS
========================= */
:root{
  --bg: #070707;
  --bg2:#0b0b0b;
  --card:#0e0e0e;
  --text:#f3f0ea;
  --muted:#c9c2b6;
  --gold:#c8a85a;
  --gold2:#a8843f;
  --line: rgba(200,168,90,.22);
  --shadow: 0 16px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1180px;
  --serif: ui-serif, "Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;

  /* Logo sizing */
  --logo-size: 36px;
}

/* =========================
   BASE
========================= */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(900px 600px at 70% 10%, rgba(200,168,90,.12), transparent 55%),
    radial-gradient(700px 500px at 15% 35%, rgba(200,168,90,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family:var(--sans);
  letter-spacing:.2px;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
::selection{background:rgba(200,168,90,.25)}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:72px 0}
.section-tight{padding:40px 0}
.hr{height:1px; background:var(--line); border:0; margin:0}

/* =========================
   HEADER / NAV
========================= */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,7,7,.66);
  border-bottom:1px solid rgba(200,168,90,.14);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-transform:uppercase;
  letter-spacing:2.4px;
  min-width: 0; /* prevents weird overflow on mobile */
}

.brand-mark{
  width: 70px;
  height: 70px;
  flex: 0 0 70px;

  display: inline-block;
  position: relative;

  background-image: url("/assets/img/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


  background-image: url("https://parfumsdeelias.com/assets/img/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;


}

.brand-name{
  font-family:var(--serif);
  font-size:18px;
  letter-spacing:3px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
}

.navlinks a{
  padding:10px 10px;
  border-radius:999px;
  transition: all .18s ease;
}

.navlinks a:hover{
  color:var(--text);
  background: rgba(200,168,90,.08);
}

.navlinks a.active{
  color:var(--text);
  border:1px solid rgba(200,168,90,.24);
  background: rgba(200,168,90,.06);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(200,168,90,.28);
  background: linear-gradient(180deg, rgba(200,168,90,.14), rgba(200,168,90,.06));
  color:var(--text);
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(200,168,90,.45);
}

.btn-ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
}
.btn-ghost:hover{
  color:var(--text);
  border-color:rgba(200,168,90,.30);
}

.mobile-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:var(--text);
}

.mobile-panel{display:none}

/* =========================
   HERO
========================= */
.hero{
  padding:72px 0 44px;
  position:relative;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:34px;
  align-items:stretch;
}

.kicker{
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
}

.h1{
  font-family:var(--serif);
  font-weight:600;
  font-size:52px;
  line-height:1.05;
  margin:14px 0 14px;
}

.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  max-width:54ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

.hero-card{
  background:
    radial-gradient(600px 450px at 70% 15%, rgba(200,168,90,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(200,168,90,.18);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:330px;
  position:relative;
}

.hero-card img{
  width:100%; height:100%;
  object-fit:cover;
  opacity:.88;
  filter:contrast(1.02) saturate(.92);
}

.hero-card-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,7,7,.08), rgba(7,7,7,.75));
}

.hero-card-meta{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-end;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:var(--muted);
  font-size:12px;
  letter-spacing:1.4px;
}
.pill strong{color:var(--text); font-weight:600; letter-spacing:1.2px}

/* =========================
   HERO EMAIL SUBSCRIBE
========================= */
.hero-email{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  max-width: 420px;
}

.hero-email input{
  flex: 1;
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-size: 13px;
  letter-spacing: .3px;
}

.hero-email input::placeholder{
  color: rgba(201,194,182,.65);
}

.hero-email input:focus{
  border-color: rgba(200,168,90,.45);
  box-shadow: 0 0 0 4px rgba(200,168,90,.08);
}

.hero-email button{
  white-space: nowrap;
}


/* =========================
   CARDS / GRIDS
========================= */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  overflow:hidden;
}

.card .pad{padding:18px}

.card h3{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size:20px;
  letter-spacing:.3px;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.card .thumb{
  height: clamp(240px, 34vw, 360px);
  background: radial-gradient(60% 70% at 50% 35%, rgba(200,168,90,.14), rgba(0,0,0,0) 60%),
              rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(200,168,90,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 14px;
  overflow:hidden;
}

.card .thumb img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.55));

}

.badge{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(200,168,90,.25);
  color:var(--gold);
  letter-spacing:2px;
  font-size:11px;
  text-transform:uppercase;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

/* =========================
   TYPOGRAPHY / CONTENT
========================= */
.h2{
  font-family:var(--serif);
  font-size:34px;
  margin:0 0 10px;
}

.sub{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.pagehead{
  padding:48px 0 22px;
}

.breadcrumb{
  color:rgba(201,194,182,.75);
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:11px;
}

.pagehead h1{
  margin:10px 0 0;
  font-family:var(--serif);
  font-size:42px;
}

.prose{
  color:var(--muted);
  line-height:1.85;
  font-size:15px;
}

.prose h2, .prose h3{
  color:var(--text);
  font-family:var(--serif);
  margin:26px 0 10px;
}

.prose a{
  color:var(--gold);
  text-decoration:underline;
  text-underline-offset:3px;
}

.notice{
  border:1px solid rgba(200,168,90,.20);
  background: rgba(200,168,90,.06);
  border-radius:16px;
  padding:14px 14px;
  color:rgba(243,240,234,.88);
}

/* =========================
   FORMS
========================= */
.form{display:grid; gap:12px}
.field{display:grid; gap:8px}

label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
}

input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}

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

input:focus, textarea:focus{
  border-color:rgba(200,168,90,.40);
  box-shadow:0 0 0 4px rgba(200,168,90,.08);
}

/* =========================
   ACCORDION
========================= */
.accordion{
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  overflow:hidden;
}

details{
  background:rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:14px 16px;
}

details:last-child{border-bottom:none}

summary{
  cursor:pointer;
  list-style:none;
  font-family:var(--serif);
  font-size:18px;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.7}

/* =========================
   FOOTER
========================= */
.footer{
  padding:38px 0;
  color:var(--muted);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
  align-items:start;
}

.footer small{color:rgba(201,194,182,.75)}

.footer-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}

.footer-links a{
  padding:8px 10px;
  border-radius:12px;
}

.footer-links a:hover{
  background:rgba(200,168,90,.08);
  color:var(--text);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  :root{ --logo-size: 48px; }

  .hero-grid{grid-template-columns:1fr; gap:16px}
  .h1{font-size:44px}
  .split{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}

  .navlinks, .nav-cta{display:none}
  .mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .mobile-panel{
    display:none;
    padding:10px 0 18px;
  }

  .mobile-panel a{
    display:block;
    padding:12px 10px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
    margin-top:10px;
    color:var(--muted);
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:12px;
  }

  .mobile-panel a:hover{
    background:rgba(200,168,90,.08);
    color:var(--text);
  }

  .footer-grid{grid-template-columns:1fr}
}

@media (max-width: 420px){
  :root{ --logo-size: 48px; }
  .brand-name{font-size:13px; letter-spacing:2.6px;}
}


/* FIX: remove question mark overlay on logo */
.brand-mark::before,
.brand-mark::after{
  display: none !important;
}

/* Hero clickable link */
.hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-link:hover .hero-card {
  filter: brightness(1.03);
}

/* =========================
   THE NOSE PAGE
   ========================= */

.nose-hero{
  padding: 120px 0 80px;
  background: radial-gradient(circle at top, #111, #000);
  text-align: center;
}

.nose-hero .kicker{
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(200,168,90,.7);
}

.nose-hero h1{
  font-size: clamp(32px, 5vw, 52px);
  margin-top: 20px;
}

.nose-content{
  padding: 100px 0;
}

.nose-content .split{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.nose-image img{
  width: 100%;
  border-radius: 4px;
  opacity: .95;
}

.nose-text h2{
  font-size: 32px;
  margin-bottom: 10px;
}

.nose-text .sub{
  font-style: italic;
  opacity: .7;
  margin-bottom: 30px;
}

.nose-text p{
  line-height: 1.8;
  margin-bottom: 20px;
}

.signature{
  margin-top: 40px;
  font-family: serif;
  letter-spacing: .1em;
}
