:root {
  --bg: #f6f0e7;
  --bg-soft: #fcf8f1;
  --surface: rgba(255, 250, 244, 0.78);
  --surface-strong: #fffaf4;
  --ink: #21170f;
  --muted: #6f5c4c;
  --line: rgba(55, 38, 24, 0.12);
  --gold: #d2a85c;
  --gold-soft: #f1ddbb;
  --bronze: #8c6641;
  --shadow: 0 18px 48px rgba(32, 17, 8, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Didot", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  --font-body: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210, 168, 92, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(135, 99, 64, 0.09), transparent 32%),
    linear-gradient(180deg, #f8f4ee 0%, #f3ede3 42%, #efe7db 100%);
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(244, 235, 222, 0.88));
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-kicker,
.eyebrow,
.about-kicker,
.story-meta,
.card-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

p {
  color: var(--muted);
}

strong {
  color: var(--ink);
}

ul {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary,
.btn.small.primary,
.btn.primary.small {
  background: linear-gradient(135deg, #edd3a0, var(--gold));
  color: #20140b;
  border-color: rgba(112, 75, 26, 0.08);
  box-shadow: 0 16px 28px rgba(154, 110, 42, 0.22);
}

.btn.primary:hover,
.btn.small.primary:hover,
.btn.primary.small:hover {
  background: linear-gradient(135deg, #f5dfb5, #c99849);
}

.btn.ghost,
.btn.small.ghost,
.btn.ghost.small {
  color: #f7ecdd;
  border-color: rgba(255, 243, 221, 0.34);
  background: rgba(17, 10, 5, 0.22);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover,
.btn.small.ghost:hover,
.btn.ghost.small:hover {
  color: #111;
  background: #f7ead1;
  border-color: #f7ead1;
}

.btn.small {
  min-height: 42px;
  padding: 0.75rem 1.1rem;
  font-size: 0.74rem;
}

.site-header {
  position: relative;
  z-index: 120;
  overflow: visible;
  background: rgba(16, 10, 5, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 241, 220, 0.08);
}

body:not(.home-page) .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 38px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(24, 16, 10, 0.76), rgba(24, 16, 10, 0));
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
}

.site-logo,
.logo {
  display: inline-flex;
  align-items: center;
  color: #fff3de;
}

.site-logo {
  position: relative;
  z-index: 3;
  padding: 0.1rem 0;
  margin: -0.35rem 0 -3.7rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-logo img {
  height: 160px;
  width: auto;
  opacity: 1;
  filter:
    drop-shadow(0 12px 18px rgba(34, 18, 4, 0.16))
    drop-shadow(0 0 10px rgba(255, 247, 232, 0.08));
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: rgba(255, 244, 229, 0.82);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #f4d8a7;
  opacity: 1;
}

.site-nav li.dropdown {
  position: relative;
}

.site-nav li.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.8rem;
}

.site-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 260px;
  margin-top: 0.35rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 240, 220, 0.12);
  border-radius: 18px;
  background: rgba(17, 10, 5, 0.96);
  box-shadow: var(--shadow);
  z-index: 200;
}

.site-nav .dropdown-menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.site-nav .dropdown-menu a:hover {
  background: rgba(255, 244, 229, 0.08);
}

.site-nav li.dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff2dd;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #120b05;
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-slider {
  position: relative;
  height: clamp(620px, 82vh, 920px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 4, 0.4), rgba(12, 8, 4, 0.18) 30%, rgba(12, 8, 4, 0.72) 100%),
    linear-gradient(90deg, rgba(12, 8, 4, 0.48), rgba(12, 8, 4, 0.06) 45%, rgba(12, 8, 4, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 8rem 0 7rem;
}

.hero-panel {
  position: relative;
  width: min(720px, 100%);
  padding: 8rem 2.2rem 2.2rem;
  border: 1px solid rgba(255, 243, 223, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(15, 10, 6, 0.35);
  backdrop-filter: blur(14px);
  color: #fff5e7;
  box-shadow: var(--shadow);
}

.hero-panel p,
.hero-panel .subtitle {
  color: rgba(255, 242, 226, 0.82);
}

.hero-icon-wrap {
  position: absolute;
  top: -112px;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  width: 290px;
  height: 180px;
  padding: 0.9rem 1rem;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 248, 234, 0.97), rgba(236, 207, 154, 0.9) 52%, rgba(97, 60, 20, 0.82) 100%);
  border: 1px solid rgba(245, 214, 160, 0.4);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 12px 20px rgba(73, 41, 9, 0.22));
}

.hero-content h1 {
  margin-bottom: 0.95rem;
}

.subtitle {
  max-width: 40rem;
  font-size: 1.02rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-dots {
  display: flex;
  gap: 0.55rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 239, 215, 0.35);
  transition: width 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

.hero-dots button.active {
  width: 24px;
  background: var(--gold);
}

.hero-play-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(210, 168, 92, 0.36);
  border-radius: 999px;
  background: rgba(17, 10, 5, 0.5);
  color: var(--gold-soft);
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(14, 8, 3, 0.18);
}

.hero-play-toggle:hover {
  background: rgba(247, 234, 209, 0.96);
  color: #8c6641;
  border-color: rgba(210, 168, 92, 0.78);
}

.hero-play-toggle-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.home-page .site-header {
  overflow: visible;
}

.home-page .header-inner {
  min-height: 96px;
}

.home-page .site-logo {
  margin: -0.8rem 0 -9rem;
}

.home-page .site-logo img {
  height: 280px;
  filter:
    drop-shadow(0 18px 28px rgba(34, 18, 4, 0.18))
    drop-shadow(0 0 12px rgba(255, 247, 232, 0.08));
}

.home-page .home-hero {
  margin-top: 0;
}

.home-page .hero-slider {
  height: clamp(720px, 88vh, 980px);
}

.home-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 8, 4, 0.22), rgba(12, 8, 4, 0.08) 36%, rgba(12, 8, 4, 0.38) 100%),
    linear-gradient(90deg, rgba(12, 8, 4, 0.18), rgba(12, 8, 4, 0) 42%, rgba(12, 8, 4, 0.18));
}

