@font-face {
    font-family: 'Elegant';    
    src: url('misc/elegant.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;             
}
@font-face {
    font-family: 'Body';    
    src: url('misc/body.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;             
}
@font-face {
    font-family: 'Title';
    src: url('misc/title.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Stops horizontal scrolling dead in its tracks */
}

/* Ensure images and media never grow wider than their containers */
img, video, canvas {
    max-width: 100%;
    height: auto;
}

*, *::before, *::after {
    box-sizing: border-box;
}

  /* ============================================================
   THE HOUSE OF VANESSIA — Delt stylesheet
   ============================================================ */

:root{
  --ink:#17110c;
  --ink-2:#20170f;
  --ink-soft:#2c1f15;

  --cream:#f6ece3;
  --cream-2:#efe0d2;

  --gold:#c47a3f;
  --gold-soft:#d5925a;

  --body-text:#d9c7b8;

  --hair:rgba(246, 236, 227, 0.24);
  --hoverA:#966336;
  --hovermA:#a5a39e;

  /* added supporting tones */
  --ember:#b85c2c;        /* stronger warm accent (buttons/hover) */
  --copper:#9a5a3a;       /* muted alternative to gold */
  --smoke:#3a2a22;        /* soft UI depth / panels */
  --linen:#faf4ee;        /* lighter background than cream */
  --dust:#cbb2a1;         /* muted borders / separators */
  --shadow:rgba(23,17,12,0.22); /* UI depth control */
  --button-hover:rgba(190, 148, 80, 0.219);
  --drop-hover:rgba(89, 61, 35, 0.76);;  /* hover state for buttons */
}

:root[data-theme="light"] {
  --ink: #ac805b;
  --ink-2: #6a4f40;
  --ink-soft: #8e613f;
  --cream: #d4bba7;
  --cream-2: #dbb08c;
  --gold: #866143;
  --gold-soft: #e7d2c1;
  --body-text: #efe0d2;
  --hair: rgba(246,236,227,0.16);
  --ember: #b85c2c;
  --copper: #9a5a3a;
  --smoke: #3a2a22;
  --linen: #efc090;
  --dust: #cbb2a1;
  --shadow: rgba(23,17,12,0.22);
}


:root[data-theme="light"] .page-hero {
  position: relative;
  padding: 130px 48px 90px;
  background: radial-gradient(circle at 85% 10%, rgba(216,185,124,.18), transparent 45%), linear-gradient(165deg, var(--ink) 0%, var(--gold) 45%, var(--ink) 100%);
  text-align: center;
}
:root[data-theme="light"] #moon{
  visibility: collapse;

}
:root[data-theme="light"] #sun{
  visibility: visible;

}

:root[data-theme="dark"] #moon{
  visibility: visible;

}
:root[data-theme="dark"] #sun{
  visibility: collapse;

}

:root[data-theme="light"] .contact-form {
  background: var(--ink-soft);
  border: 1px solid var(--hair);
  padding: 48px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--cream);
  font-family:'Jost', sans-serif;
  -webkit-font-smoothing:antialiased;
  transition:background-color .7s cubic-bezier(.22,.61,.36,1);
}
img,svg{display:block;max-width:100%;}
a{color:inherit;}

.EditButtons {
	visibility: hidden;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.EditButtons button {
    padding: 10px 20px;
    cursor: pointer;
}

.tracked{letter-spacing:.22em;text-transform:uppercase;}

.wrap{max-width:1240px;margin:0 auto;padding:0 48px;}

.item-detail-panel {
  padding: 5rem 0 4rem;
  border-top: 1px solid rgba(239,229,208,0.14);
  border-bottom: 1px solid rgba(239,229,208,0.14);
  background: linear-gradient(135deg, rgba(239,229,208,0.06), rgba(239,229,208,0.02));
}

.item-detail-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.item-detail-panel__intro {
  max-width: 720px;
  color: var(--cream-soft, rgba(239,229,208,0.8));
  line-height: 1.7;
}

.item-detail-panel__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.item-detail-panel__copy,
.item-detail-panel__card {
  padding: 1.75rem;
  border: 1px solid rgba(239,229,208,0.16);
  background: rgba(239,229,208,0.04);
  border-radius: 20px;
}

.item-detail-panel__copy ul {
  margin: 1rem 0 0 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--cream-soft, rgba(239,229,208,0.8));
}

.item-detail-panel__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.item-detail-panel__card-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft, #d8b97c);
}

@media (max-width: 1024px) {
  .item-detail-panel {
    padding: 3.5rem 0 3rem;
  }

  .item-detail-panel__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-template-columns: unset;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: var(--cream-2);
  color: var(--ink-soft);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--cream-2);
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.2em;
  will-change: opacity, transform;
}

.btn__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}

.btn__label--default {
  opacity: 1;
  transform: translateY(0);
}

.btn__label--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1) 0.12s, transform 0.7s cubic-bezier(.22,.61,.36,1) 0.12s;
}

