/**
 * Dagkos - Main Stylesheet
 * Traditional Greek Pastry Shop
 */

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  /* Colors - Dark Theme with Gold Accents */
  --color-bg: #000000;
  --color-bg-alt: #0a0a0a;
  --color-bg-card: #111111;
  --color-bg-overlay: rgba(0, 0, 0, 0.85);

  /* Gold Palette */
  --color-gold: #D2AA4A;
  --color-gold-dark: #9E792C;
  --color-gold-light: #FCF19F;
  --color-gold-mid: #B09330;
  --color-gold-gradient: linear-gradient(90deg, #9E792C, #D2AA4A, #FCF19F, #D2AA4A, #B09330);

  /* Accent Colors */
  --color-red-dark: #510000;
  --color-red-accent: #FE792C;

  /* Text Colors */
  --color-text: #F4F0F0;
  --color-text-muted: #9a9a9a;
  --color-text-dark: #1a1a1a;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  --text-5xl: clamp(1.75rem, 1rem + 5vw, 5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(210, 170, 74, 0.3);

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

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

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

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gold);
}

h1 {
  font-size: var(--text-4xl);
  --gradient-x: 50%;         /* Horizontal position (0-100%) */
  --gradient-spread: 25%;    /* How wide the highlight is (smaller = more focused) */
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold) calc(var(--gradient-x) - var(--gradient-spread)),
    var(--color-gold-light) var(--gradient-x),
    var(--color-gold) calc(var(--gradient-x) + var(--gradient-spread)),
    var(--color-gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

strong, b {
  font-weight: 600;
}

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

/* ========================================
   Language Visibility
   ======================================== */
html[lang="el"] .lang-en { display: none !important; }
html[lang="en"] .lang-el { display: none !important; }

/* ========================================
   Layout & Container
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

/* ========================================
   Skip Link (Accessibility)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: var(--space-sm) var(--space-md);
  z-index: var(--z-tooltip);
  font-weight: 600;
  opacity: 0;
}

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

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-bg-overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  border-bottom: 1px solid rgba(210, 170, 74, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-gold);
  font-weight: 600;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--text-sm);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold-gradient);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: var(--space-xs);
  border: 1px solid var(--color-gold-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.lang-switcher__btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: var(--space-xs) var(--space-sm);
  cursor: pointer;
  font-size: var(--text-xs);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.lang-switcher__btn:hover {
  color: var(--color-gold);
}

.lang-switcher__btn--active,
.lang-switcher__btn--active:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .header {
    background-color: var(--color-bg-overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(210, 170, 74, 0.2);
  }

  body.menu-open .header {
    background-color: #000000;
  }

  .nav__toggle {
    display: block;
    position: relative;
    z-index: 9999;
  }

  .nav__list {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%) !important;
    padding: var(--space-2xl);
    gap: 0;
    z-index: 9998 !important;
    overflow-y: auto;
    margin: 0;
  }

  .nav__list.is-open {
    display: flex !important;
  }

  #nav-menu > li {
    text-align: center;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
    list-style: none;
    width: 100%;
    max-width: 280px;
  }

  #nav-menu > li > a {
    font-family: var(--font-heading);
    font-size: 1.25rem !important;
    font-weight: 400;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #9a9a9a !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1.25rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(210, 170, 74, 0.15);
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  #nav-menu > li:last-child > a {
    border-bottom: none;
  }

  #nav-menu > li > a:hover,
  #nav-menu > li > a.nav__link--active {
    color: #D2AA4A !important;
    border-bottom-color: rgba(210, 170, 74, 0.4);
  }

  .lang-switcher {
    position: relative;
    z-index: 9999;
    margin-right: 0;
    flex-shrink: 0;
  }

  .header__inner {
    padding: 0 var(--space-md);
    overflow: visible;
    width: 100%;
  }

  .nav {
    gap: var(--space-sm);
    flex-shrink: 0;
  }

  .header__logo {
    flex-shrink: 0;
  }

  .header__logo img {
    height: 40px;
  }
}

/* ========================================
   Main Content
   ======================================== */
main {
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/branding/hero-bg-super-wide.webp');
  background-size: auto 100%;
  background-position: 0% center;
  background-repeat: no-repeat;
  animation: hero-pan 120s ease-in-out infinite alternate;
  opacity: 0.24;
}

/* Subtle gold glow overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(210, 170, 74, 0.1) 0%, transparent 70%);
}

@keyframes hero-pan {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

/* Reduced motion: static centered image */
@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
    background-position: center center;
  }
}

