:root {
  --brand-purple: #84489c;
  --brand-purple-soft: #a878b9;
  --brand-purple-deep: #32163d;
  --night: #050406;
  --night-soft: #0c090e;
  --gold: #d6b877;
  --gold-light: #efe0b7;
  --ivory: #f2ede6;
  --muted: #b9adb9;
  --hairline: rgba(255,255,255,.12);
  --header-h: 116px;

  --serif: "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ivory);

  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;

  overflow-x: hidden;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  color: inherit;
}


/* =========================================================
   HEADER
   LEFT-CORNER LOGO + CLEAN SCROLL MASK
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;

  height: var(--header-h);

  z-index: 100;

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

  /*
     Logo is intentionally very close to the left edge.
     Navigation keeps normal right-side spacing.
  */
  padding-top: 18px;
  padding-right: clamp(22px, 4.2vw, 72px);
  padding-bottom: 0;
  padding-left: 4px;

  pointer-events: none;

  /*
     Solid mask.
     Content disappears when it goes behind the header.
     No blur.
  */
  background: rgba(5, 4, 6, .985);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header > * {
  pointer-events: auto;
}


/* =========================================================
   BRAND LOGO
   LOGO + ITALIA AS ONE LOCKUP
   ========================================================= */

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  gap: 0;

  width: 190px;
  min-width: 190px;

  /*
     The PNG contains transparent empty pixels.
     This compensates for them and moves the VISIBLE
     Corintti logo toward the real left corner.
  */
  transform: translateX(-18px);
}

.brand-logo-shell {
  position: relative;

  display: grid;
  place-items: center;

  width: 190px;
  height: 96px;
  min-height: 96px;

  overflow: visible;
}

.brand-logo-shell::before {
  content: "";

  position: absolute;

  inset: 10% 4% 4%;

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(168,120,185,.20),
      rgba(132,72,156,.06) 42%,
      transparent 70%
    );

  filter: blur(10px);
}

.brand-logo {
  position: relative;
  z-index: 1;

  display: block;

  width: 184px;
  height: 104px;
  max-height: 104px;

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

  opacity: 1;

  filter:
    brightness(1.18)
    contrast(1.22)
    saturate(1.08)
    drop-shadow(0 0 7px rgba(132,72,156,.20));

  image-rendering: auto;

  /* Final approved lockup spacing */
  transform: translateY(-4px);
}


/*
   ITALIA is pulled upward so it visually belongs
   directly to the Corintti logo instead of floating below it.
*/
.brand-origin {
  position: relative;

  margin-top: -9px;

  font-size: 9px;
  line-height: 1;

  letter-spacing: .55em;
  white-space: nowrap;

  background:
    linear-gradient(
      90deg,
      #009246 0%,
      #009246 33.333%,
      #ffffff 33.333%,
      #ffffff 66.666%,
      #ce2b37 66.666%,
      #ce2b37 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  transform: translateX(.27em);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.top-nav {
  display: flex;

  gap: clamp(18px, 2.4vw, 42px);

  align-items: center;

  margin-top: 24px;

  color: rgba(242,237,230,.72);

  font-size: 12px;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.top-nav a {
  position: relative;
  padding-bottom: 9px;
  transition: color .25s ease;
}

.top-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: var(--brand-purple-soft);

  box-shadow:
    0 0 9px rgba(168,120,185,.42);

  opacity: 0;

  transform: scaleX(.25);
  transform-origin: center;

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

.top-nav a:hover {
  color: var(--gold-light);
}

.top-nav a.is-active {
  color: var(--ivory);
}

.top-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
  display: none;

  width: 46px;
  height: 46px;

  border-radius: 50%;

  border:
    1px solid rgba(239,224,183,.28);

  background:
    rgba(5,4,6,.32);

  backdrop-filter: blur(12px);

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

  flex-direction: column;

  gap: 5px;

  margin-top: 6px;

  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 1px;

  background: var(--gold-light);

  display: block;
}


/* =========================================================
   CINEMATIC HERO STAGE
   ========================================================= */

.cinematic-stage {
  position: relative;

  min-height: 100svh;
  height: 100vh;

  overflow: hidden;

  isolation: isolate;

  background:

    radial-gradient(
      ellipse 55% 68% at 68% 46%,
      rgba(132,73,157,.23) 0%,
      rgba(132,73,157,.12) 28%,
      rgba(64,29,75,.07) 46%,
      transparent 66%
    ),

    radial-gradient(
      ellipse 30% 52% at 26% 35%,
      rgba(132,73,157,.12),
      transparent 67%
    ),

    linear-gradient(
      118deg,
      #040304 0%,
      #070508 26%,
      #110a14 54%,
      #0b070d 74%,
      #030304 100%
    );
}


/* =========================================================
   AMBIENT LIGHTING
   ========================================================= */

.ambient {
  position: absolute;

  z-index: -4;

  pointer-events: none;

  border-radius: 999px;

  filter: blur(72px);

  opacity: .7;
}

.ambient-a {
  width: 34vw;
  height: 42vw;

  right: 8vw;
  top: 12vh;

  background:
    rgba(132,73,157,.18);
}

.ambient-b {
  width: 18vw;
  height: 24vw;

  left: 12vw;
  top: 28vh;

  background:
    rgba(132,73,157,.08);
}


/* =========================================================
   HERO VIGNETTE
   ========================================================= */

.stage-vignette {
  position: absolute;

  inset: 0;

  z-index: 20;

  pointer-events: none;

  background:

    linear-gradient(
      90deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.24) 18%,
      transparent 34%,
      transparent 70%,
      rgba(0,0,0,.36) 90%,
      rgba(0,0,0,.78) 100%
    ),

    linear-gradient(
      180deg,
      rgba(0,0,0,.62) 0%,
      transparent 20%,
      transparent 75%,
      rgba(0,0,0,.66) 100%
    ),

    radial-gradient(
      ellipse 88% 92% at 52% 48%,
      transparent 43%,
      rgba(0,0,0,.18) 68%,
      rgba(0,0,0,.58) 100%
    );
}


/* =========================================================
   FINE GRAIN
   ========================================================= */

.fine-grain {
  position: absolute;

  inset: 0;

  z-index: 19;

  opacity: .08;

  pointer-events: none;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");

  mix-blend-mode: soft-light;
}


/* =========================================================
   INTRO + PRODUCT SCENES
   ========================================================= */

.intro-scene,
.product-scene {
  position: absolute;
  inset: 0;
}


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

.intro-scene {
  z-index: 30;

  display: flex;
  flex-direction: column;

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

  padding:
    110px 24px 80px;

  text-align: center;

  opacity: 0;

  transform:
    translate3d(0, 86px, 0);

  will-change:
    transform,
    opacity,
    filter;
}

.intro-kicker,
.eyebrow {
  margin:
    0 0 18px;

  color: var(--gold-light);

  font-size: 10px;
  line-height: 1.2;

  letter-spacing: .35em;

  text-transform: uppercase;
}

.intro-scene h1 {
  margin: 0;

  font-family: var(--serif);

  font-weight: 400;

  font-size:
    clamp(68px, 10vw, 176px);

  line-height: .86;

  letter-spacing: .11em;

  transform:
    translateX(.055em);

  text-shadow:
    0 0 36px rgba(132,73,157,.14);
}

.intro-scene p {
  width:
    min(670px, 86vw);

  margin:
    30px 0 0;

  color:
    rgba(242,237,230,.68);

  font-size:
    clamp(14px, 1.25vw, 18px);

  letter-spacing:
    .015em;
}


/* =========================================================
   PRODUCT SCENE
   ========================================================= */

.product-scene {
  z-index: 10;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}

.product-scene.is-active {
  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   PRODUCT SPOTLIGHT
   ========================================================= */

.product-light {
  position: absolute;

  z-index: 1;

  width: 35vw;
  height: 58vh;

  min-width: 420px;
  min-height: 480px;

  left: 65%;
  top: 48%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse at 50% 45%,
      rgba(247,231,191,.16) 0%,
      rgba(214,184,119,.08) 21%,
      rgba(132,73,157,.14) 42%,
      transparent 72%
    );

  filter:
    blur(22px);

  opacity: .84;

  will-change:
    transform,
    opacity;
}


/* =========================================================
   PRODUCT CONTAINER
   UPDATED — SMALLER / MORE BALANCED
   ========================================================= */

.product-anchor {
  position: absolute;

  z-index: 5;

  left: 50%;
  top: 51%;

  width:
    min(42vw, 640px);

  height:
    min(74vh, 760px);

  transform:
    translate(-50%, -50%);

  display: grid;

  place-items: center;

  pointer-events: none;
}


/* =========================================================
   BASE PRODUCT IMAGE
   ========================================================= */

