@font-face {
  font-family: "Avenir55Roman";
  src: url("/fonts/Avenir55Roman_normal_normal.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}


html {
  font-family: "Avenir55Roman", Arial, sans-serif;
}

/* Ensure form controls inherit too */
body, button, input, select, textarea {
  font-family: inherit;
}

/* Make everything inherit (so component rules don’t fight it) */
*,
*::before,
*::after {
  font-family: inherit;
}



/* ==================== FIRST SECTION: Hero with video & timed overlay ==================== */
/* Tweak these two variables to change height quickly */
.hero-first {
  --hero-height: 85vh;
  /* lower this to reduce height (e.g., 70vh, 60vh) */
  --hero-max-height: 900px;
  /* optional cap; lower to shrink further */

  position: relative;
  height: min(var(--hero-height), var(--hero-max-height));
  min-height: 60vh;
  overflow: hidden;
  display: block;
  isolation: isolate;
}

/* Background video */
.hero-first__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.9);
  z-index: 1;
}

/* Soft dark overlay for readability */
.hero-first::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .20) 0%,
      rgba(0, 0, 0, .33) 60%,
      rgba(0, 0, 0, .45) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Overlay text container */
.hero-first__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 1rem;
  z-index: 3;
  /* 2s total: slide in, hold ~1.4s, slide out & hide */
  animation: hero-reveal-then-hide 2s ease-in-out forwards;
  pointer-events: none;
}

/* Heading styles */
.hero-first__heading {
  color: #fff;
  line-height: 1.08;
  font-weight: 700;
  text-shadow: 0 12px 38px rgba(0, 0, 0, .45);
  /* font-family: Georgia, "Times New Roman", serif; */
  font-family: "Avenir55Roman", Arial, sans-serif;

}

.hero-first__line {
  display: block;
  font-size: clamp(28px, 6.6vw, 86px);
}

.hero-first__line--mid {
  margin: .2em 0 .1em;
  font-size: clamp(24px, 5.8vw, 72px);
}

/* Decorative arrow (no click) */
.hero-first__arrow {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  font-size: 28px;
  opacity: .9;
  animation: hero-arrow-bob 2.4s ease-in-out infinite;
}

/* Keyframes */
@keyframes hero-reveal-then-hide {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  15% {
    opacity: 1;
    transform: translateY(0);
  }

  85% {
    opacity: 1;
    transform: translateY(0);
  }

  /* stays visible */
  100% {
    opacity: 0;
    transform: translateY(-70px);
    visibility: hidden;
  }
}

@keyframes hero-arrow-bob {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-first__overlay {
    animation: none;
  }

  .hero-first__arrow {
    animation: none;
  }
}

/* Optional: a “short” variant you can toggle via class */
.hero-first.hero-first--short {
  --hero-height: 60vh;
  --hero-max-height: 640px;
}











/* ==================== SECOND SECTION ==================== */
.claim-second {
  /* ↓ section height */
  --section-py: 45px;

  /* ================== CHANGE HERE ==================
     Control the logo size (right badge image).
     Set a fixed width (e.g., 280px) or keep this responsive clamp.
     Examples:
       --badge-width: 220px;
       --badge-width: clamp(200px, 18vw, 340px);
  =================================================== */
  --badge-width: clamp(220px, 18vw, 340px);

  padding-block: var(--section-py);
  color: #111;
  font-family: "Avenir55Roman", Arial, sans-serif;
}

/* layout */
.claim-second__wrap {
  max-width: 100%;
  padding-inline: clamp(12px, 8vw, 90px); /* X padding */
  display: flex;                           /* FLEXBOX */
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(5px, 1vw, 5px);
}

/* --- Desktop widths: 50% / 25% / 25% --- */
@media (min-width: 992px) {
  .claim-second__title { 
    /* border: 1px solid red; */

    flex: 0 0 40%; max-width: 40%; }
  .claim-second__copy  { 
    /* border: 1px solid red; */

    flex: 0 0 30%; max-width: 30%; }
  .claim-second__badge { 
    /* border: 1px solid red; */
    flex: 0 0 25%; max-width: 25%; justify-content: flex-end; }
}

/* Title */
.claim-second__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Avenir55Roman", Arial, sans-serif;
  font-size: clamp(24px, 3.2vw, 58px);
}

