/* ============================================
   CR Coffee Shop — Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-black: #1a1a1a;
  --color-dark: #2d2d2d;
  --color-red: #c23b22;
  --color-red-hover: #a83220;
  --color-cream: #f8f5f0;
  --color-white: #ffffff;
  --color-warm-gray: #6b6b6b;
  --color-light-gray: #e8e4df;
  --color-border: #d4cfc8;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 72px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-red-hover); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section {
  padding: var(--section-padding) 0;
}
.section--cream { background: var(--color-cream); }
.section--dark {
  background: var(--color-black);
  color: var(--color-cream);
}
.section--dark h2, .section--dark h3 { color: var(--color-white); }

/* Reset card text colors inside dark sections */
.section--dark .card { color: var(--color-black); }
.section--dark .card h3 { color: var(--color-black); }
.section--dark .card .card-meta { color: var(--color-warm-gray); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--primary:hover {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-red);
  background: rgba(194, 59, 34, 0.06);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: all 0.3s;
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--color-red); background: rgba(194,59,34,0.06); }
.mobile-nav .btn { margin-top: 16px; text-align: center; }

/* Mobile sticky order CTA */
.mobile-order-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--color-red);
  padding: 12px 24px;
  text-align: center;
}
.mobile-order-bar a {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: var(--header-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 40px 24px;
}
.hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page hero (shorter, for interior pages) */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  margin-top: var(--header-height);
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero .hero-content {
  padding: 40px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: left;
}
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p { margin-bottom: 0; font-size: 1.05rem; }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body h3 a {
  color: var(--color-black);
  text-decoration: none;
}
.card-body h3 a:hover { color: var(--color-red); }

.card-meta {
  font-size: 0.88rem;
  color: var(--color-warm-gray);
  margin-bottom: 0.75rem;
}

/* Location cards */
.location-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.location-card .location-image img,
.location-card .card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.location-card .location-content,
.location-card .card-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.location-card .location-address {
  font-size: 0.92rem;
  color: var(--color-warm-gray);
  line-height: 1.5;
}
.location-card .location-hours {
  font-size: 0.88rem;
  color: var(--color-warm-gray);
}
.location-card .location-hours .today {
  color: var(--color-black);
  font-weight: 600;
}
.location-card .card-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

/* --- Gallery grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: opacity var(--transition);
}
.gallery-grid img:hover { opacity: 0.9; }

/* --- Info blocks for location pages --- */
.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-info__main { display: flex; flex-direction: column; gap: 32px; }

.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 12px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 6px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-light-gray);
}
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td {
  font-weight: 700;
  color: var(--color-red);
}

.nap-block address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
}
.nap-block .phone {
  font-weight: 600;
  color: var(--color-black);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

/* Map embed */
.map-embed {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Blend cards --- */
.blend-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.blend-card:last-child { border-bottom: none; }
.blend-card:nth-child(even) .blend-img { order: 2; }
.blend-card:nth-child(even) .blend-info { order: 1; }

.blend-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blend-info .blend-type {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 8px;
}

/* --- Menu page --- */
.menu-section { margin-bottom: 48px; }
.menu-section h2 { margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--color-black); }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 600; font-size: 1rem; }
.menu-item-desc { font-size: 0.88rem; color: var(--color-warm-gray); margin-top: 2px; }
.menu-item-price {
  font-weight: 600;
  color: var(--color-warm-gray);
  white-space: nowrap;
  margin-left: 24px;
}

/* --- Two-col text layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--reverse img { order: -1; }
.two-col img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* --- Contact form --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-red);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- Footer --- */
.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; }

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-white); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 0;
}
.footer-social a:hover { color: var(--color-white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* --- Blog / News --- */
.post-list { display: flex; flex-direction: column; gap: 48px; }
.post-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: var(--shadow-md); }
.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-card h3 { margin-bottom: 8px; }
.post-card .post-date { font-size: 0.85rem; color: var(--color-warm-gray); margin-bottom: 8px; }
.post-card p { font-size: 0.95rem; color: var(--color-dark); }

/* --- Press --- */
.press-list { display: flex; flex-direction: column; gap: 24px; }
.press-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition);
}
.press-item:hover { box-shadow: var(--shadow-md); }
.press-item-source {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-warm-gray);
}
.press-item h3 { font-size: 1.15rem; margin-bottom: 4px; }
.press-item h3 a { color: var(--color-black); }
.press-item h3 a:hover { color: var(--color-red); }

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-red);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--color-warm-gray);
}
.breadcrumbs a { color: var(--color-warm-gray); }
.breadcrumbs a:hover { color: var(--color-red); }
.breadcrumbs span { margin: 0 8px; }

/* --- Location Detail Page --- */
.location-info-section { padding: var(--section-padding); }
.location-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.location-map { border-radius: var(--radius-md); overflow: hidden; }
.location-map iframe { display: block; width: 100%; border-radius: var(--radius-md); }