.product-visual {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  object-position: center;

  opacity: 0;

  transform:
    translate3d(0, 34vh, 0)
    scale(.72);

  transform-origin:
    50% 56%;

  filter:
    drop-shadow(
      0 28px 45px rgba(0,0,0,.38)
    );

  will-change:
    transform,
    opacity,
    filter;
}


/* =========================================================
   JEWELLERY IMAGE
   ========================================================= */

.jewellery-visual {
  width: 84%;

  height: 88%;

  max-width: 560px;

  max-height: 690px;

  object-fit: contain;

  object-position: center;
}


/* =========================================================
   WATCH IMAGE
   ========================================================= */

.watch-visual {
  width: 88%;

  height: 86%;

  max-width: 590px;

  max-height: 680px;

  object-fit: contain;

  object-position: center;
}


/* =========================================================
   WALLET IMAGE
   ========================================================= */

.wallet-visual {
  width: 86%;

  height: 84%;

  max-width: 580px;

  max-height: 660px;

  object-fit: contain;

  object-position: center;
}


/* =========================================================
   PRODUCT COPY
   ========================================================= */

.scene-copy {
  position: absolute;

  z-index: 8;

  left:
    clamp(34px, 8vw, 150px);

  top: 52%;

  width:
    min(38vw, 560px);

  transform:
    translate3d(
      0,
      -37%,
      0
    );

  opacity: 0;

  will-change:
    transform,
    opacity;
}

.scene-copy h2 {
  margin: 0;

  font-family: var(--serif);

  font-weight: 400;

  font-size:
    clamp(70px, 8vw, 142px);

  line-height: .82;

  letter-spacing:
    -.035em;
}

.scene-lead {
  margin:
    28px 0 0;

  color: var(--ivory);

  font-family: var(--serif);

  font-size:
    clamp(22px, 2vw, 31px);

  line-height:
    1.12;
}

.scene-body {
  max-width: 510px;

  margin:
    18px 0 0;

  color:
    rgba(242,237,230,.62);

  font-size:
    14px;

  line-height:
    1.7;
}

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 26px;

  padding-bottom: 6px;

  border-bottom:
    1px solid rgba(239,224,183,.52);

  color:
    var(--gold-light);

  font-size: 11px;

  letter-spacing: .16em;

  text-transform: uppercase;
}

.text-link span {
  transform:
    translateY(-1px);
}


/* =========================================================
   HERO FOOTER
   ========================================================= */

.stage-footer {
  position: absolute;

  z-index: 40;

  left:
    clamp(22px, 4.2vw, 72px);

  bottom: 34px;

  display: flex;

  align-items: center;

  gap: 14px;

  color:
    rgba(242,237,230,.46);

  font-size: 9px;

  letter-spacing: .18em;
}

.stage-line {
  position: relative;

  width: 96px;

  height: 1px;

  overflow: hidden;

  background:
    rgba(255,255,255,.14);
}

.stage-line span {
  position: absolute;

  inset:
    0 auto 0 0;

  width: 0%;

  background:
    var(--gold-light);

  box-shadow:
    0 0 12px rgba(239,224,183,.5);
}


/* =========================================================
   LOWER CONTENT SECTIONS
   ========================================================= */

.content-section {
  position: relative;

  background:
    #080609;

  border-top:
    1px solid rgba(255,255,255,.06);

  padding:
    clamp(96px, 12vw, 190px)
    clamp(24px, 7vw, 120px);
}

.section-heading {
  width:
    min(760px, 92vw);
}

.section-heading h2,
.split-section h2,
.contact-section h2 {
  margin: 0;

  font-family:
    var(--serif);

  font-size:
    clamp(52px, 6.6vw, 108px);

  line-height: .92;

  font-weight: 400;

  letter-spacing:
    -.035em;
}

.section-heading > p:last-child {
  width:
    min(620px, 100%);

  margin:
    34px 0 0;

  color:
    rgba(242,237,230,.62);
}


/* =========================================================
   COLLECTION GRID
   ========================================================= */

.collection-grid {
  display: grid;

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

  gap: 14px;

  margin-top: 76px;
}

.collection-card {
  min-height: 300px;

  padding: 28px;

  border:
    1px solid rgba(255,255,255,.08);

  background:

    radial-gradient(
      circle at 80% 20%,
      rgba(132,73,157,.16),
      transparent 35%
    ),

    linear-gradient(
      145deg,
      rgba(255,255,255,.025),
      transparent 55%
    );

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

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

.collection-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(214,184,119,.32);
}

.collection-card span {
  margin-bottom: auto;

  color:
    rgba(239,224,183,.5);

  font-size: 10px;

  letter-spacing: .18em;
}

.collection-card h3 {
  margin: 0;

  font-family:
    var(--serif);

  font-size: 44px;

  font-weight: 400;
}

.collection-card p {
  margin:
    12px 0 0;

  color:
    rgba(242,237,230,.52);

  font-size:
    13px;

  max-width:
    270px;
}


/* =========================================================
   SPLIT SECTIONS
   ========================================================= */

.split-section {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, .8fr);

  gap: 8vw;

  align-items: start;

  background:
    #060507;
}

.long-copy {
  padding-top: 34px;
}

.long-copy p {
  margin:
    0 0 24px;

  color:
    rgba(242,237,230,.64);

  font-size:
    clamp(15px, 1.25vw, 18px);
}


/* =========================================================
   CRAFTSMANSHIP
   ========================================================= */

.craftsmanship-section {
  background:

    radial-gradient(
      circle at 76% 38%,
      rgba(132,73,157,.12),
      transparent 31%
    ),

    #09060a;
}


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

.contact-section {
  min-height: 76vh;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

  background:

    radial-gradient(
      ellipse at 66% 46%,
      rgba(132,73,157,.19),
      transparent 42%
    ),

    linear-gradient(
      115deg,
      #050406,
      #0b070d 65%,
      #050406
    );
}

.contact-section > p:not(.eyebrow) {
  color:
    rgba(242,237,230,.62);

  max-width: 560px;

  margin:
    30px 0 0;
}

.outline-button {
  display: inline-flex;

  margin-top: 34px;

  padding:
    13px 18px;

  border:
    1px solid rgba(239,224,183,.46);

  color:
    var(--gold-light);

  font-size: 11px;

  letter-spacing: .15em;

  text-transform: uppercase;
}


/* =========================================================
   SITE FOOTER
   BOTTOM LOGO REMOVED
   ========================================================= */

.site-footer {
  display: flex;

  align-items: center;

  justify-content:
    center;

  gap: 24px;

  padding:
    36px clamp(24px, 7vw, 120px);

  background:
    #030304;

  border-top:
    1px solid rgba(255,255,255,.06);

  color:
    rgba(242,237,230,.36);

  font-size:
    11px;
}

.footer-brand {
  display: none;
}


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

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: 200;

  background:
    rgba(4,3,4,.97);

  backdrop-filter:
    blur(18px);

  display: grid;

  place-items: center;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.mobile-menu.is-open {
  opacity: 1;

  visibility: visible;
}

.mobile-menu nav {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 20px;
}

.mobile-menu nav a {
  position: relative;

  padding-bottom: 7px;

  font-family:
    var(--serif);

  font-size: 44px;
}