/* Paragraph with “word gapping” */
.claim-second__copy {
  margin: 0;
  font-weight: 400;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.3;
  word-spacing: .08em;
  letter-spacing: .03em;
  color: #222;
  min-width: 18ch; /* keeps it readable in the 25% column */
}

/* Badge container */
.claim-second__badge {
  display: flex;
  align-items: center;
}

/* ---------- LOGO IMAGE: made flexible ---------- */
/* OLD (remove/overwrite): width: 192px; height: 102px; object-fit: contain; */
/* NEW: scales by --badge-width while keeping aspect ratio */
.claim-second__badge img{
  width: var(--badge-width);
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain; /* change to 'cover' if you ever want to crop instead */
  transform: translateY(-26px)
}

/* ---------- Scroll-in animation (no hiding by default) ---------- */
@keyframes revealUp{
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-up{ will-change: transform, opacity; }
.reveal-up.run{
  animation: revealUp .7s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* Stack on small screens */
@media (max-width: 991.98px){
  .claim-second__wrap{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  .reveal-up{ animation: none !important; }
}












/* ==================== SECTION 3 — Product line / Carousel (NO HOVER EFFECTS) ==================== */
/* ---------- Theme knobs ---------- */
.products-third {
  --media-h: 260px;
  --surface: #f3f4f5;
  --card-bg: #ffffff;
  --ink: #101315;
  --muted: #5b6065;
  --radius: 18px;
  --pad-x: clamp(20px, 6vw, 48px);
  --pad-y: 26px;
}

.products-third {
  background: var(--surface);
  padding: var(--pad-y) 0;
  /* font-family: Georgia, "Times New Roman", serif; */
  font-family: "Avenir55Roman", Arial, sans-serif;
  color: var(--ink);
}

/* ---------- Top row ---------- */
.products-third__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: 12px;
}
.products-third__heading {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
}
.products-third__heading em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}
.products-third__nav { display: flex; gap: 10px; }
.products-third__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(16,19,21,.18);
  background: #fff; color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.products-third__arrow:hover { background: #eceff1; transform: translateY(-1px); }

/* ---------- Scroller (hidden scrollbar) ---------- */
.products-third__scroller{
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--pad-x);
  padding-inline: var(--pad-x); padding-block: 10px 18px;
  max-width: 1420px; margin-inline: auto;
  touch-action: auto; overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.products-third__scroller::-webkit-scrollbar{ width:0; height:0; }

/* ---------- Card ---------- */
.product-card{
  background: var(--card-bg);
  border-radius: var(--radius);
  min-width: clamp(320px, 36vw, 420px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 12px 28px rgba(0,0,0,.08);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}

/* ==================== IMAGE-ONLY MEDIA AREA (no padding/border/whitespace) ==================== */
.product-card__media{
  /* CHANGED: remove padding/background so image touches edges */
  background: transparent;            /* was: #f7f7f7 */
  padding: 0;                          /* was: 18px 20px */
  height: var(--media-h);
  display: block;                      /* was: grid */
}

.product-card__frame{
  /* Make the frame just a plain container that fills media area */
  width: 100%;                         /* was: clamp(220px, 76%, 360px) */
  height: 100%;                        /* replaces aspect-box sizing */
  display: block;                      /* was: grid */
  background: transparent;             /* was: #fff */
  border: 0;                           /* was: 6px solid #e9ecef */
  box-shadow: none;                    /* was: inner/outer shadows */
  margin: 0; padding: 0;
  overflow: hidden;                    /* clip if image overflows */
  border-radius: 0;                    /* no rounding inside media */
}

.product-card__frame img{
  width: 100%;                         /* was: 88% */
  height: 100%;                        /* was: 88% */
  object-fit: cover;                   /* was: contain */
  display: block;                      /* eliminates inline-gap */
}

/* ---------- Body ---------- */
.product-card__body{ padding: 20px clamp(18px, 2.6vw, 28px) 22px; }
.product-card__title{ margin: 0 0 14px; font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
.product-card__cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }

/* Specs */
.product-card__specs{
  list-style: none; margin: 10px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px 28px; color: var(--muted); font-size: 13px;
}
.product-card__specs li{ border-top: 1px solid rgba(0,0,0,.08); padding-top: 10px; }
.product-card__specs span{ display:block; color:#1e2327; font-weight:600; font-size:12px; }

/* ==================== Buttons (STATIC — no hover effects) ==================== */
.btn{
  position: relative; display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:12px 20px; border-radius:999px; font-size:14px; line-height:1;
  border:1.4px solid var(--ink); text-decoration:none; cursor:pointer; user-select:none;
  transition:none; transform:none; box-shadow:none;
}
.btn__icon{ flex:0 0 auto; }
.btn *{ color:inherit; }
.btn svg path{ stroke:currentColor; fill:currentColor; }

/* Solid black button */
.btn.btn-fill{
  background: var(--ink);
  color:#fff !important;
  border-color: var(--ink);
}
.btn.btn-fill:hover,
.btn.btn-fill:focus,
.btn.btn-fill:active{
  background: var(--ink) !important;
  color:#fff !important;
  border-color: var(--ink) !important;
  text-decoration:none;
}

/* White button */
.btn.btn-ghost{
  background:#fff;
  color:var(--ink) !important;
  border-color:var(--ink);
}
.btn.btn-ghost:hover,
.btn.btn-ghost:focus,
.btn.btn-ghost:active{
  background:#fff !important;
  color:var(--ink) !important;
  border-color:var(--ink) !important;
  text-decoration:none;
}

/* ==================== Reveal-on-scroll (cards + CTAs) ==================== */
@keyframes revealUp{
  from{ opacity:0; transform:translateY(40px); }
  to  { opacity:1; transform:translateY(0); }
}
.reveal-up{ will-change: transform, opacity; }
.reveal-up.run{ animation: revealUp .66s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--delay,0s); }

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .product-card__specs{ grid-template-columns: 1fr; }
  .products-third{ --media-h: 220px; }
}










/* ==================== FOURTH SECTION: Insights / Stories ==================== */
.insights-fourth {
  --bg: white;
  /* section background like screenshot */
  --ink: #141312;
  /* text color */
  --muted: #6a6057;
  /* muted text */
  --radius: 18px;
  /* card radius */
  --gap: clamp(18px, 2.6vw, 36px);
  /* grid gap */
  --pad-x: clamp(20px, 5vw, 52px);
  --pad-y: clamp(36px, 6vw, 72px);
  /* font-family: Georgia, "Times New Roman", serif; */
  font-family: "Avenir55Roman", Arial, sans-serif;

  color: var(--ink);
  background: var(--bg);
  padding: var(--pad-y) 0;
}

/* --- Top row --- */
.insights-fourth__top {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  align-items: start;
  gap: var(--gap);
  margin-bottom: clamp(18px, 3vw, 28px);
}

.insights-fourth__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.2;
  /* font-family: contane; */
  font-family: "Avenir55Roman", Arial, sans-serif;


}