.btn:hover,
.btn:focus-visible {
  background: var(--button-hover);
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.btn:hover .btn__label--default,
.btn:focus-visible .btn__label--default {
  opacity: 0;
  transform: translateY(-10px);
}

.btn:hover .btn__label--hover,
.btn:focus-visible .btn__label--hover {
  opacity: 1;
  transform: translateY(0);
}

.bigbtn {
  margin-left: 3%;
  width: 90%;
  margin-bottom: 4rem;
  height: 5rem;
  font-size: x-large;
  letter-spacing: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn__text,
  .btn__label {
    transition: none;
  }
}
.btn--ghost{background:transparent;border:1px solid var(--gold-soft);color:var(--cream);}
.btn--ghost:hover{background:var(--gold-soft);color:var(--ink);}


.btn--sm{
  opacity:0;
  padding:13px 24px;
  font-size:11px;
  
  animation: fadeIn 0.8s ease forwards;
}


.btn--block{width:100%;}

/* ---------- Animations ---------- */

  .service-content.scrolled {
    position: absolute;
    z-index: 2;
    top: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: -webkit-fill-available;
    margin-bottom: 25px;
  }


  /* Scroll-entrance reveal: fades + lifts elements into view once,
     used on the treatment cards, gallery tiles, and section intros. */
  .reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1);
    transition-delay:0s;
  }
  .reveal.is-visible{
    opacity:1;
    transform:translateY(0);
  }
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
  }
  .about-intro .about-copy,
  .contact-form.reveal{
    transition-delay:.12s;
  }


  .serviceP {
    font-size: 14px ;
    transition: font-size .2s ease;
  }


  .btn--sm.scrolled{
    padding:13px 24px;
    font-size:11px;
    opacity:100;
  }


/* ---------- Cookies ---------- */

nav.cookiesprimary-Nav {
  display: flex;
  align-items: center;
  gap: 75px;
  width: 60%;
  flex-direction: column;
  justify-content: center;
}

.cookiesbtnN.btn.btn--sm.scrolled {
  min-width: 200px;
}

.cookiesbtnA.btn.btn--sm.scrolled {
  min-width: 200px;
}

.cookiesbutton {
  display: flex;
  width: 60%;
  justify-content: space-evenly;
}
.cookieslogo {
  position: absolute;
  top: 5%;
  left: 2%;
  display: flex;
  gap: 0.7rem;
}
.cookies {
  visibility: hidden;
  position: fixed;
  bottom: 25%;
  z-index: 500;
  background: var(--shadow);
  height: 30rem;
  width: 70%;
  display: flex;
  justify-content: center;
  align-content: center;
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--rose);
  box-shadow: 0 -20px 50px rgba(43,32,24,0.12);
  left: 15%;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  border: solid 1px var(--copper);
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


/* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 48px;
    background: transparent;
    border-bottom: 1px solid #00000000;
    width: 100%;
        /* starting state */
    backdrop-filter: blur(0px);
    
    transition: filter .7s ease, border-bottom .7s ease, border-backdrop-filter .7s ease;
  
  }
  

  header.scrolled {
     /* darker when scrolled */
    backdrop-filter: blur(25px);    
    border-bottom: 1px solid var(--hair);       /* stronger blur */
    transition: filter .7s ease,border-bottom .7s ease, border-backdrop-filter .7s ease;
  
  }

  header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.7);
    z-index: -1;
    transform: scale(1.1);
    
    
    transition: filter .7s ease, border-bottom .7s ease, border-backdrop-filter .7s ease;
  
  }




  .logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
    text-decoration: none;
    z-index: 500;
  }
  .logo svg{width:38px;height:38px;}
  .logo-text{
    line-height:1.15;
    text-align: center;
  
  }
  .logo-text .brand-of{
    font-size:10px;
    letter-spacing:.3em;
    color:var(--cream);
    display:block;
  }
  .logo-text .brand-name{
    font-size:18px;
    letter-spacing:.12em;
    color:var(--cream);
    
    display:block;
    font-family:'body', serif;
    
  }
  .logo-text .brand-sub{
    font-size:9px;
    letter-spacing:.35em;
    color:var(--cream);
    display:block;
    margin-top:2px;
  }
  .plainlogo {
    width: 52px;
    height: 52px;
  }
  nav.primary-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--cream-2);
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}
nav.primary-nav a:hover::after {
  transform: scaleX(1);
}

  nav.primary-nav{
    display:flex;
    align-items:center;
    gap:40px;
  }
  nav.primary-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    justify-content: center;
    align-items: center;
  }

  nav.primary-nav a{
    color:var(--cream-2);
    text-decoration:none;
    font-size:15px;
    letter-spacing:.16em;
    text-transform:uppercase;
    font-weight:400;
    position:relative;
    padding-bottom:10px;
    transition:color .2s ease;
  }
  nav.primary-nav a:hover{color:var(--cream);}
  nav.primary-nav li.active a{color:var(--gold-soft);}
  nav.primary-nav li.active a::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:1px;
    background:var(--drop-hover);
  }
  .has-dropdown{display:flex;align-items:center;gap:6px;margin-top: 3px;}
  .has-dropdown svg{width:9px;height:9px;margin-top:1px;}

  .has-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    position: relative;
  }
  #option {
    font-size: 12px;
  }

  /* hidden state (IMPORTANT) */
  #thedropdown {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    padding: 10px 20px 10px 20px;
    display: flex;
    flex-direction: row;
    gap: 0.5px;
    justify-content: space-between;
    background: var(--drop-hover);
    border: solid 1px var(--hoverA);
    color: var(--cream-2) !important;
    align-items: center;
    width: 13rem !important;
    height: 13rem;
    position: absolute;
    top: 8%;

  }


  #logoimg {
    width: auto;
    height: 8rem;
  } 


  #dropdowncontainer {
    width: 11rem;
    height: auto;
    position: absolute;
    top: 90%;
    display: flex;
    flex-direction: column;
    min-height: 155px;
    justify-content: center;
    left: -10%;
  }


  #dropdowndiv {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  #thedropdown li:hover {
    color: #e2bd60 !important;
    padding-left: 7px;
    transition: padding 0.2s linear, opacity 0.3s ease, transform 0.3s ease;
    text-shadow: 0 0 5px #fff, 0 0 0px #e2bd60, 0 0 0px #e2bd60, 0 0 1px #e2bd60;
  }

  #thedropdown li {
    color: var(--cream-2) ;
    transition: padding 0.2s linear, opacity 0.3s ease, transform 0.3s ease;
  }


    
  #behand a::after{

    margin-bottom: 6px;
  }



  #behand {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 10px;
    align-items: baseline;
    padding-bottom: 0px;
  }


  ul, ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }
 
  
  a:hover {
    color: var(--hovermA) !important;
  }

  nav.primary-nav li.active a:hover{
    color: var(--hoverA) !important;
    
  }



  /* hover state */
  .has-dropdown:hover #thedropdown,
  .has-dropdown.open #thedropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .headline {
    margin-left: 2rem;
  }



  .header-actions{
    display:flex;
    align-items:center;
    gap:26px;
  }
  .socials{display:flex;gap:16px;}
  .socials a{
    width:34px;height:34px;
    border:1px solid var(--hair);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--cream);
    transition:border-color .2s ease, background .2s ease;
  }
  .socials a:hover{border-color:var(--gold-soft); background:rgba(201,160,92,.12);}
  .socials svg{width:15px;height:15px;}

  .menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
  }
  .menu-toggle span{
    width:24px;height:1px;background:var(--cream);
  }