.mobile-menu nav a::after {
  content: "";

  position: absolute;

  left: 15%;
  right: 15%;
  bottom: 0;

  height: 1px;

  background:
    var(--brand-purple-soft);

  opacity: 0;

  transform:
    scaleX(.25);

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

.mobile-menu nav a.is-active::after {
  opacity: 1;

  transform:
    scaleX(1);
}

.mobile-menu-close {
  position: absolute;

  right: 24px;

  top: 22px;

  border: 0;

  background:
    transparent;

  font-size: 36px;

  color:
    var(--gold-light);

  cursor: pointer;
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 980px) {

  :root {
    --header-h: 98px;
  }

  .top-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }


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

  .brand-lockup {
    width: 150px;
    min-width: 150px;

    transform:
      translateX(-12px);
  }

  .brand-logo-shell {
    width: 150px;

    height: 78px;
    min-height: 78px;
  }

  .brand-logo {
    width: 146px;

    height: 82px;
    max-height: 82px;
  }

  .brand-origin {
    margin-top: -12px;

    font-size: 7.5px;
  }


  .scene-copy {
    left: 6vw;

    width: 41vw;
  }

  .scene-copy h2 {
    font-size:
      clamp(58px, 8.8vw, 94px);
  }

  .product-anchor {
    width:
      min(48vw, 580px);

    height:
      min(72vh, 700px);
  }

  .jewellery-visual {
    width: 83%;

    height: 87%;
  }

  .watch-visual {
    width: 87%;

    height: 85%;
  }

  .wallet-visual {
    width: 85%;

    height: 83%;
  }

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

  .collection-card {
    min-height: 240px;
  }

  .split-section {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .long-copy {
    width:
      min(700px,100%);

    padding-top: 0;
  }
}


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

@media (max-width: 700px) {

  .site-header {
    padding-top: 12px;
    padding-right: 14px;
    padding-bottom: 0;
    padding-left: 2px;

    background:
      rgba(5,4,6,.985);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }


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

  .brand-lockup {
    width: 132px;
    min-width: 132px;

    transform:
      translateX(-9px);
  }

  .brand-logo-shell {
    width: 132px;

    height: 68px;
    min-height: 68px;
  }

  .brand-logo {
    width: 128px;

    height: 72px;
    max-height: 72px;
  }

  .brand-origin {
    margin-top: -10px;

    font-size: 7px;

    letter-spacing: .50em;
  }


  .menu-button {
    width: 42px;

    height: 42px;
  }


  /* =======================================================
     MOBILE HERO BACKGROUND
     ======================================================= */

  .cinematic-stage {
    min-height: 100svh;

    height: 100svh;

    background:

      radial-gradient(
        ellipse 85% 48% at 52% 38%,
        rgba(132,73,157,.20),
        transparent 65%
      ),

      linear-gradient(
        180deg,
        #050406 0%,
        #100913 48%,
        #040304 100%
      );
  }

  .stage-vignette {
    background:

      linear-gradient(
        90deg,
        rgba(0,0,0,.52),
        transparent 19%,
        transparent 81%,
        rgba(0,0,0,.56)
      ),

      linear-gradient(
        180deg,
        rgba(0,0,0,.62) 0%,
        transparent 16%,
        transparent 76%,
        rgba(0,0,0,.76) 100%
      );
  }


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

  .intro-scene {
    padding-top: 92px;
  }

  .intro-kicker {
    font-size: 8px;

    letter-spacing: .28em;

    margin-bottom: 16px;
  }

  .intro-scene h1 {
    font-size:
      clamp(58px, 18vw, 96px);

    letter-spacing:
      .055em;
  }

  .intro-scene p {
    width:
      min(88vw, 470px);

    margin-top: 22px;

    font-size: 13px;
  }


  /* =======================================================
     MOBILE PRODUCT CONTAINER
     ======================================================= */

  .product-anchor {
    top: 39%;

    width: 78vw;

    height: 49vh;

    max-width: 520px;

    max-height: 520px;
  }


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

  .jewellery-visual {
    width: 82%;

    height: 88%;

    max-width: 430px;

    max-height: 470px;

    object-position: center;
  }


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

  .watch-visual {
    width: 88%;

    height: 86%;

    max-width: 450px;

    max-height: 450px;

    object-position: center;
  }


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

  .wallet-visual {
    width: 86%;

    height: 84%;

    max-width: 440px;

    max-height: 440px;

    object-position: center;
  }


  /* =======================================================
     MOBILE PRODUCT LIGHT
     ======================================================= */

  .product-light {
    left: 50%;

    top: 37%;

    width: 82vw;

    height: 48vh;

    min-width: 0;

    min-height: 0;
  }


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

  .scene-copy {
    left: 22px;

    right: 22px;

    top: auto;

    bottom: 72px;

    width: auto;

    transform:
      translate3d(
        0,
        30px,
        0
      );
  }

  .scene-copy .eyebrow {
    margin-bottom: 11px;

    font-size: 8px;
  }

  .scene-copy h2 {
    font-size:
      clamp(54px, 15vw, 78px);

    line-height:
      .86;
  }

  .scene-lead {
    margin-top: 14px;

    font-size: 19px;

    max-width: 340px;
  }

  .scene-body {
    display: none;
  }

  .text-link {
    margin-top: 16px;

    font-size: 9px;
  }

  .stage-footer {
    left: 22px;

    bottom: 26px;
  }


  /* =======================================================
     MOBILE LOWER SECTIONS
     ======================================================= */

  .content-section {
    padding:
      92px 22px;
  }

  .site-footer {
    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding:
      30px 22px;
  }
}


/* =========================================================
   SHORT LAPTOP SCREENS
   ========================================================= */

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

  .product-anchor {
    width:
      min(39vw, 570px);

    height: 67vh;
  }

  .jewellery-visual {
    width: 82%;

    height: 86%;
  }

  .watch-visual {
    width: 86%;

    height: 84%;
  }

  .wallet-visual {
    width: 84%;

    height: 82%;
  }

  .scene-copy {
    top: 54%;
  }

  .scene-body {
    display: none;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      .01ms !important;
  }
}

/* =========================================================
   FINAL BRAND LOCKUP RESPONSIVE OVERRIDES
   ========================================================= */

@media (max-width: 980px) {
  .brand-logo {
    transform: translateY(-3px);
  }

  .brand-origin {
    margin-top: -7px;
    letter-spacing: .52em;
    background:
      linear-gradient(
        90deg,
        #009246 0%,
        #009246 33.333%,
        #ffffff 33.333%,
        #ffffff 66.666%,
        #ce2b37 66.666%,
        #ce2b37 100%
      );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    transform: translateY(-2px);
  }

  .brand-origin {
    margin-top: -6px;
    letter-spacing: .50em;
  }
}


/* =========================================================
   HOME COLLECTION LINKS
   Existing visual treatment preserved; cards are now links.
   ========================================================= */

.collection-card {
  position: relative;
  cursor: pointer;
}

.collection-card::after {
  content: "Discover  ↗";
  position: absolute;
  right: 28px;
  bottom: 29px;
  color: rgba(239,224,183,.62);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.collection-card:hover::after,
.collection-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.collection-card:focus-visible {
  outline: 1px solid rgba(168,120,185,.7);
  outline-offset: 4px;
}

@media (max-width: 700px) {
  .collection-card::after {
    opacity: .72;
    transform: none;
    right: 22px;
    bottom: 23px;
  }
}

/* =========================================================
   PREMIUM COLLECTION GATEWAYS — 2026 REFINEMENT
   New editorial imagery; hero choreography remains untouched.
   ========================================================= */

.collections-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse 46% 34% at 50% 0%, rgba(132,72,156,.08), transparent 72%),
    #080609;
}

.collections-section .section-heading {
  width: min(1180px, 94vw);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .58fr);
  column-gap: clamp(44px, 8vw, 130px);
  align-items: end;
}

.collections-section .section-heading .eyebrow,
.collections-section .section-heading h2 {
  grid-column: 1;
}

.collections-section .section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 8px;
  padding-left: clamp(24px, 3vw, 46px);
  border-left: 1px solid rgba(214,184,119,.26);
}

.collection-grid--visual {
  gap: clamp(14px, 1.35vw, 22px);
  margin-top: clamp(62px, 7vw, 92px);
}

.collection-card--visual {
  position: relative;
  min-height: clamp(390px, 38vw, 510px);
  padding: 0;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(239,224,183,.20);
  border-radius: 2px;
  background: #050406;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  transition:
    transform .55s cubic-bezier(.22,.75,.18,1),
    border-color .45s ease,
    box-shadow .45s ease;
}

.collection-card--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2,2,3,.10), transparent 30%, rgba(2,2,3,.08) 52%, rgba(2,2,3,.72) 100%),
    radial-gradient(circle at 78% 28%, rgba(168,120,185,.10), transparent 36%);
  transition: opacity .45s ease;
}

.collection-card--visual::after {
  content: "";
  position: absolute;
  inset: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0;
  transform: none;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 24%, rgba(255,255,255,.045) 46%, transparent 66%);
  transition: opacity .45s ease;
}

.collection-card--visual:hover,
.collection-card--visual:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(214,184,119,.48);
  box-shadow: 0 34px 86px rgba(0,0,0,.30), 0 0 0 1px rgba(132,72,156,.08) inset;
}

.collection-card--visual:hover::after,
.collection-card--visual:focus-visible::after {
  opacity: 1;
}

.collection-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  filter: brightness(.88) saturate(.94) contrast(1.04);
  transition:
    transform .9s cubic-bezier(.22,.75,.18,1),
    filter .55s ease;
}

.collection-card--visual:hover .collection-card__image,
.collection-card--visual:focus-visible .collection-card__image {
  transform: scale(1.065);
  filter: brightness(.98) saturate(1.02) contrast(1.04);
}

.collection-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,3,5,.78) 0%, rgba(4,3,5,.34) 40%, rgba(4,3,5,.05) 74%),
    linear-gradient(0deg, rgba(4,3,5,.92) 0%, rgba(4,3,5,.34) 44%, transparent 72%);
  pointer-events: none;
}

.collection-card__index {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 5;
  margin: 0 !important;
  color: rgba(239,224,183,.76) !important;
  font-size: 9px !important;
  letter-spacing: .22em !important;
}

.collection-card__index::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-left: 13px;
  vertical-align: middle;
  background: rgba(214,184,119,.48);
}

.collection-card__content {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  bottom: 27px;
}

