/* ========================================================================== 
   Variables
   ========================================================================== */
:root {
  /* Color palette – luxury ivory, champagne, pearl, bronze, soft blacks */
  --color-background: #f7f5f2; /* ivory white */
  --color-background-soft: #f0ebe4; /* soft beige for sections */
  --color-surface: rgba(255, 255, 255, 0.86); /* glassmorphism panels */
  --color-surface-elevated: rgba(255, 255, 255, 0.96);

  --color-text: #141217; /* deep charcoal */
  --color-text-soft: #4b4640; /* warm neutral for body */
  --color-text-muted: #7f766c;
  --color-text-on-dark: #f8f5ef;

  --color-primary: #c9a46a; /* champagne gold */
  --color-primary-soft: #e3cda1;
  --color-primary-dark: #a17f49;

  --color-success: #3c8c6b; /* refined emerald */
  --color-warning: #b88733; /* bronze */
  --color-danger: #b54a4a; /* elegant red */

  --color-gray-50: #fbfaf8;
  --color-gray-100: #f2eee7;
  --color-gray-200: #e2dbd1;
  --color-gray-300: #cfc3b5;
  --color-gray-400: #b1a291;
  --color-gray-500: #8f8171;
  --color-gray-600: #736659;
  --color-gray-700: #574b40;
  --color-gray-800: #3a3129;
  --color-gray-900: #241e1a;

  /* Glass / overlays inspired by elegant lighting */
  --color-glass-light: rgba(255, 255, 255, 0.18);
  --color-glass-border: rgba(255, 255, 255, 0.35);
  --color-overlay-soft: rgba(12, 8, 5, 0.35);
  --color-overlay-strong: rgba(10, 7, 4, 0.6);

  /* Typography – elegant serif + clean sans */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */
  --font-size-6xl: 3.75rem;  /* 60px */

  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Spacing scale (0–96px) */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-7: 1.75rem;  /* 28px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radii – soft, luxurious curvature */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows – inspired by stage lighting and glass panels */
  --shadow-soft: 0 10px 25px rgba(12, 8, 5, 0.12);
  --shadow-medium: 0 18px 45px rgba(10, 6, 3, 0.18);
  --shadow-strong: 0 24px 70px rgba(8, 5, 2, 0.35);
  --shadow-soft-inner: inset 0 0 0 1px rgba(255, 255, 255, 0.18);

  /* Transitions & animation timings */
  --transition-fast: 120ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 320ms ease;

  /* Layout */
  --container-max-width: 1120px;
  --container-max-width-wide: 1320px; /* for gallery / hero layouts */
  --header-height: 78px;
}

/* Larger screens: upscale headings slightly for cinematic feel */
@media (min-width: 768px) {
  :root {
    --font-size-3xl: 2.125rem; /* 34px */
    --font-size-4xl: 2.5rem;   /* 40px */
    --font-size-5xl: 3.25rem;  /* 52px */
    --font-size-6xl: 4.25rem;  /* 68px */
  }
}

/* ========================================================================== 
   Reset / Normalize
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  padding: 0;
  background: none;
}

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

/* Remove default focus outlines; we will re-add accessible focus-visible */
:focus {
  outline: none;
}

/* ========================================================================== 
   Base Styles
   ========================================================================== */
body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-soft);
  background: radial-gradient(circle at top left, #fffdf8 0, var(--color-background) 40%, #e8dfd2 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-2);
}

h5 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

h6 {
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
}

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

strong {
  font-weight: 600;
}

small {
  font-size: var(--font-size-sm);
}

a {
  position: relative;
  transition: color var(--transition-base), opacity var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

/* Subtle editorial underline utility for links when needed */
.a-underline {
  text-decoration: none;
}

.a-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--color-primary) 14%, var(--color-primary) 86%, transparent 100%);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.a-underline:hover::after {
  transform: scaleX(1);
}

blockquote {
  margin: var(--space-6) 0;
  padding-left: var(--space-4);
  border-left: 2px solid var(--color-primary-soft);
  font-family: var(--font-serif);
  color: var(--color-text);
}

hr {
  border: none;
  border-top: 1px solid rgba(185, 166, 138, 0.4);
  margin: var(--space-8) 0;
}

/* ========================================================================== 
   Utilities
   ========================================================================== */

/* Layout containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

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

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--contrast {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 226, 208, 0.96));
}

.section-header {
  margin-bottom: var(--space-8);
}

.section-kicker {
  font-family: var(--font-sans);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gray-500);
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-snug);
}

.section-subtitle {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}

/* Flex helpers */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

/* Grid helpers */
.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.m-auto {
  margin: auto;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }



/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Luxurious glassmorphism utility for header / overlays */
.glass-panel {
  background: var(--color-surface);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

/* Luxury separators, useful for footer / trust sections */
.separator-lux {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, rgba(186, 158, 104, 0.4) 18%, rgba(201, 164, 106, 0.85) 50%, rgba(186, 158, 104, 0.4) 82%, transparent 100%);
}

