:root {
  --bg: #f4d9c8;
  --bg-strong: #efd0bc;
  --surface: rgba(255, 248, 243, 0.76);
  --surface-strong: rgba(255, 251, 247, 0.9);
  --surface-soft: rgba(249, 238, 229, 0.72);
  --text: #2c2420;
  --text-soft: #6b5e54;
  --text-muted: #8f8074;
  --line: rgba(86, 62, 43, 0.1);
  --line-strong: rgba(86, 62, 43, 0.16);
  --accent: #c4956a;
  --accent-soft: rgba(196, 149, 106, 0.18);
  --sage: #cdb39d;
  --ink: #221a15;
  --shadow-sm: 0 20px 50px rgba(80, 49, 28, 0.08);
  --shadow-md: 0 32px 86px rgba(80, 49, 28, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(255, 244, 236, 0.6), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(196, 149, 106, 0.18), transparent 18%),
    linear-gradient(180deg, #f7e4d7 0%, #f4d9c8 38%, #f0d3c0 100%);
}

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

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

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

::selection {
  background: rgba(133, 104, 74, 0.18);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(133, 104, 74, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -64px;
  z-index: 60;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site {
  position: relative;
  overflow: clip;
}

.backdrop-orb {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.backdrop-orb.one {
  top: -10rem;
  left: -12rem;
  background: rgba(216, 199, 178, 0.5);
}

.backdrop-orb.two {
  right: -12rem;
  top: 24rem;
  background: rgba(140, 149, 131, 0.2);
}

.shell {
  position: relative;
  z-index: 1;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(244, 217, 200, 0.94), rgba(244, 217, 200, 0.42));
  border-bottom: 1px solid rgba(86, 62, 43, 0.06);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(255, 248, 243, 0.86), rgba(244, 217, 200, 0.45));
  border: 1px solid rgba(86, 62, 43, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span,
.footer-brand span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(196, 149, 106, 0.26);
}

.button-primary:hover {
  background: #a87a52;
}

.button-secondary {
  background: rgba(255, 251, 247, 0.72);
  border-color: rgba(86, 62, 43, 0.12);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(24, 23, 22, 0.18);
}

.button-ghost {
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(24, 23, 22, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.page {
  padding: 72px 0 108px;
}

.eyebrow,
.section-kicker,
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before,
.section-kicker::before,
.page-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(133, 104, 74, 0.35);
}

.hero {
  padding: 26px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.hero-visual,
.panel,
.card,
.band,
.article-body,
.article-side,
.table-card,
.quote-card,
.form-card,
.directory-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hero-copy,
.hero-visual,
.panel,
.band,
.article-body,
.article-side,
.form-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 64px 60px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82)),
    linear-gradient(180deg, rgba(216, 199, 178, 0.08), rgba(216, 199, 178, 0));
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.article-body h1,
.article-body h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.35rem, 6.7vw, 6.25rem);
}

.hero-copy p,
.page-hero p,
.section-copy,
.card p,
.panel p,
.band p,
.article-body p,
.article-body li,
.quote-card p,
.table-card p,
.directory-card p,
.article-side p {
  color: var(--text-soft);
  line-height: 1.82;
}

.lead {
  margin-top: 28px;
  max-width: 42rem;
  font-size: 1.06rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(24, 23, 22, 0.08);
  background: rgba(251, 248, 243, 0.9);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
}

.stat span {
  display: block;
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.94)),
    linear-gradient(135deg, rgba(216, 199, 178, 0.16), rgba(140, 149, 131, 0.06));
}

.visual-stack,
.visual-shell {
  position: relative;
  min-height: 100%;
}

.visual-shell {
  min-height: 570px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 242, 235, 0.82));
  border: 1px solid rgba(24, 23, 22, 0.06);
  overflow: hidden;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 24px;
  border: 1px solid rgba(24, 23, 22, 0.06);
}

