/* ============================================
   Universal Cabinet Designs — shared styles
   Desktop-first, responsive fallbacks

   Reusable layout / component classes:
   .site-header, .main-nav, .hero-banner, .breadcrumb,
   .section-title, .content-wrap, .two-col, .product-grid,
   .product-card, .btn, .btn-dark, .newsletter, .site-footer
   ============================================ */

/* --- CSS variables --- */
:root {
  --color-page-bg: #f4f4f2;
  --color-header-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --color-border: #e0e0dc;
  --color-footer-bg: #1e1e1e;
  --color-footer-text: #e8e8e8;
  --color-accent: #8b4513;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --content-max: 1280px;
  --radius-card: 10px;
  --radius-btn: 999px;
  --space-section: 4rem;
  --nav-underline: 2px solid #1a1a1a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- reset / base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-page-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  background-color: #dedede;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --- layout: content width --- */
.content-wrap {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Full-bleed banners (wider than content) */
.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-banner img,
.hero-banner .hero-img {
  width: 100%;
  display: block;
  min-height: 220px;
  object-fit: cover;
  background-color: #d8d8d8;
}

.hero-banner--tall .hero-img,
.hero-banner--tall img {
  min-height: 380px;
}

.hero-banner--xlarge .hero-img,
.hero-banner--xlarge img {
  min-height: 480px;
}

/* --- site header --- */
.site-header {
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: min(220px, 42vw);
  min-width: 48px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

/* Main navigation */
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.main-nav a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  text-decoration: none;
  border-bottom-color: #ccc;
}

.main-nav a.active {
  border-bottom: var(--nav-underline);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.85rem;
}

.header-actions a:hover {
  background: #f5f5f5;
  text-decoration: none;
}

/* --- breadcrumb --- */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 0.75rem 0;
}

.breadcrumb a {
  text-decoration: underline;
}

/* --- section titles --- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

/* --- two column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.two-col--reverse .two-col__text {
  order: 2;
}

.two-col--reverse .two-col__media {
  order: 1;
}

.two-col__media img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

/* --- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.88;
  text-decoration: none;
}

.btn-dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-dark:hover {
  color: #fff;
}

/* --- product grid & cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e5e5e5;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.product-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0;
}

.product-card__cat {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin: 0;
}

.product-card__price {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.25rem 0 0.75rem;
}

.product-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- newsletter --- */
.newsletter {
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
  margin-top: var(--space-section);
}

.newsletter__inner {
  width: 100%;
}

.newsletter__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter__left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
}

.newsletter__follow {
  flex-shrink: 0;
  min-width: 160px;
}

.newsletter__follow-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.newsletter__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-page-bg);
  font-size: 1.25rem;
}

.newsletter__form-wrap {
  flex: 1;
  min-width: 200px;
}

.newsletter h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.newsletter p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 420px;
}

.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  font: inherit;
}

.newsletter__form button {
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-btn);
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.newsletter__social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.newsletter__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.75rem;
}

.newsletter__social a:hover {
  background: #f0f0f0;
  text-decoration: none;
}

/* --- site footer --- */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--color-footer-text);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}

.footer-col p {
  color: #b8b8b8;
  line-height: 1.55;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: #c8c8c8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3a3a3a;
  font-size: 0.8rem;
  color: #999;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-badges span {
  padding: 0.35rem 0.6rem;
  background: #2a2a2a;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #ccc;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.75rem;
  color: #ccc;
}

.footer-social a:hover {
  background: #333;
  text-decoration: none;
}

/* --- home apparel hero (Section A) --- */
.home-apparel-hero {
  background: #fafafa;
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0 3rem;
  margin-bottom: 0;
}

.home-apparel-hero .content-wrap {
  max-width: 920px;
}

.home-apparel-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  text-align: center;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.home-apparel-hero__lead {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-align: center;
  font-style: italic;
  margin: 0 auto 1.5rem;
  max-width: 52rem;
}

.home-apparel-hero__body {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2rem;
  color: var(--color-text);
}

.home-apparel-hero__body p {
  margin-bottom: 1rem;
}

.home-apparel-hero__founder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  max-width: 900px;
  margin: 2.5rem auto 2rem;
}

.home-apparel-hero__founder-text {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-apparel-hero__founder-text p {
  margin: 0 0 0.35rem;
}

.home-apparel-hero__founder-img {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  min-height: 220px;
  background: #e5e5e5;
}

.home-apparel-hero__founder-img img {
  width: 100%;
  display: block;
  min-height: 220px;
  object-fit: cover;
}

.home-apparel-hero__collage-duo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 720px;
}

.home-apparel-hero__collage-duo figure {
  margin: 0;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #e8e8e8;
}

.home-apparel-hero__collage-duo img {
  width: 100%;
  display: block;
  min-height: 160px;
  object-fit: cover;
}

.home-apparel-hero__quote-bottom {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  text-align: center;
  font-style: italic;
  margin: 2rem auto 0;
  max-width: 48rem;
  line-height: 1.4;
}

.featured-heading-stack {
  text-align: center;
  margin-bottom: 2rem;
}

.featured-heading-stack h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.35rem;
}

.featured-heading-stack p {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: var(--color-text);
}

