:root {
  --black: #0c0a0b;
  --black-2: #151112;
  --charcoal: #211b1c;

  --pink: #f2c8d0;
  --pink-light: #f8dfe4;
  --pink-deep: #dca8b4;

  --cream: #f6f0ed;
  --muted: #c7b9bb;

  --line: rgba(242, 200, 208, .28);

  --max: 1180px;
}


/*
   RESET
 */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--black);

  color: var(--cream);

  font-family: "Montserrat", Arial, sans-serif;

  line-height: 1.7;

  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}


/* 
   HEADER
 */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 5vw;

  background: rgba(12, 10, 11, .9);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(242, 200, 208, .14);
}

.brand {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-script,
em {
  font-family: "Parisienne", cursive;

  font-weight: 400;
}

.brand-script {
  color: var(--pink);

  font-size: 2rem;
}

.brand-sub {
  font-family: "Cormorant Garamond", serif;

  font-size: .82rem;

  letter-spacing: .22em;
}

.brand small {
  color: var(--pink);

  font-size: .55rem;

  letter-spacing: .2em;

  margin-top: 5px;
}

.nav {
  display: flex;

  gap: 28px;

  align-items: center;
}

.nav a {
  font-size: .78rem;

  text-transform: uppercase;

  letter-spacing: .16em;

  color: #eee;

  transition: .2s;
}

.nav a:hover {
  color: var(--pink);
}

.menu-toggle {
  display: none;

  background: none;

  color: var(--pink);

  border: 0;

  font-size: 1.7rem;

  cursor: pointer;
}


/*
   HERO
*/

.hero {
  min-height: 86vh;

  max-width: var(--max);

  margin: auto;

  display: grid;

  grid-template-columns: 1.05fr .95fr;

  align-items: center;

  gap: 60px;

  padding: 70px 28px;
}

.hero-copy {
  padding: 20px 0;
}

.eyebrow {
  color: var(--pink);

  text-transform: uppercase;

  letter-spacing: .28em;

  font-size: .72rem;

  font-weight: 600;

  margin: 0 0 16px;
}

.hero h1,
h2 {
  font-family: "Cormorant Garamond", serif;

  font-weight: 500;

  line-height: .95;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.3rem);

  margin: 0 0 28px;
}

.hero h1 em,
h2 em {
  color: var(--pink);
}

.hero-text {
  max-width: 560px;

  color: var(--muted);

  font-size: 1.03rem;
}

.hero-actions {
  display: flex;

  gap: 14px;

  margin: 30px 0;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 23px;

  border: 1px solid var(--pink);

  text-transform: uppercase;

  letter-spacing: .12em;

  font-size: .72rem;

  font-weight: 600;

  transition: .2s;
}

.btn-primary {
  background: var(--pink);

  color: var(--black);
}

.btn-primary:hover {
  background: var(--pink-light);

  transform: translateY(-2px);
}

.btn-ghost:hover {
  background: rgba(242, 200, 208, .1);
}

.trust-row {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;

  color: #d9ced0;

  font-size: .7rem;

  text-transform: uppercase;

  letter-spacing: .1em;
}

.trust-row span::before {
  content: "✦";

  color: var(--pink);

  margin-right: 8px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: "";

  position: absolute;

  inset: -14px 14px 14px -14px;

  border: 1px solid var(--line);
}

.hero-image {
  position: relative;

  width: 100%;

  aspect-ratio: 1148 / 1370;

  object-fit: cover;

  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}


/* 
   QUOTE BAND
 */

.quote-band {
  border-block: 1px solid var(--line);

  background: #120f10;

  display: flex;

  justify-content: center;

  gap: 34px;

  flex-wrap: wrap;

  padding: 15px 20px;

  color: var(--pink);

  letter-spacing: .2em;

  font-size: .65rem;
}


/* 
   SECTIONS
 */

.section {
  max-width: var(--max);

  margin: auto;

  padding: 105px 28px;
}

.section-heading h2,
.poster-section h2,
.contact h2 {
  font-size: clamp(3rem, 6vw, 5.2rem);

  margin: 0 0 18px;
}

.section-heading > p:last-child {
  color: var(--muted);

  max-width: 680px;
}

.centered {
  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;
}


/*
   ABOUT
 */

.about {
  background:
    linear-gradient(
      180deg,
      var(--black),
      #120f10
    );
}