.collection-card__content h3 {
  margin: 0;
  max-width: 90%;
  font-size: clamp(42px, 3.25vw, 58px);
  line-height: .92;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.collection-card__content p {
  max-width: 260px;
  margin: 14px 0 0;
  color: rgba(242,237,230,.68);
  line-height: 1.62;
}

.collection-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0 !important;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(239,224,183,.50);
  color: rgba(239,224,183,.92) !important;
  font-size: 9px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase;
}

.collection-card__cta b {
  font-weight: 400;
  transition: transform .35s ease;
}

.collection-card--visual:hover .collection-card__cta b,
.collection-card--visual:focus-visible .collection-card__cta b {
  transform: translate(4px,-2px);
}

.house-codes {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  margin-top: clamp(26px, 3.5vw, 48px);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.house-code {
  min-height: 152px;
  padding: 25px clamp(18px,2vw,28px);
  border-right: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.012), transparent);
}

.house-code:last-child { border-right: 0; }

.house-code > span {
  display: block;
  margin-bottom: 21px;
  color: rgba(214,184,119,.56);
  font-size: 8px;
  letter-spacing: .22em;
}

.house-code strong {
  display: block;
  color: rgba(239,224,183,.88);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.house-code p {
  max-width: 260px;
  margin: 8px 0 0;
  color: rgba(242,237,230,.46);
  font-size: 11px;
  line-height: 1.6;
}

/* soft reveal for lower editorial sections only */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0,24px,0);
  transition: opacity .8s cubic-bezier(.22,.75,.18,1), transform .8s cubic-bezier(.22,.75,.18,1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0,0,0);
}

[data-reveal-group] [data-reveal]:nth-child(2) { transition-delay: .08s; }
[data-reveal-group] [data-reveal]:nth-child(3) { transition-delay: .16s; }
[data-reveal-group] [data-reveal]:nth-child(4) { transition-delay: .24s; }

@media (max-width: 980px) {
  .collections-section .section-heading {
    grid-template-columns: 1fr;
  }

  .collections-section .section-heading .eyebrow,
  .collections-section .section-heading h2,
  .collections-section .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .collections-section .section-heading > p:last-child {
    margin-top: 26px;
    padding-left: 0;
    border-left: 0;
  }

  .collection-card--visual {
    min-height: 420px;
  }

  .house-codes {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .house-code:nth-child(2) { border-right: 0; }
  .house-code:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

@media (max-width: 700px) {
  .collection-grid--visual { margin-top: 48px; }

  .collection-card--visual {
    min-height: 390px;
    border-radius: 0;
  }

  .collection-card__index {
    top: 22px;
    left: 22px;
  }

  .collection-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .collection-card__content h3 { font-size: 44px; }
  .collection-card__content p { max-width: 240px; }

  .collection-card__image { object-position: 58% center; }
  .collection-card__veil {
    background:
      linear-gradient(0deg, rgba(4,3,5,.94) 0%, rgba(4,3,5,.68) 38%, rgba(4,3,5,.10) 72%),
      linear-gradient(90deg, rgba(4,3,5,.34), transparent 70%);
  }

  .house-codes { grid-template-columns: 1fr; }
  .house-code,
  .house-code:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .house-code:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .collection-card__image,
  .collection-card--visual,
  .collection-card__cta b { transition: none; }
}

/* =========================================================
   PREMIUM RECONSTRUCTION — AUG 2026
   High-resolution collection imagery + image-led lower pages.
   Hero choreography remains unchanged.
   ========================================================= */

/* Brighter, crisper collection gateways */
.collection-grid--visual {
  gap: clamp(16px, 1.3vw, 24px);
}

.collection-card--visual {
  min-height: clamp(390px, 31vw, 520px);
  border-color: rgba(214,184,119,.18);
  background: #050406;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.collection-card__image {
  transform: scale(1.008);
  filter: brightness(1.03) saturate(1.06) contrast(1.08);
  image-rendering: auto;
}

.collection-card--visual:hover .collection-card__image,
.collection-card--visual:focus-visible .collection-card__image {
  transform: scale(1.045);
  filter: brightness(1.10) saturate(1.10) contrast(1.08);
}

.collection-card__veil {
  background:
    linear-gradient(90deg, rgba(4,3,5,.72) 0%, rgba(4,3,5,.28) 42%, rgba(4,3,5,.02) 76%),
    linear-gradient(0deg, rgba(4,3,5,.88) 0%, rgba(4,3,5,.20) 48%, transparent 76%);
}

.collection-card__content h3 {
  text-shadow: 0 8px 28px rgba(0,0,0,.56);
}

.collection-card__content p {
  color: rgba(242,237,230,.78);
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

/* Image-led About / Craftsmanship */
.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
  gap: clamp(44px, 7vw, 116px);
  align-items: center;
  min-height: 86vh;
  padding-top: clamp(86px, 9vw, 150px);
  padding-bottom: clamp(86px, 9vw, 150px);
  background:
    radial-gradient(circle at 80% 20%, rgba(132,73,157,.10), transparent 34%),
    linear-gradient(118deg,#050406,#09060a 52%,#050406);
}

.editorial-feature--craftsmanship {
  grid-template-columns: minmax(360px,.92fr) minmax(0,1.08fr);
  background:
    radial-gradient(circle at 24% 20%, rgba(132,73,157,.09), transparent 36%),
    #070508;
}

.editorial-feature__media {
  position: relative;
  min-height: clamp(560px, 64vw, 820px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.08);
  background: #060507;
  box-shadow: 0 42px 110px rgba(0,0,0,.35);
}

.editorial-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), transparent 48%, rgba(0,0,0,.48)),
    radial-gradient(circle at 78% 18%, rgba(168,120,185,.10), transparent 34%);
}

.editorial-feature__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: brightness(1.03) contrast(1.06) saturate(1.04);
  transition: transform 1.2s cubic-bezier(.22,.75,.18,1), filter .6s ease;
}

.editorial-feature__media:hover img {
  transform: scale(1.035);
  filter: brightness(1.07) contrast(1.07) saturate(1.06);
}

.editorial-feature__media--detail img {
  object-position: 53% center;
}

.editorial-feature__frame {
  position: absolute;
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(239,224,183,.16);
  pointer-events: none;
}

.editorial-feature__caption {
  position: absolute;
  z-index: 5;
  left: 30px;
  bottom: 28px;
  color: rgba(239,224,183,.66);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.editorial-feature__copy {
  max-width: 680px;
}

.editorial-feature__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.4vw, 108px);
  font-weight: 400;
  line-height: .90;
  letter-spacing: -.04em;
}

.editorial-feature__copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(242,237,230,.64);
  font-size: clamp(15px,1.1vw,18px);
  line-height: 1.82;
}

.editorial-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.editorial-signature span {
  color: rgba(239,224,183,.68);
  font-size: 8px;
  letter-spacing: .20em;
}

.editorial-link { margin-top: 30px; }

/* Full-width cinematic bridge */
.visual-manifesto {
  position: relative;
  min-height: clamp(560px, 70vh, 820px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #040304;
}

.visual-manifesto__image,
.visual-manifesto__veil {
  position: absolute;
  inset: 0;
}

.visual-manifesto__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 48%;
  filter: brightness(.72) contrast(1.08) saturate(1.02);
  transform: scale(1.04);
}

.visual-manifesto__veil {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,3,4,.98) 0%, rgba(3,3,4,.88) 31%, rgba(3,3,4,.40) 58%, rgba(3,3,4,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.24), transparent 55%, rgba(0,0,0,.56));
}

.visual-manifesto__copy {
  position: relative;
  z-index: 4;
  width: min(650px, 84vw);
  padding: clamp(100px, 12vw, 190px) clamp(24px, 8vw, 150px);
}

.visual-manifesto__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.7vw, 112px);
  line-height: .90;
  font-weight: 400;
  letter-spacing: -.04em;
}

.visual-manifesto__copy > p:last-child {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(242,237,230,.66);
  font-size: 15px;
  line-height: 1.8;
}

/* More visual Contact ending */
.contact-section--visual {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr);
  gap: clamp(36px,6vw,96px);
  align-items: center;
  min-height: 82vh;
  overflow: hidden;
}

.contact-section__copy { position: relative; z-index: 4; }

.contact-section__visual {
  position: relative;
  min-height: clamp(430px,52vw,650px);
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.06);
}

.contact-section__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080609 0%, rgba(8,6,9,.28) 30%, transparent 64%);
}

.contact-section__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 60% center;
  filter: brightness(.86) contrast(1.05) saturate(1.02);
}

@media (max-width: 980px) {
  .editorial-feature,
  .editorial-feature--craftsmanship,
  .contact-section--visual {
    grid-template-columns: 1fr;
  }

  .editorial-feature__media {
    min-height: min(72vw,680px);
  }

  .editorial-feature--craftsmanship .editorial-feature__copy { order: 2; }
  .editorial-feature--craftsmanship .editorial-feature__media { order: 1; }

  .contact-section__visual {
    min-height: 460px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }
}

