﻿@charset "UTF-8";
:root {
  --heritage-red: #e9162a;
  --heritage-red-dark: #dd1d2c;
  --heritage-red-deep: #720812;
  --heritage-gold: #c9a447;
  --heritage-gold-light: #ead99b;
  --heritage-ivory: #fff9ee;
  --heritage-paper: #f7f0e2;
  --heritage-ink: #211b18;
  --heritage-muted: #6c5f57;
  --heritage-border: rgba(138, 96, 42, .22);
  --heritage-shadow: 0 16px 50px rgba(68, 29, 16, .1);
  --container: 1280px;
}

@font-face {
  font-family: "Heritage Sans";
  src: url("../../webfonts/Montserrat-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SFD";
  src: url("../../webfonts/SFD/SanFranciscoDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--heritage-ink);
  background: var(--heritage-ivory);
  font-family: "Heritage Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.012em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(rgba(137, 92, 36, 0.08) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--heritage-red);
  text-decoration: none;
}

button, input {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--heritage-gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--heritage-red-dark);
}

.skip-link:focus {
  transform: none;
  color: #fff;
}

.heritage-line {
  height: 5px;
  background: linear-gradient(90deg, var(--heritage-red-dark), var(--heritage-red) 34%, var(--heritage-gold) 65%, var(--heritage-red-dark));
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 249, 238, 0.98);
  box-shadow: 0 3px 18px rgba(66, 33, 18, 0.06);
}

.header-main {
  min-height: 136px;
  display: grid;
  grid-template-columns: 150px 1fr minmax(360px, 470px);
  align-items: center;
  gap: 26px;
}