.about-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 55px;
}

.about-card {
  padding: 35px;

  border: 1px solid var(--line);

  background: rgba(242, 200, 208, .025);

  transition:
    transform .3s ease,
    background .3s ease,
    border-color .3s ease;
}

.about-card:hover {
  transform: translateY(-5px);

  background: rgba(242, 200, 208, .055);

  border-color: rgba(242, 200, 208, .5);
}

.icon {
  color: var(--pink);

  font-size: 2.2rem;
}

.about-card h3,
.service-card h3,
.price-card h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: 2rem;

  font-weight: 500;

  margin: 15px 0 5px;
}

.about-card p,
.service-card p {
  color: var(--muted);

  font-size: .9rem;
}

.about-tagline {
  margin-top: 50px;

  padding: 28px;

  border-block: 1px solid var(--line);

  text-align: center;

  display: flex;

  flex-direction: column;

  gap: 3px;
}

.about-tagline em {
  font-size: 2rem;

  color: var(--cream);
}


/* 
   services
 */

.services {
  background: #100d0e;
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 50px;
}

.service-card {
  padding: 36px;

  min-height: 300px;

  border: 1px solid var(--line);

  position: relative;

  transition:
    transform .3s ease,
    background .3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.featured {
  background:
    linear-gradient(
      145deg,
      rgba(242, 200, 208, .12),
      rgba(242, 200, 208, .025)
    );
}

.service-number {
  color: var(--pink);

  font-size: .72rem;

  letter-spacing: .2em;
}

.service-card a {
  color: var(--pink);

  text-transform: uppercase;

  font-size: .68rem;

  letter-spacing: .15em;
}


/* Gallery */

.gallery {
  background:
    linear-gradient(
      180deg,
      #0c0a0b 0%,
      #120f10 100%
    );
}


/* Gallery grid */

.gallery-grid {
  margin-top: 55px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 270px;

  gap: 18px;
}


/* Individual gallery card */

.gallery-item {
  min-width: 0;

  overflow: hidden;

  position: relative;
}


/*
  Larger images span two rows.
  This gives the gallery a magazine/editorial
  layout instead of five identical blocks.
*/

.gallery-item.gallery-large {
  grid-row: span 2;
}


/* Image container */

.gallery-image {
  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  border: 1px solid var(--line);

  background: var(--charcoal);
}


/* Actual image */

.gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

  border: 1px solid var(--line);
  background: var(--charcoal);
}

.gallery-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;

  transition:
    transform .7s cubic-bezier(.2, .7, .2, 1),
    filter .5s ease;
}

.gallery-item:hover img {
  transform: none;
  filter: brightness(.82);
}


/* Dark luxury gradient */

.gallery-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(12, 10, 11, .75) 100%
    );

  pointer-events: none;
}


/* Hover image */

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

  filter: brightness(.82);
}


/* Image label */

.gallery-overlay {
  position: absolute;

  left: 20px;

  bottom: 18px;

  z-index: 2;
}

.gallery-overlay span {
  display: inline-block;

  padding: 7px 12px;

  border: 1px solid rgba(242, 200, 208, .5);

  background: rgba(12, 10, 11, .65);

  backdrop-filter: blur(8px);

  color: var(--pink);

  text-transform: uppercase;

  letter-spacing: .16em;

  font-size: .58rem;

  font-weight: 600;
}


/* Gallery bottom CTA */

.gallery-bottom {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 22px;

  margin-top: 42px;

  padding-top: 30px;

  border-top: 1px solid var(--line);
}

.gallery-bottom p {
  margin: 0;

  color: var(--muted);

  font-family: "Cormorant Garamond", serif;

  font-size: 1.45rem;
}

/* 
  Image Lightbox
*/

.image-lightbox {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(5, 4, 5, .94);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .3s ease,
    visibility .3s ease;

  cursor: zoom-out;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}


/* Full image */

.image-lightbox img {
  max-width: 95vw;
  max-height: 92vh;

  width: auto;
  height: auto;

  object-fit: contain;

  display: block;

  border: 1px solid rgba(242, 200, 208, .25);

  box-shadow:
    0 25px 80px rgba(0, 0, 0, .6);

  cursor: default;
}


/* Close button */

