:root {
  color-scheme: light;
  --paper: #fbf8f0;
  --raised: #fffdf7;
  --deep: #f3ead9;
  --ink: #3a1711;
  --muted: #785f52;
  --wine: #52150f;
  --wine-deep: #2e0907;
  --gold: #b6863d;
  --gold-bright: #e0ad5c;
  --gold-pale: #f5d99d;
  --line: rgba(154, 112, 49, 0.28);
  --header: #fbf8f0;
  --shadow: 0 18px 50px rgba(61, 26, 12, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #1d0907;
  --raised: #290d0a;
  --deep: #35100c;
  --ink: #f7e6c7;
  --muted: #d1bca4;
  --wine: #160403;
  --wine-deep: #0e0202;
  --gold: #d3a357;
  --gold-bright: #efc475;
  --gold-pale: #f1d69d;
  --line: rgba(224, 173, 92, 0.24);
  --header: #1c0705;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  transition: color 0.3s, background-color 0.3s;
}
body.menu-open {
  overflow: hidden;
}
a, button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
main {
  margin-top: 85px;
  margin-bottom: 35px;
}
/* Accessibility */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #ffffff;
  background-color: var(--wine);
  transform: translateY(-150%);
  transition: transform 0.18s;
}
.skip-link:focus {
  transform: translateY(0);
}
/* Header & Navigation */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: var(--ink);
  background-color: var(--header);
  border-bottom: 1px solid var(--line);
  transition: color 0.3s, background-color 0.3s, box-shadow 0.25s;
}
.site-header.is-fixed {
  position: fixed;
  box-shadow: 0 10px 35px rgba(35, 10, 7, 0.13);
  animation: header-in 0.3s forwards;
}
@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.greek-key {
  height: 7px;
  opacity: 0.65;
  background-color: var(--gold);
  background-image: 
    linear-gradient(90deg, var(--wine-deep) 25%, transparent 25%, transparent 75%, var(--gold-bright) 75%),
    linear-gradient(var(--wine-deep) 25%, transparent 25%, transparent 75%, var(--wine-deep) 75%);
  background-size: 16px 16px;
}
.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(250px, 390px) minmax(250px, 1fr);
  align-items: center;
  min-height: 148px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 86px);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 58px);
}
.desktop-nav-right {
  justify-content: flex-end;
  padding-right: 54px;
}
.desktop-nav a, .mobile-nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 0.18s;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.active::after {
  transform: scaleX(1);
}
/* Brand Logo */
.brand {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 44px 18px;
  text-decoration: none;
}
.brand::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -34px;
  left: 0;
  height: 50px;
  content: "";
  background-color: var(--header);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 50% 50%;
  transition: background-color 0.3s;
}
.brand-logo {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 6px;
}
.brand-name {
  margin-top: -2px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.4vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-subtitle {
  margin-top: 7px;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.brand-est {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.brand-est i {
  width: 26px;
  height: 1px;
  background-color: var(--gold);
}
/* Header Actions */
.header-actions {
  position: absolute;
  top: 18px;
  right: clamp(16px, 2.5vw, 40px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.circle-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.18s, background-color 0.18s, border-color 0.18s, transform 0.18s;
}
.circle-button:hover, .circle-button:focus-visible {
  color: var(--paper);
  background-color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.theme-icon-lamp {
  position: absolute;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  overflow: visible;
}
.lamp-fire {
  transform-origin: 16px 16px;
  filter: drop-shadow(0 0 3px rgba(224, 173, 92, 0.9));
  animation: lamp-flicker 1.8s ease-in-out infinite;
  transition: opacity 0.28s ease, transform 0.32s ease, filter 0.28s ease;
}
.lamp-flame { fill: #e39a2f; stroke: #8d5418; }
.lamp-flame-core { fill: #ffd67d; stroke: none; }
.lamp-wick { stroke-width: 1.6; }
.lamp-bowl { fill: rgba(182, 134, 61, 0.2); }
.lamp-smoke {
  opacity: 0;
  stroke: currentColor;
  stroke-dasharray: 2.5 2;
  transform: translateY(3px);
  transition: opacity 0.2s ease;
}
[data-theme="dark"] .lamp-fire {
  opacity: 0;
  filter: none;
  animation: none;
  transform: translateY(4px) scale(0.08);
}
[data-theme="dark"] .lamp-smoke {
  animation: lamp-smoke 1.15s ease-out forwards;
}
@keyframes lamp-flicker {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  45% { transform: rotate(1.5deg) scale(0.94, 1.04); }
  70% { transform: rotate(-0.5deg) scale(1.03, 0.97); }
}
@keyframes lamp-smoke {
  0% { opacity: 0; transform: translateY(3px); }
  28% { opacity: 0.72; }
  100% { opacity: 0; transform: translateY(-4px); }
}
/* Mobile Navigation */
.menu-toggle {
  display: none;
  align-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.18s, opacity 0.18s;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }

[hidden], .mobile-nav[hidden] {
  display: none !important;
}
@media (min-width: 921px) {
  .mobile-nav { display: none !important; }
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: clamp(188px, 22vh, 220px) max(6vw, 52px) clamp(42px, 6vh, 72px);
  color: #fff8eb;
  background-color: #241008;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(18, 5, 2, 0.94), rgba(25, 8, 3, 0.72) 28%, rgba(28, 10, 4, 0.18) 58%, rgba(20, 7, 3, 0.04)),
    linear-gradient(0deg, rgba(16, 4, 2, 0.38), transparent 36%);
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(600px, 50vw);
  margin-left: max(0px, calc((100vw - 1500px) / 2));
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold-bright); }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 6.4vw, 6.65rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.035em;
}
.hero h1 em { color: var(--gold-bright); font-style: normal; }

/* Flourish Component */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 280px;
  margin: 16px auto 20px;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.7;
  text-align: center;
}
.flourish span {
  display: block;
  flex: 1;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.4;
}
.flourish span:nth-child(2) {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0 12px;
  background: none;
  font-size: 1.2rem;
  opacity: 1;
}
.hero .flourish {
  max-width: 320px;
  color: var(--gold-bright);
  opacity: 0.8;
}
.hero .flourish span {
  background-color: var(--gold-bright);
  opacity: 0.5;
}
.hero-copy {
  max-width: 510px;
  margin: 0 0 26px;
  color: #fffaf0;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.62;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  gap: 17px;
  color: #3a1711;
  background: linear-gradient(115deg, #f0c87c, #d79f4c);
  border: 1px solid #f6d899;
  box-shadow: 0 10px 32px rgba(20, 5, 2, 0.25);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.button:hover, .button:focus-visible {
  background-color: #fff2d0;
  box-shadow: 0 14px 35px rgba(20, 5, 2, 0.38);
  transform: translateY(-3px);
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff8eb;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-cue svg {
  width: 24px;
  margin-top: 5px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.4;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  50% { transform: translateY(5px); }
}

/* Page Layouts */
.welcome {
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 32px 100px;
  text-align: center;
}
.welcome::after {
  display: block;
  width: 80px;
  height: 1px;
  margin: 42px auto 0;
  content: "";
  background-color: var(--gold);
}
.welcome h2, .story-note h2 {
  margin: 0 0 23px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}
.welcome h2 em, .story-note h2 em {
  color: var(--gold);
  font-style: normal;
}
.welcome > p:last-of-type {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 560px;
  padding: 52px clamp(28px, 4vw, 64px);
  text-align: center;
  background-color: var(--raised);
  overflow: hidden;
  transition: background-color 0.3s;
}
.experience-card + .experience-card {
  border-left: 1px solid var(--line);
}
.experience-card::before, .experience-card::after {
  position: absolute;
  z-index: 1;
  width: 64px;
  height: 64px;
  content: "";
  opacity: 0.55;
}
.experience-card::before {
  top: 16px;
  left: 16px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.experience-card::after {
  right: 16px;
  bottom: 16px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.card-story, .card-visit { background-color: var(--deep); }
.card-illustration {
  width: min(250px, 90%);
  height: 170px;
  margin-bottom: 19px;
  color: var(--gold);
}
.card-illustration svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  opacity: 0.8;
}
.experience-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}
.experience-card > p:not(.eyebrow) {
  max-width: 300px;
  margin: 0 0 24px;
  color: var(--muted);
}
.experience-card > a, .text-link {
  position: relative;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}
.experience-card > a::after, .text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s;
}
.experience-card > a:hover::after, .experience-card > a:focus-visible::after,
.text-link:hover::after, .text-link:focus-visible::after {
  transform: scaleX(1);
}
.story-note {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 9vw;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 48px;
}
.story-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}
.story-copy .text-link {
  display: inline-block;
  margin-top: 22px;
}
.story-quote {
  position: relative;
  padding: 72px 52px;
  color: #f8e6c6;
  background-color: var(--wine);
  box-shadow: var(--shadow);
  text-align: center;
}
.story-quote::before {
  position: absolute;
  inset: 13px;
  content: "";
  border: 1px solid rgba(224, 173, 92, 0.5);
}
.quote-mark {
  display: block;
  height: 46px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}
.story-quote blockquote {
  position: relative;
  margin: 16px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-style: italic;
  line-height: 1.05;
}
.story-quote p {
  position: relative;
  margin: 0;
  color: var(--gold-pale);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* 4-Column Footer */
.site-footer {
  position: relative;
  padding: 40px 28px 20px;
  color: #f4dfbd;
  background-color: var(--wine-deep);
  overflow: hidden;
}
.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background: radial-gradient(circle at 50% -20%, var(--gold), transparent 45%);
  pointer-events: none;
}
/* Fixed Greek Key Spacing inside Footer */
.site-footer .greek-key {
  margin: 0 0 32px 0;
  width: 100%;
}
.footer-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-col p {
  margin: 0 0 10px;
  color: #cbb69b;
  font-size: 0.85rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #cbb69b;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-pale); }
.footer-logo {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.footer-brand-col h3 {
  margin: 0 0 10px;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.map-link {
  color: var(--gold);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.map-link:hover { color: var(--gold-bright); }
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-newsletter input {
  padding: 8px 12px;
  color: var(--gold-pale);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.85rem;
  outline: none;
}
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter button {
  padding: 8px 12px;
  color: var(--gold);
  background-color: var(--wine);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}
.footer-newsletter button:hover {
  color: var(--wine-deep);
  background-color: var(--gold);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #927a65;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.back-to-top {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.back-to-top:hover { color: var(--gold-bright); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

/* Responsive Media Queries */
@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 1fr 300px 1fr;
    padding-left: 28px;
    padding-right: 28px;
  }
  .desktop-nav { gap: 22px; }
  .desktop-nav-right { padding-right: 40px; }
  .brand-name { font-size: 3rem; }
  .hero { min-height: 100vh; }
}
@media (min-width: 921px) and (max-height: 900px) {   /*tight one line fromat to keep total lines down */
  .nav-shell { min-height: 124px; }
  .brand { padding-top: 9px; padding-bottom: 13px; }
  .brand::after { bottom: -28px; height: 42px; }
  .brand-name { font-size: 2.9rem; }
  .hero { padding-top: clamp(154px, 20vh, 176px); padding-bottom: 30px; }
  .hero h1 { font-size: clamp(3.7rem, 5.6vw, 5.75rem); }
  .button { min-height: 50px; padding-left: 26px; padding-right: 26px; }
  .scroll-cue { bottom: 17px; }
}
@media (max-width: 920px) {
  html { scroll-padding-top: 90px; }
  .nav-shell { display: flex; min-height: 88px; padding: 8px 20px; }
  .desktop-nav { display: none; }
  .brand { align-items: flex-start; margin-right: auto; padding: 7px 8px; }
  .brand::after, .brand-mark, .brand-est { display: none; }
  .brand-name { font-size: 2.35rem; }
  .brand-subtitle { margin-top: 6px; font-size: 0.49rem; }
  .header-actions { position: static; }
  .menu-toggle { display: grid; }
  .mobile-nav {
    position: fixed;
    z-index: 999;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--ink);
    background-color: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s, transform 0.22s;
  }
  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav a {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: none;
  }
  .hero { min-height: 820px; padding: 170px 32px 80px; }
  .hero-media { object-position: 58% center; }
  .hero-content { width: min(620px, 90%); margin-left: 0; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 490px; }
  .experience-card + .experience-card { border-top: 1px solid var(--line); border-left: 0; }
  .story-note { grid-template-columns: 1fr; gap: 70px; padding: 100px 32px; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) { /*tight one line fromat to keep total lines down */
  .greek-key { height: 5px; }
  .nav-shell { min-height: 78px; padding-left: 13px; padding-right: 13px; }
  .circle-button { width: 39px; height: 39px; }
  .hero { min-height: 760px; padding: 145px 22px 76px; }
  .hero h1 { font-size: clamp(3.55rem, 17vw, 5rem); line-height: 0.84; }
  .scroll-cue { display: none; }
  .welcome { padding: 85px 22px 76px; }
  .experience-card { min-height: 500px; padding: 48px 24px; }
  .story-note { padding: 85px 22px; }
  .story-quote { padding: 62px 30px; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto 8px; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {  
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}