/* ════════════════════════════════════════════════════════
   ALOHA HOUSE — Website Styles
   Layout inspired by Aromi.co.uk
   Brand: Aloha House, Takamatsu Japan
   Colors: #D62B2B (red), #1a1a1a (near-black), #ffffff, #F5E6C8 (warm cream)
   Fonts: Montserrat (body/nav), Playfair Display (display headings)
   ════════════════════════════════════════════════════════ */

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

:root {
  --red:    #D62B2B;
  --red-dk: #b02020;
  --black:  #1a1a1a;
  --white:  #ffffff;
  --cream:  #F8F2E8;
  --grey:   #f2f0ee;
  --text:   #2e2e2e;
  --nav-h:  72px;
  --max:    1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 13px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214,43,43,0.35);
}

.btn--nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 24px;
  font-size: 12px;
}
.btn--nav:hover { background: var(--red-dk); border-color: var(--red-dk); }

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

/* ── OVERLINE ── */
.overline {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.overline--light { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--red);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(30, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__logo {
  width: 130px;
  height: 44px;
  flex-shrink: 0;
}
.nav__logo img {
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  padding: 24px 40px;
  gap: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
}
.nav__mobile a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  text-align: center;
}

.hero__headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════════════
   FEATURE SECTIONS (2-col)
   ════════════════════════════════════════════════════════ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.feature--dark {
  background: var(--black);
}

.feature__text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.feature--dark .feature__text {
  color: var(--white);
}

.feature__text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--black);
}

.feature--dark .feature__text h2 {
  color: var(--white);
}

.feature__text p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  max-width: 480px;
}

.feature--dark .feature__text p {
  color: rgba(255,255,255,0.75);
}

.feature__image {
  overflow: hidden;
  min-height: 480px;
}

.feature--light .feature__text { order: 1; }
.feature--light .feature__image { order: 2; }

/* ════════════════════════════════════════════════════════
   FULL-BLEED BANNER
   ════════════════════════════════════════════════════════ */
.fullbleed {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.fullbleed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.fullbleed__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 40px;
  max-width: 680px;
}

.fullbleed__content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.fullbleed__content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ════════════════════════════════════════════════════════
   MENU GRID
   ════════════════════════════════════════════════════════ */
.menu-grid {
  background: var(--cream);
  padding: 96px 40px;
}

.menu-grid__header {
  text-align: center;
  margin-bottom: 64px;
}

.menu-grid__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--black);
}

.menu-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.menu-item {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.menu-item__icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.menu-item h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 12px;
}

.menu-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* ════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════ */
.gallery {
  padding: 96px 40px;
  background: var(--white);
  max-width: var(--max);
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--black);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 2px;
}

.gallery__item img {
  transition: transform 0.4s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

/* ════════════════════════════════════════════════════════
   INSTAGRAM FEED
   ════════════════════════════════════════════════════════ */
.instagram {
  background: var(--cream);
  padding: 96px 40px;
  text-align: center;
}

.instagram__header {
  max-width: 560px;
  margin: 0 auto 48px;
}

.instagram__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 14px;
}

.instagram__header p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

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

/* Placeholder shown until Elfsight widget is added */
.instagram__placeholder {
  background: var(--white);
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 64px 40px;
  color: #999;
  font-size: 16px;
  line-height: 2;
}
.instagram__placeholder a {
  color: var(--red);
  font-weight: 600;
}
.instagram__placeholder a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .instagram { padding: 64px 20px; }
}

/* ════════════════════════════════════════════════════════
   EMAIL SIGNUP
   ════════════════════════════════════════════════════════ */
.signup {
  background: var(--black);
  padding: 96px 40px;
  text-align: center;
  color: var(--white);
}

.signup__inner {
  max-width: 560px;
  margin: 0 auto;
}

.signup h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.signup p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.signup__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.signup__form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.signup__form input::placeholder { color: rgba(255,255,255,0.35); }
.signup__form input:focus { border-color: var(--red); }