.lightbox-close {
  position: absolute;

  top: 22px;
  right: 28px;

  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(242, 200, 208, .35);

  background: rgba(12, 10, 11, .7);

  color: var(--pink);

  font-size: 2rem;

  line-height: 1;

  cursor: pointer;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.lightbox-close:hover {
  background: rgba(242, 200, 208, .12);

  border-color: var(--pink);

  transform: scale(1.05);
}


/* Make gallery images feel clickable */

.gallery-image img {
  cursor: zoom-in;
}


/* Mobile */

@media (max-width: 600px) {

  .image-lightbox {
    padding: 15px;
  }

  .image-lightbox img {
    max-width: 94vw;
    max-height: 85vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    font-size: 1.7rem;
  }

}



/*
  Pricing
 */

.pricing {
  background:
    linear-gradient(
      180deg,
      #100d0e,
      #171214
    );
}

.price-card {
  border: 1px solid var(--line);

  margin: 28px 0;

  padding: 28px;

  overflow: hidden;
}

.price-card h3 {
  color: var(--pink);

  margin-top: 0;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;

  border-collapse: collapse;

  min-width: 680px;

  font-size: .85rem;
}

th,
td {
  padding: 12px 14px;

  border-bottom:
    1px solid rgba(242, 200, 208, .14);

  text-align: center;
}

th {
  color: var(--pink);

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: .08em;

  font-size: .7rem;
}

td:first-child,
th:first-child {
  text-align: left;
}

.subhead th {
  font-size: .62rem;

  color: var(--muted);
}

.notice {
  display: flex;

  gap: 20px;

  padding: 22px;

  border-left: 3px solid var(--pink);

  background: rgba(242, 200, 208, .05);

  margin-top: 30px;
}

.notice strong {
  color: var(--pink);

  white-space: nowrap;
}

.notice span {
  color: var(--muted);

  font-size: .82rem;
}


/* 
   POSTERS
*/

/* .poster-section {
  max-width: var(--max);

  margin: auto;

  padding: 105px 28px;

  display: grid;

  grid-template-columns: .75fr 1.25fr;

  gap: 50px;

  align-items: start;
}

.poster-section > div:first-child {
  position: sticky;

  top: 110px;
}

.poster-section p:not(.eyebrow) {
  color: var(--muted);

  max-width: 430px;
}

.poster-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.poster-grid img {
  width: 100%;

  height: auto;

  border: 1px solid var(--line);
}

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

.contact {
  padding-top: 80px;
}

.contact-panel {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  padding: 60px;

  border: 1px solid var(--line);

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(242, 200, 208, .12),
      transparent 35%
    );
}

.contact-lead {
  color: var(--muted);

  max-width: 540px;
}

.contact-details {
  display: flex;

  flex-direction: column;

  gap: 14px;

  justify-content: center;
}

.contact-item {
  display: flex;

  gap: 18px;

  align-items: center;

  padding: 17px;

  border-bottom:
    1px solid rgba(242, 200, 208, .14);

  transition: background .2s ease;
}

.contact-item:hover {
  background: rgba(242, 200, 208, .04);
}

.contact-item > span {
  width: 42px;

  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid var(--pink);

  border-radius: 50%;

  color: var(--pink);
}

.contact-item small {
  display: block;

  color: var(--muted);

  font-size: .6rem;

  letter-spacing: .15em;
}

.contact-item strong {
  font-size: 1rem;

  font-weight: 500;
}


/*
   SOCIAL
*/

.social-row {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;

  padding: 35px 0;
}

.social-row a {
  border: 1px solid var(--line);

  padding: 10px 18px;

  color: var(--pink);

  font-size: .7rem;

  text-transform: uppercase;

  letter-spacing: .12em;

  transition: .2s;
}

.social-row a:hover {
  background: var(--pink);

  color: var(--black);
}


/*
   GOOGLE MAP
*/

.map-wrap {
  border: 1px solid var(--line);

  height: 360px;

  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;

  height: 100%;

  border: 0;

  filter:
    grayscale(1)
    contrast(1.05)
    brightness(.7);
}


/* 
   FOOTER
 */

footer {
  border-top: 1px solid var(--line);

  padding: 30px 5vw;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  color: var(--muted);

  font-size: .7rem;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 15px;

  color: var(--pink);

  letter-spacing: .14em;
}

.footer-brand .brand-script {
  font-size: 1.6rem;
}

.back-top {
  color: var(--pink);

  text-transform: uppercase;

  letter-spacing: .12em;
}


/* 
   ANIMATIONS
 */

.reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* 
   TABLET View
*/

@media (max-width: 950px) {

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: .68rem;
  }


  .hero {
    gap: 40px;
  }


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 300px;
  }


  /*
    Remove special spanning on tablet
    so the layout remains balanced.
  */

  .gallery-item.gallery-large {
    grid-row: span 1;
  }

}


