/* ==================================================================
   VanOost Prism Concept — Stylesheet
   ================================================================== */

/* ==================== PRELOADER ==================== */
body.is-loading { overflow: hidden; }
body.is-loading > *:not(.preloader) { visibility: hidden; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #18181a 0%, #060607 70%);
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem;
}

.preloader-prism {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
}
.preloader-prism .ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 160px;
  margin-left: -1px;
  margin-top: -80px;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(212, 175, 55, 0.0) 30%,
    rgba(212, 175, 55, 0.55) 70%,
    rgba(243, 229, 171, 0.85) 100%
  );
  transform-origin: 50% 100%;
  filter: blur(0.4px);
  animation: prism-ray-fade 2.4s ease-in-out infinite;
}
.preloader-prism .ray-1 { transform: rotate(-40deg); animation-delay: 0s; }
.preloader-prism .ray-2 { transform: rotate(-20deg); animation-delay: 0.2s; }
.preloader-prism .ray-3 { transform: rotate(0deg);   animation-delay: 0.4s; }
.preloader-prism .ray-4 { transform: rotate(20deg);  animation-delay: 0.6s; }
.preloader-prism .ray-5 { transform: rotate(40deg);  animation-delay: 0.8s; }

@keyframes prism-ray-fade {
  0%, 100% { opacity: 0.05; height: 110px; }
  50%      { opacity: 1;    height: 170px; }
}

.preloader-logo {
  position: relative;
  width: 220px;
  max-width: 60vw;
  height: auto;
  opacity: 0;
  animation: logo-breathe 3.2s ease-in-out 0.15s infinite;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.25));
}
@keyframes logo-breathe {
  0%   { opacity: 0.55; transform: scale(0.985); }
  50%  { opacity: 1;    transform: scale(1.015); }
  100% { opacity: 0.55; transform: scale(0.985); }
}

.preloader-eyebrow {
  position: relative;
  font-family: 'Aptos Light', 'Aptos', 'Segoe UI Light', 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  padding-left: 0.6em;
  margin-top: 0.2rem;
}

.preloader-bar {
  position: relative;
  width: 180px;
  max-width: 50vw;
  height: 1px;
  background: rgba(212, 175, 55, 0.18);
  overflow: hidden;
  margin-top: 0.4rem;
}
.preloader-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0) 0%,
    var(--gold) 50%,
    var(--gold-light) 100%
  );
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .preloader-prism .ray,
  .preloader-logo { animation: none; }
  .preloader-logo { opacity: 1; }
}

@media print {
  .preloader { display: none !important; }
  body.is-loading > * { visibility: visible !important; }
}


