/* Anderson & Co. — static recreation of Figma Make site */

:root {
  --gold: #dbd8a1;
  --forest: #244a3c;
  --forest-deep: #1a2e26;
  --nav-bg: rgba(20, 38, 30, 0.88);
  --cream: #f2ede4;
  --cream-text: #f0ebe2;
  --hero-text: #f5f0e8;
  --ink: #1c1a16;
  --brand-tile: #ede8df;
  --muted-cream: rgba(240, 235, 226, 0.65);
  --muted-cream-soft: rgba(242, 237, 228, 0.75);
  --serif: "Merriweather", Georgia, serif;
  --sans: "Merriweather Sans", system-ui, sans-serif;
  --max: 80rem;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ——— Nav ——— */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(219, 216, 161, 0.2);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img {
  height: 2.5rem;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo:hover img {
  opacity: 0.8;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(219, 216, 161, 0.65);
  transition: color 0.2s;
}

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

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: opacity 0.3s;
}

.nav-cta:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(219, 216, 161, 0.15);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  text-align: left;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(219, 216, 161, 0.75);
  padding: 0.75rem 0;
}

.nav-mobile a.is-active {
  color: var(--gold);
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: block;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* ——— Shared ——— */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.rule {
  height: 1px;
  flex: 1;
  background: color-mix(in srgb, var(--gold) 25%, transparent);
}

.rule-short {
  height: 1px;
  width: 4rem;
  margin: 1.25rem auto 0;
  background: var(--gold);
}

.btn-solid {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest-deep);
  transition: opacity 0.3s;
}

.btn-solid:hover {
  opacity: 0.8;
}

.btn-ghost {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.45);
  color: var(--cream-text);
  transition: background 0.3s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-gold {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: opacity 0.3s;
}

.btn-outline-gold:hover {
  opacity: 0.8;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
  min-height: 340px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  text-align: center;
}

.page-hero--visit {
  background: linear-gradient(150deg, var(--forest-deep) 0%, var(--forest) 100%);
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .eyebrow {
  color: rgba(219, 216, 161, 0.6);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--cream-text);
  line-height: 1.15;
  max-width: 42rem;
}

.page-hero p {
  margin-top: 1rem;
  color: var(--muted-cream);
  max-width: 32rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.eyebrow-row .rule {
  flex: 0 0 2.5rem;
  background: rgba(219, 216, 161, 0.38);
}

/* ——— Hero (home) ——— */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--hero-text);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 18, 14, 0.82) 0%,
    rgba(10, 18, 14, 0.62) 26%,
    rgba(10, 18, 14, 0.28) 46%,
    rgba(10, 18, 14, 0.06) 62%,
    transparent 78%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
}

.hero__copy {
  max-width: 32rem;
}

.hero__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__lede {
  color: var(--muted-cream-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 25rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Mission ——— */
.mission {
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--forest-deep);
}

.mission__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.mission__label span {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  white-space: nowrap;
}

.mission h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--cream-text);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.4;
}

.mission__accent {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto 0;
}

/* ——— Lifestyle ——— */
.lifestyle {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.lifestyle__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.lifestyle__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lifestyle__intro .eyebrow {
  color: var(--forest);
  margin-bottom: 0.75rem;
  letter-spacing: 0.26em;
}

.lifestyle__intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
}

.lifestyle-grid {
  display: grid;
  gap: 1rem;
}

.lifestyle-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .tile--suits {
    grid-column: span 7;
    height: clamp(280px, 45vw, 560px);
    min-height: 0;
  }

  .lifestyle-side {
    grid-column: span 5;
    height: clamp(280px, 45vw, 560px);
  }

  .lifestyle-side .tile {
    flex: 1;
    min-height: 0;
  }

  .tile--banner {
    grid-column: 1 / -1;
    height: clamp(198px, 30.8vw, 396px);
    min-height: 0;
  }
}

.tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ccc;
  min-height: 14rem;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.tile:hover img {
  transform: scale(1.05);
}

.tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 38, 30, 0.6) 0%, transparent 55%);
  pointer-events: none;
}

.tile__label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tile--banner {
  min-height: 12rem;
}

.tile--banner .tile__shade {
  background: linear-gradient(to top, rgba(20, 38, 30, 0.6) 0%, transparent 50%);
}

.tile--banner .tile__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.tile--banner .tile__label {
  position: static;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.lifestyle-banner-cta {
  margin-top: 0;
  display: none;
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 0.5rem 1.25rem;
}

@media (min-width: 640px) {
  .lifestyle-banner-cta {
    display: inline-block;
  }
}

/* ——— Store ——— */
.store {
  padding: 5rem 1.5rem;
  background: var(--forest);
}

.store__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.store__intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.store__intro .eyebrow {
  color: rgba(219, 216, 161, 0.6);
  margin-bottom: 0.75rem;
  letter-spacing: 0.26em;
}

.store__intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--cream-text);
}