/*
   MOBILE VIEW
*/

@media (max-width: 850px) {

  /* Header */

  .menu-toggle {
    display: block;
  }


  .nav {
    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background: #100d0e;

    padding: 20px 5vw;

    flex-direction: column;

    align-items: flex-start;

    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }


  /* Hero */

  .hero {
    grid-template-columns: 1fr;

    gap: 35px;

    padding-top: 45px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 6rem);
  }


  /* About */

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


  /* Services */

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


  /* Gallery */

  .gallery-grid {
    grid-template-columns: 1fr 1fr;

    grid-auto-rows: 250px;

    gap: 12px;
  }


  .gallery-item.gallery-large {
    grid-column: span 2;
  }


  /* Contact */

  .contact-panel {
    grid-template-columns: 1fr;
  }


  /* Posters */

  .poster-section {
    grid-template-columns: 1fr;
  }

  .poster-section > div:first-child {
    position: static;
  }


  /* Contact */

  .contact-panel {
    padding: 35px 25px;
  }


  /* Notice */

  .notice {
    flex-direction: column;

    gap: 4px;
  }


  /* Footer */

  footer {
    flex-direction: column;

    text-align: center;
  }

}


/* 
   SMALLPhones view
 */

@media (max-width: 520px) {

  .site-header {
    padding: 14px 20px;
  }


  .section,
  .poster-section {
    padding: 75px 20px;
  }


  .hero {
    padding: 45px 20px 70px;
  }


  .hero-image-wrap::before {
    inset: -8px 8px 8px -8px;
  }


  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    width: 100%;
  }


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


  .quote-band {
    gap: 12px 18px;

    font-size: .55rem;
  }


  .trust-row {
    flex-direction: column;

    gap: 6px;
  }


  /* Gallery becomes one column */

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 300px;

    gap: 14px;
  }


  .gallery-item.gallery-large {
    grid-column: auto;
  }


  .gallery-overlay {
    left: 14px;

    bottom: 14px;
  }


  .gallery-bottom {
    flex-direction: column;

    text-align: center;

    gap: 15px;
  }


  .gallery-bottom .btn {
    width: auto;
  }


  .gallery-bottom p {
    font-size: 1.3rem;
  }


  .about-tagline em {
    font-size: 1.55rem;
  }


  .price-card {
    padding: 20px 15px;
  }


  .contact-panel {
    padding: 30px 20px;
  }


  .map-wrap {
    height: 300px;
  }


  /*
   LUXURY EXTENSION ESSENTIALS section
 */

.luxury-essentials {
  position: relative;
  margin-top: 100px;
  padding: 90px 0 40px;
  overflow: hidden;
}


/* subtle background glow */

.luxury-essentials::before {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  left: 50%;
  top: 20%;

  transform: translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(242,200,208,.075),
      transparent 68%
    );

  pointer-events: none;
}


/* 
   HEADING
 */

.luxury-heading {
  position: relative;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 70px;
}

.luxury-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);

  line-height: .82;

  margin: 0;
}

.luxury-heading > p {
  max-width: 380px;

  margin: 0 0 5px;

  color: var(--muted);

  font-size: .85rem;
}


/* 
   PRODUCT
*/

.luxury-products {
  position: relative;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  align-items: stretch;
}


.luxury-product {
  position: relative;

  min-height: 520px;

  padding: 35px;

  overflow: hidden;

  border: 1px solid rgba(242,200,208,.25);

  background:
    linear-gradient(
      145deg,
      #181314,
      #0d0b0c
    );

  transition:
    transform .4s ease,
    border-color .4s ease;
}


.luxury-product:hover {
  transform: translateY(-10px);

  border-color: rgba(242,200,208,.7);
}


/*
   PINK FEATURED CARD
 */

.luxury-product-pink {
  background:
    linear-gradient(
      145deg,
      #2a1d20,
      #120e0f 70%
    );

  transform: translateY(-25px);
}

