:root {
  --bg: #0b0b0c;
  --bg-2: #171717;
  --paper: #fffdf8;
  --ink: #101112;
  --muted: #60646c;
  --line: #ded7ca;
  --line-strong: #bda766;
  --navy: #08090b;
  --navy-2: #151515;
  --forest: #0f5f54;
  --forest-2: #14766a;
  --gold: #c99a32;
  --gold-2: #f1d588;
  --cream: #f6f0e4;
  --soft: #f2eadc;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 240, 228, 0.95) 48%, rgba(255, 253, 248, 0.96)),
    radial-gradient(circle at 12% 8%, rgba(201, 154, 50, 0.13), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(15, 95, 84, 0.11), transparent 30%),
    var(--bg);
  background-size: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.03), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.03));
  opacity: 0.7;
  z-index: -1;
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

#root {
  min-height: 100vh;
}

.app-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(201, 154, 50, 0.24);
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(16, 23, 31, 0.08);
}

.top-strip {
  background: linear-gradient(90deg, #050506, #151515 48%, #0f0f10);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.top-strip button {
  border: 0;
  padding: 0;
  color: var(--gold-2);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
}

.brand-logo {
  width: min(330px, 28vw);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

.nav-link,
.util-button,
.ghost-button,
.cart-button,
.drawer-close,
.menu-button,
.mini-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-link,
.util-button,
.ghost-button,
.cart-button,
.menu-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-weight: 700;
}

.nav-link {
  min-height: auto;
  position: relative;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #26313f;
  font-weight: 850;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-link:hover,
.util-button:hover,
.ghost-button:hover,
.cart-button:hover,
.menu-button:hover,
.mini-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(209, 161, 59, 0.75);
  background: rgba(209, 161, 59, 0.1);
}

.nav-link:hover {
  background: transparent;
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
  background: var(--gold);
  transform: scaleX(1);
  opacity: 1;
}

.nav-link.active,
.mini-chip.active {
  background: linear-gradient(135deg, #050506, #292929);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.nav-link.active {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  box-shadow: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.util-button {
  min-width: 128px;
  background: linear-gradient(135deg, #d7a33d, #f3d88f);
  color: #1b2430;
  border-color: rgba(240, 212, 139, 0.58);
}

.cart-button {
  background: rgba(16, 28, 47, 0.035);
}

.cart-button span {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(209, 161, 59, 0.98);
  color: #15202e;
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-button {
  display: none;
}

.main {
  padding: 24px 0 84px;
}

.band {
  padding: 26px 0;
}

.band.alt {
  background: linear-gradient(180deg, rgba(17, 28, 47, 0.02), rgba(27, 93, 80, 0.03));
}

.section-inner {
  width: min(var(--container), calc(100vw - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 900;
}

.section-heading h2,
.page-hero h1,
.hero-copy h1,
.policy-copy h1 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p,
.page-hero p,
.policy-copy p,
.hero-copy p,
.card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-split .section-heading {
  margin-bottom: 0;
}

.primary-button,
.secondary-button,
.text-button,
.product-action,
.drawer-action,
.footer-link,
.policy-link,
.mini-chip,
.outline-button,
.contact-button {
  border-radius: var(--radius);
}

.primary-button,
.secondary-button,
.text-button,
.product-action,
.drawer-action,
.outline-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover,
.product-action:hover,
.drawer-action:hover,
.outline-button:hover,
.contact-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #050506, #202020);
  border-color: rgba(201, 154, 50, 0.4);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.secondary-button,
.outline-button {
  color: #1c2430;
  background: var(--paper);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.text-button {
  color: var(--forest);
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero {
  padding: 24px 0 28px;
  background:
    radial-gradient(circle at 74% 18%, rgba(209, 161, 59, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(246, 239, 226, 0.92) 52%, rgba(232, 242, 237, 0.9));
  border-bottom: 1px solid rgba(201, 188, 167, 0.46);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 32px;
  align-items: center;
  min-height: min(720px, calc(100vh - 120px));
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 22px 0;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 6vw, 6.9rem);
  max-width: 10ch;
  line-height: 0.92;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .secondary-button {
  background: rgba(255, 255, 255, 0.9);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.point-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-soft);
}

.point-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
}

.point-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  display: grid;
  align-items: stretch;
}

.showcase {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 28, 47, 0.06), rgba(16, 28, 47, 0.01)),
    var(--paper);
  box-shadow: var(--shadow);
}

.showcase-media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7f3ea);
  border: 1px solid rgba(201, 188, 167, 0.7);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 700ms ease;
}

.showcase:hover .showcase-media img {
  transform: scale(1.035);
}

.showcase-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 28, 47, 0.88);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(16, 23, 31, 0.88);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.showcase-caption strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.showcase-caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.showcase-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-chip {
  min-height: 64px;
  padding: 10px 12px;
  color: #1b2430;
  border-color: rgba(27, 93, 80, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 234, 0.92));
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  line-height: 1.25;
}