.signup__legal {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.signup__legal a { text-decoration: underline; color: rgba(255,255,255,0.4); }

/* ════════════════════════════════════════════════════════
   FIND US
   ════════════════════════════════════════════════════════ */
.findus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.findus__map {
  background: #eee;
  min-height: 420px;
}

.findus__info {
  background: var(--red);
  padding: 72px 64px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.findus__info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: -16px;
}

.findus__location h3,
.findus__contact h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.findus__location p,
.findus__contact p,
.findus__contact a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.findus__contact a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: #111;
  color: var(--white);
  padding: 64px 40px 0;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  width: 160px;
  height: 56px;
}
.footer__logo img {
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer__col p,
.footer__col a {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .feature {
    grid-template-columns: 1fr;
  }
  .feature--light .feature__text { order: 2; }
  .feature--light .feature__image { order: 1; min-height: 300px; }
  .feature--dark .feature__image { min-height: 300px; }
  .feature__text { padding: 56px 32px; }

  .menu-grid__items {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .findus {
    grid-template-columns: 1fr;
  }
  .findus__map { min-height: 320px; }
  .findus__info { padding: 56px 32px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .hero__content { padding: 0 20px; }
  .fullbleed__content { padding: 0 20px; }

  .menu-grid { padding: 64px 20px; }
  .menu-grid__items { grid-template-columns: 1fr; }

  .gallery { padding: 64px 20px; }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--wide { grid-column: span 1; }

  .signup { padding: 64px 20px; }

  .footer { padding: 48px 20px 0; }
  .footer__cols { grid-template-columns: 1fr; }

  .findus__info { padding: 48px 24px; }
}

/* ════════════════════════════════════════════════════════
   BLOG — blog.html hero, cards, post pages
   ════════════════════════════════════════════════════════ */

/* ── BLOG HERO ── */
.blog-hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 380px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0808 0%, #3a0a0a 50%, #1a1a1a 100%);
  opacity: 0.9;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.blog-hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 40px;
  max-width: 640px;
}

.blog-hero__content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.blog-hero__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

/* ── BLOG PAGE (all posts list) ── */
.blog-page {
  background: var(--white);
  padding: 72px 40px 96px;
}

.blog-page__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── BLOG CARD ── */
.blog-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 300px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.blog-card:last-child {
  border-bottom: none;
}

.blog-card:hover {
  background: var(--cream);
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--black);
  min-height: 260px;
}

.blog-card__media img,
.blog-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img,
.blog-card:hover .blog-card__media video {
  transform: scale(1.04);
}

.blog-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
  pointer-events: none;
}

.blog-card--video:hover .blog-card__play {
  background: rgba(214,43,43,0.6);
}

.blog-card__body {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  padding: 4px 12px;
}

.blog-card__date {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
}

.blog-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
}

.blog-card__title a {
  color: inherit;
  transition: color 0.2s;
}
.blog-card__title a:hover { color: var(--red); }

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

.blog-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  transition: letter-spacing 0.2s;
}
.blog-card__link:hover { letter-spacing: 2px; }

/* ── POST HERO ── */
.post-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.post-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 40px;
}

.post-hero__content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 10px 0 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.post-hero__date {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

/* ── POST BODY ── */
.post {
  padding: 64px 40px 96px;
  background: var(--white);
}

.post__inner {
  max-width: 720px;
  margin: 0 auto;
}

.post__back {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 40px;
  transition: letter-spacing 0.2s;
}
.post__back:hover { letter-spacing: 2px; }

.post__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 28px;
  border-left: 4px solid var(--red);
  padding-left: 20px;
}

.post__inner p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}

.post__inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--black);
  margin: 40px 0 16px;
}

.post__inner a {
  color: var(--red);
  text-decoration: underline;
}

.post__figure {
  margin: 40px 0;
}

.post__figure img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.post__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
  font-style: italic;
  line-height: 1.5;
}

.post__figure--video { }

.post__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: var(--black);
}

.post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.post__tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  background: var(--grey);
  border-radius: 999px;
  padding: 5px 14px;
}

.post__nav {
  margin-top: 40px;
}

/* ── NAV ACTIVE STATE ── */
.nav__active {
  color: var(--white) !important;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* ── LATEST POSTS section (homepage) ── */
.latest-posts {
  background: var(--cream);
  padding: 96px 40px;
}

.latest-posts__header {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.latest-posts__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.1;
}

.latest-posts__header a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  transition: letter-spacing 0.2s;
}
.latest-posts__header a:hover { letter-spacing: 2.5px; }

.latest-posts__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.latest-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.latest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.latest-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: block;
}

.latest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.latest-card:hover .latest-card__media img {
  transform: scale(1.06);
}

.latest-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.latest-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.latest-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.latest-card__date {
  font-size: 11px;
  color: #bbb;
}

.latest-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.25;
  color: var(--black);
  margin: 0;
}

.latest-card__title a {
  color: inherit;
  transition: color 0.2s;
}
.latest-card__title a:hover { color: var(--red); }

.latest-card__excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

/* ── RESPONSIVE: BLOG ── */
@media (max-width: 900px) {
  .blog-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .blog-card__media {
    min-height: 240px;
  }
  .blog-card__body {
    padding: 28px 28px;
  }

  .latest-posts__grid {
    grid-template-columns: 1fr 1fr;
  }
  .latest-posts__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-hero__content { padding: 40px 24px; }
  .post { padding: 48px 24px 80px; }
}

@media (max-width: 600px) {
  .blog-page { padding: 48px 20px 72px; }
  .blog-hero__content { padding: 48px 20px; }
  .blog-card__body { padding: 24px 20px; }

  .latest-posts { padding: 64px 20px; }
  .latest-posts__grid { grid-template-columns: 1fr; }

  .post { padding: 40px 20px 64px; }
  .post__lead { font-size: 17px; }
}