@font-face {
  font-family: 'Aptos Light';
  src: local('Aptos Light'), local('Aptos-Light');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #0B0B0C;
  --bg-darker: #060607;
  --bg-card: #141416;
  --bg-cream: #f4f1ec;
  --text-cream: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-deep: #8C7853;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; background: var(--bg-dark); color: var(--text-cream); }

body {
  font-family: 'Aptos Light', 'Aptos', 'Segoe UI Light', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection { background: var(--gold); color: var(--bg-dark); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

h1, h2, h3, h4 {
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-cream);
}
p { font-weight: 300; line-height: 1.8; letter-spacing: 0.03em; }

/* Logo helpers (img-based, CORS-safe) */
.logo-white { filter: brightness(0) invert(1); }

/* ==================== HEADER + NAV ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  transition: var(--transition);
}
.site-header.scrolled { padding: 0.9rem 1.5rem; }
.nav-wrap { position: relative; pointer-events: auto; }

.nav-trigger {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.1rem 0 1.2rem;
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 30px;
  color: var(--text-cream);
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.nav-trigger:hover,
.nav-wrap.open .nav-trigger {
  background: rgba(11, 11, 12, 0.78);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}
.nav-trigger .logo-mark {
  width: 112px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
}
.nav-trigger .chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.4s ease;
  margin-left: -2px;
}
.nav-wrap.open .nav-trigger .chevron {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 240px;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 0.6rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav-wrap.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease, padding 0.2s ease;
  border-left: 2px solid transparent;
}
.nav-dropdown a::before {
  content: '';
  width: 4px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  transition: width 0.2s ease, opacity 0.2s ease;
}
.nav-dropdown a:hover {
  color: var(--gold);
  padding-left: 1.6rem;
  border-left-color: var(--gold);
}
.nav-dropdown a:hover::before { width: 12px; opacity: 1; }

/* ==================== HERO + STORY ==================== */
.hero, .story {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero .bg, .story .bg {
  grid-row: 1 / -1;
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transform: scale(1.04);
}

/* Hero photo reveals from B&W to colour on page load */
@keyframes heroColorReveal {
  0%   { filter: grayscale(1) brightness(0.88) contrast(1.05); }
  100% { filter: grayscale(0) brightness(1)    contrast(1); }
}
.hero .bg {
  animation: heroColorReveal 7s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero .bg { animation: none; filter: none; }
}
.hero .bg.left, .story .bg.left { object-position: 18% center; }
.story .bg.right { object-position: 80% center; }
.story .bg.bottom-right { object-position: right bottom; }
.story .bg.bottom-center { object-position: center bottom; }

/* Mirror the photo horizontally */
.story.mirror .bg { transform: scale(-1.04, 1.04); }

/* Optional large logo watermark over a story photo's empty area */
.story .story-logo { display: none; }
.story.logo-field .story-logo {
  display: block;
  position: absolute;
  top: clamp(1.5rem, 6vh, 4rem);
  left: 50%;
  width: min(94vw, 1180px);
  height: auto;
  z-index: 2;
  opacity: 0.6;
  filter: brightness(0) invert(1) drop-shadow(0 18px 42px rgba(0, 0, 0, 0.65));
  transform: translateX(-50%);
  pointer-events: none;
}

.hero .scrim, .story .scrim {
  grid-row: 1 / -1;
  grid-column: 1 / -1;
  z-index: 1;
  pointer-events: none;
}
.scrim-left   { background: linear-gradient(90deg,  rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.45) 35%, rgba(11,11,12,0.05) 65%); }
.scrim-right  { background: linear-gradient(270deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.45) 35%, rgba(11,11,12,0.05) 65%); }
.scrim-rightL { background: linear-gradient(270deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.25) 35%, rgba(255,255,255,0) 65%); }