.desk-section__script {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.desk-section__body {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
}

.desk-section__taglines {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* --- home-specific (legacy / shared) --- */
.home-intro {
  padding: var(--space-section) 0;
}

.home-intro__collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.home-intro__hero-main {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 320px;
}

.home-intro__hero-main img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.home-intro__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-intro__promo {
  background: rgba(255, 255, 255, 0.92);
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.home-intro__promo h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.home-intro__founder-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

.home-intro__founder-row img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  min-height: 180px;
  object-fit: cover;
}

.home-intro__collage-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-intro__collage-bottom img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.featured-strip {
  padding: var(--space-section) 0;
}

.view-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.desk-section {
  padding: var(--space-section) 0;
}

.desk-section__copy {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.about-teaser {
  padding: var(--space-section) 0;
}

.about-teaser__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-teaser__images img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.mission-teaser-home {
  padding: var(--space-section) 0;
}

.mission-teaser-home .breadcrumb {
  padding-top: 0;
}

.mission-stack .two-col {
  margin-bottom: 3rem;
}

.mission-stack .two-col:last-child {
  margin-bottom: 0;
}

.featured-row-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: var(--space-section) 0;
}

/* --- exhibit --- */
.exhibit-promo-strip {
  background: var(--color-page-bg);
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
}

.exhibit-promo-strip__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.exhibit-promo-strip__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 0.35rem;
}

.exhibit-promo-strip__head p {
  margin: 0;
  font-size: 1rem;
}

.exhibit-promo-strip__quote {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  margin: 1.5rem 0 0;
}

.exhibit-archive-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.exhibit-archive-header__left {
  margin: 0;
  justify-self: start;
}

.exhibit-archive-header__center {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  text-align: center;
  margin: 0;
  font-weight: 400;
}

.exhibit-archive-header__right {
  justify-self: end;
}

.exhibit-archive-header__right select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

.exhibit-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.exhibit-toolbar select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

.exhibit-page-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 1rem 0 2rem;
}

.category-tile--label-below {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-decoration: none;
  background: #fff;
}

.category-tile--label-below:hover {
  text-decoration: none;
  opacity: 0.95;
}

.category-tile--label-below .category-tile__media {
  position: relative;
  min-height: 140px;
  background: #ddd;
}

.category-tile--label-below .category-tile__media img {
  width: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.category-tile--label-below .category-tile__caption {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.product-card--placeholder .product-card__body {
  display: none;
}

.product-card--placeholder .product-card__img {
  min-height: 220px;
}

.explore-products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem auto 0;
  max-width: 960px;
}

.explore-products-row a {
  display: block;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #e5e5e5;
  text-decoration: none;
}

.explore-products-row a:hover {
  text-decoration: none;
  opacity: 0.92;
}

.explore-products-row img {
  width: 100%;
  display: block;
  min-height: 200px;
  object-fit: cover;
}

.mission-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.category-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 160px;
  display: block;
  text-decoration: none;
}

.category-tile:hover {
  text-decoration: none;
  opacity: 0.95;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.category-tile span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.decor-banner {
  margin-bottom: 0;
}

.decor-banner img {
  min-height: 120px;
}

/* --- membership --- */
.membership-hero-block {
  position: relative;
  padding: 3rem 0 4rem;
  margin-bottom: 0;
}

.membership-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.membership-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.3) 50%, transparent 50%);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.membership-hero-block .content-wrap {
  position: relative;
  z-index: 1;
}

.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.membership-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 2.25rem;
  border: 1px solid var(--color-border);
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.membership-card__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-page-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.membership-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
}

.membership-card__price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.membership-card__strip {
  background: #f0f0ec;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--color-border);
}

.membership-person img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.2);
  min-height: 320px;
  object-fit: cover;
}

/* --- contact --- */
.contact-section {
  padding: 2rem 0 var(--space-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.contact-info__item {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-info__item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
}

.contact-social a:hover {
  background: #eee;
  text-decoration: none;
}

.contact-form-wrap form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}

.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
}

.contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.map-placeholder {
  margin-top: 2rem;
  min-height: 280px;
  background: #e0e0dc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* --- blog / social wall --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e5e5e5;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}

.blog-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
}

.social-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.social-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.social-card__img {
  aspect-ratio: 1;
  background: #e8e8e8;
}

.social-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card__body {
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- page section spacing --- */
.page-section {
  padding: 2rem 0;
}

.page-section--tight-top {
  padding-top: 0;
}

/* --- responsive --- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-intro__collage {
    grid-template-columns: 1fr;
  }

  .featured-row-static {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .social-wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    gap: 0.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    order: 0;
  }

  .nav-toggle {
    order: 1;
    margin-left: auto;
  }

  .header-actions {
    order: 2;
  }

  .two-col,
  .contact-grid,
  .membership-layout {
    grid-template-columns: 1fr;
  }

  .two-col--reverse .two-col__text,
  .two-col--reverse .two-col__media {
    order: unset;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-tiles {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-intro__founder-row {
    grid-template-columns: 1fr;
  }

  .home-intro__collage-bottom {
    grid-template-columns: 1fr;
  }

  .about-teaser__images {
    grid-template-columns: 1fr;
  }

  .featured-row-static {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .social-wall-grid {
    grid-template-columns: 1fr;
  }

  .newsletter__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter__main {
    flex-direction: column;
    width: 100%;
  }

  .home-apparel-hero__founder-row {
    grid-template-columns: 1fr;
  }

  .exhibit-archive-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .exhibit-archive-header__left,
  .exhibit-archive-header__right {
    justify-self: center;
  }

  .explore-products-row {
    grid-template-columns: 1fr;
  }

  .membership-card {
    max-width: none;
  }
}