.separator-lux--soft {
  opacity: 0.65;
}

/* Cinematic image aspect ratios */
.aspect-16-9 {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-16-9 > * {
  position: absolute;
  inset: 0;
}

.aspect-21-9 {
  position: relative;
  padding-bottom: 42.85%;
}

.aspect-21-9 > * {
  position: absolute;
  inset: 0;
}

/* ========================================================================== 
   Components
   ========================================================================== */

/* Buttons – primary, ghost, subtle; polish CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0, var(--color-primary-dark) 100%);
  color: var(--color-text-on-dark)!important;
  box-shadow: 0 12px 30px rgba(161, 127, 73, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(140, 110, 64, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(140, 110, 64, 0.4);
}

.btn-ghost {
  background: #fff;
  color: var(--color-text);
  border-color: rgba(191, 164, 119, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.btn-subtle {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  border-color: rgba(191, 164, 119, 0.25);
}

.btn-subtle:hover {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: var(--font-size-xs);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: var(--font-size-sm);
}

.btn[disabled],
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Form elements – inputs, textareas, selects */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.field-hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.field-error {
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 176, 155, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              background-color var(--transition-base),
              transform var(--transition-fast);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(127, 118, 108, 0.8);
}

.textarea {
  min-height: 7rem;
  resize: vertical;
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(201, 164, 106, 0.65), 0 18px 35px rgba(16, 12, 6, 0.16);
  background-color: #fff;
}

.input[aria-invalid="true"],
.textarea[aria-invalid="true"],
.select[aria-invalid="true"] {
  border-color: var(--color-danger);
}

/* Cards – for services, event concepts, references */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0, rgba(247, 242, 236, 0.98) 55%, rgba(239, 228, 214, 1) 100%);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
  border: 1px solid rgba(227, 209, 184, 0.9);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-header {
  margin-bottom: var(--space-4);
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}

.card-meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-gray-500);
}

.card--soft {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(12, 8, 5, 0.12);
}

/* Tag / pill component – for categories like "Event firmowy" */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 164, 106, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 233, 214, 0.96));
  font-size: var(--font-size-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-700);
}

/* Badge – subtle status indicator */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(41, 33, 20, 0.88);
  color: var(--color-text-on-dark);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Announcement / promo bar – for seasonal packages */
.announcement-bar {
  width: 100%;
  background: linear-gradient(90deg, rgba(21, 16, 10, 0.96), rgba(72, 53, 30, 0.96));
  color: var(--color-text-on-dark);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0.7rem 1.5rem;
}

.announcement-bar-highlight {
  color: var(--color-primary-soft);
  font-weight: 600;
}

/* Footer helper */
.footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 225, 209, 1));
  color: var(--color-text-soft);
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
  border-top: 1px solid rgba(210, 192, 165, 0.8);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

/* ========================================================================== 
   Accessibility & Motion
   ========================================================================== */

/* Focus-visible – clear but elegant outlines */
:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  position: relative;
}

a:focus-visible::after,
button:focus-visible::after,
[role="button"]:focus-visible::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(201, 164, 106, 0.9), 0 0 0 4px rgba(10, 7, 4, 0.8);
  pointer-events: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================================== 
   Helper Classes For Hero & Cinematic Sections
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-text-on-dark);
  background-color: #070508;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0, rgba(240, 222, 191, 0.5), transparent 45%),
              radial-gradient(circle at 85% 100%, rgba(179, 132, 71, 0.5), transparent 48%),
              linear-gradient(180deg, rgba(5, 4, 7, 0.4), rgba(5, 4, 7, 0.9));
}

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

.hero-kicker {
  font-size: var(--font-size-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 232, 211, 0.9);
  margin-bottom: var(--space-3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  max-width: 18ch;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--font-size-6xl);
  }
}

.hero-subtitle {
  max-width: 40rem;
  color: rgba(248, 242, 233, 0.88);
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Decorative chips / cards / roulette halos – generic utilities */
.decor-chip {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
  background: radial-gradient(circle at 30% 30%, #fff 0, #f5e5ca 40%, #b98b42 100%);
  opacity: 0.9;
}

.decor-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
}

/* Gallery basics */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 5, 8, 0) 0, rgba(6, 5, 8, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Blog / editorial list basics */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.blog-card-body {
  padding: var(--space-5);
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}

.blog-card-meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-gray-500);
  margin-bottom: var(--space-3);
}

/* FAQ basics */
.faq-item {
  border-bottom: 1px solid rgba(204, 189, 168, 0.8);
  padding: var(--space-4) 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text);
}

.faq-answer {
  margin-top: var(--space-2);
  color: var(--color-text-soft);
}

/* Contact / newsletter highlight */
.newsletter-panel {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98) 0, rgba(238, 225, 208, 0.98) 70%);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
}

.newsletter-text {
  margin-bottom: var(--space-4);
}

/* Responsive tweaks for mobile-first layout */
@media (max-width: 767px) {
  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-6));
    align-items: flex-start;
  }

  .announcement-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