/* Mobile/tablet: start from center */
@media (max-width: 1024px) {
  .hero__bg {
    background-position: 50% center;
    animation: hero-pan-mobile 90s ease-in-out infinite alternate;
  }

  @keyframes hero-pan-mobile {
    0% {
      background-position: 50% center;
    }
    100% {
      background-position: 100% center;
    }
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
}

.hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
}

.hero__tagline {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.hero__established {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero__cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .hero__cta {
    padding-top: var(--space-lg);
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn--primary {
  --btn-gradient-x: 50%;
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold) calc(var(--btn-gradient-x) - 20%),
    var(--color-gold-light) var(--btn-gradient-x),
    var(--color-gold) calc(var(--btn-gradient-x) + 20%),
    var(--color-gold-dark) 100%
  );
  color: var(--color-bg);
}

.btn--primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: #000000;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  padding: var(--space-sm);
}

.btn--ghost:hover {
  color: var(--color-gold-light);
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__content {
  padding: var(--space-lg);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.card__meta {
  font-size: var(--text-xs);
  color: var(--color-gold-dark);
  margin-top: var(--space-md);
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: var(--color-gold-gradient);
  margin: var(--space-lg) auto 0;
}

/* ========================================
   Gallery
   ======================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 1;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.gallery-filter__btn {
  background: transparent;
  border: 1px solid var(--color-gold-dark);
  color: var(--color-text-muted);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.gallery-filter__btn:hover,
.gallery-filter__btn--active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

/* Gallery Show More */
.gallery__item--hidden {
  display: none !important;
}

.gallery-show-more {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* ========================================
   Timeline (About Page)
   ======================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold-dark);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: var(--space-lg);
}

.timeline__item:nth-child(odd) {
  left: 0;
  padding-right: var(--space-2xl);
  text-align: right;
}

.timeline__item:nth-child(even) {
  left: 50%;
  padding-left: var(--space-2xl);
}

.timeline__dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  border-radius: 50%;
  top: var(--space-lg);
  box-shadow: 0 0 0 4px var(--color-bg), 0 0 0 6px var(--color-gold-dark);
}

.timeline__item:nth-child(odd) .timeline__dot {
  right: -8px;
}

.timeline__item:nth-child(even) .timeline__dot {
  left: -8px;
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.timeline__title {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.timeline__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline__item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px !important;
    padding-right: var(--space-md) !important;
    text-align: left !important;
  }

  .timeline__dot {
    left: 12px !important;
    right: auto !important;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(210, 170, 74, 0.2);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__column h4 {
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
}

.footer__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.footer__link {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(210, 170, 74, 0.1);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

.footer__credit {
  margin-top: var(--space-sm);
}

.footer__credit a {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.footer__credit a:hover {
  color: var(--color-gold-light);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.contact-card {
  background: var(--color-bg-card);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-gold);
}

.contact-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.contact-card__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.contact-card__link {
  display: block;
  color: var(--color-gold);
  margin-top: var(--space-sm);
}

.contact-card__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gold);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--color-gold-light);
}

.social-link svg {
  flex-shrink: 0;
}

.map-container {
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-top: var(--space-3xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: var(--text-2xl);
  cursor: pointer;
  padding: var(--space-sm);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--color-text);
  font-size: var(--text-2xl);
  cursor: pointer;
  padding: var(--space-md);
  transition: background var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(210, 170, 74, 0.5);
}

.lightbox__prev {
  left: var(--space-md);
}

.lightbox__next {
  right: var(--space-md);
}

/* ========================================
   News / Articles
   ======================================== */
.article-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base);
}

.article-card:hover {
  transform: translateX(4px);
}

