/* Mpakaliko — reference layout (parchment / charcoal / gold) */
:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --black-soft: #141414;
  --cream: #f0ede4;
  --cream-dark: #e4dfd3;
  --parchment: #f0ede4;
  --gold: #b8922e;
  --gold-bright: #c9a035;
  --gold-hover: #d4b24d;
  --champagne: #d4c9a8;
  --champagne-dim: #b8a880;
  --gold-metallic: #d4af37;
  --white: #faf9f6;
  --muted: #a8a49c;
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

*,
*::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(--charcoal);
  background: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Top utility bar */
.top-bar {
  background: #000;
  color: var(--champagne);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  border-bottom: 1px solid #1a1a1a;
}

.top-bar__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.top-bar__loc-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--champagne);
  font-weight: 500;
  transition: color 0.2s;
}

a.top-bar__loc-line:hover {
  color: var(--gold-metallic);
}

.top-bar__pin {
  color: var(--gold-metallic);
  flex-shrink: 0;
}

.top-bar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.top-bar__phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.top-bar__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--champagne);
  transition: color 0.2s;
}

a.top-bar__phone-link:hover {
  color: var(--gold-metallic);
}

.top-bar__phone-ico {
  color: var(--gold-metallic);
  flex-shrink: 0;
}

.top-bar__phone-label {
  font-weight: 600;
}

.top-bar__phone-num {
  opacity: 0.92;
  letter-spacing: 0.04em;
}

.top-bar__sep {
  color: #444;
  user-select: none;
}

.top-bar__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding-left: 0.25rem;
}

.top-bar__social a {
  color: var(--champagne);
  opacity: 0.95;
  transition: opacity 0.2s, transform 0.2s;
}

.top-bar__social a:hover {
  opacity: 1;
  transform: scale(1.08);
}

.top-bar__social .icon-link {
  display: inline-flex;
}

/* Masthead: main nav + hero — crest overlaps header/hero seam */
.masthead {
  position: relative;
  z-index: 2;
  /* Distance from top of masthead to bottom edge of .site-header (nav row) */
  --masthead-seam: 4.45rem;
}

@media (max-width: 1023px) {
  .masthead {
    --masthead-seam: 3.55rem;
  }
}

/* Main header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid #1f1f1f;
  overflow: visible;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  flex-wrap: nowrap;
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding-left: 10.75rem;
  }
}

/* Crest logo — double gold frame */
.logo--emblem {
  flex-shrink: 0;
  align-self: center;
}

/* Overlaps main nav + hero (centered on seam) */
.logo--overlap {
  position: absolute;
  left: max(1rem, env(safe-area-inset-left, 0px));
  top: var(--masthead-seam);
  transform: translateY(-50%);
  z-index: 115;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}

.logo--emblem.logo--overlap .logo__ring-inner {
  width: 130px;
  height: 148px;
}

.logo--emblem.logo--overlap .logo__text-main {
  font-size: 0.56rem;
}

.logo--emblem.logo--overlap .logo__text-tag {
  font-size: 0.48rem;
}

.logo--emblem.logo--overlap .logo__wheat {
  width: 11px;
  height: 54px;
}

.logo--emblem.logo--overlap .logo__flourish {
  width: 56px;
}

.logo--overlap.logo--asset .logo__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(240px, 46vw);
  max-height: min(176px, 26vh);
}

@media (max-width: 1023px) {
  .logo--overlap {
    left: 0.75rem;
    transform: translateY(-48%);
  }

  .logo--emblem.logo--overlap .logo__ring-inner {
    width: 102px;
    height: 116px;
  }

  .logo--emblem.logo--overlap .logo__text-main {
    font-size: 0.48rem;
  }

  .logo--emblem.logo--overlap .logo__text-tag {
    font-size: 0.4rem;
  }

  .logo--emblem.logo--overlap .logo__wheat {
    width: 9px;
    height: 44px;
  }

  .logo--overlap.logo--asset .logo__img {
    max-width: min(200px, 52vw);
    max-height: min(148px, 22vh);
  }
}

.logo__ring {
  display: block;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(160deg, #e8d5a0 0%, #a67c1f 45%, #d4af37 100%);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.logo__ring-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 25%, #353028 0%, #0a0a0a 75%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.65);
  padding: 0.35rem 0.25rem 0.25rem;
}

.logo__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.logo__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}

.logo__text-main {
  font-family: var(--font-serif);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.2;
}

.logo__text-tag {
  font-family: var(--font-serif);
  font-size: 0.45rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--champagne);
  line-height: 1.15;
  max-width: 5.5rem;
}