/* ---------- Footer ---------- */
footer{
  background:var(--ink-2);
  border-top:1px solid var(--hair);
  padding:72px 48px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.1fr;
  gap:48px;
  max-width:1240px;
  margin:0 auto;
  padding-bottom:56px;
  border-bottom:1px solid var(--hair);
}
.footer-brand p{
  color:var(--body-text);
  font-size:14px;
  line-height:1.7;
  margin-top:18px;
  max-width:280px;
}
.footer-brand .logo{margin-bottom:4px;}
footer h4{
  font-family:'Playfair Display', serif;
  font-size:15px;
  letter-spacing:.05em;
  color:var(--cream);
  margin-bottom:20px;
  font-weight:500;
}
footer ul{list-style:none;}
footer ul li{margin-bottom:12px;}
footer ul a{
  color:var(--body-text);
  text-decoration:none;
  font-size:13.5px;
  transition:color .2s ease;
}
footer ul a:hover{color:var(--gold-soft);}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1240px;
  margin:0 auto;
  padding:26px 0;
  flex-wrap:wrap;
  gap:14px;
}
.footer-bottom p{font-size:12.5px;color:var(--body-text);letter-spacing:.02em;}
.footer-bottom .socials a{width:30px;height:30px;}
.footer-bottom .socials svg{width:13px;height:13px;}

.serum-intro {
  display: flex;
  padding: 5rem;
  margin: 3rem 0rem 3rem 0rem;
  justify-content: space-between;
}

.about-serum {
  width: 50%;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}


.track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s ease;

}

.track img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-size: cover;
}

.dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.about-copy {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .32em;
  margin-bottom: 10px;
}

.about-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px,3.6vw,42px);
  margin-bottom: 20px;
  line-height: 1.2;
  width: 90%;
}
.paras {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 1rem;
}
#serumPara1 {
  width: 45%;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 18px;
  list-style: disc;
  text-align: left;
  padding: 1rem;
}
#serumPara2 {
  width: 45%;
  list-style: disc;
  line-height: 4.75 !important;
}

.para {
  margin-bottom: 0px !important;
}
.priss {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
#serumpricetag {
  padding-left: 1rem;
  margin: 0;
  align-self: self-end;
  text-align: left;
  color: #a39283;
}
#serumprice {
  font-size: 2rem;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  height: auto;
  text-align: left;
  padding-left: 1rem;
}
#serumstk {
  padding-left: 1rem;
  margin: 0;
  text-align: end;
  text-align: left;
  font-size: revert-layer;
  color: #a39283;
}
.page-hero p {
  color: var(--body-text);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
    margin-bottom: 0px;
  line-height: 1.7;
  margin-bottom: 2rem;
  
}