.store-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .store-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.store-gallery__cell {
  overflow: hidden;
  background: #1a3530;
  height: clamp(220px, 28vw, 380px);
}

.store-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.store-gallery__cell:hover img {
  transform: scale(1.05);
}

.store-feature {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .store-feature {
    grid-template-columns: 1fr 1fr;
  }
}

.store-feature__photo {
  overflow: hidden;
  background: #1a3530;
  height: clamp(180px, 22vw, 300px);
}

.store-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.store-feature__photo:hover img {
  transform: scale(1.05);
}

.store-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 0 0;
  background: transparent;
}

@media (min-width: 768px) {
  .store-feature__copy {
    padding: 0 0 0 2rem;
  }
}

.store-feature__copy .eyebrow {
  color: rgba(219, 216, 161, 0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.26em;
}

.store-feature__copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--cream-text);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.store-feature__copy p {
  color: rgba(240, 235, 226, 0.65);
  line-height: 1.75;
  font-size: 0.92rem;
}

.store-feature__cta {
  margin-top: 2rem;
  background: var(--gold);
  color: var(--forest);
}

/* ——— Brands ——— */
.brands {
  padding: 5rem 1.5rem;
  background: #ede8df;
  text-align: center;
}

.brands__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.brands__intro {
  margin-bottom: 3.5rem;
}

.brands__intro .eyebrow {
  color: var(--forest);
  margin-bottom: 0.75rem;
  letter-spacing: 0.26em;
}

.brands__intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
}

.brands__intro .rule-short {
  margin-top: 1.25rem;
}

/* Rule — diamond — rule */
.deco-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 16rem;
  margin: 0 auto 2rem;
}

.deco-diamond__rule {
  flex: 1;
  height: 1px;
  background: rgba(219, 216, 161, 0.55);
}

.deco-diamond__gem {
  flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.deco-diamond--on-dark {
  max-width: 12rem;
  margin-bottom: 2rem;
}

.deco-diamond--on-dark .deco-diamond__rule {
  background: rgba(219, 216, 161, 0.19);
}

.brands .eyebrow {
  color: var(--forest);
  margin-bottom: 0.75rem;
  letter-spacing: 0.26em;
}

.brands h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-tile);
  height: 140px;
  padding: 20px 24px;
  overflow: hidden;
}

.brand-tile img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(1.25);
  mix-blend-mode: multiply;
}

/* Relative sizes, each +25% from original Make scales */
.brand-tile--scale-085 img { transform: scale(1.0625); }
.brand-tile--scale-11 img { transform: scale(1.375); }
.brand-tile--scale-125 img { transform: scale(1.5625); }

/* One-off logo size tweaks */
.brand-tile--dingman img { transform: scale(1.484); }   /* was 1.5625, −5% */
.brand-tile--bugatchi img { transform: scale(1.719); }  /* was 1.5625, +10% */
.brand-tile--donahue img { transform: scale(1.375); }   /* was 1.25, +10% */

/* Hold smaller: previous size, then −10% */
.brand-tile--keep img { transform: scale(0.9); max-height: 72px; }
.brand-tile--keep.brand-tile--scale-085 img { transform: scale(0.765); }

.brand-tile--empty {
  visibility: hidden;
}

.brands__note {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 26, 22, 0.45);
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  isolation: isolate;
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--forest-deep);
  overflow: hidden;
}

.cta-band .deco-diamond {
  position: relative;
  z-index: 1;
}

.cta-band--suit {
  background-color: var(--forest-deep);
  background-image: url("../images/Closeup_suit.png");
  background-size: cover;
  background-position: center 30%;
}

.cta-band--suit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 18, 14, 0.72);
  pointer-events: none;
}

.cta-band--suit > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--cream-text);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--muted-cream);
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ——— Collections ——— */
.collection-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0 2rem;
}

.collection-row {
  display: grid;
  border-top: 1px solid rgba(36, 72, 60, 0.12);
  align-items: stretch;
}

@media (min-width: 768px) {
  .collection-row {
    grid-template-columns: 1fr 1fr;
  }
}

.collection-row__media {
  overflow: hidden;
  min-height: clamp(260px, 35vw, 480px);
  height: 100%;
  background: #ccc;
  align-self: stretch;
}

.collection-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.collection-row:hover .collection-row__media img {
  transform: scale(1.04);
}

.collection-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: var(--cream);
}

@media (min-width: 768px) {
  .collection-row__body {
    padding: 3rem 3.5rem;
  }

  .collection-row--flip .collection-row__media {
    order: 2;
  }

  .collection-row--flip .collection-row__body {
    order: 1;
  }
}