.mini-chip small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.category-band {
  padding: 18px 0 10px;
  background: var(--paper);
  border-bottom: 1px solid rgba(201, 188, 167, 0.46);
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.category-tile {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 161, 59, 0.72);
  box-shadow: 0 18px 34px rgba(16, 23, 31, 0.12);
}

.category-tile img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center 34%;
  border-radius: calc(var(--radius) - 2px);
  background: var(--cream);
}

.category-tile span {
  font-weight: 900;
  line-height: 1.2;
}

.category-tile small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.mini-chip.active {
  color: #fff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-pill .icon {
  color: var(--forest);
}

.subtle-band {
  background: linear-gradient(180deg, rgba(17, 28, 47, 0.03), rgba(27, 93, 80, 0.03));
}

.inquiry-band {
  background:
    linear-gradient(135deg, rgba(16, 28, 47, 0.97), rgba(27, 93, 80, 0.94)),
    var(--navy);
  color: #fff;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 24px;
  align-items: center;
}

.inquiry-copy {
  display: grid;
  gap: 14px;
}

.inquiry-copy h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.inquiry-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.inquiry-band .inquiry-copy h2 {
  color: #fff;
}

.inquiry-band .inquiry-copy p {
  color: rgba(255, 255, 255, 0.75);
}

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

.trust-row.compact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-weight: 800;
}

.inquiry-band .trust-row.compact span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(201, 188, 167, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.inquiry-form-head {
  display: grid;
  gap: 5px;
}

.inquiry-form-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.inquiry-form-head span {
  color: var(--muted);
  font-weight: 700;
}

.collection-grid,
.product-grid,
.benefit-grid,
.feature-grid,
.policy-section-grid,
.faq-grid,
.contact-grid,
.help-grid,
.stat-grid,
.exhibition-grid,
.footer-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.collection-card,
.product-card,
.benefit-card,
.feature-card,
.exhibition-card,
.policy-card,
.faq-card,
.contact-card,
.help-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.collection-card {
  overflow: hidden;
  display: grid;
}

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.exhibition-card {
  overflow: hidden;
  display: grid;
}

.exhibition-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.exhibition-card .card-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.collection-card .card-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.collection-card h3,
.product-card h3,
.benefit-card h3,
.feature-card h3,
.policy-card h3,
.faq-card h3,
.contact-card h3,
.help-card h3,
.stat-card strong {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-tag,
.stat-card span,
.policy-card .meta,
.collection-card .meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 28, 47, 0.04);
  border: 1px solid var(--line);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-row button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.tab-row button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--forest));
}

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

.product-grid-item {
  display: contents;
}

.product-card {
  overflow: hidden;
  display: grid;
}

.product-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f4eb);
}

.product-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 38%;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(16, 28, 47, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-row h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-title-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 900;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(16, 28, 47, 0.035);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-action {
  min-height: 44px;
  color: #fff;
  background: linear-gradient(135deg, #050506, #222);
  border-color: rgba(201, 154, 50, 0.38);
}

.product-action.secondary {
  color: #1b2430;
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 234, 0.96));
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spec-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.spec-card small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-card strong {
  font-size: 0.96rem;
}

.benefit-card,
.feature-card,
.help-card,
.policy-card,
.faq-card,
.contact-card,
.stat-card {
  padding: 18px;
}

.benefit-card {
  display: grid;
  gap: 12px;
}

.benefit-card .icon,
.feature-card .icon,
.policy-card .icon,
.help-card .icon,
.contact-card .icon {
  color: var(--forest);
}

.benefit-card p,
.feature-card p,
.help-card p,
.policy-card p,
.faq-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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

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

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.contact-link strong {
  display: block;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 22px 0 12px;
}

.page-hero-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(16, 28, 47, 0.94), rgba(27, 93, 80, 0.94)),
    var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.page-hero-card p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 70ch;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
}