/* ============================================================
   HOME — hero & services strip
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 62rem;
  overflow: hidden;
  background: url(/assets/andre/forside.png);
    background-size: auto;
  background-size: auto;
  background-size: cover;
  transition: min-height .7s ease, transform .7s cubic-bezier(.16,.84,.44,1);
}

.hero.scrolled {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 45rem;
  overflow: hidden;
  background: url(/assets/andre/forside.png);
    background-size: auto;
  background-size: auto;
  background-size: cover;
  transition: min-height .7s ease, transform .7s cubic-bezier(.16,.84,.44,1);
}
.hero-art{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(216,185,124,.35), transparent 45%),
    linear-gradient(135deg, #5b4630 0%, #3a2c20 35%, #221911 70%, #15100b 100%);
}
.hero-art::before{
  content:"";
  position:absolute;
  top:0;right:0;bottom:0;left:0;
  background:linear-gradient(100deg, var(--ink) 0%, rgba(22,16,9,.85) 18%, rgba(22,16,9,0) 48%);
  z-index:2;
}
.hero-art .arch-svg{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:1;}
.hero-art .grain{
  position:absolute;top:0;right:0;bottom:0;left:0;
  background-image:radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:3px 3px;
  opacity:.5;
  z-index:1;
}
.hero-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px;
  max-width: 690px;
  margin-top: 100px;
  justify-content: space-evenly;
}

.Desc-box {
  background: #2b2018f7;
  margin-bottom: 20px;
  margin-top: 10px;
  width: 550px;
}

.copybox {
  border: var(--cream-2) solid 1px;
  padding: 5px;
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .32em;
  margin-bottom: 10px;
}
.hero-text h1 {
  font-family: 'Elegant', serif;
  font-weight: initial;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.hero-text .subtitle {
  font-size: 28px;
  color: var(--cream-2);
  font-weight: 300;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.divider{width:64px;height:1px;background:var(--gold-soft);margin-bottom:24px;}
.hero-text p.copy{color:var(--body-text);font-size:15.5px;line-height:1.7;margin-bottom:34px;max-width:420px;}

.services{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:1320px;
  margin:0 auto;
  padding:90px 48px 100px;
}
#treatments {
  background: #00000000;
}

.service {
  position: relative;
  min-height: 480px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  overflow: hidden;
  border-right: 1px solid var(--hair);
  text-decoration: none;
  display: flex;
  justify-content: center;
}





.service {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
  display: block;
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(43,32,24,.10);
}

.service::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background-position:center;
  background-size:cover !important;
  transform:scale(1);
  transition:transform 1s cubic-bezier(.22,.61,.36,1);
}
.service:hover::before{transform:scale(1.1);}

.service-1::before{background-image:url(/assets/andre/forside1.png);}
.service-2::before{background-image:url(/assets/andre/forside2.png);}
.service-3::before{background-image:url(/assets/andre/forside3.png);}
.service-4::before{background-image:url(/assets/andre/forside4.png);}
.service-5::before{background-image:url(/assets/andre/forside5.png);}
.service-6::before{background-image:url(/assets/andre/forside6.png);}

.service-bg{
  position:absolute; inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(43,32,24,0) 36%, rgba(43,32,24,.46) 68%, rgba(43,32,24,.9) 100%);
  transition:background .45s ease;
}
.service:hover .service-bg{
  background:linear-gradient(180deg, rgba(43,32,24,.08) 18%, rgba(43,32,24,.5) 48%, rgba(43,32,24,.94) 100%);
}

.service-badge{
  position:absolute;
  top:18px; right:18px;
  z-index:3;
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  opacity:0;
  transform:scale(.7) rotate(-25deg);
  transition:opacity .35s ease, transform .45s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.service-badge svg{width:15px;height:15px;color:var(--cream);}
.service:hover .service-badge{
  opacity:1;
  transform:scale(1) rotate(0deg);
  background:var(--cream);
}

.service-content{
  position:absolute;
  z-index:3;
  left:0; right:0; bottom:0;
  padding:28px 26px 26px;
}
.service-num{
  display:flex;align-items:center;gap:10px;
  color:var(--cream);
  opacity:.75;
  font-size:11.5px;letter-spacing:.16em;
  margin-bottom:10px;
}
.service-num .line{width:22px;height:1px;background:var(--cream);}
.service h3{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:22px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin-bottom:0;
  transition:margin-bottom .4s ease;
}
.service:hover h3{margin-bottom:8px;}

.service-desc{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .5s cubic-bezier(.22,.61,.36,1), opacity .4s ease;
}
.service:hover .service-desc{
  max-height:210px;
  opacity:1;
}
.service p{font-size:13.5px;line-height:1.6;color:var(--cream-2);margin-bottom:14px;max-width:280px;}
.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--cream);
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  border-bottom:1px solid var(--rose);
  padding-bottom:4px;
  transition:color .2s ease, gap .2s ease;
}



.service-link svg{width:11px;height:11px;transition:transform .25s ease;}
.service-link:hover{color:var(--rose);}
.service-link:hover svg{transform:translateX(3px);}

.services .service:nth-child(1){transition-delay:.05s;}
.services .service:nth-child(2){transition-delay:.12s;}
.services .service:nth-child(3){transition-delay:.19s;}
.services .service:nth-child(4){transition-delay:.26s;}
.services .service:nth-child(5){transition-delay:.33s;}
.services .service:nth-child(6){transition-delay:.4s;}

/* ============================================================
   PAGE HERO BANNER — used on About / Gallery / Contact / Treatments
   ============================================================ */