.insights-fourth__intro p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
}

.insights-fourth__viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* --- Grid: left hero + right list --- */
.insights-fourth__grid {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap);
}

/* ===== Hero card ===== */
.hero-post {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.hero-post__media {
  position: relative;
  display: block;
  isolation: isolate;
  min-height: clamp(360px, 42vw, 520px);
  color: #fff;
  text-decoration: none;
}

.hero-post__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  z-index: 1;
}

.hero-post__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 55%, rgba(0, 0, 0, .1) 100%);
  z-index: 2;
}

/* content overlay */
.hero-post__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: clamp(18px, 3.2vw, 28px);
}

.meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 14px;
}

.meta--muted {
  color: var(--muted);
  font-weight: 600;
}

.meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta svg {
  color: currentColor;
}

.hero-post__heading {
  margin: 10px 0 0;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.25;
  font-weight: 700;
  transform: translateY(0);
  transition: transform .35s ease;
}

.hero-post__excerpt {
  margin: 10px 0 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition: opacity .35s ease, transform .35s ease, max-height .35s ease;
}

.hero-post__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}

/* Hover/focus reveal for hero card */
@media (hover:hover) {

  .hero-post__media:hover .hero-post__heading,
  .hero-post__media:focus-within .hero-post__heading {
    transform: translateY(-6px);
  }

  .hero-post__media:hover .hero-post__excerpt,
  .hero-post__media:focus-within .hero-post__excerpt {
    opacity: 1;
    transform: translateY(0);
    max-height: 220px;
  }

  .hero-post__media:hover .hero-post__more,
  .hero-post__media:focus-within .hero-post__more {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Side posts ===== */
.side-posts {
  display: grid;
  gap: var(--gap);
}

.side-post {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.side-post__media {
  display: block;
  width: 130px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.side-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .side-post__content{} */
.side-post__title {
  margin: 8px 0 6px;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.25;
}

.side-post__excerpt {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
}

.side-post__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* ===== Reveal-on-scroll (same pattern as earlier) ===== */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
}

.js-inview-section.is-inview .reveal-up {
  animation: revealUp .6s ease forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .hero-post__heading,
  .hero-post__excerpt,
  .hero-post__more {
    transition: none;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .insights-fourth__top {
    grid-template-columns: 1fr;
  }

  .insights-fourth__grid {
    grid-template-columns: 1fr;
  }
}















/* ==================== FIFTH SECTION: Room Showcase + Product ==================== */
.showcase-fifth {
  --bg: black;                 /* section bg */
  --panel: #ffffff;            /* panel bg (unchanged) */
  --ink: #0f1a1c;              /* panel text color */
  --ink-soft: #1d2b2e;         /* title shadow tone */
  --radius: 18px;
  --gap: clamp(18px, 2.6vw, 32px);
  --pad-x: clamp(20px, 5vw, 56px);
  --pad-y: clamp(32px, 6vw, 72px);
  font-family: "Avenir55Roman", Arial, sans-serif;

  background: var(--bg);
  color: #f4f9f9;
  padding: var(--pad-y) 0;
}

.showcase-fifth__header {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.showcase-fifth__title {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.15;
  text-shadow: 0 1px 0 var(--ink-soft);
  font-family: "Avenir55Roman", Arial, sans-serif;
}

/* Layout */
.showcase-fifth__grid {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 0.68fr; /* left big, right panel */
  gap: var(--gap);
  align-items: stretch;
}

/* ---- Left big image card ---- */
.showcase-room {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1f22;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  min-height: clamp(238px, 33.6vw, 392px); /* 70% of previous values */
}
.showcase-room img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.95) contrast(1.02);
}
.showcase-room::after {
  /* soft inner shadow for depth */
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -120px 140px rgba(0, 0, 0, .35);
  pointer-events: none;
}

/* hotspots (decorative) */
.hotspot {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 45%, rgba(255, 255, 255, .85) 46% 100%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
  opacity: .95;
}
.hotspot::after {
  /* gentle pulse */
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, .45);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.12); opacity: .2; }
}
/* approximate positions */
.hotspot--a { left: 44%; top: 48%; }
.hotspot--b { left: 60%; top: 35%; }
.hotspot--c { left: 29%; top: 67%; }