.luxury-product-pink:hover {
  transform: translateY(-35px);
}


/*
   DECORATIVE ORBIT
 */

.product-orbit {
  position: absolute;

  width: 300px;
  height: 300px;

  top: 70px;
  right: -100px;

  border: 1px solid rgba(242,200,208,.12);

  border-radius: 50%;
}


.product-orbit::before,
.product-orbit::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(242,200,208,.08);
}


.product-orbit::before {
  inset: 25px;
}


.product-orbit::after {
  inset: 55px;
}


.product-orbit span {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--pink);

  top: 25px;
  left: 50%;

  box-shadow:
    0 0 20px rgba(242,200,208,.7);
}


/* 
   CONTENT
 */

.product-content {
  position: relative;
  z-index: 2;
}


/* 
   TOP
*/

.product-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 80px;
}


.product-number {
  color: var(--pink);

  font-family: "Cormorant Garamond", serif;

  font-size: 1.2rem;
}


.product-stock {
  color: var(--muted);

  font-size: .55rem;

  letter-spacing: .2em;

  border: 1px solid rgba(242,200,208,.2);

  padding: 7px 10px;
}


/*
   PRODUCT NAME
 */

.product-content h3 {
  max-width: 300px;

  margin: 0 0 15px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(3rem, 4vw, 4.3rem);

  line-height: .8;

  font-weight: 400;
}


.product-content h3 em {
  color: var(--pink);

  display: block;

  font-size: .8em;
}


.product-description {
  max-width: 280px;

  color: var(--muted);

  font-size: .72rem;

  line-height: 1.7;

  margin-bottom: 35px;
}


/* 
   PRICE PILLS
*/

.price-pills {
  position: relative;
  z-index: 3;

  display: flex;

  flex-direction: column;

  gap: 8px;
}


.price-pills > div {
  display: grid;

  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 15px;

  padding: 11px 14px;

  background: rgba(0,0,0,.28);

  border: 1px solid rgba(242,200,208,.12);

  transition: .25s;
}


.price-pills > div:hover {
  background: rgba(242,200,208,.08);

  border-color: rgba(242,200,208,.35);
}


.price-pills span {
  color: #d8ccce;

  font-size: .65rem;

  text-transform: uppercase;

  letter-spacing: .08em;
}


.price-pills small {
  grid-column: 1;

  margin-top: -8px;

  color: rgba(199,185,187,.55);

  font-size: .5rem;
}


.price-pills strong {
  color: var(--pink);

  font-family: "Cormorant Garamond", serif;

  font-size: 1.45rem;

  font-weight: 500;

  white-space: nowrap;
}


/* 
   SYMBOL
 */

.product-symbol {
  position: absolute;

  right: 28px;
  bottom: 25px;

  color: rgba(242,200,208,.18);

  font-size: 4rem;

  font-family: "Cormorant Garamond", serif;

  transition: .4s;
}


.luxury-product:hover .product-symbol {
  color: rgba(242,200,208,.45);

  transform: rotate(12deg) scale(1.1);
}


/* 
   FOOTER
 */

.luxury-footer {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 35px;

  color: rgba(199,185,187,.55);

  font-size: .55rem;

  letter-spacing: .22em;
}


.luxury-footer i {
  height: 1px;

  flex: 1;

  background: rgba(242,200,208,.15);
}


/*
   TABLET
 */

@media (max-width: 950px) {

  .luxury-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 25px;
  }

  .luxury-products {
    grid-template-columns: 1fr 1fr;
  }

  .luxury-product-pink {
    transform: none;
  }

  .luxury-product-pink:hover {
    transform: translateY(-10px);
  }

  .luxury-product:last-child {
    grid-column: span 2;
  }

}


/* 
   MOBILE
 */

@media (max-width: 650px) {

  .luxury-essentials {
    padding: 65px 0 30px;

    margin-top: 65px;
  }


  .luxury-heading {
    margin-bottom: 45px;
  }


  .luxury-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }


  .luxury-heading > p {
    font-size: .78rem;
  }


  .luxury-products {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .luxury-product,
  .luxury-product:last-child {
    grid-column: auto;

    min-height: 470px;

    padding: 28px;
  }


  .luxury-product:hover {
    transform: none;
  }


  .luxury-product-pink,
  .luxury-product-pink:hover {
    transform: none;
  }


  .product-top {
    margin-bottom: 65px;
  }


  .product-content h3 {
    font-size: 3.3rem;
  }


  .product-orbit {
    width: 240px;
    height: 240px;

    right: -90px;

    top: 55px;
  }


  .luxury-footer {
    flex-direction: column;

    text-align: center;

    gap: 10px;
  }


  .luxury-footer i {
    width: 100%;
  }

}


