/* Titanium Coffee — glass-layers design */

:root {
  --brand: #c24444;
  --brand-dark: #9e3333;
  --brand-glow: rgba(194, 68, 68, 0.35);
  --ink: #1c1917;
  --ink-muted: #57534e;
  --surface: #faf7f4;
  --surface-warm: #f3ece4;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-shadow: 0 8px 32px rgba(28, 25, 23, 0.08);
  --header-h: 72px;
  --font-display: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(194, 68, 68, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(194, 68, 68, 0.05), transparent 50%),
    linear-gradient(165deg, var(--surface) 0%, var(--surface-warm) 50%, var(--surface) 100%);
  background-size: 100% 100%, 100% 100%, 400% 400%;
  animation: gradientShift 24s ease infinite;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0 0, 0 0, 0% 50%; }
  50% { background-position: 0 0, 0 0, 100% 50%; }
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin: 0 0 1rem; }

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--brand);
  color: var(--white);
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Glass panel */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

@supports not (backdrop-filter: blur(18px)) {
  .glass-panel {
    background: rgba(255, 255, 255, 0.94);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 20px var(--brand-glow);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 8px 28px var(--brand-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

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

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
  box-shadow: 0 1px 12px rgba(28, 25, 23, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.page-home .logo-img {
  height: 58px;
}

.hero-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.75rem);
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-logo-img {
  height: clamp(72px, 14vw, 128px);
  width: auto;
  object-fit: contain;
}

.desktop-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.desktop-nav a:hover {
  color: var(--brand);
  background: rgba(194, 68, 68, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  border-radius: 8px;
}

.burger:hover {
  background: rgba(28, 25, 23, 0.05);
}

.burger .icon-close {
  display: none;
}

.burger[aria-expanded="true"] .icon-burger {
  display: none;
}

.burger[aria-expanded="true"] .icon-close {
  display: block;
}

/* Mobile nav — body-level, below header z-index */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav[hidden] {
  display: block;
  visibility: hidden;
}

.mobile-nav.is-open[hidden] {
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.mobile-nav ul a:not(.btn):hover {
  color: var(--brand);
}

.mobile-nav-phone {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28, 25, 23, 0.82) 0%, rgba(28, 25, 23, 0.35) 45%, rgba(28, 25, 23, 0.15) 100%),
    linear-gradient(135deg, rgba(194, 68, 68, 0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(7rem, 12vw, 9rem);
  color: var(--white);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero-trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

@supports not (backdrop-filter: blur(16px)) {
  .hero-trust {
    background: rgba(28, 25, 23, 0.75);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.trust-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

/* Bean divider — signature moment */
.bean-divider {
  margin-top: -1px;
  line-height: 0;
}

.bean-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Collections */
.collections-section {
  background: var(--surface);
}

.section-intro {
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-intro p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.collection-card-wide {
  grid-column: 1 / -1;
}

.collection-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.collection-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.12);
}

.collection-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.05);
}

.collection-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.collection-body p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-stack > img:first-child {
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  width: 45%;
  border-radius: var(--radius);
  border: 4px solid var(--surface);
  box-shadow: var(--glass-shadow);
}

.about-copy {
  padding: 2.25rem;
}

.about-lead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
}

.about-points {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

.about-points svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px;
}

/* Products band — brand-blocked */
.products-band {
  background: var(--brand);
  color: var(--white);
}

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

.products-sub {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.product-img {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-body h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.875rem;
}

.btn-add-cart {
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
}

.products-band .btn-add-cart {
  background: var(--white);
  color: var(--brand);
  box-shadow: none;
}

.products-band .btn-add-cart:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
}

.delivery-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

/* Craft */
.craft-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.craft-card {
  padding: 2rem;
  transition: transform 0.3s var(--ease);
}

.craft-card:hover {
  transform: translateY(-4px);
}

.craft-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.craft-card p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Outlets */
.outlets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.outlets-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.outlets-copy {
  padding: 2.25rem;
}

.outlets-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: rgba(194, 68, 68, 0.08);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s;
}

.contact-chip:hover {
  background: rgba(194, 68, 68, 0.14);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(28, 25, 23, 0.06);
  color: var(--ink-muted);
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: var(--brand);
  color: var(--white);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-intro p {
  color: var(--ink-muted);
}

.contact-form-wrap {
  padding: 2rem;
}

.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-wrap label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form-wrap input,
.contact-form-wrap textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

[data-refresh-kiwi-contact-status] {
  font-size: 0.875rem;
  margin: 0;
  min-height: 1.25rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  color: var(--ink-muted);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 56px;
  width: auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.8125rem;
}

/* Mobile call FAB */
.mobile-call-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 180;
  width: 52px;
  height: 52px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px var(--brand-glow);
  transition: transform 0.2s var(--ease);
}

.mobile-call-fab:hover {
  transform: scale(1.08);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craft-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }

  .burger {
    display: none;
  }

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

  .mobile-call-fab {
    display: none;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card-wide {
    flex-direction: row;
  }

  .collection-card-wide .collection-img-wrap {
    flex: 0 0 45%;
    aspect-ratio: auto;
    min-height: 220px;
  }

  .collection-card-wide .collection-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outlets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .logo-img {
    height: 40px;
  }

  .page-home .logo-img {
    height: 44px;
  }

  .hero-logo-img {
    height: clamp(64px, 20vw, 96px);
  }

  .trust-divider {
    display: none;
  }

  .hero-trust {
    gap: 1rem;
  }

  .about-img-accent {
    width: 40%;
    right: 0.5rem;
    bottom: -1rem;
  }
}

/* Inner pages */
.page-main {
  padding-top: var(--header-h);
}

.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.75) 0%, rgba(194, 68, 68, 0.45) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
  color: var(--white);
}

.page-hero-inner h1 {
  margin-bottom: 0.75rem;
}

.page-hero-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  font-size: 1.0625rem;
}

.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 5rem);
}

.page-content .glass-panel {
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.page-prose p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.page-prose p:last-child {
  margin-bottom: 0;
}

.desktop-nav a.nav-active,
.mobile-nav a.nav-active {
  color: var(--brand);
  background: rgba(194, 68, 68, 0.08);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.filter-chip {
  display: inline-flex;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(194, 68, 68, 0.08);
  color: var(--brand);
  border: 1px solid rgba(194, 68, 68, 0.15);
  transition: background 0.2s, color 0.2s;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--brand);
  color: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.catalog-card {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.1);
}

.catalog-card-img {
  aspect-ratio: 1;
  background: var(--white);
  padding: 1rem;
}

.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.catalog-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.catalog-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 0.875rem;
}

.catalog-card-body .btn-add-cart {
  margin-top: 0.25rem;
}

.outlets-grid-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.outlet-card {
  padding: 1.75rem;
}

.outlet-card h3 {
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.outlet-card p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.outlet-card p:last-child {
  margin-bottom: 0;
}

.about-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-item {
  padding: 1.5rem;
}

.timeline-item h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-page-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.page-cta-band {
  background: var(--brand);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}

.page-cta-band h2 {
  margin-bottom: 0.75rem;
}

.page-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.page-cta-band .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.page-cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--brand);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 0.5rem;
}

.footer-links-row a {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.footer-links-row a:hover {
  color: var(--brand);
}

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

  .outlets-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .about-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  body {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .collection-card:hover,
  .product-card:hover,
  .craft-card:hover,
  .btn:hover {
    transform: none;
  }
}