.hours-section { margin-top: 24px; }
.hours-section h3 { margin-bottom: 12px; }

.about-location-content { max-width: 800px; }
.about-location-content p { margin-bottom: 1rem; line-height: 1.7; }

/* Crescent Room */
.crescent-room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.crescent-room-image img { width: 100%; border-radius: var(--radius-md); }
.crescent-room-content h2,
.crescent-room-details h2 { margin-bottom: 16px; }
.crescent-room-content p,
.crescent-room-details p { margin-bottom: 1rem; line-height: 1.7; }
.features-list, .use-cases-list { padding-left: 20px; margin-bottom: 24px; }
.features-list li, .use-cases-list li { margin-bottom: 12px; }
.features-list li strong { display: block; margin-bottom: 4px; }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reason-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.reason-card h3 { margin-bottom: 12px; }

.reservation-content { max-width: 800px; margin: 0 auto; }
.reservation-content h2 { text-align: center; margin-bottom: 16px; }
.reservation-content > p { text-align: center; margin-bottom: 32px; }
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.contact-method { text-align: center; }
.contact-method h3 { margin-bottom: 8px; }
.contact-method a { color: var(--color-red); }
.reservation-note { background: var(--color-cream); padding: 24px; border-radius: var(--radius-md); }
.reservation-note ul { padding-left: 20px; margin-top: 8px; }
.reservation-note li { margin-bottom: 4px; }

/* Delivery */
.delivery-platforms {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.delivery-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-black);
  transition: background 0.2s;
}
.delivery-link:hover { background: var(--color-red); color: var(--color-white); }

/* News page */
.post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.post-content { padding: 20px; }
.post-title { font-size: 1.15rem; margin-bottom: 8px; }
.post-excerpt { font-size: 0.95rem; color: var(--color-dark); margin-bottom: 12px; }
.post-link { color: var(--color-red); font-weight: 600; font-size: 0.9rem; }
.post-link:hover { text-decoration: underline; }
.news-note { text-align: center; margin-top: 48px; color: var(--color-warm-gray); }

/* News card link wrapper */
.post-card a.post-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card a.post-card__link:hover { color: inherit; }
.post-card a.post-card__link .post-title { transition: color var(--transition); }
.post-card a.post-card__link:hover .post-title { color: var(--color-red); }

/* Article detail page */
.article-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  margin-top: var(--header-height);
  overflow: hidden;
}
.article-hero .hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.article-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.article-hero h1 { color: var(--color-white); margin-bottom: 0.5rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.article-hero .article-date {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-body {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--section-padding) 24px;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}
.article-body p:first-child {
  font-size: 1.15rem;
  color: var(--color-black);
}
.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-body blockquote {
  border-left: 3px solid var(--color-red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-warm-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 2rem;
}
.article-back:hover { text-decoration: underline; }

.article-cta {
  text-align: center;
  padding: 48px 24px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.article-cta h3 { margin-bottom: 0.5rem; }
.article-cta p { margin-bottom: 1.5rem; color: var(--color-warm-gray); }

.related-articles { padding: var(--section-padding) 0; background: var(--color-cream); }
.related-articles h2 { text-align: center; margin-bottom: 2rem; }

@media (max-width: 768px) {
  .article-hero { min-height: 40vh; }
  .article-body { padding: var(--section-padding-mobile) 16px; }
}

/* Press page */
.press-kit-content { max-width: 700px; }
.press-kit-contact { font-size: 1.05rem; margin-bottom: 24px; }
.brand-summary { background: var(--color-cream); padding: 24px; border-radius: var(--radius-md); }
.brand-summary h3 { margin-bottom: 8px; }

/* --- 404 --- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
}
.error-page h1 { font-size: 6rem; color: var(--color-light-gray); margin-bottom: 0.5rem; }
.error-page p { font-size: 1.15rem; color: var(--color-warm-gray); margin-bottom: 2rem; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-info { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .blend-card { grid-template-columns: 1fr; }
  .blend-card:nth-child(even) .blend-img { order: 0; }
  .blend-card:nth-child(even) .blend-info { order: 0; }
  .crescent-room-grid { grid-template-columns: 1fr; gap: 32px; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: var(--section-padding-mobile); }

  .main-nav { display: none; }
  .nav-cta.desktop-only { display: none; }
  .hamburger { display: flex; }
  .mobile-order-bar { display: block; }
  body { padding-bottom: 52px; }

  .hero { min-height: 70vh; }
  .page-hero { min-height: 35vh; }
  .page-hero .hero-content { text-align: center; }

  .card-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card img { height: 180px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .gallery-grid img { height: 150px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .delivery-platforms { flex-direction: column; align-items: stretch; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card-actions { flex-direction: column; }
}

/* --- Timeline --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-red);
  padding-top: 0.15em;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #555;
  line-height: 1.6;
}

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 1rem; }
}