.service-badge{

  visibility: collapse;


}




.page-hero {
  position: relative;
  background: radial-gradient(circle at 85% 10%, rgba(216,185,124,.18), transparent 45%), linear-gradient(165deg, #2a2014 0%, #27190b 45%, var(--ink) 100%);
  border-bottom: 1px solid var(--hair);
  text-align: center;
  height: 50vh !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#gallery {
  justify-content: center;
}

#about{
  justify-content: center;
}

#contact{
  justify-content: center;
}

.page-hero .crumb{
  color:var(--gold-soft);
  font-size:12px;
  letter-spacing:.32em;
  margin-bottom:18px;
}
.page-hero h1{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:clamp(38px,5vw,56px);
  margin-bottom:18px;
}
.page-hero p{
  color:var(--body-text);
  font-size:16px;
  max-width:520px;
  margin:0 auto;
  line-height:1.7;
}
.page-hero .divider{margin:24px auto;}

section{position:relative;}
.section-pad{padding:100px 48px;}
.section-head{max-width:640px;margin:0 auto 64px;text-align:center;}
.section-head .eyebrow{justify-content:center;display:flex;}
.section-head h2{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:clamp(28px,3.4vw,40px);
  margin-bottom:16px;
}
.section-head p{color:var(--body-text);font-size:15.5px;line-height:1.7;}
.section-head .divider{margin:18px auto 0;}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1740px;
  margin: 0 auto;
  margin-top: 5rem;

}
.about-portrait {
  aspect-ratio: 5/5;
  min-height: 420px;

  overflow: hidden;
  width: 50rem;
  justify-self: center;
  margin: auto;
    margin-bottom: auto;
  align-self: center;
  margin-bottom: 10%;
}
#dropdowncontainer {
  width: 11rem;
  height: auto;
  position: absolute;
  top: 75%;
  display: flex;
  flex-direction: column;
  min-height: 170px;
}