@media (max-width: 700px) {
  .collection-card--visual { min-height: 420px; }
  .collection-card__image { filter: brightness(1.06) saturate(1.06) contrast(1.08); }

  .editorial-feature {
    min-height: auto;
    gap: 34px;
  }

  .editorial-feature__media {
    min-height: 500px;
  }

  .editorial-feature__frame { inset: 12px; }
  .editorial-feature__caption { left: 22px; bottom: 20px; }

  .visual-manifesto { min-height: 620px; }
  .visual-manifesto__image img { object-position: 63% center; }
  .visual-manifesto__veil {
    background:
      linear-gradient(0deg, rgba(3,3,4,.96) 0%, rgba(3,3,4,.78) 38%, rgba(3,3,4,.30) 66%, rgba(3,3,4,.18) 100%);
  }
  .visual-manifesto__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 22px 54px;
  }

  .contact-section__visual { min-height: 380px; }
}

/* =========================================================
   RESPONSIVE PREMIUM RECONSTRUCTION — AUG 2026
   High-clarity logo, subtle brand motion, and device-specific
   sizing for large desktop / laptop / tablet / mobile.
   ========================================================= */

:root {
  --header-h: 108px;
  --responsive-gutter: clamp(18px, 4vw, 72px);
}

/* Header stays crisp; no blur. */
.site-header {
  height: var(--header-h);
  padding-top: 6px;
  padding-right: var(--responsive-gutter);
  padding-bottom: 0;
  padding-left: 6px;
  background: rgba(5,4,6,.988);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* The new source file is tightly trimmed around the actual mark,
   so CORINTTI becomes visibly larger without making the header bulky. */
.brand-lockup {
  width: 155px;
  min-width: 155px;
  transform: none;
  gap: 0;
  transform-origin: 22% 18%;
  animation: corinttiBrandArrival 1.08s cubic-bezier(.22,.75,.18,1) both;
}

.brand-logo-shell {
  width: 155px;
  height: 94px;
  min-height: 94px;
  overflow: visible;
}

.brand-logo-shell::before {
  inset: 7% 3% 2%;
  background:
    radial-gradient(circle at 49% 42%, rgba(194,134,214,.26), rgba(132,72,156,.08) 45%, transparent 72%);
  filter: blur(9px);
  animation: corinttiHalo 5.8s 1.1s ease-in-out infinite;
}

.brand-logo-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 34%;
  height: 120%;
  top: -10%;
  left: -46%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.02) 24%, rgba(239,224,183,.26) 48%, rgba(190,128,212,.14) 58%, transparent 78%);
  transform: skewX(-18deg);
  animation: corinttiShine 6.4s 1.35s ease-in-out infinite;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: translateY(-2px);
  filter:
    brightness(1.28)
    contrast(1.28)
    saturate(1.12)
    drop-shadow(0 0 6px rgba(168,120,185,.28));
  transition: transform .35s ease, filter .35s ease;
}

.brand-lockup:hover .brand-logo {
  transform: translateY(-4px) scale(1.018);
  filter:
    brightness(1.38)
    contrast(1.30)
    saturate(1.15)
    drop-shadow(0 0 10px rgba(168,120,185,.40));
}

.brand-origin {
  margin-top: -5px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .53em;
  transform: translateX(.26em);
  opacity: .96;
}