.logo__wheat {
  width: 10px;
  height: 48px;
  color: var(--gold-metallic);
  opacity: 0.9;
  flex-shrink: 0;
}

.logo__wheat--r {
  transform: scaleX(-1);
}

.logo__flourish {
  width: 52px;
  height: auto;
  margin-top: 0.1rem;
  color: var(--gold-metallic);
  opacity: 0.9;
}

@media (max-width: 1023px) {
  .logo__ring-inner {
    width: 96px;
    height: 108px;
    padding: 0.25rem 0.2rem;
  }

  .logo__text-main {
    font-size: 0.45rem;
  }

  .logo__text-tag {
    font-size: 0.38rem;
    max-width: 4.5rem;
  }

  .logo__wheat {
    width: 8px;
    height: 40px;
  }

  .logo__flourish {
    width: 40px;
  }
}

@media (max-width: 380px) {
  .logo__ring-inner {
    width: 86px;
    height: 98px;
  }

  .logo__text-main {
    font-size: 0.4rem;
  }

  .logo__text-tag {
    font-size: 0.34rem;
  }
}

.nav-desktop {
  display: none;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
  justify-content: flex-end;
  align-items: center;
}

.nav-desktop a {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover {
  color: var(--gold-metallic);
}

.nav-desktop a.is-active {
  color: var(--gold-metallic);
  border-bottom-color: var(--gold-metallic);
}

.nav__caret {
  font-size: 0.55em;
  opacity: 0.75;
  vertical-align: middle;
}

.btn-call {
  display: none;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(180deg, #d4b24d 0%, var(--gold-bright) 45%, #a67c1f 100%);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  transition: filter 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn-call:hover {
  filter: brightness(1.08);
}

.btn-call__icon {
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 125;
  background: #111;
  border-bottom: 1px solid #2a2a2a;
  padding: 1rem 1.25rem 1.5rem;
}

.site-header.is-open .nav-mobile {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile li {
  border-bottom: 1px solid #222;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  color: #e5e5e5;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-mobile .btn-call {
  display: inline-flex;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .btn-call {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: min(90vh, 860px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vh, 4rem) 1.25rem clamp(5rem, 12vh, 6.5rem);
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__inner {
    padding-left: 11.5rem;
    padding-top: clamp(3rem, 9vh, 4.5rem);
  }
}

@media (max-width: 1023px) {
  .hero__inner {
    padding-left: max(1rem, 7.25rem);
  }
}

.hero__content {
  max-width: 520px;
}

.hero__title {
  margin: 0 0 0.35rem;
  line-height: 1.05;
}

.hero__title-line {
  display: block;
}

.hero__title-line--gold {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold-bright);
  margin-bottom: 0.15rem;
}

.hero__title-line--white {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--gold-bright);
  margin: 0.85rem 0 1rem;
  letter-spacing: 0.04em;
}

.hero__text {
  font-size: 0.95rem;
  color: #d8d4cc;
  margin: 0 0 1.5rem;
  max-width: 440px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
}

.btn--hero-primary {
  background: linear-gradient(180deg, #d4b24d 0%, var(--gold-bright) 40%, #9e7a1e 100%);
  color: var(--charcoal);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn--hero-primary:hover {
  filter: brightness(1.06);
}

.btn--hero-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Award — sits on hero/cream boundary (half in each) */
.hero__award {
  position: absolute;
  left: max(1rem, env(safe-area-inset-left, 0px));
  bottom: clamp(-4.5rem, -10vw, -2.75rem);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  max-width: min(280px, 90vw);
  margin: 0;
  pointer-events: none;
}

.hero__award a {
  pointer-events: auto;
}

.hero__award--overlap .hero__award-text {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero__award-wreath {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border: 3px double var(--gold-bright);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(201, 160, 53, 0.12), transparent 55%),
    radial-gradient(circle at 50% 100%, #1a1510, #0a0908);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(201, 160, 53, 0.25);
  position: relative;
}

.hero__award-wreath::before,
.hero__award-wreath::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold-bright);
  border-radius: 50% 50% 40% 40%;
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
}

.hero__award-wreath::before {
  left: 6px;
  border-right: none;
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
}

.hero__award-wreath::after {
  right: 6px;
  border-left: none;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
}

.hero__award-text {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.35;
  text-align: left;
}

/* Sections */
.section {
  padding: 4rem 1.25rem;
}

.section--cream {
  position: relative;
  z-index: 1;
  background-color: var(--parchment);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--charcoal);
}

/* Extra top space so overlapping award + heading clear each other */
#products.section--cream {
  padding-top: 5.5rem;
}

@media (max-width: 1023px) {
  #products.section--cream {
    padding-top: 5rem;
  }
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--dark::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 0;
  width: 58%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23c9a035' stroke-width='0.6' opacity='0.14'%3E%3Cpath d='M280 20 Q320 120 300 220 Q280 320 200 380'/%3E%3Cpath d='M320 40 Q360 140 340 260'/%3E%3Cpath d='M240 60 Q200 180 260 300'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat right center / cover;
  pointer-events: none;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

/* Product block: dark serif title on parchment */
.section__head--on-cream h2 {
  color: var(--charcoal);
}

.section__head--on-cream p {
  margin: 0;
  color: #5c5852;
  font-size: 0.95rem;
}

/* Stores block: gold title */
.section__head--gold h2 {
  color: var(--gold-bright);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.section__head--gold p {
  margin: 0;
  color: #5c5852;
  font-size: 0.95rem;
}

/* Categories */
.grid-cats {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .grid-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cats {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem;
  }
}

.cat-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
  transition: transform 0.28s, box-shadow 0.28s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
}

.cat-card__img {
  aspect-ratio: 16 / 10;
  background: #ddd center/cover;
  border-radius: 10px 10px 0 0;
}

.cat-card__body {
  padding: 1rem 0.9rem 1.25rem;
  text-align: center;
}

.cat-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}