.visual-rail {
  position: absolute;
  width: 1px;
  top: 28px;
  bottom: 28px;
  background: linear-gradient(180deg, transparent, rgba(24, 23, 22, 0.08), transparent);
}

.visual-rail.rail-left {
  left: 74px;
}

.visual-rail.rail-right {
  right: 82px;
}

.visual-column {
  position: absolute;
  bottom: 108px;
  border-radius: 999px 999px 38px 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(233, 224, 213, 0.94));
  border: 1px solid rgba(24, 23, 22, 0.08);
  box-shadow: 0 30px 70px rgba(37, 28, 20, 0.08);
}

.visual-column::before,
.visual-column::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.visual-column::before {
  top: 12%;
  width: 74%;
  height: 58%;
  border-radius: 999px 999px 40% 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(225, 213, 199, 0.86));
}

.visual-column::after {
  bottom: 10%;
  width: 58%;
  height: 1px;
  background: rgba(24, 23, 22, 0.08);
}

.visual-column.look-tall {
  left: 10%;
  width: 24%;
  height: 70%;
  animation: floatA 18s ease-in-out infinite;
}

.visual-column.look-wide {
  left: 38%;
  width: 24%;
  height: 52%;
  border-radius: 28px 28px 32px 32px;
  animation: floatB 20s ease-in-out infinite;
}

.visual-column.look-wide::before {
  width: 72%;
  height: 44%;
  border-radius: 18px 18px 32% 32%;
}

.visual-column.look-dress {
  right: 10%;
  width: 26%;
  height: 78%;
  animation: floatC 22s ease-in-out infinite;
}

.visual-column.look-dress::before {
  width: 80%;
  height: 64%;
}

.visual-annotation {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 23, 22, 0.08);
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-annotation.top {
  left: 28px;
  top: 28px;
}

.visual-annotation.bottom {
  right: 28px;
  bottom: 90px;
}

.visual-labels {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 23, 22, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.page-hero {
  padding-top: 10px;
}

.page-hero-panel {
  display: grid;
  gap: 18px;
  border-radius: 40px;
  padding: 54px 54px 48px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.86), rgba(244, 230, 220, 0.72));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.page-hero-panel p {
  max-width: 48rem;
}

.crumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 4.8vw, 4.3rem);
}

.section-copy {
  max-width: 46rem;
}

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

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

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

.card,
.directory-card,
.table-card,
.quote-card {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.card h3,
.panel h3,
.table-card h3,
.quote-card h3,
.directory-card h3,
.article-side h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.05;
}

.card.media {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 239, 0.92));
}

.card.media .mini-stage {
  position: relative;
  height: 152px;
  margin-bottom: 22px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 228, 0.9));
  border: 1px solid rgba(24, 23, 22, 0.08);
}

.mini-stage::before,
.mini-stage::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(224, 212, 198, 0.94));
  border: 1px solid rgba(24, 23, 22, 0.08);
}

.mini-stage::before {
  width: 32%;
  height: 70%;
  left: 14%;
  bottom: 12%;
  border-radius: 999px 999px 26px 26px;
}

.mini-stage::after {
  width: 24%;
  height: 52%;
  right: 16%;
  top: 16%;
  border-radius: 18px 18px 24px 24px;
}

.panel,
.article-side {
  padding: 32px;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.8;
}

.list-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.band {
  display: grid;
  gap: 18px;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(216, 199, 178, 0.12), transparent 26%),
    linear-gradient(135deg, #181512 0%, #26211d 56%, #332a23 100%);
  color: #f8f2ea;
}

.band .page-tag {
  color: rgba(255, 231, 205, 0.78);
}

.band .page-tag::before {
  background: rgba(255, 231, 205, 0.32);
}

.band p {
  color: rgba(248, 242, 234, 0.74);
  max-width: 44rem;
}