/* Card */
.hero-box, .story-card {
  z-index: 3;
  grid-row: 2;
  margin: 0 1.5rem;
  padding: 2rem 1.85rem;
  max-width: 30rem;
  background: rgba(11, 11, 12, 0.65);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-left: 2px solid var(--gold);
  color: var(--text-cream);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.story-card.light {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-left: 2px solid var(--gold-deep);
  color: var(--text-dark);
}
.story-card.light h2 { color: var(--text-dark); }
.story-card.light p { color: #374151; }
.story-card.light .eyebrow { color: var(--gold-deep); }

.hero.place-left .hero-box,
.story.place-left .story-card { grid-column: 1; justify-self: start; }
.hero.place-right .hero-box,
.story.place-right .story-card { grid-column: 2; justify-self: end; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-box h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.2em;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-box .subtitle {
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.65;
  opacity: 0.92;
}
.story-card h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  color: var(--gold);
}
.story-card p {
  font-size: clamp(0.93rem, 1.65vw, 1rem);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.story-card p:last-child { margin-bottom: 0; }

/* ==================== SIDE-BY-SIDE CARDS ==================== */
.side-section {
  background: var(--bg-dark);
  padding: 5rem 1.5rem 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.side-section.light-bg {
  background: var(--bg-cream);
  border-bottom-color: rgba(0,0,0,0.06);
}
.side-section .watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: min(80%, 900px);
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.section-intro {
  position: relative;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
  z-index: 1;
}
.section-intro .eyebrow { color: var(--gold); margin-bottom: 0.9rem; }
.side-section.light-bg .section-intro .eyebrow { color: var(--gold-deep); }
.section-intro h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.side-section.light-bg .section-intro h2 { color: var(--gold-deep); }
.section-intro p {
  font-size: clamp(0.93rem, 1.6vw, 1rem);
  color: var(--text-muted);
  line-height: 1.75;
}
.side-section.light-bg .section-intro p { color: #374151; }

.side-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .side-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.side-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.side-section.light-bg .side-card {
  background: #fff;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.06);
}
.side-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.side-section.light-bg .side-card:hover { box-shadow: 0 30px 60px -15px rgba(0,0,0,0.2); }
.side-card .img-wrap {
  position: relative;
  width: 100%;
  padding-top: 120%;
  overflow: hidden;
}
.side-card .img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.side-card:hover .img-wrap img { transform: scale(1.05); }

/* Atelier section: always one in colour, the other B&W — swaps on hover */
#craftsmanship .side-card:nth-child(1) .img-wrap img { filter: none; }
#craftsmanship .side-card:nth-child(2) .img-wrap img { filter: grayscale(1) contrast(1.02); }
#craftsmanship .side-grid:has(.side-card:nth-child(2):hover) .side-card:nth-child(1) .img-wrap img {
  filter: grayscale(1) contrast(1.02);
}
#craftsmanship .side-grid:has(.side-card:nth-child(2):hover) .side-card:nth-child(2) .img-wrap img {
  filter: none;
}
.side-card .content {
  padding: 1.75rem 1.75rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.side-section.light-bg .side-card .content { border-top-color: rgba(0,0,0,0.06); }
.side-card h3 {
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.side-section.light-bg .side-card h3 { color: var(--gold-deep); }
.side-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.side-section.light-bg .side-card p { color: #374151; }

/* ==================== FEATURED MAGAZINE ==================== */
.featured {
  position: relative;
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.featured .watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: min(85%, 900px);
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.featured .inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}
.featured .eyebrow { color: var(--gold-deep); margin-bottom: 0.9rem; }
.featured h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.featured .ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 1.5rem;
  max-width: 18rem;
}
.featured .ornament::before, .featured .ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 50%, transparent 100%);
  opacity: 0.5;
}
.featured .ornament .mark {
  width: 22px;
  height: 14px;
  object-fit: contain;
  opacity: 0.85;
}
.featured .photo-wrap {
  position: relative;
  margin: 1.5rem 0 2rem;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 40px 80px -25px rgba(0,0,0,0.3);
}
.featured .photo-wrap::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  pointer-events: none;
}
.featured .photo-wrap img { display: block; width: 100%; }
.featured p {
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  line-height: 1.8;
  max-width: 38rem;
  margin: 0 auto;
  color: #374151;
}

/* ==================== INSPIRATION SPLIT ==================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-dark);
}
.split .visual {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}
.split .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.split .text {
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
}
.split .text .inner { max-width: 32rem; margin: 0 auto; }
.split .text .eyebrow { color: var(--gold); margin-bottom: 0.9rem; }
.split .text h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.split .text .rule {
  width: 40px; height: 1px; background: var(--gold);
  margin: 0 0 1.3rem; border: 0; opacity: 0.85;
}
.split .text p {
  font-size: clamp(0.93rem, 1.65vw, 1rem);
  line-height: 1.8;
  margin-bottom: 0.9rem;
  opacity: 0.92;
}
.split .text p:last-child { margin-bottom: 0; }
.split .text .quote { color: var(--gold-light); font-style: italic; opacity: 0.85; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 1fr; }
  .split .visual { min-height: 90vh; }
  .split .text { padding: 5rem 4rem; }
}

/* ==================== SPECS ==================== */
.specs-section {
  background: var(--bg-darker);
  padding: 5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.specs-section .watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: min(75%, 800px);
  transform: translate(-50%, -50%);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.specs-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .specs-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.specs-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.5;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
}
.specs-visual img { width: 100%; height: 100%; object-fit: cover; }
.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  gap: 1.5rem;
}
.specs-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.specs-value {
  font-size: 0.92rem;
  text-align: right;
  color: var(--text-cream);
  line-height: 1.5;
}

/* ==================== GALLERY MOSAIC ==================== */
.gallery-section { background: var(--bg-dark); padding: 5rem 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 230px 230px 340px;
    grid-auto-rows: 340px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.big  { grid-column: span 2; grid-row: span 2; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  isolation: isolate;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-overlay {
  position: absolute; inset: -1px;
  background: linear-gradient(to top, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.2) 60%, rgba(11,11,12,0) 100%);
  opacity: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}
.gallery-item:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 0.95rem; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-overlay p { font-size: 0.8rem; color: var(--text-muted); }

/* ==================== CLOSING ==================== */
.closing {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-cream);
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 60%);
  pointer-events: none;
}
.closing .inner {
  position: relative;
  max-width: 38rem;
  margin: 0 auto;
}
.closing .eyebrow { color: var(--gold); margin-bottom: 0.9rem; }
.closing h2 {
  font-size: clamp(1.5rem, 3.3vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closing .rule { width: 40px; height: 1px; background: var(--gold); margin: 1.1rem auto 1.4rem; border: 0; }
.closing p {
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.92;
}
.closing .edition-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 2rem auto 1.8rem;
  max-width: 34rem;
}
.closing .edition {
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0.85rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}
.closing .edition strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.closing .edition span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ==================== MONDRIAAN TEASER ==================== */
.mondriaan-teaser {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: #f7f3ea;
  color: var(--text-dark);
}
.mondriaan-art {
  position: relative;
  min-height: 100%;
  background: #f7f3ea;
}
.mondriaan-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mondriaan-copy {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem);
  background:
    linear-gradient(90deg, rgba(247,243,234,0.94) 0%, rgba(247,243,234,0.86) 72%, rgba(247,243,234,0.72) 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(212,175,55,0.16) 58% 59%, transparent 59%);
}
.mondriaan-copy .inner { max-width: 34rem; }
.mondriaan-copy .eyebrow { color: var(--gold-deep); }
.mondriaan-copy h2 {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.mondriaan-copy p {
  color: #374151;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.8;
  max-width: 31rem;
}
.mondriaan-note {
  display: inline-flex;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(140, 120, 83, 0.32);
  color: var(--gold-deep);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ==================== ORNAMENT BREAK (between cream sections) ==================== */
.ornament-break {
  background: #f7f3ea;
  padding: clamp(2.5rem, 6vh, 4rem) 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.ornament-break::before,
.ornament-break::after {
  content: '';
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(140, 120, 83, 0.55) 50%, transparent 100%);
}
.ornament-break .ornament-mark {
  width: 64px;
  height: 18px;
  object-fit: contain;
  opacity: 0.7;
}

/* ==================== ORIGIN / PRISM 0001 (light, magazine-style) ==================== */
.origin-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7f3ea;
  color: var(--text-dark);
  padding: 5rem 1.5rem;
}
.origin-bg {
  position: absolute;
  top: -40px; left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
  filter: blur(18px) saturate(140%) brightness(1.08);
  transform: scale(1.06);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.origin-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247,243,234,0.55) 0%, rgba(247,243,234,0.82) 60%, rgba(247,243,234,0.92) 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(140,120,83,0.22) 58% 59%, transparent 59%);
  z-index: 1;
  pointer-events: none;
}
.origin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .origin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.origin-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(140, 120, 83, 0.32);
  box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.28);
}
.origin-visual::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  pointer-events: none;
  z-index: 2;
}
.origin-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.origin-card {
  position: relative;
  z-index: 2;
  max-width: 32rem;
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.6rem, 3.5vw, 2.4rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(140, 120, 83, 0.24);
  border-top: 2px solid var(--gold-deep);
  text-align: left;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.18);
}
.origin-card .serial {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0 0 0.7rem;
  border-bottom: 1px solid rgba(140, 120, 83, 0.4);
}
.origin-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 1.4rem 0;
  color: var(--gold-deep);
}
.origin-card .rule {
  width: 40px; height: 1px;
  background: var(--gold-deep);
  margin: 0 0 1.4rem;
  border: 0;
  opacity: 0.75;
}
.origin-card p {
  font-size: clamp(0.93rem, 1.65vw, 1rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1rem;
}
.origin-card p:last-of-type { margin-bottom: 0; }
.origin-link {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 120, 83, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.origin-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.origin-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(140, 120, 83, 0.32);
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.origin-meta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
  display: inline-block;
}

/* ==================== CONTACT ==================== */
.contact-section {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-cream);
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  overflow: hidden;
}
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.78) 52%, rgba(11,11,12,0.5) 100%),
    linear-gradient(135deg, transparent 0 64%, rgba(212,175,55,0.18) 64% 65%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.contact-watermark {
  position: absolute;
  right: -6vw;
  top: 50%;
  width: min(82vw, 980px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.42;
  pointer-events: none;
  z-index: 2;
}
.contact-section .inner {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.contact-section .eyebrow { color: var(--gold-deep); }
.contact-section h2 {
  color: var(--gold-light);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}
.contact-section .intro-copy {
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 25rem;
}
.contact-card {
  position: relative;
  border-left: 2px solid var(--gold);
  border-top: 1px solid rgba(212, 175, 55, 0.24);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: rgba(20, 20, 22, 0.72);
  box-shadow: 0 28px 70px -42px rgba(0, 0, 0, 0.9);
}
.contact-card .corner-logo {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 72px;
  height: 22px;
  object-fit: contain;
  opacity: 0.6;
}
.contact-name {
  color: var(--gold-light);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.contact-list {
  display: grid;
  gap: 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-item { display: grid; gap: 0.15rem; }
.contact-label {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.contact-list a {
  color: var(--gold-light);
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid rgba(140, 120, 83, 0.32);
}
.contact-list address { font-style: normal; color: var(--text-cream); }

/* ==================== FOOTER ==================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  color: var(--text-cream);
}
footer .footer-logo {
  width: 100px;
  height: 22px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}
footer .copy {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11, 11, 12, 0.98);
  z-index: 1000;
  display: none;
  justify-content: center; align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content {
  max-width: 92%; max-height: 88%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
}
.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  background: transparent;
  border: none;
  color: var(--text-cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }

/* ==================== MOBILE (no empty blocks) ==================== */
@media (max-width: 768px) {
  .hero, .story {
    min-height: auto !important;
    grid-template-rows: 55vh auto;
    grid-template-columns: 1fr;
  }
  .hero .bg, .story .bg {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100%;
    min-height: 55vh;
    object-fit: cover;
    transform: none !important;
    display: block;
  }
  .story.mirror .bg { transform: scaleX(-1) !important; }
  .hero .scrim, .story .scrim { grid-row: 1; }
  .hero-box, .story-card,
  .hero.place-left .hero-box, .hero.place-right .hero-box,
  .story.place-left .story-card, .story.place-right .story-card {
    grid-row: 2 !important;
    grid-column: 1 !important;
    justify-self: stretch !important;
    margin: 1rem;
    max-width: none;
    padding: 1.6rem 1.4rem;
  }
  .story.logo-field .story-logo {
    top: 1.5rem;
    width: min(88vw, 500px);
    opacity: 0.55;
  }

  .closing { padding: 2.5rem 1.25rem; }
  .closing .edition-list { grid-template-columns: 1fr; }

  .mondriaan-teaser {
    min-height: auto !important;
    grid-template-columns: 1fr;
  }
  .mondriaan-art {
    height: 54vh;
    min-height: 54vh;
    width: 100%;
  }
  .mondriaan-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .mondriaan-copy { padding: 3.5rem 1.25rem; }

  .origin-section { min-height: auto !important; padding: 4rem 1.25rem; }
  .origin-grid { gap: 1.75rem; }
  .origin-visual { aspect-ratio: 0.9; }
  .origin-card { padding: 1.8rem 1.4rem; max-width: none; }

  .contact-section { padding: 4rem 1.25rem; }
  .contact-section .inner { grid-template-columns: 1fr; }
  .contact-watermark {
    width: 120vw;
    right: -42vw;
    top: 30%;
    opacity: 0.14;
  }
  .contact-card { padding: 1.5rem; }

  .site-header { padding: 1rem; }
  .nav-trigger .logo-mark { width: 92px; height: 26px; }
  .nav-dropdown { min-width: 220px; }

  .side-section, .specs-section, .gallery-section, .featured {
    padding: 3.5rem 1.25rem;
  }

  .split { min-height: auto; }
  .split .visual {
    height: 45vh;
    min-height: 45vh;
    width: 100%;
  }
  .split .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ==================== PRINT — A4 PORTRAIT ==================== */
@media print {
  @page { size: A4 portrait; margin: 0; }

  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 210mm;
    background: var(--bg-dark) !important;
  }
  body { color: var(--text-cream); font-size: 9.5pt; line-height: 1.6; }

  .site-header, .lightbox, .gallery-overlay { display: none !important; }

  body > section, body > footer {
    width: 210mm !important;
    height: 297mm !important;
    max-height: 297mm !important;
    min-height: 297mm !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    page-break-after: always !important;
    break-after: page !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    position: relative;
    box-sizing: border-box;
  }
  body > section:last-of-type, body > footer:last-of-type {
    page-break-after: auto !important;
    break-after: auto !important;
  }

  /* Hero & story: photo top half + card bottom half */
  .hero, .story {
    grid-template-rows: 148mm 149mm !important;
    grid-template-columns: 1fr !important;
  }
  .hero .bg, .story .bg {
    grid-row: 1 !important;
    grid-column: 1 !important;
    width: 100% !important;
    height: 148mm !important;
    transform: none !important;
  }
  .story.mirror .bg { transform: scaleX(-1) !important; }
  .hero .scrim, .story .scrim { display: none !important; }
  .story.logo-field .story-logo { display: none !important; }
  .hero-box, .story-card {
    grid-row: 2 !important;
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    height: 149mm !important;
    margin: 0 !important;
    padding: 14mm 18mm !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--bg-dark) !important;
    border-left: none !important;
    border-top: 2px solid var(--gold) !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    box-shadow: none !important;
  }
  .story-card.light {
    background: var(--bg-cream) !important;
    border-top-color: var(--gold-deep) !important;
    color: var(--text-dark) !important;
  }
  .hero-box h1, .story-card h2 { font-size: 18pt !important; margin-bottom: 4mm !important; }
  .hero-box .subtitle, .story-card p { font-size: 9.5pt !important; }

  /* Side-section */
  .side-section {
    padding: 14mm 14mm !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
  }
  .section-intro { margin: 0 auto 8mm !important; max-width: 150mm !important; }
  .section-intro h2 { font-size: 16pt !important; margin-bottom: 4mm !important; }
  .section-intro p { font-size: 9pt !important; }
  .side-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8mm !important;
    max-width: none !important;
  }
  .side-card {
    box-shadow: none !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
    background: var(--bg-card) !important;
  }
  .side-section.light-bg .side-card { background: #fff !important; }
  .side-card .img-wrap { padding-top: 100% !important; }
  .side-card .content { padding: 8mm 7mm !important; border-top: 1px solid rgba(212,175,55,0.18) !important; }
  .side-card h3 { font-size: 11pt !important; margin-bottom: 3mm !important; }
  .side-card p { font-size: 8.5pt !important; line-height: 1.55 !important; }

  /* Featured */
  .featured {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .featured .inner { padding: 18mm !important; max-width: 180mm !important; }
  .featured h2 { font-size: 17pt !important; margin-bottom: 4mm !important; }
  .featured .ornament { margin: 0 auto 4mm !important; }
  .featured .photo-wrap {
    margin: 4mm 0 6mm !important;
    padding: 6px !important;
    box-shadow: none !important;
  }
  .featured .photo-wrap img { max-height: 145mm; width: 100%; object-fit: contain; }
  .featured p { font-size: 9.5pt !important; line-height: 1.6 !important; }

  /* Split inspiration */
  .split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 148mm 149mm !important;
  }
  .split .visual {
    min-height: auto !important;
    width: 100% !important;
    height: 148mm !important;
  }
  .split .visual img { transform: none !important; }
  .split .text {
    padding: 14mm 18mm !important;
    width: 100% !important;
    height: 149mm !important;
  }
  .split .text .inner { max-width: none !important; }
  .split .text h2 { font-size: 17pt !important; margin-bottom: 4mm !important; }
  .split .text p { font-size: 9.5pt !important; }

  /* Specs */
  .specs-section {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .specs-section .section-intro {
    position: absolute;
    top: 18mm; left: 0; right: 0;
    margin: 0 auto !important;
    max-width: 170mm !important;
  }
  .specs-grid {
    padding: 0 18mm !important;
    max-width: none !important;
    grid-template-columns: 1.05fr 1fr !important;
    gap: 10mm !important;
    align-items: center;
    margin-top: 25mm;
  }
  .specs-visual { box-shadow: none !important; aspect-ratio: 1.3 !important; }
  .specs-row { padding: 3mm 0 !important; }
  .specs-label { font-size: 8.5pt !important; }
  .specs-value { font-size: 9pt !important; }

  /* Gallery */
  .gallery-section {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .gallery-section .section-intro {
    position: absolute;
    top: 18mm; left: 0; right: 0;
    margin: 0 auto !important;
    max-width: 170mm !important;
  }
  .gallery-grid {
    padding: 0 14mm !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    grid-template-rows: 60mm 60mm 60mm !important;
    grid-auto-rows: 60mm !important;
    gap: 4mm !important;
    max-width: none !important;
    margin-top: 30mm !important;
  }
  .gallery-item {
    box-shadow: none !important;
    border: 1px solid rgba(212,175,55,0.18) !important;
  }
  .gallery-item.wide { grid-column: span 2 !important; grid-row: span 1 !important; }
  .gallery-item.tall { grid-row: span 2 !important; grid-column: span 1 !important; }
  .gallery-item.big  { grid-column: span 2 !important; grid-row: span 2 !important; }

  /* Closing */
  .closing {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .closing .inner { padding: 20mm !important; max-width: 160mm !important; }
  .closing h2 { font-size: 17pt !important; margin-bottom: 4mm !important; }
  .closing p { font-size: 9.5pt !important; }

  /* Mondriaan */
  .mondriaan-teaser {
    grid-template-columns: 1fr 1fr !important;
    min-height: 297mm !important;
  }
  .mondriaan-copy { padding: 14mm 12mm !important; }
  .mondriaan-copy h2 { font-size: 18pt !important; }
  .mondriaan-copy p { font-size: 9.5pt !important; }

  /* Origin / 0001 */
  .origin-section {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f7f3ea !important;
  }
  .origin-bg {
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    filter: blur(10px) brightness(1.05) saturate(140%) !important;
    opacity: 0.7 !important;
    transform: none !important;
  }
  .origin-grid {
    padding: 0 18mm !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10mm !important;
    max-width: none !important;
    align-items: center;
  }
  .origin-visual {
    aspect-ratio: 0.82 !important;
    padding: 5px !important;
    box-shadow: none !important;
    background: #fff !important;
  }
  .origin-card {
    padding: 14mm 12mm !important;
    max-width: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: none !important;
  }
  .origin-card h2 { font-size: 16pt !important; }
  .origin-card p { font-size: 9pt !important; }

  /* Contact */
  .contact-section {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .contact-section .inner {
    padding: 18mm !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12mm !important;
    max-width: 180mm !important;
  }

  /* Footer */
  footer {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    border-top: none !important;
  }
  footer .footer-logo { width: 80mm !important; height: 18mm !important; margin-bottom: 6mm !important; }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