.home-page .hero-controls {
  bottom: 1.35rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.9rem 0 3.25rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(221, 189, 137, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(245, 236, 223, 0.9));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.page-hero p {
  max-width: 42rem;
  font-size: 1.02rem;
}

.page-hero .section-kicker {
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.page-hero > .container > h1 {
  margin-top: 0;
  color: var(--ink);
  max-width: 14ch;
}

.page-hero > .container > p {
  margin-top: 0.85rem;
  color: var(--muted);
  max-width: 46rem;
}

.page-hero-media {
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(116, 82, 43, 0.12);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-grid,
.two-column,
.about-hero-grid,
.contact-grid-2,
.feature-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.intro-copy > * + *,
.editorial-copy > * + *,
.feature-copy > * + * {
  margin-top: 1rem;
}

.intro-panel,
.editorial-panel,
.about-card,
.brand-card,
.contact-card,
.collector-note,
.pill-card,
.story-body,
.gallery-body,
.product-body,
.seal-panel,
.painting-intro {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.intro-panel,
.editorial-panel,
.collector-note,
.seal-panel,
.painting-intro {
  padding: 1.6rem;
}

.intro-list li,
.editorial-list li,
.contact-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.intro-list li + li,
.editorial-list li + li,
.contact-list li + li {
  margin-top: 0.75rem;
}

.intro-list li::before,
.editorial-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.signature-grid,
.product-grid,
.brand-grid,
.gallery-grid,
.about-cards,
.story-grid,
.painting-grid,
.mosaic-grid,
.detail-grid {
  display: grid;
  gap: 1.4rem;
}

.signature-grid,
.gallery-grid,
.about-cards,
.story-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-media,
.story-card > img,
.gallery-card > img,
.product-card > img,
.about-portrait,
.mosaic-card img,
.painting-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.signature-card,
.story-card,
.gallery-card,
.product-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.signature-card .card-media,
.story-card > img,
.gallery-card > img,
.product-card > img {
  aspect-ratio: 4 / 5;
}

.signature-card .card-body,
.gallery-body,
.story-body,
.product-body {
  padding: 1.35rem;
}

.signature-card .card-body p,
.gallery-body p,
.story-body p,
.product-body p {
  font-size: 0.95rem;
}

.signature-card .card-body > * + *,
.gallery-body > * + *,
.story-body > * + *,
.product-body > * + * {
  margin-top: 0.8rem;
}

.story-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.story-card > img,
.gallery-card > img,
.product-card > img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.focus-left {
  object-position: 16% center;
}

.focus-center {
  object-position: center;
}

.focus-right {
  object-position: 84% center;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0 1.35rem 1.35rem;
}

.product-footer .btn {
  flex-shrink: 0;
}

.price {
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-gigi {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 10, 6, 0.74);
  color: #f5e0b6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gigi-pick {
  position: relative;
}

.section-lead {
  max-width: 720px;
  margin-bottom: 1.8rem;
  font-size: 1rem;
}

.brand-card {
  padding: 1.4rem;
}

.brand-card p,
.seal-panel p,
.collector-note p {
  margin-top: 0.55rem;
}

.journal-banner,
.collector-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.journal-banner .card-media,
.collector-strip .card-media {
  min-height: 100%;
  aspect-ratio: 16 / 10;
}

.travel-note {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(28, 17, 9, 0.95), rgba(46, 30, 16, 0.9));
  color: #f9eedf;
  box-shadow: var(--shadow);
}

.travel-note p,
.travel-note li {
  color: rgba(249, 238, 223, 0.8);
}

.travel-note li {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 240, 220, 0.12);
}

.travel-note li:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-brand {
  padding: 2rem 0 0;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 2rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  min-width: 180px;
  padding: 1rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow);
}

.brand-chip-gigi {
  min-width: 250px;
  min-height: 170px;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-chip img {
  max-height: 82px;
  width: auto;
}

.brand-chip-gigi img {
  max-height: 142px;
  filter:
    drop-shadow(0 12px 24px rgba(43, 22, 4, 0.18))
    drop-shadow(0 0 12px rgba(255, 247, 232, 0.16));
}

.about-hero {
  padding-top: 2.5rem;
}

.about-hero-copy > * + * {
  margin-top: 1rem;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.about-stat {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(245, 233, 212, 0.82);
  border: 1px solid rgba(124, 92, 56, 0.1);
}

.about-stat-num {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-stat-label {
  color: var(--muted);
  font-size: 0.84rem;
}

.about-hero-media {
  text-align: center;
}

.about-portrait {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.about-video {
  margin: 1rem auto 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-caption {
  margin-top: 0.9rem;
  color: var(--bronze);
  font-size: 0.92rem;
  font-style: italic;
}

.about-card,
.pill-card {
  padding: 1.35rem;
}

.about-card > * + *,
.pill-card > * + * {
  margin-top: 0.7rem;
}

.about-seal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-logo,
.footer-logo {
  width: auto;
}

.about-logo {
  height: 214px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 18px 34px rgba(43, 22, 4, 0.18))
    drop-shadow(0 0 12px rgba(255, 247, 232, 0.12));
}

.footer-logo {
  height: 146px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 14px 28px rgba(43, 22, 4, 0.18))
    drop-shadow(0 0 10px rgba(255, 247, 232, 0.14));
  margin-bottom: 0.8rem;
}

.paintings-showcase {
  display: grid;
  gap: 1.2rem;
}

.mosaic-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mosaic-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.mosaic-card img {
  aspect-ratio: 4 / 5;
  transition: transform 0.22s ease;
}

.mosaic-card:hover img,
.painting-grid img:hover {
  transform: scale(1.03);
}

.painting-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.painting-grid img {
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.painting-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(10, 6, 3, 0.84);
  backdrop-filter: blur(10px);
}

.painting-lightbox[hidden] {
  display: none;
}

.painting-lightbox-frame {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 220, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  background: #120b05;
}

.painting-lightbox-image {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.painting-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: 1px solid rgba(255, 240, 220, 0.18);
  border-radius: 999px;
  background: rgba(18, 11, 5, 0.8);
  color: #fff0d6;
  padding: 0.8rem 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.painting-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 240, 220, 0.18);
  border-radius: 999px;
  background: rgba(18, 11, 5, 0.8);
  color: #fff0d6;
  padding: 0;
  cursor: pointer;
}

.painting-lightbox-nav::before {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.painting-lightbox-prev::before {
  content: "\2039";
}

.painting-lightbox-next::before {
  content: "\203A";
}

.painting-lightbox-prev {
  left: 1.25rem;
}

.painting-lightbox-next {
  right: 1.25rem;
}

@media (max-width: 640px) {
  .painting-lightbox {
    padding: 1rem;
  }

  .painting-lightbox-close {
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.7rem 0.85rem;
  }

  .painting-lightbox-nav {
    width: 48px;
    height: 48px;
  }

  .painting-lightbox-prev {
    left: 0.75rem;
  }

  .painting-lightbox-next {
    right: 0.75rem;
  }
}

.collector-note h2,
.painting-intro h2,
.travel-note h3 {
  margin-bottom: 0.8rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 241, 220, 0.08);
  background: #120b05;
  color: #f7ebd8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
}

.footer-inner p {
  color: rgba(247, 235, 216, 0.72);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(247, 235, 216, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--gold-soft);
}

@media (max-width: 1024px) {
  .page-hero-grid,
  .intro-grid,
  .two-column,
  .about-hero-grid,
  .journal-banner,
  .collector-strip,
  .feature-split,
  .story-grid,
  .gallery-grid,
  .about-cards,
  .signature-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    max-height: 0;
    background: rgba(16, 10, 5, 0.98);
    transition: max-height 0.22s ease;
  }

  .site-nav.open {
    max-height: 420px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.9rem 1rem 1.2rem;
  }

  .site-nav .dropdown-menu {
    position: static;
    display: flex;
    min-width: 100%;
    margin-top: 0.5rem;
    padding: 0.35rem 0 0 0.75rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .dropdown-menu a {
    padding: 0.45rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-slider,
  .hero-content {
    height: clamp(560px, 74vh, 760px);
    min-height: clamp(560px, 74vh, 760px);
  }

  .hero-panel {
    padding: 1.6rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-logo {
    margin: -0.1rem 0 -2rem;
  }

  .site-logo img {
    height: 118px;
  }

  .home-page .header-inner {
    min-height: 82px;
  }

  .home-page .site-logo {
    margin: -0.35rem 0 -4.25rem;
  }

  .home-page .site-logo img {
    height: 164px;
  }

  .home-page .hero-slider {
    height: clamp(560px, 74vh, 760px);
  }

  .page-hero {
    padding: 4.45rem 0 3rem;
    background:
      radial-gradient(circle at top left, rgba(221, 189, 137, 0.14), transparent 22%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(245, 236, 223, 0.9));
  }

  .hero-slider,
  .hero-content {
    height: clamp(520px, 68vh, 680px);
    min-height: clamp(520px, 68vh, 680px);
  }

  .hero-icon-wrap {
    top: -78px;
    left: 1.1rem;
    width: 210px;
    height: 128px;
    padding: 0.7rem 0.8rem;
    border-radius: 32px;
  }

  .hero-actions,
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .btn.small {
    width: 100%;
  }

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