.about-portrait svg{position:absolute;inset:0;width:100%;height:100%;}
.about-portrait .frame{
  position:absolute;
  top:18px;right:18px;bottom:18px;left:18px;
  
  z-index:2;
  background: url(/assets/andre/test.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.about-copy h2{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:clamp(28px,3.6vw,42px);
  margin-bottom:20px;
  line-height:1.2;
  width: 90%;
}


.about-copy p{color:var(--body-text);font-size:15.5px;line-height:1.75;margin-bottom:18px;}
.about-copy .signature{
  font-family:'Playfair Display', serif;
  font-style:italic;
  color:var(--gold-soft);
  font-size:22px;
  margin-top:24px;
}

.stats-band{
  background:var(--cream);
  border-top:1px solid var(--hair);
  border-bottom:1px solid var(--hair);
}
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.stat-item{padding:0 20px;}
.stat-item .num{
  font-family:'Playfair Display', serif;
  font-size:clamp(32px,4vw,46px);
  color:var(--gold-soft);
  margin-bottom:8px;
}
.stat-item .label{font-size:12.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--body-text);}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.filter-bar{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:54px;
}
.filter-btn{
  background:transparent;
  border:1px solid var(--hair);
  color:var(--cream-2);
  font-family:'Jost', sans-serif;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:11px 22px;
  cursor:pointer;
  transition:all .2s ease;
}
.filter-btn:hover{border-color:var(--gold-soft);color:var(--cream);}
.filter-btn.active{background:var(--gold-soft);border-color:var(--gold-soft);color:var(--ink);}

@keyframes scale {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}


.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  max-width:1240px;
  margin:0 auto;
}
.gallery-item{
  position:relative;
  aspect-ratio:1/1;
  min-height:260px;
  overflow:hidden;
  border-radius:6px;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(43,32,24,.10);
  animation: scale 0.70s ease 0s 1 normal forwards;
  
}
.gallery-item.tall{grid-row:span 2;aspect-ratio:auto;min-height:540px;animation: scale 0.70s ease 0s 1 normal forwards; }
.gallery-bg{
  position:absolute;inset:0;
  transition:transform .7s cubic-bezier(.22,.61,.36,1);
}
.gallery-item:hover .gallery-bg{transform:scale(1.08);}
.gallery-item.cat-pmu .gallery-bg{background:linear-gradient(150deg,#7a5c39,#3c2c1d 60%,#1a130c);}
.gallery-item.cat-tattoo .gallery-bg{background:linear-gradient(150deg,#6b6258,#3a3530 55%,#181512);}
.gallery-item.cat-nails .gallery-bg{background:linear-gradient(150deg,#cbb79b,#7d6c57 55%,#332a20);}
.gallery-item.cat-wax .gallery-bg{background:linear-gradient(150deg,#8a9686,#4a5340 55%,#1c2017);}
.gallery-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(10,8,5,.85) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  opacity:0;
  transition:opacity .3s ease;
}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-overlay .cat{font-size:11px;letter-spacing:.18em;color:var(--gold-soft);text-transform:uppercase;margin-bottom:6px;}
.gallery-overlay .title{font-family:'Playfair Display', serif;font-size:17px;}
.gallery-item-icon{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:.18;}
.gallery-item-icon svg{width:64px;height:64px;}
.gallery-item.hidden{display:none;}


.gallery-grid .gallery-item:nth-child(1){transition-delay:.05s;}
.gallery-grid .gallery-item:nth-child(2){transition-delay:.1s;}
.gallery-grid .gallery-item:nth-child(3){transition-delay:.15s;}
.gallery-grid .gallery-item:nth-child(4){transition-delay:.2s;}
.gallery-grid .gallery-item:nth-child(5){transition-delay:.25s;}
.gallery-grid .gallery-item:nth-child(6){transition-delay:.3s;}



/* ============================================================
   CONTACT PAGE
   ============================================================ */

   .contact-info {
      width: 120vh;
    }
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  max-width:1240px;
  margin:0 auto;
  padding:100px 48px;
  align-items:flex-start;
  justify-content: center;
}
.contact-info h2{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:clamp(26px,3.2vw,36px);
  margin-bottom:18px;
}
.contact-info > p{color:var(--body-text);font-size:15px;line-height:1.7;margin-bottom:36px;}
.info-list{list-style:none;margin-bottom:36px;}
.info-list li{
  display:flex;
  gap:16px;
  padding:18px 0;
  border-top:1px solid var(--hair);
}
.info-list li:first-child{border-top:none;}
.info-list .ic{
  width:38px;height:38px;
  border:1px solid var(--gold-soft);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.info-list .ic svg{width:16px;height:16px;}
.info-list strong{display:block;font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--cream);margin-bottom:4px;}
.info-list span, .info-list a{font-size:14.5px;color:var(--body-text);text-decoration:none;}
.info-list a:hover{color:var(--gold-soft);}

.map-block{
  aspect-ratio:16/9;
  min-height:220px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,185,124,.25), transparent 55%),
    linear-gradient(150deg,#3a2c20,#1a130c);
}
.map-block svg{position:absolute;inset:0;width:100%;height:100%;}

.contact-form{
  background:var(--ink-2);
  border:1px solid var(--hair);
  padding:48px;
}
.contact-form h3{
  font-family:'Playfair Display', serif;
  font-size:24px;
  font-weight:500;
  margin-bottom:8px;
}
.contact-form > p{color:var(--body-text);font-size:14px;margin-bottom:30px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px;}
.field{margin-bottom:20px;}
.field label{
  display:block;
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--cream-2);
  margin-bottom:9px;
}
.field input, .field select, .field textarea{
  width:100%;
  background:transparent;
  border:1px solid var(--hair);
  color:var(--cream);
  padding:13px 16px;
  font-family:'Jost', sans-serif;
  font-size:14px;
  outline:none;
  transition:border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--gold-soft);}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23d8b97c' stroke-width='1.3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px 20px !important;
}

.field select option{background:var(--ink-2);color:var(--cream);}
.field textarea{resize:vertical;min-height:110px;}
.form-note{font-size:12px;color:var(--body-text);margin-top:16px;line-height:1.6;}
.form-success{
  display:none;
  align-items:center;
  gap:14px;
  background:rgba(216,185,124,.1);
  border:1px solid var(--gold-soft);
  color:var(--cream);
  padding:18px 20px;
  font-size:14px;
  margin-bottom:24px;
}
.form-success.show{display:flex;}
.form-success svg{width:20px;height:20px;flex-shrink:0;color:var(--gold-soft);}
.contact-form form.hide{display:none;}

.hours-list{list-style:none;}
.hours-list li{display:flex;justify-content:space-between;padding:9px 0;border-top:1px solid var(--hair);font-size:14px;color:var(--body-text);}
.hours-list li:first-child{border-top:none;}
.hours-list li span:last-child{color:var(--cream);}

/* ============================================================
   TREATMENTS DETAIL PAGE
   ============================================================ */
.treat-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
  padding:96px 48px;
  max-width:1240px;
  margin:0 auto;
  border-bottom:1px solid var(--hair);
}
.treat-detail:last-of-type{border-bottom:none;}
.treat-detail.reverse{direction:rtl;}
.treat-detail.reverse > *{direction:ltr;}
.treat-visual{
  position:relative;
  aspect-ratio:4/3;
  min-height:300px;
  overflow:hidden;
  background:linear-gradient(150deg,#7a5c39,#3c2c1d 60%,#1a130c);
}
.treat-detail:nth-of-type(2) .treat-visual{background:linear-gradient(150deg,#6b6258,#3a3530 55%,#181512);}
.treat-detail:nth-of-type(3) .treat-visual{background:linear-gradient(150deg,#cbb79b,#7d6c57 55%,#332a20);}
.treat-detail:nth-of-type(4) .treat-visual{background:linear-gradient(150deg,#8a9686,#4a5340 55%,#1c2017);}
.treat-visual .v-icon{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:.22;}
.treat-visual .v-icon svg{width:140px;height:140px;}
.treat-copy h2{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:clamp(26px,3.2vw,36px);
  margin-bottom:16px;
  text-transform:uppercase;
}
.treat-copy p{color:var(--body-text);font-size:15px;line-height:1.75;margin-bottom:22px;}
.treat-list{list-style:none;margin-bottom:28px;}
.treat-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:14px;
  color:var(--cream-2);
  margin-bottom:11px;
}
.treat-list li svg{width:14px;height:14px;margin-top:3px;color:var(--gold-soft);flex-shrink:0;}
.treat-price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:26px;
}
.treat-price .from{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--body-text);}
.treat-price .amount{font-family:'Playfair Display', serif;font-size:26px;color:var(--gold-soft);}

/* ============================================================
   CTA BAND (shared)
   ============================================================ */
.cta-band{
  text-align:center;
  padding:100px 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(216,185,124,.16), transparent 50%),
    var(--ink-2);
  border-top:1px solid var(--hair);
  border-bottom:1px solid var(--hair);
}
.cta-band h2{
  font-family:'Playfair Display', serif;
  font-weight:500;
  font-size:clamp(28px,3.6vw,42px);
  margin-bottom:18px;
}
.cta-band p{color:var(--body-text);font-size:15.5px;margin-bottom:34px;}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet: 1100px ---- */
@media (max-width:1100px){
  nav.primary-nav ul{gap:20px;}
  header{padding:14px 28px;}

  .item-detail-panel__content {flex-direction: column;}
  /* Hero */
  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero.scrolled{min-height:auto;}
  .hero-text{padding:120px 36px 48px;max-width:none;}
  .Desc-box{width:100%;max-width:560px;}

  /* Services */
  .services{grid-template-columns:repeat(2,1fr);gap:20px;padding:64px 32px 72px;}

  /* About */
  .about-intro{grid-template-columns:1fr;gap:48px;padding:72px 32px;}
  .about-portrait{min-height:360px;aspect-ratio:4/3;}

  /* Stats */
  .stats{grid-template-columns:repeat(2,1fr);gap:36px;row-gap:48px;}

  /* Gallery */
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-item.tall{grid-row:span 1;aspect-ratio:1/1;min-height:260px;}

  /* Contact */
  .contact-grid{grid-template-columns:1fr;padding:72px 32px;gap:40px;}
  .contact-form{padding:32px;}

  /* Treatments */
  .treat-detail{grid-template-columns:1fr;gap:36px;padding:64px 32px;direction:ltr !important;}
  .treat-detail.reverse{direction:ltr;}

  /* Footer */
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px;}
  footer{padding:56px 32px ;}

  /* Cookie banner */
  .cookies{height:auto;padding:40px 24px 36px;flex-direction:column;align-items:center;gap:16px;}
  nav.cookiesprimary-Nav{width:100%;gap:24px;}
  .cookiesbutton{width:100%;max-width:420px;gap:16px;}
  .cookieslogo{position:static;margin-bottom:8px;}
}




/* ---- Mobile: 760px ---- */
@media (max-width:760px){

  body{max-width:760px;overflow-x:hidden;}


  .hero {
    grid-template-columns: 1fr;
    min-height: 45rem!important;

  }

.hero.scrolled {
  grid-template-columns: 1fr;
  min-height: 45rem!important;

  }


  /* Nav */
  nav.primary-nav ul, .header-actions .socials{display:none;}
  .menu-toggle{display:flex;}
  nav.primary-nav.open{
    display:flex;
    position:fixed;
    top:0; left:0; right:0; bottom:0;
    background:var(--ink);
    border-bottom:1px solid var(--hair);
    z-index:90;
    overflow-y:auto;
    padding-top:80px;
  }
  nav.primary-nav.open ul{
    display:flex;
    flex-direction:column;
    width:100%;
    padding:18px 28px 40px;
    gap:4px;
  }
  nav.primary-nav.open ul > li{width:100%;}
  nav.primary-nav.open ul > li > a{
    padding:14px 0;
    width:100%;
    font-size:15px;
    display:block;
  }
  .has-dropdown{width:100%;justify-content:space-between;}
  .has-dropdown.open #dropdowncontainer{display:flex;}
  .header-actions .btn{display:none;}

  /* Header */
  header{padding:12px 20px 12px 20px; }

  /* Hero */
  .hero{min-height:100svh;}
  .hero.scrolled{min-height:100svh;}
  .hero-text{
    padding:100px 22px 32px;
    justify-content:center;
    gap:16px;
  }
  .hero-text h1{font-size:clamp(34px,9vw,52px);}
  .hero-text .subtitle{font-size:18px;}
  .Desc-box{width:100%;max-width:none;}
  .bigbtn{
    width:100%;
    margin-left:0;
    font-size:16px;
    height:4rem;
    margin-bottom:2rem;
  }

  /* Services */
  .services{grid-template-columns:1fr;gap:16px;padding:40px 16px 56px;height: 150rem;}
  .service{aspect-ratio:3/2;min-height:260px;}
  /* Always show service description on mobile (no hover) */
  .service-desc{max-height:none !important;opacity:1 !important;}
  .service h3{margin-bottom:8px !important;}
  .service-badge{opacity:1;transform:scale(1) rotate(0deg);}
  .service-content.scrolled{
    position:absolute;
    top:auto;
    bottom:0;
    height:auto;
    justify-content:flex-end;
    padding-bottom:20px;
  }

  /* About */
  .about-intro{padding:52px 20px;}
  .about-portrait{min-height:280px;aspect-ratio:1/1;}

  /* Stats */
  .stats{grid-template-columns:1fr 1fr;gap:20px;row-gap:36px;}
  .section-pad {
      padding: 20px 48px;
      padding-bottom: 50px;
  }

  /* Gallery */
  .gallery-grid{grid-template-columns:1fr;gap:14px;}
  .gallery-item.tall{min-height:300px;}
  /* Show gallery overlay always on mobile */
  .gallery-overlay{opacity:1;}
  .filter-bar{gap:8px;margin-bottom:36px;}
  .filter-btn{padding:10px 16px;font-size:11px;}

  /* Contact */
  .contact-grid{padding:48px 20px;gap:36px;}
  .contact-form{padding:24px 20px;}
  .form-row{grid-template-columns:1fr;}

  /* Cookies */
  .cookies{height:auto;padding:32px 20px 28px;flex-direction:column;align-items:center;gap:20px;}
  nav.cookiesprimary-Nav{width:100%;gap:16px;text-align:center;}
  nav.cookiesprimary-Nav h1{font-size:18px;}
  .cookiesbutton{flex-direction:column;width:100%;align-items:center;gap:12px;}
  .cookiesbtnN.btn.btn--sm.scrolled,
  .cookiesbtnA.btn.btn--sm.scrolled{min-width:0;width:100%;max-width:280px;}
  .cookieslogo{position:static;}

  /* Page hero sections */
  .page-hero{padding:80px 20px 60px;}
  .page-hero h1{font-size:clamp(30px,8vw,44px);}

  /* CTA band */
  .cta-band{padding:64px 20px;}

  /* Footer */
  .footer-grid{grid-template-columns:1fr;gap:36px;}
  footer{padding:48px 20px 0;}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:16px;}
  .footer-brand p{max-width:none;}

  /* btn--sm visibility fix */
  .btn--sm.scrolled{opacity:1;}

 

}

/* ---- Small phones: 420px ---- */
@media (max-width:420px){
  .hero-text h1{font-size:32px;}
  .hero-text .subtitle{font-size:15px;}
  .service{aspect-ratio:auto;min-height:240px;}
  .stats{grid-template-columns:1fr;}
  .contact-form{padding:20px 16px;}
  header{padding:10px 16px;}
  .logo-text .brand-name{font-size:15px;}
}
@media (max-width: 760px) {
  .frame {
    min-height: 280px;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 760px) {
  .about-portrait {
    min-height: 180px;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    height: 30rem;
  }
}
@media (max-width: 760px) {
	.about-portrait .frame {
	  position: absolute;
	  top: 18px;
	  right: 18px;
	  bottom: 18px;
	  left: 0;
	  z-index: 2;
	  background: url(/assets/andre/test.png);
		background-repeat: repeat;
		background-size: auto;
	  background-size: contain;
	  background-repeat: no-repeat;
	  width: 25rem;
	}
}
@media (max-width: 760px) {
  .about-portrait {
    min-height: 180px;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    height: 30rem;
  }
}
@media (max-width: 760px) {
  .serum-intro {
	  flex-direction: column;
	  padding: 2.5rem 1.25rem;
	  margin: 2rem 0;
	  gap: 2rem;
  }

  .about-serum {
	  width: 100%;
  }

  .slideshow {
	  aspect-ratio: 4 / 3;
	  height: auto;
  }

  .about-copy {
	  width: 100%;
  }

  .about-copy h2 {
	  width: 100%;
	  font-size: clamp(24px, 7vw, 32px);
  }

  .paras {
	  flex-direction: column;
	  padding: 0;
	  gap: 1.5rem;
  }

  #serumPara1,
  #serumPara2 {
	  width: 100%;
	  padding: 0;
  }

  #serumPara2 {
	  line-height: 2.2 !important;
  }

  .priss {
	  grid-template-rows: auto auto;
	  margin-top: 1.5rem;
	  row-gap: 4px;
  }

  #serumpricetag,
  #serumprice,
  #serumstk {
	  padding-left: 0;
  }
}
@media (max-width: 760px) {
  .contact-info {
    
    width: 100%;
  
  }
}

@media (max-width: 200px) {
  .infobtn {
  width: 80%;
  margin: auto;
  height: 5rem;
  font-size: 20px;
  }
  .item-detail-panel__content {flex-direction: column;}
}


















@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}