/* 
   SMALL PHONES
 */

@media (max-width: 380px) {

  .luxury-product {
    min-height: 450px;

    padding: 24px;
  }

  .product-content h3 {
    font-size: 2.9rem;
  }

  .price-pills strong {
    font-size: 1.3rem;
  }

}


}

/* =====================================================
   PAYMENT & DELIVERY
   MATCHES THE MAIN CAPELLI CARD DESIGN
===================================================== */

.payment-delivery {
  background:
    linear-gradient(
      180deg,
      #100d0e 0%,
      #171214 100%
    );
}


/* =========================
   CARD GRID
========================= */

.payment-delivery-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;

  width: 100%;

  margin-top: 50px;

  align-items: stretch;
}


/* =========================
   MAIN CARD
========================= */

.payment-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-width: 0;

  min-height: 600px;

  padding: 36px;

  border: 1px solid var(--line);

  background:
    linear-gradient(
      145deg,
      #181314,
      #0d0b0c
    );

  overflow: hidden;

  box-shadow:
    0 20px 55px rgba(0, 0, 0, .25);

  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}


/* decorative luxury circle */

.payment-card::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  top: -180px;
  right: -150px;

  border: 1px solid rgba(242, 200, 208, .10);

  border-radius: 50%;

  pointer-events: none;
}


.payment-card::after {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  top: -125px;
  right: -105px;

  border: 1px solid rgba(242, 200, 208, .07);

  border-radius: 50%;

  pointer-events: none;
}


/* hover */

.payment-card:hover {
  transform: translateY(-5px);

  border-color: rgba(242, 200, 208, .55);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, .4);
}


/* =========================
   DELIVERY FEATURED CARD
========================= */

.payment-card.delivery-card {
  background:
    linear-gradient(
      145deg,
      #281c20,
      #120e0f 75%
    );

  border-color:
    rgba(242, 200, 208, .38);
}


/* =========================
   CARD TOP
========================= */

.payment-card-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 65px;
}


.payment-number {
  color: var(--pink);

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 1.2rem;

  letter-spacing: .08em;
}


.payment-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(242, 200, 208, .45);

  border-radius: 50%;

  color: var(--pink);

  background:
    rgba(242, 200, 208, .035);

  font-size: 1rem;
}


/* =========================
   LABEL
========================= */

.payment-label {
  position: relative;

  z-index: 2;

  margin: 0 0 12px;

  color: var(--pink);

  text-transform: uppercase;

  letter-spacing: .2em;

  font-size: .62rem;

  font-weight: 600;
}


/* =========================
   TITLE
========================= */

.payment-card h3 {
  position: relative;

  z-index: 2;

  margin: 0 0 18px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(3rem, 5vw, 4.5rem);

  font-weight: 400;

  line-height: .85;
}


.payment-card h3 em {
  color: var(--pink);
}


/* =========================
   INTRO
========================= */

.payment-intro {
  position: relative;

  z-index: 2;

  max-width: 500px;

  margin: 0 0 30px;

  color: var(--muted);

  font-size: .82rem;

  line-height: 1.7;
}


/* =========================
   INDIVIDUAL INFORMATION
   BOXES
========================= */

.payment-details {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: auto;
}


.payment-detail {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  padding: 17px;

  border: 1px solid
    rgba(242, 200, 208, .14);

  background:
    rgba(12, 10, 11, .62);

  transition:
    background .25s ease,
    border-color .25s ease;
}


.payment-detail:hover {
  background:
    rgba(242, 200, 208, .055);

  border-color:
    rgba(242, 200, 208, .35);
}


/* small circle icon */

.payment-detail-icon {
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  display: grid;

  place-items: center;

  border: 1px solid
    rgba(242, 200, 208, .45);

  border-radius: 50%;

  color: var(--pink);

  font-size: .68rem;
}


/* information heading */