/* ---- Right product panel ---- */
.product-panel {
  background: var(--panel);
  color: var(--ink);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
  padding: clamp(22px, 3.2vw, 40px);
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: center;
  justify-items: start;
  gap: clamp(12px, 2vw, 20px);
}

/* ==================== RIGHT IMAGE CARD — IMAGE ONLY (NO WHITE SPACE) ==================== */
.product-panel__artframe{
  /* SIZE */
  width: 100%;                      /* CHANGED: was 220px */
  /* height auto + aspect keeps shape; adjust ratio if needed */
  aspect-ratio: 22 / 14;            /* NEW: replaces fixed height 140px */

  /* REMOVE any whitespace/decoration */
  border: 0;                        /* CHANGED: was 10px solid #f3f5f6 */
  background: transparent;       /* CHANGED: was #fff */
  box-shadow: none;                 /* CHANGED: was 0 20px 22px rgba(...) */
  margin: 0;                        /* CHANGED: was margin-inline: auto; */
  padding: 0;                       /* NEW */
  overflow: hidden;                 /* NEW: clip edges to the card */
  border-radius: 0;                 /* CHANGED: remove rounded edges on the card (set >0 if you want rounding) */

  /* LAYOUT */
  display: block;                   /* CHANGED: was display: grid; place-items: center; */
}

.product-panel__artframe img{
  width: 100%;                      /* CHANGED: was 88% */
  height: 100%;                     /* CHANGED: was 88% */
  object-fit: cover;                /* CHANGED: was contain */
  display: block;                   /* unchanged */
  margin: 0;                        /* NEW: ensure no default margins */
  padding: 0;                       /* NEW */
}

/* Name/Price/Button (unchanged) */
.product-panel__name {
  margin: 6px 0 0;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
}
.product-panel__price {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
}
/* Button (static) */
.product-panel__btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0e1f22;
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  border: 1px solid #0e1f22;
}

