/* ── Top accent bar (site-wide) ── */
body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #B52A1A 0%, #F5622A 50%, #FFBF25 100%);
  z-index: 9999;
}

/* ── Icon font ── */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

/* ── Glows / depth ── */
.impact-glow:hover {
  box-shadow: 0 12px 40px -10px rgba(181, 42, 26, 0.35);
}
.blue-glow:hover {
  box-shadow: 0 12px 40px -10px rgba(30, 86, 196, 0.35);
}

/* ── Glass ── */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
}
.glass-nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── Scrollbar ── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F2EDE9; }
::-webkit-scrollbar-thumb { background: #D4C9C0; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #B52A1A; }

/* ── Cards ── */
.bento-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(30,20,15,0.15);
}

/* ── Animations ── */
.active-scale:active { transform: scale(0.95); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.fade-in { animation: fadeIn 0.6s ease forwards; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.slide-up { animation: slideUp 0.4s cubic-bezier(0.16,1,0.3,1) forwards; }

/* ── Hero overlay ── */
.hero-gradient {
  background: linear-gradient(170deg, rgba(30,20,15,0.55) 0%, rgba(30,20,15,0.80) 100%);
}

/* ── Serif quote ── */
.quote-serif { font-family: "Playfair Display", Georgia, serif; }

/* ── Navigation dropdowns ── */
.nav-dropdown {
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* ── Mobile slide menu ── */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }

/* ── Safe area ── */
.pb-safe { padding-bottom: env(safe-area-inset-bottom, 0); }

/* ── Body / page layout ── */
body { min-height: 100dvh; background-color: #F2EDE9; }
.page-content { padding-bottom: 5rem; }
@media (min-width: 768px) { .page-content { padding-bottom: 0; } }

/* ── Scroll-in animations ── */
.animate-on-scroll {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────
   TYPOGRAPHY  (bold & eye-catching)
───────────────────────────────────── */
h1, h2, h3, h4,
.font-headline-lg, .font-headline-md, .font-headline-xl, .font-headline-sm,
.font-display-lg, .font-display-lg-mobile {
  font-family: "Anybody", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h1, .text-display-lg, .text-display-lg-mobile {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2, .text-headline-lg, .text-headline-xl {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
}
h3, .text-headline-md {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
}
.section-heading {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1E1E1E;
}
.card-heading {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   MODAL
───────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 12, 8, 0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-backdrop.open {
  opacity: 1; visibility: visible;
}
.modal-box {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 640px;
  max-height: 90dvh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.modal-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
  transition: background 0.15s;
}
.modal-close:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ─────────────────────────────────────
   TOAST
───────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  #toast-container { bottom: 24px; right: 24px; left: auto; transform: none; align-items: flex-end; }
}
.toast {
  background: #1E1E1E;
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: toastIn 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
  pointer-events: all;
  white-space: nowrap;
}
.toast.toast-success { border-left: 4px solid #FFBF25; }
.toast.toast-info    { border-left: 4px solid #1E56C4; }
@keyframes toastIn {
  from { opacity:0; transform: translateY(12px) scale(0.95); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  to { opacity:0; transform: translateY(12px) scale(0.95); }
}
.toast.removing { animation: toastOut 0.25s ease forwards; }

/* ─────────────────────────────────────
   NEWSLETTER POPUP
───────────────────────────────────── */
.newsletter-popup {
  position: fixed;
  bottom: 90px; right: 20px;
  width: min(360px, calc(100vw - 40px));
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  z-index: 150;
  padding: 28px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.newsletter-popup.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) { .newsletter-popup { bottom: 90px; } }

/* ── Project card image ── */
.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.group:hover .project-img { transform: scale(1.06); }

/* 3-photo strip on project cards */
.project-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: #EDE5DF;
}
.project-img-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.project-img-strip img:hover {
  transform: scale(1.08);
  z-index: 2;
  position: relative;
}

/* Campaign gallery (page hero) */
.campaign-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .campaign-gallery {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .campaign-gallery .gallery-main {
    grid-row: span 2;
    min-height: 412px;
  }
}
.campaign-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0;
}
.campaign-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s ease;
}
.campaign-gallery figure:hover img { transform: scale(1.05); }
.campaign-gallery figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(20,12,8,0.85));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* Modal image gallery */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 24px 16px;
}
.modal-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

/* ── Accent badge ── */
.badge-accent  { background: #FFBF25; color: #1E1E1E; }
.badge-primary { background: #B52A1A; color: #fff; }
.badge-blue    { background: #1E56C4; color: #fff; }
.badge-orange  { background: #F5622A; color: #fff; }

/* ─────────────────────────────────────
   ORANGE-RED ACCENT UTILITIES
───────────────────────────────────── */

/* Thick orange underline bar beneath section headings */
.orange-underline {
  display: inline-block;
  position: relative;
}
.orange-underline::after {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  border-radius: 99px;
  background: #F5622A;
  margin-top: 10px;
}

/* Full-width thin stripe divider */
.orange-stripe {
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F5622A 0%, #B52A1A 100%);
  border-radius: 99px;
  margin-bottom: 24px;
}

/* Card with orange left border */
.card-orange-border {
  border-left: 5px solid #F5622A !important;
}

/* Big decorative quotation mark */
.big-quote::before {
  content: '\201C';
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.8;
  color: #F5622A;
  display: block;
  margin-bottom: -0.25em;
  font-weight: 700;
}

/* Orange pill eyebrow */
.eyebrow-orange {
  display: inline-block;
  background: #F5622A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

/* Orange tag / highlight marker */
mark.orange {
  background: linear-gradient(to bottom, transparent 55%, rgba(245,98,42,0.25) 55%);
  color: inherit;
  padding: 0;
}

/* Orange counter / bullet */
.orange-counter {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.orange-counter::before {
  content: attr(data-n);
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5622A;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section with orange left accent bar */
.section-orange-accent {
  border-left: 6px solid #F5622A;
  padding-left: 24px;
}

/* Gradient section band */
.band-orange {
  background: linear-gradient(135deg, #F5622A 0%, #B52A1A 100%);
  color: #fff;
}

/* Hover orange glow on white cards */
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(245, 98, 42, 0.2);
}

/* Orange nav highlight dot */
.nav-dot-orange {
  position: relative;
}
.nav-dot-orange::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F5622A;
}

/* ─────────────────────────────────────
   PRESS CORNER WIDGET
───────────────────────────────────── */
.press-widget {
  position: fixed;
  bottom: 88px;
  left: 16px;
  z-index: 140;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 12px;
  max-width: min(340px, calc(100vw - 32px));
}
@media (min-width: 768px) {
  .press-widget { bottom: 24px; left: 24px; }
}

.press-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #B52A1A 0%, #F5622A 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(181, 42, 26, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  max-width: 100%;
}
.press-trigger:hover { transform: scale(1.03); box-shadow: 0 12px 36px rgba(245, 98, 42, 0.5); }
.press-trigger.open { border-radius: 20px 20px 8px 8px; }
.press-trigger.hint-bounce { animation: pressBounce 0.6s ease 2; }
@keyframes pressBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
}

.press-trigger-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 191, 37, 0.6);
  animation: pressPulse 2.5s ease infinite;
  pointer-events: none;
}
@keyframes pressPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.press-trigger-icon {
  font-size: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  padding: 6px;
  flex-shrink: 0;
}
.press-trigger-body { min-width: 0; flex: 1; }
.press-trigger-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.press-ticker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  transition: opacity 0.28s ease;
}
@media (min-width: 768px) { .press-ticker { max-width: 240px; } }

.press-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  width: min(340px, calc(100vw - 32px));
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.press-panel.open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  overflow-y: auto;
}

.press-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 18px 12px;
  border-bottom: 1px solid #EDE5DF;
  background: linear-gradient(180deg, #FDF0EA 0%, #fff 100%);
  border-radius: 20px 20px 0 0;
}
.press-diana-badge {
  display: inline-block;
  background: #FFBF25;
  color: #1E1E1E;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 6px;
}
.press-panel-title {
  font-family: "Anybody", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1.2;
}
.press-panel-sub {
  font-size: 12px;
  color: #5C4A3A;
  margin-top: 4px;
}
.press-panel-close {
  background: #F0EBE6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.press-panel-close:hover { background: #EDE5DF; }

.press-panel-list { padding: 8px; }
.press-panel-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.press-panel-item:hover { background: #FDF0EA; }
.press-panel-outlet {
  grid-column: 1;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5622A;
}
.press-panel-headline {
  grid-column: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #1E1E1E;
}
.press-panel-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 18px;
  color: #9E8679;
}

.press-panel-cta {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #B52A1A;
  border-top: 1px solid #EDE5DF;
  text-decoration: none;
}
.press-panel-cta:hover { background: #FDF0EA; }

/* ── Press page cards ── */
.press-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(212, 201, 192, 0.5);
  text-decoration: none;
  color: inherit;
}
.press-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.press-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #FDF0EA;
  color: #B52A1A;
  padding: 4px 10px;
  border-radius: 99px;
}
.press-card-year {
  font-size: 12px;
  font-weight: 600;
  color: #9E8679;
}
.press-card-title {
  font-size: 1.05rem !important;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.press-card:hover .press-card-title { color: #F5622A; }
.press-card-outlet {
  font-size: 13px;
  color: #5C4A3A;
  margin-bottom: 12px;
}
.press-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #B52A1A;
}