.brand {
  width: 138px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand img {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.header-identity {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--heritage-border);
  padding-left: 27px;
  color: var(--heritage-muted);
  letter-spacing: 0.06em;
}

.header-identity .eyebrow {
  color: var(--heritage-red-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-identity strong {
  margin: 2px 0;
  color: var(--heritage-ink);
  font-family: "Lora", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.15vw, 2.2rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.header-identity > span:last-child {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.header-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.header-search {
  width: 100%;
  display: flex;
  border: 1px solid var(--heritage-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(74, 37, 17, 0.04);
}

.header-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 4px 11px 20px;
  border: 0;
  outline: 0;
  color: var(--heritage-ink);
  background: transparent;
}

.header-search button {
  width: 48px;
  border: 0;
  color: var(--heritage-red-dark);
  background: transparent;
  cursor: pointer;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--heritage-red-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-search-toggle, .menu-toggle {
  display: none;
}

.primary-nav {
  color: #fff;
  background: linear-gradient(90deg, var(--heritage-red-deep), var(--heritage-red-dark) 48%, #8f0c18);
  border-bottom: 3px solid var(--heritage-gold);
}

.primary-nav ul {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav > .container > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 19px;
  color: #fff;
  font-family: SFD, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.primary-nav > .container > ul > li:hover > a, .primary-nav a:hover {
  color: #8f0c18;
  background: rgba(255, 255, 255, 0.09);
}

.primary-nav .home-link a {
  background: var(--heritage-gold);
  color: var(--heritage-red-deep);
}

.primary-nav .home-link span {
  display: none;
}

.submenu-toggle {
  border: 0;
  padding: 0 10px 0 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 110;
  width: 260px;
  display: block !important;
  padding: 9px 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: #fffaf0;
  border-top: 3px solid var(--heritage-gold);
  box-shadow: var(--heritage-shadow);
  transition: 0.2s ease;
}

.submenu li, .submenu a {
  display: block;
}

.submenu a {
  min-height: 0;
  padding: 10px 20px;
  color: var(--heritage-ink);
  font-family: inherit;
  border-bottom: 1px solid rgba(138, 96, 42, 0.1);
}

.has-submenu:hover > .submenu, .has-submenu:focus-within > .submenu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.news-strip {
  border-bottom: 1px solid var(--heritage-border);
  background: #fffdf7;
}

.news-strip-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
}

.news-label {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: #fff;
  background: var(--heritage-red-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.news-ticker {
  min-width: 0;
  display: flex;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
}

.news-ticker a::before {
  content: "◆";
  margin-right: 8px;
  color: var(--heritage-gold);
  font-size: 0.65em;
}

.news-strip time {
  color: var(--heritage-muted);
  white-space: nowrap;
}

.mobile-search-panel {
  display: none;
}

.home-page {
  padding: 42px 0 70px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.section-kicker span {
  color: var(--heritage-red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker h1 {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 1.25rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--heritage-gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.story-card--lead {
  grid-column: 2;
  grid-row: 1;
}

.hero-side--left {
  grid-column: 1;
  grid-row: 1;
}

.hero-side--right {
  grid-column: 3;
  grid-row: 1;
}

.hero-side {
  display: grid;
  gap: 24px;
}

.story-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e9dfcc;
  border-radius: 6px;
  box-shadow: 0 9px 24px rgba(54, 31, 20, 0.16);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(43, 20, 10, 0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.story-media:hover::after {
  opacity: 1;
}

.story-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-media:hover img {
  transform: scale(1.025);
}

.story-card--lead .story-media img {
  aspect-ratio: 1.48;
}

.story-card--lead .story-content {
  padding: 20px 0 0;
}

.story-card h2, .feature-story h3, .story-list h3, .headline-row h3 {
  font-family: "Lora", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.012em;
}

.story-card h2 a, .feature-story h3 a, .story-list h3 a, .headline-row h3 a, .listing-card h2 a, .listing-card h3 a {
  color: var(--heritage-ink);
  font-weight: inherit;
}

.story-card--lead h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.85rem, 2.55vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
}

.story-category {
  color: var(--heritage-red-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-summary {
  color: var(--heritage-muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.story-summary p {
  margin: 0;
}

.story-card time, .feature-story time, .story-list time {
  color: #8b7a6d;
  font-size: 0.75rem;
}

.story-card--compact .story-media img {
  aspect-ratio: 1.48;
}

.story-card--compact h2 {
  margin: 10px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: clamp(1.18rem, 1.3vw, 1.36rem);
  font-weight: 700;
  line-height: 1.27;
}

.headline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--heritage-border);
  border-bottom: 1px solid var(--heritage-border);
}

.headline-row article {
  padding: 0 22px;
  border-right: 1px solid var(--heritage-border);
}

.headline-row article:first-child {
  padding-left: 0;
}

.headline-row article:last-child {
  padding-right: 0;
  border: 0;
}

.headline-row time {
  color: var(--heritage-red-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.headline-row h3 {
  margin: 6px 0 0;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.3;
}

.empty-state {
  padding: 70px 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #f7edda);
  border: 1px solid var(--heritage-border);
}

.empty-state img {
  width: 130px;
  opacity: 0.9;
}

.empty-state h2 {
  margin-bottom: 0;
  font-family: "Lora", serif;
  color: var(--heritage-red-dark);
}

.heritage-banner {
  margin-top: 38px;
}

.heritage-banner img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border: 1px solid var(--heritage-gold);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(54, 31, 20, 0.15);
}

.editorial-section {
  margin-top: 2rem;
  padding: 0;
}

.editorial-section--tint {
  padding: 48px 0;
  background: linear-gradient(90deg, rgba(239, 222, 187, 0.3), rgba(255, 255, 255, 0.64), rgba(239, 222, 187, 0.3));
  border-block: 1px solid rgba(153, 106, 42, 0.12);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--heritage-red-dark);
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-number {
  min-width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heritage-red-deep);
  background: var(--heritage-gold-light);
  font-family: "Lora", serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--heritage-muted);
  font-size: 0.8rem;
}

.section-more {
  margin-left: auto;
  white-space: nowrap;
  color: var(--heritage-red-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-more i {
  margin-left: 6px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 34px;
}

.feature-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.feature-story .story-media img {
  aspect-ratio: 1.45;
}

.feature-story h3 {
  margin: 8px 0 13px;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.2;
}

/*.story-list { display: grid; gap: 16px; }*/
.story-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 15px;
  padding-bottom: 16px;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--heritage-border);
}

.story-thumb {
  display: block;
  overflow: hidden;
}

.story-thumb img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(54, 31, 20, 0.14);
}

.story-list h3 {
  margin: 5px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.28;
}

.media-section {
  margin-top: 2rem;
  padding: 54px 0 60px;
  color: #fff;
  background: radial-gradient(circle at 75% 15%, rgba(201, 164, 71, 0.18), transparent 32%), var(--heritage-red-deep);
}

.section-heading--dark {
  border-color: var(--heritage-gold);
}

.section-heading--dark h2 a, .section-heading--dark .section-more {
  color: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 22px;
}

.video-card:first-child {
  grid-row: span 2;
}

.video-card:first-child .video-frame {
  aspect-ratio: 1.43;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.65;
  background: #1c1010;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(18, 6, 7, 0.32);
}

.video-frame iframe, .video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--heritage-red-dark);
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.video-card h3 {
  margin: 12px 0 0;
  font-family: "Lora", serif;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.28;
}

.partners-section {
  margin-top: 58px;
}

.partners {
  margin: 0 -10px;
}

.partners a {
  height: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--heritage-border);
}

.partners img {
  max-height: 70px;
  object-fit: contain;
}

.site-footer {
  position: relative;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--heritage-red-dark);
}

.footer-pattern {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--heritage-gold) 0 24px, var(--heritage-red) 24px 48px, #f1d880 48px 72px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.7fr;
  gap: 58px;
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer-brand img {
  width: 145px;
  padding: 6px;
  background: #fffaf0;
}

.footer-brand p {
  max-width: 330px;
  margin: 15px 0 0;
}

.site-footer h2 {
  margin: 0 0 17px;
  color: var(--heritage-gold-light);
  font-family: "Lora", serif;
  font-size: 1.08rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-richtext p {
  margin: 0 0 7px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #fff;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.14);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.visitor span {
  display: inline-block;
  height: 12px;
  margin: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 1px solid var(--heritage-gold);
  border-radius: 50%;
  color: #fff;
  background: var(--heritage-red-dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-backdrop {
  display: none;
}

.floating-actions {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 85;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.floating-action {
  width: 112px;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  color: #fff;
  background: var(--heritage-red-dark);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px 4px 4px 24px;
  box-shadow: 0 7px 20px rgba(41, 14, 11, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-action i {
  width: 20px;
  font-size: 1rem;
  text-align: center;
}

.floating-action:hover, .floating-action:focus-visible {
  color: #fff;
  background: var(--heritage-red);
  box-shadow: 0 9px 25px rgba(41, 14, 11, 0.3);
  outline: 3px solid rgba(212, 169, 72, 0.35);
  outline-offset: 2px;
}

.floating-action--zalo {
  background: #1769aa;
}

.floating-action--zalo:hover, .floating-action--zalo:focus-visible {
  background: #0f5790;
}

.floating-action--map {
  color: var(--heritage-red-deep);
  background: var(--heritage-gold-light);
  border-color: var(--heritage-gold);
}

.floating-action--map:hover, .floating-action--map:focus-visible {
  color: #fff;
  background: var(--heritage-red-dark);
}

/* Shared public content templates */
.page-shell {
  padding: 42px 0 70px;
}

.breadcrumb {
  margin: 0 0 24px;
  padding: 0;
  color: var(--heritage-muted);
  background: none;
  font-size: 0.8rem;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--heritage-red-dark);
}

.page-title {
  margin: 0 0 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--heritage-red-dark);
  font-family: "Lora", serif;
  font-size: clamp(1.7rem, 2.65vw, 2.45rem);
  line-height: 1.2;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 3px solid var(--heritage-gold);
  border-radius: 6px;
  box-shadow: 0 9px 25px rgba(54, 31, 20, 0.12);
}

.listing-card > a:first-child {
  display: block;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.listing-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.listing-card-body {
  padding: 19px 18px 20px;
}

.listing-card h2, .listing-card h3 {
  margin: 8px 0 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 1.5vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
}

.article-header h1 {
  margin: 12px 0 16px;
  font-family: "Lora", serif;
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  line-height: 1.18;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--heritage-muted);
  font-size: 0.82rem;
}

.article-lead {
  margin: 27px 0;
  padding-left: 20px;
  border-left: 4px solid var(--heritage-gold);
  color: #493c34;
  font-family: "Lora", serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.72;
}

.article-layout > article > figure img, .article-body img {
  height: auto !important;
  margin: 20px auto;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(54, 31, 20, 0.16);
}

.article-body {
  font-family: "Heritage Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.82;
}

.sidebar-title {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--heritage-red-dark);
  font-family: "Lora", serif;
  font-size: 1.3rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin: 42px 0 8px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination li {
  margin: 0;
}

.pagination a, .pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  color: var(--heritage-ink);
  background: #fff;
  border: 1px solid rgba(138, 96, 42, 0.3);
  font-family: "Heritage Sans", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pagination a:hover, .pagination a:focus-visible {
  color: #fff;
  background: var(--heritage-red-dark);
  border-color: var(--heritage-red-dark);
  outline: 3px solid rgba(212, 169, 72, 0.3);
  outline-offset: 2px;
}

.pagination .active span {
  color: var(--heritage-red-deep);
  background: var(--heritage-gold-light);
  border-color: var(--heritage-gold);
  box-shadow: inset 0 -3px 0 var(--heritage-red);
}

.pagination .disabled span {
  color: #9a8e84;
  background: #f2ede7;
  border-color: #ded5cb;
}

.page-search {
  max-width: 700px;
  margin: 0 0 32px;
}

.page-search label {
  display: block;
  margin-bottom: 6px;
  color: var(--heritage-red-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-search > div {
  display: flex;
}

.page-search input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--heritage-border);
  background: #fff;
}

.page-search button, .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  padding: 12px 24px;
  color: #fff;
  background: var(--heritage-red-dark);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.page-search button:hover, .primary-button:hover {
  color: #fff;
  background: var(--heritage-red);
}

.gallery-photo {
  display: block;
  overflow: hidden;
  background: #eadfc9;
  border-radius: 6px;
  box-shadow: 0 9px 24px rgba(54, 31, 20, 0.15);
}

.gallery-photo img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-photo:hover img {
  transform: scale(1.025);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 55px;
}

.contact-grid h2 {
  margin: 9px 0 14px;
  font-family: "Lora", serif;
  font-size: 1.8rem;
  line-height: 1.25;
}

.contact-details {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--heritage-border);
}

.contact-details i {
  width: 24px;
  color: var(--heritage-red-dark);
}

.contact-form-card {
  padding: 30px;
  background: #fff;
  border-top: 4px solid var(--heritage-gold);
  box-shadow: var(--heritage-shadow);
}

.contact-map {
  margin-top: 56px;
  scroll-margin-top: 95px;
}

.contact-map-heading {
  margin-bottom: 20px;
}

.contact-map-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.contact-map-embed {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #eee4d2;
  border: 1px solid rgba(138, 96, 42, 0.3);
  border-radius: 7px;
  box-shadow: 0 12px 32px rgba(54, 31, 20, 0.15);
}

.contact-map-embed iframe {
  width: 100% !important;
  height: 460px !important;
  display: block;
  border: 0 !important;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.form-grid label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-grid .form-control {
  height: auto;
  min-height: 44px;
  border-color: var(--heritage-border);
  border-radius: 0;
}

.form-grid textarea.form-control {
  min-height: 145px;
}

.form-full {
  grid-column: 1/-1;
}

.field-validation-error {
  display: block;
  margin-top: 4px;
  color: var(--heritage-red-dark);
  font-size: 0.75rem;
}

.document-list {
  border-top: 2px solid var(--heritage-red-dark);
}

.document-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--heritage-border);
}

.document-icon {
  width: 52px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--heritage-red-dark);
  background: var(--heritage-gold-light);
  font-size: 1.5rem;
}

.document-list h2 {
  margin: 4px 0;
  font-family: "Lora", serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.document-list time, .document-list span {
  color: var(--heritage-muted);
  font-size: 0.78rem;
}

.document-detail {
  max-width: 920px;
  margin: auto;
}

.sitemap-list {
  columns: 3;
  gap: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-list > li {
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--heritage-gold);
  font-family: "Lora", serif;
  font-weight: 700;
}

.sitemap-list ul {
  margin-top: 9px;
  padding-left: 20px;
  font-family: inherit;
  font-weight: 400;
}

.artwork-profile {
  margin: 32px 0;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border-top: 4px solid var(--heritage-gold);
  box-shadow: 0 12px 36px rgba(46, 29, 19, 0.08);
}

.artwork-profile-heading span {
  color: var(--heritage-red-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artwork-profile-heading h2 {
  margin: 2px 0 22px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.artwork-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 26px;
  border-top: 1px solid rgba(138, 96, 42, 0.18);
}

.artwork-specs div {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) 1.3fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(138, 96, 42, 0.18);
}

.artwork-specs div:nth-child(odd) {
  padding-right: 24px;
}

.artwork-specs div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(138, 96, 42, 0.18);
}

.artwork-specs dt {
  color: #716258;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.artwork-specs dd {
  margin: 0;
  color: var(--heritage-ink);
  font-weight: 600;
}

.artwork-specs .artwork-price {
  color: var(--heritage-red-dark);
}

.artwork-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  margin: 48px 0 10px;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: linear-gradient(135deg, var(--heritage-red-deep), #7d0912);
  scroll-margin-top: 100px;
}

.artwork-inquiry h2 {
  margin: 8px 0 15px;
  color: var(--heritage-gold-light);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.artwork-inquiry p {
  color: rgba(255, 255, 255, 0.82);
}

.artwork-reference {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artwork-inquiry-form {
  padding: clamp(20px, 3vw, 30px);
  color: var(--heritage-ink);
  background: #fff;
}

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

.inquiry-grid .inquiry-full {
  grid-column: 1/-1;
}

.inquiry-grid label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.83rem;
  font-weight: 700;
}

.inquiry-grid label span {
  color: var(--heritage-red);
}

.inquiry-grid input, .inquiry-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--heritage-ink);
  background: #fff;
  border: 1px solid #cbbfb3;
  border-radius: 0;
  font: inherit;
}

.inquiry-grid textarea {
  min-height: 112px;
  resize: vertical;
}

.inquiry-grid input:focus, .inquiry-grid textarea:focus {
  outline: 3px solid rgba(212, 169, 72, 0.28);
  border-color: var(--heritage-gold);
}

.artwork-inquiry-form .primary-button {
  margin-top: 20px;
}

.artwork-inquiry-form small {
  display: block;
  margin-top: 10px;
  color: #716258;
}

.form-notice {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-left: 4px solid;
}

.form-notice.success {
  color: #285b3a;
  background: #edf8f0;
  border-color: #3d8a58;
}

.form-notice.error {
  color: #871724;
  background: #fff0f1;
  border-color: var(--heritage-red);
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 72px;
  }
  .floating-actions {
    inset: auto 12px 10px;
    display: flex;
    justify-content: center;
    gap: 7px;
    transform: none;
  }
  .floating-action {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    justify-content: center;
    padding: 8px 9px;
    border-radius: 22px;
    font-size: 0.66rem;
  }
  .floating-action i {
    width: auto;
  }
  .back-to-top {
    bottom: 84px;
  }
  .contact-map {
    margin-top: 40px;
  }
  .contact-map-embed {
    min-height: 320px;
  }
  .contact-map-embed iframe {
    height: 340px !important;
  }
  .artwork-specs, .artwork-inquiry {
    grid-template-columns: 1fr;
  }
  .artwork-specs div:nth-child(n) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-grid .inquiry-full {
    grid-column: auto;
  }
  .pagination-container {
    margin-top: 30px;
  }
  .pagination {
    gap: 5px;
  }
  .pagination a, .pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 9px;
  }
}
@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 120px 1fr 330px;
    gap: 18px;
  }
  .brand {
    width: 110px;
  }
  .brand img {
    width: 105px;
    height: 105px;
  }
  .primary-nav a {
    padding-inline: 12px;
    font-size: 0.86rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1.6fr;
  }
  .story-card--lead {
    grid-column: 2;
  }
  .hero-side--left {
    grid-column: 1;
  }
  .hero-side--right {
    grid-column: 1/-1;
    grid-row: 2;
    grid-template-columns: repeat(2, 1fr);
  }
  .section-grid, .feature-story {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .container {
    width: min(100% - 32px, var(--container));
  }
  .header-main {
    min-height: 100px;
    grid-template-columns: 92px 1fr auto;
  }
  .brand {
    width: 88px;
    height: 88px;
  }
  .brand img {
    width: 84px;
    height: 84px;
  }
  .header-identity {
    padding-left: 18px;
  }
  .header-identity strong {
    font-size: 1.55rem;
  }
  .header-tools {
    display: block;
  }
  .header-search, .header-meta > a {
    display: none;
  }
  .mobile-search-toggle, .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--heritage-border);
    color: var(--heritage-red-dark);
    background: #fff;
    cursor: pointer;
  }
  .menu-toggle {
    flex-direction: column;
    gap: 4px;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: 0.2s ease;
  }
  .primary-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 500;
    width: min(360px, 86vw);
    overflow-y: auto;
    transform: translateX(-105%);
    border: 0;
    background: var(--heritage-red-deep);
    transition: transform 0.28s ease;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open .primary-nav {
    transform: none;
  }
  .primary-nav .container {
    width: 100%;
  }
  .primary-nav ul {
    display: block;
    padding-top: 24px;
  }
  .primary-nav > .container > ul > li {
    display: grid;
    grid-template-columns: 1fr 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .primary-nav a {
    min-height: 50px;
  }
  .primary-nav .home-link {
    display: block;
  }
  .primary-nav .home-link span {
    display: inline;
    margin-left: 10px;
  }
  .submenu-toggle {
    width: 48px;
    padding: 0;
  }
  .submenu {
    position: static;
    grid-column: 1/-1;
    width: 100%;
    display: none !important;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  .has-submenu.is-open > .submenu {
    display: block !important;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(25, 11, 8, 0.62);
  }
  body.menu-open .nav-backdrop {
    display: block;
  }
  .mobile-search-panel {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 120;
    padding: 18px;
    background: #fffaf0;
    border-bottom: 2px solid var(--heritage-gold);
    box-shadow: var(--heritage-shadow);
  }
  .mobile-search-panel.is-open {
    display: block;
  }
  .mobile-search-panel label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .mobile-search-panel form > div {
    display: flex;
  }
  .mobile-search-panel input {
    flex: 1;
    min-width: 0;
    padding: 11px;
    border: 1px solid var(--heritage-border);
  }
  .mobile-search-panel button {
    border: 0;
    padding: 0 22px;
    color: #fff;
    background: var(--heritage-red-dark);
  }
  .news-strip-inner {
    grid-template-columns: auto 1fr;
  }
  .news-strip time {
    display: none;
  }
  .headline-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .headline-row article:nth-child(2) {
    border: 0;
  }
  .section-heading nav {
    display: none;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .feature-story {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .video-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .video-card:first-child {
    grid-row: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1.6fr;
  }
  .footer-links {
    grid-column: 1/-1;
  }
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .sitemap-list {
    columns: 2;
  }
}
@media (max-width: 767.98px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .header-main {
    min-height: 84px;
    grid-template-columns: 70px 1fr auto;
    gap: 10px;
  }
  .brand {
    width: 66px;
    height: 70px;
  }
  .brand img {
    width: 66px;
    height: 66px;
  }
  .header-identity {
    padding-left: 10px;
  }
  .header-identity .eyebrow, .header-identity > span:last-child {
    display: none;
  }
  .header-identity strong {
    font-size: clamp(1rem, 5vw, 1.38rem);
  }
  .header-meta {
    gap: 7px;
  }
  .news-label {
    padding-inline: 10px;
    font-size: 0.68rem;
  }
  .news-strip-inner {
    gap: 10px;
  }
  .home-page {
    padding-top: 25px;
  }
  .section-kicker {
    gap: 10px;
  }
  .section-kicker h1 {
    font-size: 1.12rem;
  }
  .hero-grid {
    display: block;
  }
  .story-card--lead {
    margin-bottom: 24px;
  }
  .story-card--lead h2 {
    font-size: 2rem;
  }
  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }
  .story-card--compact h2 {
    font-size: 1.2rem;
  }
  .headline-row {
    margin-top: 25px;
  }
  .headline-row article {
    padding: 0 12px;
  }
  .headline-row article:nth-child(odd) {
    padding-left: 0;
  }
  .editorial-section {
    margin-top: 45px;
  }
  .editorial-section--tint {
    padding-block: 35px;
  }
  .section-heading {
    flex-wrap: wrap;
    gap: 10px;
  }
  .section-heading h2 {
    font-size: 1.25rem;
  }
  .section-more {
    font-size: 0.7rem;
  }
  .feature-story {
    grid-template-columns: 1fr;
  }
  .story-list article {
    grid-template-columns: 115px 1fr;
  }
  .media-section {
    margin-top: 45px;
    padding-block: 38px;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-card:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-links {
    grid-column: auto;
  }
  .footer-bottom .container {
    padding-block: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: auto;
  }
  .contact-form-card {
    padding: 22px 16px;
  }
  .sitemap-list {
    columns: 1;
  }
}
@media (max-width: 480px) {
  .mobile-search-toggle {
    display: none;
  }
  .hero-side {
    grid-template-columns: 1fr;
  }
  .headline-row {
    grid-template-columns: 1fr;
  }
  .headline-row article {
    padding: 0 0 15px !important;
    border-right: 0;
    border-bottom: 1px solid var(--heritage-border);
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .story-list article {
    grid-template-columns: 100px 1fr;
  }
  .story-list h3 {
    font-size: 1.05rem;
  }
  .visitor {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