.collection-row__body .eyebrow {
  color: rgba(36, 74, 60, 0.55);
  margin-bottom: 0.75rem;
  letter-spacing: 0.22em;
}

.collection-row h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}

.collection-row p {
  color: rgba(28, 26, 22, 0.72);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(36, 74, 60, 0.2);
  color: var(--forest);
}

.collection-row__note {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 26, 22, 0.4);
}

.collections-wrap {
  padding: 5rem 1.5rem 0;
  background: var(--cream);
}

/* ——— Visit ——— */
.visit-exterior {
  margin: 0;
  width: 100%;
  height: clamp(260px, 40vw, 520px);
  background: var(--forest-deep);
  overflow: hidden;
}

.visit-exterior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .visit-panel {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.visit-card {
  background: transparent;
  padding: 0;
  box-shadow: none;
  min-width: 0;
}

.visit-card .eyebrow {
  color: rgba(36, 74, 60, 0.55);
  margin-bottom: 0.75rem;
}

.visit-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.visit-card .rule-short {
  margin: 0 0 2rem;
}

.visit-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(36, 74, 60, 0.55);
  margin-bottom: 0.35rem;
}

.visit-meta dd {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

.visit-meta a {
  color: var(--forest);
}

.hours-list {
  display: flex;
  flex-direction: column;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(36, 72, 60, 0.12);
  font-size: 0.95rem;
}

.hours-list li:first-child {
  border-top: 1px solid rgba(36, 72, 60, 0.12);
}

.hours-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(28, 26, 22, 0.5);
}

.story {
  padding: 5rem 1.5rem;
  background: var(--forest);
}

.story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .story__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .story__copy {
    padding-right: 4rem;
  }
}

.story__copy .eyebrow {
  color: rgba(219, 216, 161, 0.5);
  margin-bottom: 1rem;
}

.story__copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--cream-text);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.story__copy .rule-short {
  margin: 0 0 2rem;
  background: var(--gold);
}

.story__copy p {
  color: rgba(240, 235, 226, 0.7);
  line-height: 1.85;
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}

.story__quote {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.story__quote .rule {
  flex: 0 0 2.5rem;
  background: rgba(219, 216, 161, 0.3);
}

.story__quote p {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}

.story-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .story-mosaic {
    padding: 2.5rem 0 2.5rem 2rem;
  }
}

.story-mosaic figure {
  overflow: hidden;
  background: #1a3530;
}

.story-mosaic__wide {
  grid-column: 1 / -1;
}

.story-mosaic img {
  width: 100%;
  height: clamp(160px, 22vw, 280px);
  object-fit: cover;
  display: block;
}

.inside-shop {
  padding: 5rem 1.5rem 2.5rem;
  background: var(--cream);
}

.inside-shop__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.inside-shop__intro {
  text-align: center;
}

.inside-shop__intro .eyebrow {
  color: var(--forest);
  margin-bottom: 0.75rem;
  letter-spacing: 0.26em;
}

.inside-shop__intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
}

.map-section {
  display: grid;
}

@media (min-width: 900px) {
  .map-section {
    grid-template-columns: 1.4fr minmax(320px, 420px);
    min-height: 28rem;
  }
}

.map-embed {
  min-height: 22rem;
  background: #d8d2c8;
  display: flex;
  flex-direction: column;
}

.map-embed iframe {
  width: 100%;
  flex: 1;
  min-height: 17.5rem;
  border: 0;
  display: block;
}

.map-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #162820;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.map-directions:hover {
  opacity: 0.8;
}

.map-aside {
  background: var(--forest-deep);
  color: var(--cream-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  gap: 1rem;
}

.map-aside h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.map-aside p {
  color: rgba(240, 235, 226, 0.6);
  line-height: 1.75;
  font-size: 0.88rem;
}

.map-aside a {
  color: var(--gold);
}

.map-aside__address {
  margin-top: 1rem;
  color: rgba(240, 235, 226, 0.55) !important;
}

/* ——— Footer ——— */
.site-footer {
  background: #121c18;
  color: var(--cream-text);
  padding: 4rem 1.5rem 2rem;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(219, 216, 161, 0.15);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 2.75rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(240, 235, 226, 0.55);
  line-height: 1.75;
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer-col h3 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a,
.footer-col button {
  font-size: 0.875rem;
  color: rgba(240, 235, 226, 0.55);
  transition: opacity 0.2s;
  text-align: left;
}

.footer-col a:hover,
.footer-col button:hover {
  opacity: 1;
  color: var(--cream-text);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(240, 235, 226, 0.55);
}

.footer-address {
  color: rgba(240, 235, 226, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(240, 235, 226, 0.4);
}

.footer-est {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-est .rule {
  width: 2rem;
  flex: 0 0 2rem;
  background: rgba(219, 216, 161, 0.15);
}

.footer-est span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(219, 216, 161, 0.45);
}