/* ---- Reveal-on-scroll (same feel as Section 4) ---- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-up { opacity: 0; transform: translateY(32px); }
.js-inview-section.is-inview .reveal-up { animation: revealUp .6s ease forwards; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; animation: none !important; }
  .hotspot::after { animation: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .showcase-fifth__grid { grid-template-columns: 1fr; }
  .product-panel { justify-items: stretch; }
  .product-panel__artframe { aspect-ratio: 22 / 14; } /* keep ratio on mobile */
}
















/* ==================== SIXTH SECTION — Big Poster Hero (EDGE-TO-EDGE) ==================== */
.bigpost-sixth {
  /* Adjust hero height as needed */
  --hero-h: clamp(720px, 144vh, 1360px);
  /* 2× each value */

  /* font-family: Georgia, "Times New Roman", serif; */
  font-family: "Avenir55Roman", Arial, sans-serif;


  /* Edge-to-edge: remove any Y/X padding and break out of centered wrappers */
  padding: 0;
  /* removed previous padding */

}

/* Wrapper holds the visual but adds NO extra spacing */
.bigpost-card {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

/* Spacer defines the hero height (no rounded corners) */
.bigpost-card::before {
  content: "";
  display: block;
  height: var(--hero-h);
}

/* Image fills the section completely — no radius, no box-shadow */
.bigpost-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--hero-h);
  object-fit: cover;
  border-radius: 0;
  /* removed rounded corners */
  box-shadow: none;
  /* removed card shadow */
  filter: brightness(.85);
  z-index: 1;
}

/* Soft overlay for text readability — also edge-to-edge and square corners */
.bigpost-card__shade {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, .35) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Centered caption (edge-to-edge inset) */
.bigpost-caption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  /* tiny inner safety to avoid text clipping */
}

.bigpost-caption h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(26px, 4.8vw, 56px);
  text-shadow: 0 18px 40px rgba(0, 0, 0, .45), 0 2px 0 rgba(0, 0, 0, .35);
}

/* ==== Reveal-on-scroll (same feel as your other sections) ==== */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
}

.js-inview-section.is-inview .reveal-up {
  animation: revealUp .65s ease forwards;
}

.delay-2 {
  animation-delay: .12s;
}

/* small stagger for the heading */

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}







/* ==================== SEVENTH SECTION: Three Pillars (exact size + type) ==================== */
.pillars-seventh {
  /* exact screenshot size */
  --section-w: 1895px;
  /* screenshot width */
  --section-h: 310px;
  /* screenshot height */

  /* typography tuned to screenshot */
  --title-size: 25px;
  --title-weight: 700;
  --title-letter: 0.03em;
  --title-word: 0.0em;
  --title-line: 1.18;

  --text-size: 16px;
  --text-line: 1.5;
  /* --text-letter: 0.01em; */
  --text-word: 0.01em;

  /* layout paddings similar to screenshot margins */
  --pad-x: 50px;
  /* left/right gutter */
  --col-gap: 88px;
  /* space between columns */

  /* width: var(--section-w); */
  height: var(--section-h);
  margin: 0 auto;
  background: #ffffff;
  color: #1f2326;
  /* use a modern clean sans stack like in the screenshot */
  /* font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
  font-family: "Avenir55Roman", Arial, sans-serif;

  display: grid;
  place-items: center;
  /* vertically centers the content like the screenshot */
}

.pillars-seventh__wrap {
  /* width: calc(var(--section-w) - var(--pad-x) * 2); */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--col-gap);
  align-items: start;
}

/* column */
.pillar {
  max-width: 530px;
}

/* headings */
.pillar__title {
  margin: 0 0 16px 0;
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  line-height: var(--title-line);
  letter-spacing: var(--title-letter);
  word-spacing: var(--title-word);
  color: #171a1c;
}

/* paragraphs */
.pillar__text {
  margin: 0;
  font-size: var(--text-size);
  line-height: var(--text-line);
  letter-spacing: var(--text-letter);
  word-spacing: var(--text-word);
  color: #363b3f;
}

/* ===== reveal-from-bottom (same feel as other sections) ===== */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
}