.page-breadcrumbs a {
  color: #fff;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero-actions .secondary-button {
  color: #111111;
  background: linear-gradient(180deg, #fffaf0, #f4ead7);
  border-color: rgba(219, 178, 82, 0.62);
  text-shadow: none;
}

.page-hero-actions .secondary-button:hover,
.page-hero-actions .secondary-button:focus-visible {
  color: #050505;
  background: linear-gradient(135deg, #f4d36d, #c18a25);
  border-color: rgba(246, 212, 120, 0.9);
}

.page-hero-actions .secondary-button {
  background: rgba(255, 255, 255, 0.96);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
}

.policy-aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.policy-nav {
  display: grid;
  gap: 10px;
}

.policy-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.policy-card p + p {
  margin-top: 10px;
}

.custom-cta {
  margin-top: 18px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  display: grid;
  gap: 4px;
}

.stat-card strong {
  font-size: 1.45rem;
  color: var(--navy);
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-trigger span {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 28, 47, 0.94);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-backdrop {
  background: rgba(8, 12, 18, 0.45);
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  box-shadow: -18px 0 40px rgba(8, 12, 18, 0.16);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.drawer-close {
  min-height: 38px;
  padding: 0 12px;
  color: #1b2430;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.drawer-body {
  overflow: auto;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.drawer-list {
  display: grid;
  gap: 10px;
}

.drawer-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}

.drawer-item strong {
  font-size: 0.96rem;
}

.drawer-item small {
  color: var(--muted);
}

.drawer-form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field select {
  cursor: pointer;
  appearance: auto;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(27, 93, 80, 0.62);
  box-shadow: 0 0 0 3px rgba(27, 93, 80, 0.12);
}

.field textarea {
  min-height: 102px;
  resize: vertical;
}

.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.drawer-actions .primary-button {
  flex: 1 1 190px;
}

.drawer-actions .secondary-button {
  flex: 1 1 170px;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  display: none;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 28, 47, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 -12px 24px rgba(6, 12, 21, 0.16);
}

.mobile-bar a,
.mobile-bar button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: transparent;
  font-weight: 800;
}

.mobile-bar a:last-child,
.mobile-bar button:last-child {
  border-right: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 86px;
  z-index: 80;
  max-width: calc(100vw - 24px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(16, 23, 31, 0.94);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.toast.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.footer {
  margin-top: 28px;
  padding: 32px 0 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 28, 47, 1), rgba(8, 13, 19, 1));
  border-top: 4px solid var(--gold);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 18px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand img {
  width: 96px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  margin: 0;
  font-size: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: #fff;
}

.footer-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  display: grid;
  gap: 10px;
  padding: 30px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.page-stack {
  display: grid;
  gap: 18px;
}

.related-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-strip a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-grid,
  .policy-layout,
  .contact-grid,
  .inquiry-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .collection-grid,
  .product-grid,
  .exhibition-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .inquiry-copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 920px) {
  .top-strip-inner {
    min-height: auto;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .header-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-actions {
    gap: 8px;
  }

  .util-button {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-grid {
    min-height: auto;
  }

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

  .showcase-media,
  .showcase-media img {
    min-height: 440px;
  }

  .showcase-rail {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .stat-grid,
  .policy-section-grid,
  .help-grid,
  .faq-grid,
  .exhibition-grid,
    .spec-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .main {
    padding-bottom: 96px;
  }

  .brand-logo {
    width: 190px;
    height: 46px;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions .util-button,
  .header-actions .cart-button {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .hero-points,
  .collection-grid,
  .product-grid,
  .feature-grid,
  .exhibition-grid,
  .stat-grid,
  .trust-row,
  .trust-row.compact,
  .category-rail {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 0;
    grid-template-columns: 86px 1fr;
    align-items: center;
  }

  .category-tile img {
    aspect-ratio: 1 / 1;
  }

  .category-tile small {
    grid-column: 2;
  }

  .showcase-media,
  .showcase-media img {
    min-height: 360px;
  }

  .showcase-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .page-hero-card {
    padding: 18px;
  }

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

  .drawer-panel {
    width: min(100vw, 440px);
    justify-self: end;
  }

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

  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 520px) {
  .container,
  .section-inner {
    width: min(var(--container), calc(100vw - 20px));
  }

  .band {
    padding: 20px 0;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
  }

  .hero-actions,
  .page-hero-actions,
  .contact-actions,
  .drawer-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .text-button,
  .outline-button,
  .contact-button,
  .product-action,
  .drawer-action {
    width: 100%;
  }

  .showcase-media,
  .showcase-media img {
    min-height: 320px;
  }

  .product-media img {
    height: 280px;
  }

  .footer-note {
    flex-direction: column;
  }
}

/* Premium dark commerce refresh */
body {
  color: #f8f4ea;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.98), rgba(12, 12, 13, 0.98) 34%, rgba(20, 17, 12, 0.98) 68%, rgba(5, 5, 6, 0.99)),
    radial-gradient(circle at 18% 8%, rgba(201, 154, 50, 0.2), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(16, 94, 83, 0.2), transparent 26%),
    var(--bg);
}

body::before {
  background:
    linear-gradient(90deg, rgba(201, 154, 50, 0.1), transparent 13%, transparent 87%, rgba(201, 154, 50, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 72px);
  opacity: 1;
}

.site-header {
  background: rgba(6, 6, 7, 0.94);
  border-bottom-color: rgba(201, 154, 50, 0.34);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
}

.top-strip {
  background: linear-gradient(90deg, #0d0d0e, #262015 50%, #0d0d0e);
  border-bottom: 1px solid rgba(201, 154, 50, 0.22);
}

.brand {
  color: #fff;
}

.brand-logo {
  width: min(286px, 24vw);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold-2);
}

.nav-link.active::after,
.nav-link:hover::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.util-button,
.cart-button,
.menu-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.util-button.phone-button {
  color: #111;
  background: linear-gradient(135deg, #d6a946, #f2d98a);
  border-color: rgba(255, 255, 255, 0.2);
}

.main {
  padding-top: 0;
}

.hero {
  background:
    linear-gradient(135deg, rgba(7, 7, 8, 0.92), rgba(17, 14, 10, 0.92)),
    radial-gradient(circle at 72% 20%, rgba(214, 169, 70, 0.26), transparent 30%),
    radial-gradient(circle at 10% 26%, rgba(20, 118, 106, 0.24), transparent 30%);
  border-bottom-color: rgba(201, 154, 50, 0.22);
}

.hero-copy h1,
.section-heading h2,
.page-hero h1,
.policy-copy h1 {
  color: #fffaf0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero-copy p,
.section-heading p,
.page-hero p,
.policy-copy p,
.card-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.hero .secondary-button,
.secondary-button,
.outline-button {
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.primary-button,
.product-action {
  color: #101112;
  background: linear-gradient(135deg, #d0a03b, #f1d78e);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 42px rgba(201, 154, 50, 0.2);
}

.text-button {
  color: var(--gold-2);
}

.band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 9, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}

.band.alt,
.subtle-band,
.category-band {
  background:
    linear-gradient(135deg, rgba(17, 17, 18, 0.95), rgba(21, 17, 12, 0.95)),
    radial-gradient(circle at 10% 10%, rgba(201, 154, 50, 0.11), transparent 28%);
  border-color: rgba(201, 154, 50, 0.16);
}

.showcase,
.category-tile,
.trust-pill,
.collection-card,
.product-card,
.benefit-card,
.feature-card,
.exhibition-card,
.policy-card,
.faq-card,
.contact-card,
.help-card,
.stat-card,
.spec-card,
.search-box,
.tab-row button,
.policy-nav a,
.related-strip a {
  color: #f8f4ea;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #101012;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.category-tile:hover,
.collection-card:hover,
.product-card:hover,
.exhibition-card:hover,
.feature-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 213, 136, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.showcase-media,
.product-media,
.category-tile img,
.collection-card img,
.exhibition-card img {
  background: #f6f0e4;
  border-color: rgba(201, 154, 50, 0.18);
}

.point-card,
.trust-row.compact span,
.meta-tag,
.chip,
.drawer-item,
.contact-link {
  color: #f8f4ea;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

.point-card span,
.category-tile small,
.meta-tag,
.stat-card span,
.policy-card .meta,
.collection-card .meta,
.product-title-row p,
.feature-list,
.benefit-card p,
.feature-card p,
.help-card p,
.policy-card p,
.faq-card p,
.contact-card p,
.contact-link span,
.field label,
.inquiry-form-head span {
  color: rgba(255, 255, 255, 0.62);
}

.product-action.secondary,
.tab-row button,
.drawer-close {
  color: #f8f4ea;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.tab-row button.active {
  color: #111;
  background: linear-gradient(135deg, #d0a03b, #f2d98a);
}

.price,
.benefit-card .icon,
.feature-card .icon,
.policy-card .icon,
.help-card .icon,
.contact-card .icon,
.trust-pill .icon {
  color: var(--gold-2);
}

.field input,
.field select,
.field textarea,
.search-box input {
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.inquiry-form,
.drawer-panel,
.empty-state {
  color: #f8f4ea;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #111113;
  border-color: rgba(255, 255, 255, 0.12);
}

.inquiry-copy h2 {
  color: #fffaf0;
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero-card,
.inquiry-band {
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 154, 50, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 6, 0.98), rgba(24, 20, 13, 0.98));
  border-color: rgba(201, 154, 50, 0.28);
}

.stat-card strong {
  color: #fffaf0;
}

.footer {
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 1), rgba(2, 2, 3, 1)),
    #050506;
}

.photo-band {
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.98), rgba(22, 18, 12, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(201, 154, 50, 0.18), transparent 30%);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.photo-tile,
.gallery-feature,
.gallery-thumb,
.event-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #111113;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.photo-tile img,
.gallery-feature img,
.gallery-thumb img,
.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease, filter 720ms ease;
}

.photo-tile:hover img,
.gallery-feature:hover img,
.gallery-thumb:hover img,
.event-photo:hover img {
  transform: scale(1.045);
  filter: contrast(1.05) saturate(1.06);
}

.photo-tile.feature {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.photo-tile figcaption,
.gallery-feature figcaption,
.gallery-thumb figcaption,
.event-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(5, 5, 6, 0.74);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 850;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.gallery-feature {
  min-height: 560px;
}

.gallery-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-thumb {
  min-height: 272px;
}

.event-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: 18px;
}

.event-photo.large {
  grid-column: span 2;
  grid-row: span 2;
}

.event-photo.tall {
  grid-row: span 2;
}

.event-photo figcaption {
  font-size: 0.84rem;
}

.reveal {
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translateX(-34px) scale(0.985);
}

.reveal[data-reveal="right"] {
  transform: translateX(34px) scale(0.985);
}

.reveal[data-reveal="zoom"] {
  transform: translateY(22px) scale(0.94);
}

.reveal.is-visible {
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1200px) {
  .photo-mosaic,
  .event-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-feature {
    min-height: 460px;
  }
}

@media (max-width: 920px) {
  .brand-logo {
    width: 230px;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 190px;
  }

  .photo-mosaic,
  .gallery-thumb-grid,
  .event-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-tile,
  .gallery-feature,
  .gallery-thumb,
  .event-photo,
  .photo-tile.feature,
  .photo-tile.wide,
  .event-photo.large,
  .event-photo.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.98), rgba(19, 16, 11, 0.98)),
      radial-gradient(circle at 70% 20%, rgba(214, 169, 70, 0.22), transparent 34%);
  }
}

.page-hero-actions .secondary-button,
.page-hero-actions .outline-button,
.page-hero .secondary-button,
.page-hero .outline-button,
.page-hero .filter-button,
.page-hero button {
  color: #111111 !important;
  text-shadow: none !important;
}

.page-hero-actions .secondary-button,
.page-hero-actions .outline-button,
.page-hero .secondary-button,
.page-hero .outline-button {
  background: linear-gradient(135deg, #fffaf0, #ead07a) !important;
  border-color: rgba(214, 169, 70, 0.62) !important;
}

.page-hero .filter-button:not(.is-active) {
  background: rgba(255, 250, 240, 0.96) !important;
  border-color: rgba(214, 169, 70, 0.48) !important;
}

.page-hero .filter-button.is-active {
  color: #050505 !important;
}