.cat-card__desc {
  margin: 0;
  font-size: 0.82rem;
  color: #4a4640;
  line-height: 1.5;
}

/* Story */
.story-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .story-wrap {
    grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.story__img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-height: 560px;
}

.story__img div {
  aspect-ratio: 3 / 4;
  min-height: 320px;
  max-height: 520px;
  background: #333 center/cover;
}

@media (min-width: 900px) {
  .story__img div {
    height: 100%;
    max-height: 520px;
  }
}

.story__content {
  position: relative;
  z-index: 1;
}

.story__kicker {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.story__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.story__body {
  color: #c9c5bc;
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  max-width: 520px;
}

/* Locations — horizontal cards */
.grid-locs {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.loc-card--horizontal {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .loc-card--horizontal {
    flex-direction: row;
    align-items: stretch;
    min-height: 240px;
  }
}

.loc-card__media {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .loc-card__media {
    flex: 0 0 44%;
    max-width: 44%;
  }
}

.loc-card__img {
  height: 200px;
  background: #ccc center/cover;
}

@media (min-width: 768px) {
  .loc-card__img {
    height: 100%;
    min-height: 240px;
  }
}

.loc-card__body {
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.loc-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--charcoal);
}

.loc-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #6a655c;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.loc-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.loc-card__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: #3a3632;
  line-height: 1.45;
}

.loc-card__icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--gold-bright);
}

.loc-card__btn {
  align-self: flex-start;
  margin-top: 1rem;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.65rem 1.25rem;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
}

.loc-card__btn:hover {
  background: #2e2e2e;
}

/* Footer */
.footer {
  background: #0d0d0d;
  color: #aaa;
  padding: 3rem 1.25rem 0;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.1fr 0.9fr 1.1fr 0.85fr;
    align-items: start;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 1.1rem;
  line-height: 0;
  transition: opacity 0.2s;
}

.footer__logo-link:hover {
  opacity: 0.88;
}

.footer__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(200px, 72vw);
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.footer__brand-img {
  max-width: 200px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.footer__brand-img div {
  aspect-ratio: 4/3;
  background: #222 center/cover;
}

.footer__newsletter h3 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer__form input {
  flex: 1;
  min-width: 160px;
  padding: 0.55rem 0.65rem;
  border: 1px solid #333;
  background: #141414;
  color: var(--white);
  font-size: 0.88rem;
  border-radius: 3px;
}

.footer__form button {
  background: var(--gold-bright);
  color: var(--charcoal);
  border: 0;
  padding: 0.55rem 1rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.45rem;
}

.footer__col a {
  font-size: 0.88rem;
  color: #9e9a94;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--gold-bright);
}

.footer__store-block {
  margin-bottom: 1.15rem;
}

.footer__store-block strong {
  display: block;
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.footer__store-block p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #9e9a94;
  white-space: pre-line;
}

.footer__social h4 {
  margin-bottom: 0.75rem;
}

.footer__social-icons {
  display: flex;
  gap: 0.85rem;
}

.footer__social-icons a {
  color: var(--gold-bright);
}

.footer__bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1rem 0;
  border-top: 1px solid #222;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
}

.admin-pill {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  background: #1a1a1a;
  color: var(--gold-bright);
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border: 1px solid #333;
  border-radius: 4px;
  opacity: 0.85;
}

.admin-pill:hover {
  opacity: 1;
}