.js-inview-section.is-inview .reveal-up {
  animation: revealUp .6s ease forwards;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* ==================== 7th section – responsive width patch (ADD BELOW) ==================== */

/* Replaces the removed width with a flexible version that caps at screenshot width */
.pillars-seventh {
  /* ADDED: was `width: var(--section-w);` */
  width: 100%;
  max-width: var(--section-w);
  /* cap at 1895px */
  margin: 0 auto;
  /* keep centered */
}

/* Make inner wrap follow container width and keep side gutters */
.pillars-seventh__wrap {
  /* ADDED: was `width: calc(var(--section-w) - var(--pad-x) * 2);` */
  width: calc(100% - var(--pad-x) * 2);
  max-width: calc(var(--section-w) - var(--pad-x) * 2);
  margin: 0 auto;
}

/* ---------- Optional mobile tweak (ADD if needed) ----------
   If the fixed height clips content on small screens, use this. */
@media (max-width: 900px) {

  /* ADDED (optional): let height grow */
  .pillars-seventh {
    height: auto;
  }

  /* ADDED (optional): stack the three columns */
  .pillars-seventh__wrap {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}










/* ==================== EIGHTH SECTION: Mirrored layout of the 5th ==================== */
.showcase-eighth {
  --bg: black;
  /* same theme as 5th */
  --panel: #ffffff;
  --ink: #0f1a1c;
  --ink-soft: #1d2b2e;
  --radius: 18px;
  --gap: clamp(18px, 2.6vw, 32px);
  --pad-x: clamp(20px, 5vw, 56px);
  --pad-y: clamp(32px, 6vw, 72px);
  font-family: "Avenir55Roman", Arial, sans-serif;

  background: var(--bg);
  color: #f4f9f9;
  padding: var(--pad-y) 0;
}

/* HEADER (CHANGED: right-aligned text) */
.showcase-eighth__header {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  text-align: right;
  /* CHANGED from left to right */
}

.showcase-eighth__title {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.15;
  text-shadow: 0 1px 0 var(--ink-soft);
  font-family: "Avenir55Roman", Arial, sans-serif;
}

/* GRID (CHANGED: swapped column fractions) */
/* 5th was: grid-template-columns: 1.5fr 0.68fr; (big LEFT, small RIGHT)
   8th now: small LEFT, big RIGHT */
.showcase-eighth__grid {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 0.68fr 1.5fr;
  /* CHANGED (mirrored) */
  gap: var(--gap);
  align-items: stretch;
}

/* ==== Reuse SAME card styles from 5th (no changes below) ==== */

/* Room card (now on the RIGHT) */
.showcase-room {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1f22;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  min-height: clamp(238px, 33.6vw, 392px);
  /* from your patched 5th */
}

.showcase-room img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.95) contrast(1.02);
}

.showcase-room::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -120px 140px rgba(0, 0, 0, .35);
  pointer-events: none;
}

/* Hotspots (decorative) */
.hotspot {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 45%, rgba(255, 255, 255, .85) 46% 100%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
  opacity: .95;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, .45);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.12);
    opacity: .2;
  }
}

/* same approximate positions */
.hotspot--a {
  left: 44%;
  top: 48%;
}

.hotspot--b {
  left: 60%;
  top: 35%;
}

.hotspot--c {
  left: 29%;
  top: 67%;
}

/* Product panel (now on the LEFT) — same style reused */
.product-panel {
  background: var(--panel);
  color: var(--ink);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
  padding: clamp(22px, 3.2vw, 40px);
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: center;
  justify-items: start;
  gap: clamp(12px, 2vw, 20px);
}

.product-panel__artframe {
  width: 400px;
  height: 200px;
  border: 1px solid black;
  border-radius: 5px;
  /* background: #fff; */
  box-shadow: 0 20px 22px rgba(0, 0, 0, .18), 0 2px 0 rgba(0, 0, 0, .55) inset;
  /* display: grid; */
  /* place-items: center; */
  margin-inline: auto;
  
}

.product-panel__artframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-panel__name {
  /* margin: 6px 0 0; */
  margin-inline: auto;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
}

/* .product-panel__price {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
} */

.product-panel__btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0e1f22;
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  border: 1px solid #0e1f22;
  margin-inline: auto;
}

/* Reveal-on-scroll (same as other sections) */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
}

.js-inview-section.is-inview .reveal-up {
  animation: revealUp .6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hotspot::after {
    animation: none;
  }
}

/* Responsive stacking (same breakpoint as 5th) */
@media (max-width: 1024px) {
  .showcase-eighth__grid {
    grid-template-columns: 1fr;
  }

  .product-panel {
    justify-items: stretch;
  }

  .product-panel__artframe {
    margin-inline: 0;
  }

  .showcase-eighth__header {
    text-align: left;
  }

  /* optional: return to left on mobile */
}