.payment-detail strong {
  display: block;

  color: var(--cream);

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 1.3rem;

  font-weight: 500;

  line-height: 1;
}


/* information paragraph */

.payment-detail p {
  margin: 7px 0 0;

  color: var(--muted);

  font-size: .68rem;

  line-height: 1.55;
}


/* =========================
   IMPORTANT PAYMENT BOX
========================= */

.payment-detail.important {
  border-left:
    2px solid var(--pink);

  background:
    rgba(242, 200, 208, .055);
}


/* =========================
   BOTTOM CARD NOTE
========================= */

.payment-note {
  position: relative;

  z-index: 2;

  margin-top: 18px;

  padding: 17px 19px;

  border-left:
    2px solid var(--pink);

  background:
    rgba(242, 200, 208, .045);
}


.payment-note span {
  display: block;

  margin-bottom: 5px;

  color: var(--pink);

  font-size: .55rem;

  font-weight: 600;

  letter-spacing: .18em;
}


.payment-note strong {
  display: block;

  color: var(--cream);

  font-size: .78rem;

  font-weight: 500;
}


.payment-note small {
  display: block;

  margin-top: 6px;

  color: var(--muted);

  font-size: .62rem;

  line-height: 1.5;
}


/* =========================
   BOTTOM DISCLAIMER
========================= */

.payment-holiday {
  margin: 25px 0 0;

  text-align: center;

  color:
    rgba(199, 185, 187, .55);

  font-size: .55rem;

  letter-spacing: .18em;
}


/* =====================================================
   DESKTOP FORCE
   THIS IS THE IMPORTANT PART
===================================================== */

@media (min-width: 951px) {

  .payment-delivery-grid {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr) !important;

    gap: 24px !important;

    width: 100% !important;
  }


  .payment-card {
    display: flex !important;

    width: 100% !important;

    min-width: 0 !important;

    min-height: 600px !important;

    border: 1px solid
      rgba(242, 200, 208, .35) !important;

    padding: 40px !important;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

  .payment-delivery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px;
  }


  .payment-card {
    min-height: 560px;

    padding: 30px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .payment-delivery-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }


  .payment-card {
    min-height: auto;

    padding: 28px;
  }


  .payment-card-top {
    margin-bottom: 50px;
  }


  .payment-card h3 {
    font-size: 3.3rem;
  }


  .payment-detail {
    padding: 15px;
  }


  .payment-detail strong {
    font-size: 1.15rem;
  }


  .payment-detail p {
    font-size: .63rem;
  }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 520px) {

  .payment-delivery {
    padding-left: 20px;

    padding-right: 20px;
  }


  .payment-card {
    padding: 24px;
  }


  .payment-card h3 {
    font-size: 3rem;
  }


  .payment-note {
    padding: 15px;
  }

}
 /* =====================================================
    PAYMENT & DELIVERY — EQUAL HEIGHT CARDS
 ===================================================== */

.payment-delivery-grid {
  display: grid !important;

  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;

  gap: 24px !important;

  align-items: stretch !important;
}


/* BOTH CARDS */

.payment-card {
  display: flex !important;

  flex-direction: column !important;

  width: 100% !important;

  height: auto !important;

  min-height: 0 !important;

  box-sizing: border-box !important;

  padding: 36px !important;

  border: 1px solid var(--line) !important;

  overflow: visible !important;
}


/* KEEP CONTENT INSIDE THE CARD */

.payment-card-top {
  flex-shrink: 0;
}

.payment-label,
.payment-card h3,
.payment-intro {
  flex-shrink: 0;
}


/* INFORMATION BOXES */

.payment-details {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: 25px !important;
}


/* BOTTOM NOTES */

.payment-note {
  margin-top: 18px;

  flex-shrink: 0;
}


/* =====================================================
   DESKTOP
   GRID MAKES BOTH CARDS THE SAME HEIGHT
===================================================== */

@media (min-width: 951px) {

  .payment-delivery-grid {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr) !important;

    align-items: stretch !important;
  }

  .payment-card {
    height: auto !important;

    min-height: 0 !important;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) and (min-width: 701px) {

  .payment-delivery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;

    align-items: stretch !important;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .payment-delivery-grid {
    grid-template-columns: 1fr !important;

    align-items: stretch !important;
  }

  .payment-card {
    height: auto !important;

    min-height: 0 !important;
  }

}