@keyframes corinttiBrandArrival {
  0% { opacity: 0; transform: translate3d(-7px,-14px,0) scale(.93); filter: blur(5px); }
  58% { opacity: 1; transform: translate3d(0,1px,0) scale(1.018); filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
}

@keyframes corinttiHalo {
  0%,100% { opacity: .62; transform: scale(.96); }
  50% { opacity: .90; transform: scale(1.045); }
}

@keyframes corinttiShine {
  0%, 68% { left: -46%; opacity: 0; }
  73% { opacity: .18; }
  82% { left: 118%; opacity: .30; }
  88%,100% { left: 118%; opacity: 0; }
}

/* Keep content sizing controlled on large screens instead of scaling endlessly. */
.content-section {
  padding-left: max(clamp(24px,7vw,120px), calc((100vw - 1920px) / 2 + 82px));
  padding-right: max(clamp(24px,7vw,120px), calc((100vw - 1920px) / 2 + 82px));
}

/* Large desktop / 2K+ */
@media (min-width: 1600px) {
  :root { --header-h: 118px; }

  .site-header { padding-top: 5px; }

  .brand-lockup,
  .brand-logo-shell {
    width: 172px;
  }

  .brand-logo-shell {
    height: 105px;
    min-height: 105px;
  }

  .brand-origin {
    margin-top: -7px;
    font-size: 8.5px;
  }

  .top-nav {
    margin-top: 30px;
    font-size: 12.5px;
    gap: clamp(26px,2.2vw,46px);
  }

  .product-anchor {
    width: min(38vw, 660px);
    height: min(72vh, 790px);
  }

  .scene-copy {
    left: clamp(90px,8vw,170px);
    width: min(35vw,590px);
  }
}

/* Standard laptop / compact desktop */
@media (min-width: 981px) and (max-width: 1399px) {
  :root { --header-h: 100px; }

  .site-header {
    padding-top: 4px;
    padding-right: clamp(24px,3.7vw,56px);
  }

  .brand-lockup,
  .brand-logo-shell {
    width: 142px;
  }

  .brand-logo-shell {
    height: 86px;
    min-height: 86px;
  }

  .brand-origin {
    margin-top: -5px;
    font-size: 7.4px;
  }

  .top-nav {
    margin-top: 25px;
    font-size: 11px;
    gap: clamp(18px,2.1vw,32px);
  }

  .product-anchor {
    width: min(41vw,560px);
    height: min(70vh,680px);
  }

  .scene-copy {
    left: clamp(42px,7vw,96px);
    width: min(40vw,520px);
  }

  .scene-copy h2 {
    font-size: clamp(64px,7vw,104px);
  }
}

/* Tablet */
@media (max-width: 980px) {
  :root { --header-h: 90px; }

  .site-header {
    padding-top: 4px;
    padding-right: 16px;
    padding-left: 3px;
  }

  .brand-lockup,
  .brand-logo-shell {
    width: 126px;
    min-width: 126px;
  }

  .brand-logo-shell {
    height: 78px;
    min-height: 78px;
  }

  .brand-origin {
    margin-top: -5px;
    font-size: 6.7px;
    letter-spacing: .50em;
  }

  .menu-button {
    margin-top: 11px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  :root { --header-h: 80px; }

  .site-header {
    padding-top: 3px;
    padding-right: 12px;
    padding-left: 2px;
  }

  .brand-lockup,
  .brand-logo-shell {
    width: 112px;
    min-width: 112px;
  }

  .brand-logo-shell {
    height: 69px;
    min-height: 69px;
  }

  .brand-logo {
    transform: translateY(-1px);
  }

  .brand-origin {
    margin-top: -5px;
    font-size: 6px;
    letter-spacing: .48em;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    margin-top: 9px;
  }

  .content-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Small phones */
@media (max-width: 430px) {
  :root { --header-h: 74px; }

  .brand-lockup,
  .brand-logo-shell {
    width: 102px;
    min-width: 102px;
  }

  .brand-logo-shell {
    height: 63px;
    min-height: 63px;
  }

  .brand-origin {
    margin-top: -5px;
    font-size: 5.5px;
  }
}

/* Short-height laptops: protect the hero and header from crowding. */
@media (max-height: 720px) and (min-width: 981px) {
  :root { --header-h: 92px; }

  .brand-lockup,
  .brand-logo-shell { width: 134px; min-width: 134px; }
  .brand-logo-shell { height: 82px; min-height: 82px; }
  .brand-origin { margin-top: -5px; font-size: 6.9px; }
  .top-nav { margin-top: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-lockup,
  .brand-logo-shell::before,
  .brand-logo-shell::after {
    animation: none !important;
  }

  .brand-lockup { opacity: 1; transform: none; }
}


/* =========================================================
   RECONSTRUCTED PREMIUM V3 — PUZZLE LOGO HEADER
   ========================================================= */
.site-header {
  height: var(--header-h);
  padding-top: 8px;
  padding-left: clamp(8px, 1.2vw, 16px);
  padding-right: clamp(18px, 4vw, 68px);
  align-items: flex-start;
}

.brand-lockup {
  width: clamp(108px, 8vw, 134px);
  min-width: clamp(108px, 8vw, 134px);
  transform: translateY(-6px);
  gap: 0;
  align-items: center;
  text-align: center;
}

.brand-logo-shell {
  position: relative;
  width: 100%;
  height: clamp(72px, 5.4vw, 88px);
  min-height: clamp(72px, 5.4vw, 88px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.brand-logo-shell::before {
  content: "";
  position: absolute;
  inset: 12% 16% 16%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(186, 117, 219, .34), rgba(132, 72, 156, .12) 42%, transparent 72%);
  filter: blur(14px);
  animation: brandHaloPulse 6s ease-in-out infinite;
}

.brand-mark {
  position: relative;
  width: clamp(62px, 4.8vw, 80px);
  aspect-ratio: 1 / 1;
  display: block;
}

.logo-fragment {
  position: absolute;
  width: 33.334%;
  height: 33.334%;
  background-image: url('../img/corintti-mark.png');
  background-size: 300% 300%;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(1.17) contrast(1.14) saturate(1.06) drop-shadow(0 0 8px rgba(168, 120, 185, .28));
  animation: logoAssemble 1.22s cubic-bezier(.2, .8, .2, 1) forwards;
}

.logo-fragment:hover {
  filter: brightness(1.24) contrast(1.16) saturate(1.1) drop-shadow(0 0 10px rgba(168, 120, 185, .42));
}

.frag-1 { left: 0; top: 0; background-position: 0% 0%; --tx: -28px; --ty: -24px; --rot: -18deg; animation-delay: .00s; }
.frag-2 { left: 33.333%; top: 0; background-position: 50% 0%; --tx: 8px; --ty: -30px; --rot: 14deg; animation-delay: .08s; }
.frag-3 { left: 66.666%; top: 0; background-position: 100% 0%; --tx: 32px; --ty: -18px; --rot: 22deg; animation-delay: .14s; }
.frag-4 { left: 0; top: 33.333%; background-position: 0% 50%; --tx: -30px; --ty: 7px; --rot: -12deg; animation-delay: .18s; }
.frag-5 { left: 33.333%; top: 33.333%; background-position: 50% 50%; --tx: 0px; --ty: 0px; --rot: -10deg; animation-delay: .24s; }
.frag-6 { left: 66.666%; top: 33.333%; background-position: 100% 50%; --tx: 28px; --ty: 6px; --rot: 12deg; animation-delay: .30s; }
.frag-7 { left: 0; top: 66.666%; background-position: 0% 100%; --tx: -20px; --ty: 26px; --rot: -18deg; animation-delay: .36s; }
.frag-8 { left: 33.333%; top: 66.666%; background-position: 50% 100%; --tx: 4px; --ty: 30px; --rot: 16deg; animation-delay: .42s; }
.frag-9 { left: 66.666%; top: 66.666%; background-position: 100% 100%; --tx: 28px; --ty: 22px; --rot: 18deg; animation-delay: .48s; }

.brand-word {
  margin-top: -2px;
  font-family: var(--serif);
  font-size: clamp(11.5px, .92vw, 14.2px);
  line-height: 1;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #ba81d2;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(132, 72, 156, .16);
  opacity: 0;
  transform: translateY(8px);
  animation: brandWordReveal .8s .82s ease forwards;
}

.brand-origin {
  margin-top: 5px;
  font-size: clamp(5.8px, .42vw, 7.2px);
  line-height: 1;
  letter-spacing: .52em;
  transform: translateX(.26em) translateY(6px);
  opacity: 0;
  animation: brandWordReveal .8s 1.02s ease forwards;
}

@keyframes logoAssemble {
  0% { opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(.45); }
  58% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1.05); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes brandHaloPulse {
  0%, 100% { opacity: .56; transform: scale(.92); }
  50% { opacity: .92; transform: scale(1.06); }
}

@keyframes brandWordReveal {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.brand-lockup:hover .brand-mark {
  transform: translateY(-2px) scale(1.02);
  transition: transform .35s ease;
}

.brand-lockup:hover .brand-word {
  color: #c890dd;
}

@media (min-width: 1600px) {
  :root { --header-h: 118px; }
  .brand-lockup { width: 142px; min-width: 142px; }
  .brand-logo-shell { height: 92px; min-height: 92px; }
  .brand-mark { width: 84px; }
  .brand-word { font-size: 14.6px; }
  .brand-origin { font-size: 7.5px; }
}

@media (min-width: 981px) and (max-width: 1399px) {
  :root { --header-h: 102px; }
  .site-header { padding-top: 7px; }
  .brand-lockup { width: 122px; min-width: 122px; }
  .brand-logo-shell { height: 78px; min-height: 78px; }
  .brand-mark { width: 72px; }
  .brand-word { font-size: 12.3px; }
  .brand-origin { font-size: 6.4px; }
}

@media (max-width: 980px) {
  :root { --header-h: 90px; }
  .site-header { padding-top: 5px; padding-left: 6px; padding-right: 16px; }
  .brand-lockup { width: 108px; min-width: 108px; transform: translateY(-4px); }
  .brand-logo-shell { height: 72px; min-height: 72px; }
  .brand-mark { width: 64px; }
  .brand-word { font-size: 10.8px; letter-spacing: .34em; }
  .brand-origin { font-size: 6px; letter-spacing: .48em; }
}

@media (max-width: 700px) {
  :root { --header-h: 80px; }
  .site-header { padding-top: 4px; padding-left: 4px; padding-right: 12px; }
  .brand-lockup { width: 96px; min-width: 96px; }
  .brand-logo-shell { height: 62px; min-height: 62px; }
  .brand-mark { width: 56px; }
  .brand-word { font-size: 9.4px; letter-spacing: .30em; }
  .brand-origin { margin-top: 4px; font-size: 5.5px; }
}

@media (max-width: 430px) {
  :root { --header-h: 74px; }
  .brand-lockup { width: 88px; min-width: 88px; }
  .brand-logo-shell { height: 56px; min-height: 56px; }
  .brand-mark { width: 51px; }
  .brand-word { font-size: 8.6px; letter-spacing: .26em; }
  .brand-origin { font-size: 5px; }
}

@media (max-height: 720px) and (min-width: 981px) {
  :root { --header-h: 94px; }
  .brand-lockup { width: 116px; min-width: 116px; }
  .brand-logo-shell { height: 74px; min-height: 74px; }
  .brand-mark { width: 68px; }
  .brand-word { font-size: 11.6px; }
  .brand-origin { font-size: 5.9px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-fragment,
  .brand-logo-shell::before,
  .brand-word,
  .brand-origin { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   RECONSTRUCTED PREMIUM V5 — LOGO POLISH AND ALIGNMENT FIX
   ========================================================= */
.site-header {
  padding-top: 10px;
}

.brand-lockup {
  width: clamp(112px, 7vw, 128px);
  min-width: clamp(112px, 7vw, 128px);
  transform: translateY(-2px);
  align-items: center;
  justify-content: flex-start;
}

.brand-logo-shell {
  height: clamp(64px, 4.8vw, 78px);
  min-height: clamp(64px, 4.8vw, 78px);
}

.brand-logo-shell::before {
  inset: 16% 20% 22%;
  opacity: .82;
}

.brand-mark {
  width: clamp(58px, 4.1vw, 72px);
}

.logo-fragment {
  filter: brightness(1.1) contrast(1.08) saturate(1.02) drop-shadow(0 0 6px rgba(168, 120, 185, .2));
}

.brand-word {
  margin-top: 6px;
  font-size: clamp(10.8px, .82vw, 13px);
  letter-spacing: .31em;
  line-height: 1;
}

.brand-origin {
  margin-top: 8px;
  font-size: clamp(5.4px, .38vw, 6.6px);
  letter-spacing: .46em;
  line-height: 1;
  transform: translateX(.46em) translateY(0);
}

@media (min-width: 1600px) {
  .brand-lockup { width: 132px; min-width: 132px; }
  .brand-logo-shell { height: 80px; min-height: 80px; }
  .brand-mark { width: 74px; }
  .brand-word { font-size: 13.2px; }
  .brand-origin { font-size: 6.8px; margin-top: 9px; }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .brand-lockup { width: 120px; min-width: 120px; }
  .brand-logo-shell { height: 72px; min-height: 72px; }
  .brand-mark { width: 66px; }
  .brand-word { font-size: 11.6px; }
  .brand-origin { font-size: 6.1px; margin-top: 8px; }
}

@media (max-width: 980px) {
  .brand-lockup { width: 104px; min-width: 104px; }
  .brand-logo-shell { height: 66px; min-height: 66px; }
  .brand-mark { width: 60px; }
  .brand-word { margin-top: 5px; font-size: 10.2px; letter-spacing: .28em; }
  .brand-origin { margin-top: 7px; font-size: 5.7px; letter-spacing: .40em; }
}

@media (max-width: 700px) {
  .site-header { padding-top: 8px; }
  .brand-lockup { width: 92px; min-width: 92px; }
  .brand-logo-shell { height: 58px; min-height: 58px; }
  .brand-mark { width: 53px; }
  .brand-word { margin-top: 4px; font-size: 8.9px; letter-spacing: .24em; }
  .brand-origin { margin-top: 6px; font-size: 5.1px; letter-spacing: .34em; }
}

@media (max-width: 430px) {
  .brand-lockup { width: 84px; min-width: 84px; }
  .brand-logo-shell { height: 52px; min-height: 52px; }
  .brand-mark { width: 48px; }
  .brand-word { font-size: 8.2px; }
  .brand-origin { font-size: 4.8px; margin-top: 5px; }
}

/* =========================================================
   RECONSTRUCTED PREMIUM V6 — BRAND WORDMARK FONT REFINEMENT
   ========================================================= */
.brand-word {
  font-family: "Bodoni 72 Smallcaps", "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(11px, .84vw, 13.4px);
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  color: #c795df;
  text-shadow:
    0 0 10px rgba(132, 72, 156, .14),
    0 1px 0 rgba(255,255,255,.04);
}

.brand-lockup:hover .brand-word {
  color: #d7ace9;
}

@media (min-width: 1600px) {
  .brand-word {
    font-size: 13.8px;
    letter-spacing: .26em;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .brand-word {
    font-size: 12px;
    letter-spacing: .25em;
  }
}

@media (max-width: 980px) {
  .brand-word {
    font-size: 10.5px;
    letter-spacing: .22em;
  }
}

@media (max-width: 700px) {
  .brand-word {
    font-size: 9.2px;
    letter-spacing: .19em;
  }
}

@media (max-width: 430px) {
  .brand-word {
    font-size: 8.5px;
    letter-spacing: .17em;
  }
}

/* =========================================================
   RECONSTRUCTED PREMIUM V7 — EXACT CORINTTI LOGO ARTWORK
   Uses the user's supplied original logo artwork as-is.
   The puzzle pieces assemble into the COMPLETE original logo,
   including the exact CORINTTI wordmark.
   ========================================================= */
.brand-lockup {
  width: clamp(118px, 7.7vw, 136px);
  min-width: clamp(118px, 7.7vw, 136px);
  transform: translateY(-2px);
  align-items: center;
  gap: 0;
}

.brand-logo-shell {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 417 / 301;
  display: block;
  overflow: visible;
}

.brand-logo-shell::before {
  content: "";
  position: absolute;
  inset: 10% 10% 8%;
  border-radius: 45%;
  background: radial-gradient(circle at 50% 45%, rgba(170, 100, 205, .24), rgba(132, 72, 156, .08) 42%, transparent 72%);
  filter: blur(13px);
  animation: brandHaloPulse 6s ease-in-out infinite;
}

.brand-mark {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.logo-fragment {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/corintti-logo-exact.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(1.06) contrast(1.08) saturate(1.03) drop-shadow(0 0 4px rgba(168,120,185,.16));
  animation: logoAssembleExact 1.34s cubic-bezier(.2,.78,.16,1) forwards;
  will-change: transform, opacity, filter;
}

/* 3x3 exact-image puzzle. Each fragment is a clipped copy of the full original logo. */
.frag-1 { clip-path: inset(0 66.666% 66.666% 0); --tx:-34px; --ty:-26px; --rot:-15deg; animation-delay:.00s; }
.frag-2 { clip-path: inset(0 33.333% 66.666% 33.333%); --tx:0px; --ty:-34px; --rot:11deg; animation-delay:.07s; }
.frag-3 { clip-path: inset(0 0 66.666% 66.666%); --tx:32px; --ty:-24px; --rot:16deg; animation-delay:.12s; }
.frag-4 { clip-path: inset(33.333% 66.666% 33.333% 0); --tx:-36px; --ty:2px; --rot:-11deg; animation-delay:.17s; }
.frag-5 { clip-path: inset(33.333% 33.333% 33.333% 33.333%); --tx:0px; --ty:0px; --rot:-7deg; animation-delay:.22s; }
.frag-6 { clip-path: inset(33.333% 0 33.333% 66.666%); --tx:34px; --ty:4px; --rot:10deg; animation-delay:.27s; }
.frag-7 { clip-path: inset(66.666% 66.666% 0 0); --tx:-30px; --ty:28px; --rot:-13deg; animation-delay:.32s; }
.frag-8 { clip-path: inset(66.666% 33.333% 0 33.333%); --tx:1px; --ty:34px; --rot:12deg; animation-delay:.37s; }
.frag-9 { clip-path: inset(66.666% 0 0 66.666%); --tx:30px; --ty:26px; --rot:15deg; animation-delay:.42s; }

@keyframes logoAssembleExact {
  0% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(.62);
    filter: blur(3px) brightness(1.10) saturate(1.06);
  }
  64% {
    opacity: 1;
    transform: translate(0,0) rotate(0deg) scale(1.018);
    filter: blur(0) brightness(1.08) saturate(1.03);
  }
  100% {
    opacity: 1;
    transform: translate(0,0) rotate(0deg) scale(1);
    filter: blur(0) brightness(1.06) contrast(1.08) saturate(1.03) drop-shadow(0 0 4px rgba(168,120,185,.16));
  }
}

/* Exact logo already includes the CORINTTI name, so only ITALIA sits below it. */
.brand-origin {
  position: relative;
  margin-top: 6px;
  font-size: clamp(5.6px, .39vw, 6.8px);
  line-height: 1;
  letter-spacing: .48em;
  transform: translateX(.24em) translateY(0);
  opacity: 0;
  animation: brandOriginExactReveal .7s .92s ease forwards;
}

@keyframes brandOriginExactReveal {
  from { opacity: 0; transform: translateX(.24em) translateY(6px); }
  to { opacity: 1; transform: translateX(.24em) translateY(0); }
}

.brand-lockup:hover .brand-mark {
  transform: translateY(-1px) scale(1.012);
  transition: transform .35s ease;
}

@media (min-width:1600px) {
  .brand-lockup { width: 140px; min-width: 140px; }
  .brand-origin { margin-top: 7px; font-size: 7px; }
}

@media (min-width:981px) and (max-width:1399px) {
  .brand-lockup { width: 126px; min-width: 126px; }
  .brand-origin { margin-top: 6px; font-size: 6.2px; }
}

@media (max-width:980px) {
  .brand-lockup { width: 108px; min-width:108px; transform: translateY(-2px); }
  .brand-origin { margin-top: 5px; font-size: 5.7px; }
}

@media (max-width:700px) {
  .brand-lockup { width: 96px; min-width:96px; }
  .brand-origin { margin-top: 4px; font-size: 5.1px; letter-spacing:.42em; }
}

@media (max-width:430px) {
  .brand-lockup { width: 88px; min-width:88px; }
  .brand-origin { font-size: 4.8px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-fragment,
  .brand-origin,
  .brand-logo-shell::before {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   RECONSTRUCTED PREMIUM V8 — BRIGHTER HQ LOGO + RICHER MOTION
   ========================================================= */
.logo-fragment {
  background-image: url('../img/corintti-logo-exact-bright.png') !important;
  filter: brightness(1.24) contrast(1.18) saturate(1.12) drop-shadow(0 0 8px rgba(180, 118, 217, .24)) !important;
  animation: logoAssembleExactPlus 1.52s cubic-bezier(.18,.82,.14,1) forwards !important;
}

.brand-logo-shell {
  overflow: visible;
}

.brand-logo-shell::before {
  inset: 8% 8% 6% !important;
  background: radial-gradient(circle at 50% 40%, rgba(195, 124, 230, .44), rgba(158, 94, 196, .20) 36%, rgba(120, 68, 150, .08) 58%, transparent 76%) !important;
  filter: blur(16px) !important;
  animation: brandHaloPulseRich 5.4s ease-in-out infinite !important;
}

.brand-logo-shell::after {
  content: "";
  position: absolute;
  inset: -4% -2%;
  background: linear-gradient(115deg,
    transparent 18%,
    rgba(255,255,255,0) 34%,
    rgba(255,255,255,.10) 44%,
    rgba(230,196,255,.34) 49%,
    rgba(255,255,255,.10) 54%,
    rgba(255,255,255,0) 64%,
    transparent 82%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-115%) skewX(-18deg);
  animation: logoSweepShine 5.8s ease-in-out 1.9s infinite;
}

.brand-mark {
  animation: logoBreathFloat 6.8s ease-in-out 1.8s infinite;
  transform-origin: center center;
}

.brand-lockup:hover .brand-mark {
  transform: translateY(-2px) scale(1.03) !important;
  transition: transform .35s ease;
}

@keyframes logoAssembleExactPlus {
  0% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(.56);
    filter: blur(4px) brightness(1.34) contrast(1.16) saturate(1.16);
  }
  38% {
    opacity: .92;
    filter: blur(2px) brightness(1.30) contrast(1.16) saturate(1.14);
  }
  68% {
    opacity: 1;
    transform: translate(0,0) rotate(0deg) scale(1.045);
    filter: blur(0) brightness(1.28) contrast(1.18) saturate(1.12) drop-shadow(0 0 10px rgba(188,132,228,.26));
  }
  82% {
    transform: translate(0,0) rotate(0deg) scale(.992);
  }
  100% {
    opacity: 1;
    transform: translate(0,0) rotate(0deg) scale(1);
    filter: blur(0) brightness(1.24) contrast(1.18) saturate(1.12) drop-shadow(0 0 8px rgba(180,118,217,.24));
  }
}

@keyframes brandHaloPulseRich {
  0%, 100% { opacity: .72; transform: scale(.92); }
  45% { opacity: .98; transform: scale(1.03); }
  60% { opacity: .90; transform: scale(1.00); }
}

@keyframes logoBreathFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-1px) scale(1.01); }
  55% { transform: translateY(-2px) scale(1.013); }
}

@keyframes logoSweepShine {
  0%, 62%, 100% { opacity: 0; transform: translateX(-115%) skewX(-18deg); }
  68% { opacity: .72; }
  79% { opacity: .95; }
  90% { opacity: 0; transform: translateX(118%) skewX(-18deg); }
}

.brand-origin {
  text-shadow: 0 0 8px rgba(194, 132, 222, .12);
}

@media (prefers-reduced-motion: reduce) {
  .logo-fragment,
  .brand-logo-shell::before,
  .brand-logo-shell::after,
  .brand-mark {
    animation: none !important;
  }
}

/* =========================================================
   RECONSTRUCTED PREMIUM V9 — SLOWER LOGO ANIMATION TUNING
   ========================================================= */
.logo-fragment {
  animation-duration: 2.15s !important;
}

.brand-logo-shell::before {
  animation-duration: 8.6s !important;
}

.brand-logo-shell::after {
  animation-duration: 8.8s !important;
  animation-delay: 2.8s !important;
}

.brand-mark {
  animation-duration: 9.8s !important;
  animation-delay: 2.6s !important;
}

/* =========================================================
   RECONSTRUCTED PREMIUM V10 — UNIFIED LOGO COLOUR MATCH
   ========================================================= */
.logo-fragment {
  background-image: url('../img/corintti-logo-exact-unified-purple.png') !important;
  filter: brightness(1.06) contrast(1.06) saturate(1.02) drop-shadow(0 0 7px rgba(191, 116, 229, .20)) !important;
}

/* =========================================================
   RECONSTRUCTED PREMIUM V11 — HERO SCALE BY VIEWPORT
   Fixes the hero looking too small on desktop / PC monitors.
   Laptop, tablet and mobile behaviour remain unchanged.
   ========================================================= */

/* Mid desktop: 1400–1599px */
@media (min-width: 1400px) and (max-width: 1599px) {
  .product-anchor {
    width: min(45vw, 730px);
    height: min(78vh, 810px);
  }

  .jewellery-visual {
    width: 90%;
    height: 93%;
    max-width: 660px;
    max-height: 750px;
  }

  .watch-visual {
    width: 92%;
    height: 91%;
    max-width: 690px;
    max-height: 750px;
  }

  .wallet-visual {
    width: 91%;
    height: 90%;
    max-width: 680px;
    max-height: 730px;
  }

  .scene-copy {
    left: clamp(66px, 7vw, 118px);
    width: min(42vw, 620px);
  }

  .scene-copy h2 {
    font-size: clamp(96px, 8.7vw, 150px);
  }

  .scene-lead {
    font-size: clamp(25px, 2vw, 32px);
  }

  .scene-body {
    max-width: 560px;
    font-size: 14.5px;
  }

  .product-light {
    width: 39vw;
    height: 62vh;
    left: 66%;
  }
}

/* Full-HD desktop / large PC: 1600–1919px */
@media (min-width: 1600px) and (max-width: 1919px) {
  .product-anchor {
    width: min(44vw, 820px);
    height: min(80vh, 860px);
  }

  .jewellery-visual {
    width: 92%;
    height: 94%;
    max-width: 730px;
    max-height: 820px;
  }

  .watch-visual {
    width: 94%;
    height: 92%;
    max-width: 760px;
    max-height: 810px;
  }

  .wallet-visual {
    width: 93%;
    height: 91%;
    max-width: 740px;
    max-height: 790px;
  }

  .scene-copy {
    left: clamp(78px, 7.2vw, 138px);
    width: min(41vw, 680px);
  }

  .scene-copy h2 {
    font-size: clamp(112px, 9.2vw, 164px);
  }

  .scene-lead {
    margin-top: 30px;
    font-size: clamp(27px, 2vw, 34px);
  }

  .scene-body {
    max-width: 590px;
    font-size: 15px;
    line-height: 1.72;
  }

  .text-link {
    margin-top: 28px;
    font-size: 11.5px;
  }

  .product-light {
    width: 42vw;
    height: 66vh;
    left: 66.5%;
  }
}

/* 1920px / 2K-class desktop */
@media (min-width: 1920px) and (max-width: 2559px) {
  .product-anchor {
    width: min(43vw, 880px);
    height: min(82vh, 920px);
  }

  .jewellery-visual {
    width: 93%;
    height: 95%;
    max-width: 780px;
    max-height: 870px;
  }

  .watch-visual {
    width: 95%;
    height: 93%;
    max-width: 820px;
    max-height: 860px;
  }

  .wallet-visual {
    width: 94%;
    height: 92%;
    max-width: 800px;
    max-height: 840px;
  }

  .scene-copy {
    left: clamp(96px, 7vw, 156px);
    width: min(40vw, 720px);
  }

  .scene-copy h2 {
    font-size: clamp(126px, 8.8vw, 172px);
  }

  .scene-lead {
    margin-top: 32px;
    font-size: clamp(29px, 1.85vw, 36px);
  }

  .scene-body {
    max-width: 620px;
    font-size: 15.5px;
    line-height: 1.72;
  }

  .text-link {
    margin-top: 30px;
    font-size: 12px;
  }

  .product-light {
    width: 43vw;
    height: 68vh;
    left: 67%;
  }
}

/* Ultra-wide / 2560px+ — larger, but deliberately capped */
@media (min-width: 2560px) {
  .product-anchor {
    width: min(40vw, 960px);
    height: min(80vh, 980px);
  }

  .jewellery-visual {
    width: 92%;
    height: 94%;
    max-width: 840px;
    max-height: 920px;
  }

  .watch-visual {
    width: 94%;
    height: 92%;
    max-width: 880px;
    max-height: 920px;
  }

  .wallet-visual {
    width: 93%;
    height: 91%;
    max-width: 860px;
    max-height: 900px;
  }

  .scene-copy {
    left: max(130px, calc((100vw - 2400px) / 2 + 110px));
    width: min(36vw, 760px);
  }

  .scene-copy h2 {
    font-size: clamp(148px, 7vw, 184px);
  }

  .scene-lead {
    font-size: clamp(31px, 1.55vw, 38px);
  }

  .scene-body {
    max-width: 650px;
    font-size: 16px;
  }

  .product-light {
    width: 40vw;
    height: 66vh;
    left: 67%;
  }
}

/* Large monitors with reduced browser height: keep the larger desktop
   presence without allowing the visual to clip vertically. */
@media (min-width: 1400px) and (max-height: 820px) {
  .product-anchor {
    height: 72vh;
  }

  .jewellery-visual,
  .watch-visual,
  .wallet-visual {
    height: 88%;
  }

  .scene-copy {
    top: 54%;
  }

  .scene-lead {
    margin-top: 22px;
  }

  .scene-body {
    margin-top: 14px;
  }
}

/* =========================================================
   RECONSTRUCTED PREMIUM V12 — JEWELLERY-ONLY LIGHT FOCUS
   Golden Lily-inspired lighting treatment: the model remains
   deliberately shadowed while the jewellery carries the light.
   ========================================================= */
.product-scene[data-scene="jewellery"] .product-light {
  /* Remove the old broad body spotlight. The selective lighting
     is baked into the transparent jewellery portrait itself. */
  background: transparent !important;
  filter: none !important;
  box-shadow: none !important;
}

.product-scene[data-scene="jewellery"] .jewellery-visual {
  /* Keep the portrait deep and cinematic; jewellery highlights
     remain crisp because they are isolated in the source asset. */
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.46));
}

/* A restrained gemstone aura only — never a full-model wash. */
.product-scene[data-scene="jewellery"]::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: 69%;
  top: 55%;
  width: min(18vw, 280px);
  height: min(26vh, 250px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(239,224,183,.11) 0%, rgba(168,120,185,.08) 24%, transparent 66%);
  filter: blur(18px);
  opacity: .46;
  mix-blend-mode: screen;
}

@media (max-width: 980px) {
  .product-scene[data-scene="jewellery"]::after {
    left: 63%;
    top: 43%;
    width: min(26vw, 220px);
    height: min(22vh, 190px);
    opacity: .38;
  }
}

@media (max-width: 700px) {
  .product-scene[data-scene="jewellery"]::after {
    left: 54%;
    top: 34%;
    width: 34vw;
    height: 18vh;
    opacity: .34;
  }
}