.article-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.article-card__category {
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.article-card__excerpt {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.article-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .article-card {
    grid-template-columns: 1fr;
  }
}

a.article-card {
  text-decoration: none;
  color: inherit;
}

.article-card__readmore {
  font-size: var(--text-sm);
  color: var(--color-gold);
  font-weight: 600;
  margin-top: auto;
  transition: color var(--transition-fast);
}

.article-card:hover .article-card__readmore {
  color: var(--color-gold-light);
}

/* ========================================
   Article Detail View
   ======================================== */
.article-detail {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.article-detail__back {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  transition: color var(--transition-fast);
}

.article-detail__back:hover {
  color: var(--color-gold-light);
}

.article-detail__header {
  margin-bottom: var(--space-xl);
}

.article-detail__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.article-detail__date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.article-detail__featured-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.article-detail__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-detail__body {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.article-detail__body p {
  margin-bottom: var(--space-lg);
}

.article-detail__gallery {
  margin-top: var(--space-xl);
}

.article-detail__gallery-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}

/* ========================================
   Products Grid
   ======================================== */
.product-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.1);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.product-card__title {
  color: var(--color-text);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.product-card__count {
  color: var(--color-gold);
  font-size: var(--text-sm);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Awards Section
   ======================================== */
.awards-list {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.awards-list__items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.awards-list__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-gold);
  font-size: var(--text-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.awards-list__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.awards-list__icon {
  font-size: var(--text-lg);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .awards-list__items {
    grid-template-columns: 1fr;
  }
}

/* Award Featured */
.award-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(210, 170, 74, 0.2);
}

.award-featured__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.award-featured__image img {
  width: 100%;
  height: auto;
  display: block;
}

.award-featured__title {
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.award-featured__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

@media (max-width: 640px) {
  .award-featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg);
  }

  .award-featured__image {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* Marquee Slider */
.marquee {
  overflow: hidden;
  margin: var(--space-2xl) 0;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(210, 170, 74, 0.2);
  border-bottom: 1px solid rgba(210, 170, 74, 0.2);
}

.marquee__track {
  display: flex;
  gap: var(--space-lg);
  animation: marquee-scroll 45s linear infinite;
  width: max-content;
}

.marquee__item {
  flex-shrink: 0;
  height: 300px;
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(210, 170, 74, 0.3);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.marquee__item:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

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

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover for accessibility */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .marquee__item {
    height: 200px;
  }
}

/* Responsive marquee */
@media (max-width: 768px) {
  .marquee__item {
    height: 200px;
  }
}

/* Awards Info Box */
.awards-info {
  max-width: 700px;
  margin: var(--space-2xl) auto 0;
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid rgba(210, 170, 74, 0.2);
}

.awards-info__title {
  font-size: var(--text-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.awards-info__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ========================================
   Buffalo Ice Cream Page
   ======================================== */

/* Hero with pencil background */
.buffalo-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.buffalo-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/buffalo-ice-cream/buffolo-ice-cream-cover.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.buffalo-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.buffalo-hero__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.buffalo-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-2xl);
}

.buffalo-hero__image {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(210, 170, 74, 0.2);
  border: 2px solid rgba(210, 170, 74, 0.3);
}

.buffalo-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Introduction */
.buffalo-intro {
  max-width: 800px;
  margin: 0 auto;
}

.buffalo-intro__text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Product Cards */
.buffalo-product-card .card__image {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
}

.buffalo-product-card .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buffalo-product-card .card__title {
  color: var(--color-gold);
}

/* Benefits Section with Background */
.buffalo-benefits-section {
  position: relative;
  overflow: hidden;
}

.buffalo-benefits-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/buffalo-ice-cream/pencil-drawing-background.webp');
  background-size: cover;
  background-position: center;
}

/* Benefits section layout */
.buffalo-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.buffalo-benefits__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.buffalo-benefits__image img {
  width: 100%;
  height: auto;
  display: block;
}

.buffalo-benefits__title {
  font-size: var(--text-2xl);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.buffalo-benefits__location {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.buffalo-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.buffalo-benefits__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.buffalo-benefits__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.buffalo-benefits__item:last-child {
  margin-bottom: 0;
}

.buffalo-benefits__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.buffalo-benefits__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .buffalo-hero {
    min-height: 30vh;
    padding: var(--space-2xl) 0;
  }

  .buffalo-hero__image {
    max-width: 100%;
  }

  .buffalo-benefits {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .buffalo-benefits__image {
    order: -1;
  }
}

/* ========================================
   Sweets Page Hero
   ======================================== */

/* Hero with background */
.sweets-hero {
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sweets-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/branding/sweets-cover.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.sweets-hero .container {
  position: relative;
  z-index: 1;
}

/* ========================================
   Tray Sweets Page (Γλυκά Ταψιού)
   ======================================== */

/* Hero with background */
.tray-hero {
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tray-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/tray-sweets/tray-sweets-cover.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.tray-hero .container {
  position: relative;
  z-index: 1;
}

/* Introduction */
.tray-intro {
  max-width: 800px;
  margin: 0 auto;
}

.tray-intro__text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Product Cards */
.tray-product-card .card__image {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
}

.tray-product-card .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tray-product-card .card__title {
  color: var(--color-gold);
}

/* Tray Pairing Section with Background */
.tray-pairing-section {
  position: relative;
  overflow: hidden;
}

.tray-pairing-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/buffalo-ice-cream/pencil-drawing-background.webp');
  background-size: cover;
  background-position: center;
}

/* Buffalo Pairing Section */
.tray-pairing {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.tray-pairing__title {
  font-size: var(--text-2xl);
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.tray-pairing__highlight {
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: rgba(210, 170, 74, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tray-pairing__text {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.tray-pairing__benefits-title {
  font-size: var(--text-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.tray-pairing__images {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tray-pairing__featured-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(210, 170, 74, 0.2);
  border: 2px solid rgba(210, 170, 74, 0.3);
  background: var(--color-bg);
}

.tray-pairing__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tray-pairing__small-image {
  max-width: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(210, 170, 74, 0.2);
}

.tray-pairing__small-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Tray Sweets */
@media (max-width: 1024px) {
  .tray-pairing {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .tray-pairing__images {
    order: -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .tray-pairing__featured-image {
    flex: 1;
    min-width: 280px;
  }

  .tray-pairing__small-image {
    max-width: 150px;
  }
}

@media (max-width: 640px) {
  .tray-pairing__images {
    flex-direction: column;
  }

  .tray-pairing__featured-image {
    min-width: 100%;
  }

  .tray-pairing__small-image {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .sweets-hero {
    min-height: 30vh;
  }

  .tray-hero {
    min-height: 30vh;
  }
}

/* ========================================
   Homepage - Signature Products Section
   ======================================== */
.signature-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.signature-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-bg-card);
  display: block;
}

.signature-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
  filter: blur(0);
}

.signature-card:hover .signature-card__image {
  transform: scale(1.05);
  filter: blur(6px);
}

.signature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl);
  transition: background var(--transition-slow);
}

.signature-card:hover .signature-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.signature-card__badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: var(--color-gold);
  color: var(--color-bg);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius);
}

.signature-card__title {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  transform: translateY(0);
  transition: transform var(--transition-slow);
}

.signature-card:hover .signature-card__title {
  transform: translateY(-8px);
}

.signature-card__description {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 400px;
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: opacity var(--transition-slow), transform var(--transition-slow), max-height var(--transition-slow), margin-bottom var(--transition-slow);
}

.signature-card:hover .signature-card__description {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
  margin-bottom: var(--space-lg);
}

.signature-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), color var(--transition-fast);
}

.signature-card:hover .signature-card__link {
  opacity: 1;
  transform: translateY(0);
  color: var(--color-gold-light);
}

.signature-card__link svg {
  transition: transform var(--transition-fast);
}

.signature-card:hover .signature-card__link svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .signature-products {
    grid-template-columns: 1fr;
  }

  .signature-card {
    aspect-ratio: 4/3;
  }

  .signature-card__overlay {
    padding: var(--space-lg);
  }
}

/* ========================================
   Homepage - Gallery Marquee
   ======================================== */
.home-marquee {
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.home-marquee__track {
  display: flex;
  gap: var(--space-md);
  animation: home-marquee-scroll 60s linear infinite;
  width: max-content;
}

.home-marquee__item {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid rgba(210, 170, 74, 0.2);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.home-marquee__item:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.home-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes home-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.home-marquee:hover .home-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .home-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .home-marquee__item {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .home-marquee__item {
    width: 200px;
    height: 200px;
  }
}

/* ========================================
   Service Notices
   ======================================== */
.service-notice {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-2xl);
  background: rgba(210, 170, 74, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.service-notice__icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.service-notice__text {
  color: var(--color-text);
  font-size: var(--text-base);
  margin-bottom: 0;
}

.service-notice__badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-bg);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
}

.service-notice__highlight {
  font-size: var(--text-base);
  color: var(--color-gold-light);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  background: rgba(210, 170, 74, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-notice--compact {
  justify-content: center;
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--color-gold);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: var(--space-md) var(--space-lg);
}

.service-notice--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--color-gold);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  margin-bottom: var(--space-xl);
}

.service-notice .btn--sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-xs);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .service-notice {
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .header,
  .footer,
  .nav,
  .btn,
  .lightbox {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