.link-list {
  display: grid;
  margin-top: 18px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.link-list a strong {
  color: var(--text);
  font-weight: 600;
}

.link-list a:hover {
  color: var(--ink);
}

.link-list a:last-child {
  border-bottom: 0;
}

.quote-card {
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: 24px;
}

.article-body {
  padding: 42px;
}

.article-body h1 {
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  margin-bottom: 18px;
}

.article-body h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 28px;
  margin-bottom: 14px;
}

.article-body h3 {
  margin: 24px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.34rem;
  font-weight: 400;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
}

.article-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

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

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

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

.directory-card,
.table-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.table-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.home-hero {
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px 32px 120px;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.home-overline {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 12ch;
}

.home-title em {
  font-style: italic;
  color: #a87a52;
}

.home-tagline {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 40px;
}

.home-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.home-meta {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  z-index: 2;
}

.home-meta-title {
  text-transform: uppercase;
  margin-bottom: 4px;
}

.home-meta-value {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.home-meta-links {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: flex-end;
}

.home-meta-links a {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.home-meta-links a:hover {
  color: #a87a52;
}

.collection {
  position: relative;
  padding: 48px 48px 80px;
}

.collection-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.86), rgba(244, 230, 220, 0.72));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(80, 49, 28, 0.12);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.collection-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 10ch;
}

.collection-copy p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.85;
  max-width: 42rem;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  color: var(--text-soft);
  line-height: 1.8;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.route-grid {
  display: grid;
  gap: 14px;
}

.route-card {
  padding: 22px 24px;
  border: 1px solid rgba(86, 62, 43, 0.1);
  background: rgba(255, 252, 248, 0.64);
}

.route-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.route-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.route-card span,
.route-card p {
  color: var(--text-soft);
}

.route-card-tag {
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-card {
  padding: 34px;
}

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

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

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

.field label {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(24, 23, 22, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #90877d;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(133, 104, 74, 0.42);
  box-shadow: 0 0 0 4px rgba(133, 104, 74, 0.12);
  outline: none;
}

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

.note {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  margin-top: 76px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-brand p,
.footer-column a,
.footer-meta {
  color: var(--text-soft);
}

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

.footer-column strong {
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes floatC {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1180px) {
  .hero-grid,
  .grid-2,
  .layout-2,
  .article-layout,
  .footer-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

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

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

  .home-meta {
    left: 32px;
    right: 32px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: relative;
  }

  .nav-links,
  .nav-actions .button-secondary {
    display: none;
  }

  .nav-links.open {
    display: grid;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open a {
    padding: 12px 0;
  }

  .hero-copy,
  .hero-visual,
  .page-hero-panel,
  .panel,
  .band,
  .article-body,
  .article-side,
  .form-card {
    padding: 32px;
  }

  .hero {
    padding-top: 12px;
  }

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

  .hero-visual,
  .visual-shell {
    min-height: 440px;
  }

  .collection {
    padding: 32px 20px 56px;
  }

  .collection-panel {
    padding: 36px 28px;
  }

  .home-meta {
    position: static;
    margin-top: 36px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-meta-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .visual-column.look-tall,
  .visual-column.look-wide,
  .visual-column.look-dress {
    bottom: 92px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .page {
    padding: 48px 0 88px;
  }

  .cards,
  .cards.two,
  .directory-grid,
  .sitemap-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .topbar-inner {
    min-height: 78px;
  }

  .brand-copy span,
  .footer-brand span {
    letter-spacing: 0.16em;
  }

  .hero-copy,
  .hero-visual,
  .page-hero-panel,
  .panel,
  .band,
  .article-body,
  .article-side,
  .form-card {
    padding: 24px;
  }

  .home-title,
  .collection-copy h2 {
    max-width: 100%;
  }

  .hero-visual,
  .visual-shell {
    min-height: 360px;
  }

  .visual-rail {
    display: none;
  }

  .visual-column.look-tall {
    left: 10%;
    width: 24%;
  }

  .visual-column.look-wide {
    left: 38%;
    width: 26%;
  }

  .visual-column.look-dress {
    right: 10%;
    width: 28%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

