/* =========================================
   Variables
   ========================================= */
:root {
  /* Color Palette – warm, bright, editorial luxury */
  --color-bg: #f8f4ef; /* soft ivory */
  --color-bg-elevated: #ffffff; /* cards, panels */
  --color-bg-muted: #f1e7dc; /* subtle sections */

  --color-text: #17130f; /* deep warm espresso */
  --color-text-muted: #7b6f63; /* soft taupe */

  --color-primary: #c7a36d; /* champagne gold */
  --color-primary-soft: #e3cfa4; /* soft gold */
  --color-primary-dark: #9e804f; /* deeper gold */

  --color-success: #6a8c4b; /* muted olive green */
  --color-warning: #c98b3b; /* warm amber */
  --color-danger: #b74a3a; /* refined terracotta red */

  --color-neutral-50: #faf7f2;
  --color-neutral-100: #f0e6db;
  --color-neutral-200: #e2d3c2;
  --color-neutral-300: #ccb8a2;
  --color-neutral-400: #b49b80;
  --color-neutral-500: #947a5f;
  --color-neutral-600: #6f5944;
  --color-neutral-700: #4f3e30;
  --color-neutral-800: #332820;
  --color-neutral-900: #1b140f;

  --color-border-subtle: rgba(151, 128, 98, 0.18);
  --color-border-strong: rgba(51, 40, 32, 0.4);
  --color-overlay-soft: rgba(10, 7, 4, 0.28);

  /* Glassmorphism surfaces (header, ribbons, overlays) */
  --glass-bg-soft: rgba(248, 244, 239, 0.78);
  --glass-bg-strong: rgba(16, 11, 6, 0.7);
  --glass-border: rgba(255, 255, 255, 0.45);

  /* Typography – elegant serif + contemporary sans */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "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 slightly editorial */
  --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 – cinematic hero */

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --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-9: 2.5rem;   /* 40px */
  --space-10: 3rem;    /* 48px */
  --space-12: 3.5rem;  /* 56px */
  --space-14: 4rem;    /* 64px */
  --space-16: 4.5rem;  /* 72px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radius – refined, not overly rounded */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadows – soft cinematic depth */
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 18px 45px rgba(19, 12, 6, 0.14);
  --shadow-strong: 0 26px 70px rgba(10, 6, 2, 0.35);
  --shadow-glass: 0 18px 60px rgba(10, 7, 4, 0.38);

  /* Transitions & motion */
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 420ms ease;

  --transition-bezier-soft: cubic-bezier(0.19, 1, 0.22, 1); /* cinematic */

  /* Layout */
  --container-max-width: 1120px;
  --container-wide-width: 1320px;
  --container-padding-x: 1.25rem;

  /* Focus ring */
  --focus-ring-color: rgba(199, 163, 109, 0.7);
  --focus-ring-width: 2px;
  --focus-ring-offset: 2px;
}

@media (min-width: 768px) {
  :root {
    --container-padding-x: 2rem;
    --font-size-base: 1.0625rem; /* 17px */
    --font-size-lg: 1.1875rem;   /* 19px */
    --font-size-4xl: 2.5rem;     /* 40px */
    --font-size-5xl: 3.25rem;    /* 52px */
    --font-size-6xl: 4rem;       /* 64px */
  }
}


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

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

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;
  margin: 0;
  padding: 0;
}

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

img {
  height: auto;
}

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

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

textarea {
  resize: vertical;
}

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

:focus {
  outline: none;
}

[hidden] {
  display: none !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================
   Base Typography & Layout
   ========================================= */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

main {
  min-height: 60vh;
}

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

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

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

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

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

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

h6 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

strong {
  font-weight: 600;
}

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

code, pre {
  font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Editorial links */
a {
  position: relative;
  cursor: pointer;
  transition: color var(--transition-base) ease-out;
}

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

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent 70%);
  opacity: 0.9;
  transition: width var(--transition-base) var(--transition-bezier-soft);
}

a:hover::after {
  width: 100%;
}


/* =========================================
   Focus Styles & Accessibility
   ========================================= */
:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  border-radius: var(--radius-sm);
}

/* 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;
}


/* =========================================
   Utilities – Layout & Helpers
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.section {
  padding-block: var(--space-10);
}

.section--large {
  padding-block: var(--space-14);
}

.section--muted {
  background: linear-gradient(180deg, var(--color-bg), var(--color-bg-muted));
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.grid {
  display: grid;
}

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

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

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

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

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

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

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }

.py-6 {
  padding-block: var(--space-6) !important;
}

.py-10 {
  padding-block: var(--space-10) !important;
}

.w-full {
  width: 100%;
}

/* Image overlays for cinematic feel */
.image-layered {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.28), transparent 55%),
              linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.27) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}


/* =========================================
   Components – Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-base) var(--transition-bezier-soft),
    color var(--transition-base) ease-out,
    border-color var(--transition-base) ease-out,
    box-shadow var(--transition-base) ease-out,
    transform var(--transition-fast) ease-out;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff!important;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-medium);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.btn--outline {
  background-color: #fff;
  color: var(--color-text);
  border-color: var(--color-border-strong);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
}

.btn--ghost {
  background: rgba(248, 244, 239, 0.16);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.btn--ghost:hover {
  background: rgba(248, 244, 239, 0.28);
}

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

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

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

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   Components – Form Elements
   ========================================= */
.input,
.textarea,
.select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  transition:
    border-color var(--transition-base) ease-out,
    box-shadow var(--transition-base) ease-out,
    background-color var(--transition-base) ease-out;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(123, 111, 99, 0.7);
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(199, 163, 109, 0.35);
  background-color: #ffffff;
}

.textarea {
  min-height: 140px;
}

.input[disabled],
.textarea[disabled],
.select[disabled] {
  background-color: rgba(240, 230, 219, 0.7);
  cursor: not-allowed;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.form-row {
  margin-bottom: var(--space-4);
}

.form-hint {
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-error {
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}


/* =========================================
   Components – Card & Surface
   ========================================= */
.card {
  position: relative;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.card--glass {
  background: linear-gradient(135deg, rgba(248, 244, 239, 0.88), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-glass);
}

.card--outlined {
  box-shadow: none;
  border: 1px solid var(--color-border-subtle);
}

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

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

.card__subtitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.card__body {
  font-size: var(--font-size-sm);
}

.card--interactive {
  transition:
    transform var(--transition-base) var(--transition-bezier-soft),
    box-shadow var(--transition-base) var(--transition-bezier-soft),
    border-color var(--transition-base) ease-out;
}

.card--interactive:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(199, 163, 109, 0.6);
}


/* =========================================
   Components – Glassmorphism Header Shell
   (structure-specific styles live elsewhere)
   ========================================= */
.header-glass {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, rgba(248, 244, 239, 0.94), rgba(248, 244, 239, 0.78));
  backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 14px 40px rgba(10, 6, 2, 0.12);
}

.header-glass__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 0.6rem;
}

.header-glass__nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-link {
  position: relative;
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-block: 0.35rem;
  transition: color var(--transition-base) ease-out;
}

.header-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent 70%);
  transition: width var(--transition-base) var(--transition-bezier-soft);
}

.header-link:hover {
  color: var(--color-text);
}

.header-link:hover::before,
.header-link--active::before {
  width: 100%;
}

.header-link--active {
  color: var(--color-text);
}


/* =========================================
   Components – Ribbons & Separators
   ========================================= */
.ribbon {
  width: 100%;
  background: linear-gradient(90deg, rgba(199, 163, 109, 0.12), rgba(241, 231, 220, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(250, 247, 242, 0.8);
  backdrop-filter: blur(18px);
}

.ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 0.5rem;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.separator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: var(--space-8);
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 122, 95, 0.6), transparent);
}

.separator__label {
  margin-inline: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--font-size-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}


/* =========================================
   Components – Hero Shell
   ========================================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-10);
  color: var(--color-text);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  max-width: 34rem;
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

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

.hero__media {
  position: relative;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.65), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(199, 163, 109, 0.16), transparent 60%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
  mix-blend-mode: soft-light;
  pointer-events: none;
}


/* =========================================
   Components – Footer Shell
   ========================================= */
.footer {
  background: linear-gradient(180deg, #f9f5f0 0%, #f2e6d9 55%, #e7d5c1 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: var(--space-10);
  padding-bottom: var(--space-6);
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.footer-link {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  position: relative;
  padding-bottom: 0.1rem;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgba(148, 122, 95, 0.7);
  transition: width var(--transition-base) ease-out;
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-link:hover::after {
  width: 100%;
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* =========================================
   State Badges – Hospitality Trust, Events
   ========================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(199, 163, 109, 0.5);
  background: rgba(248, 244, 239, 0.85);
  color: var(--color-text-muted);
}

.badge--success {
  border-color: rgba(106, 140, 75, 0.6);
  background: #fff;
  color: var(--color-success);
}

.badge--outline {
  background: transparent;
}


/* =========================================
   Tables – for tournament schedules, menus
   ========================================= */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.table thead {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(248, 244, 239, 0.9);
}

.table th,
.table td {
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid rgba(226, 211, 194, 0.9);
  text-align: left;
}

.table tbody tr:nth-child(even) {
  background: rgba(250, 247, 242, 0.7);
}

.table tbody tr:hover {
  background: rgba(227, 210, 188, 0.35);
}


/* =========================================
   Chips & Poker-themed Accents (subtle)
   ========================================= */
.chip-accent {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff, var(--color-primary-soft));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.chip-accent::before {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(148, 122, 95, 0.5);
}

.chip-accent--soft {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}


/* =========================================
   Motion Helpers
   ========================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--transition-slow) var(--transition-bezier-soft),
    transform var(--transition-slow) var(--transition-bezier-soft);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-hover {
  transition: transform var(--transition-base) var(--transition-bezier-soft),
              box-shadow var(--transition-base) ease-out;
}

.scale-hover:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--shadow-medium);
}


/* =========================================
   FAQ / Accordion Shell
   ========================================= */
.accordion-item {
  border-bottom: 1px solid rgba(226, 211, 194, 0.9);
  padding-block: var(--space-3);
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.accordion-button__label {
  font-size: var(--font-size-md);
  font-weight: 500;
}

.accordion-panel {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}


/* =========================================
   Blog / Editorial helpers
   ========================================= */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.post-meta__separator::before {
  content: "•";
  margin-inline: 0.25rem;
}

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

.rich-text h2,
.rich-text h3,
.rich-text h4 {
  margin-top: var(--space-6);
}

.rich-text ul,
.rich-text ol {
  margin-bottom: var(--space-4);
  padding-left: 1.3rem;
}

.rich-text li {
  margin-bottom: 0.25rem;
}


/* =========================================
   Responsive tweaks
   ========================================= */
@media (max-width: 767px) {
  .hero {
    padding-block: var(--space-8);
  }

  .hero__title {
    font-size: var(--font-size-4xl);
  }

  .header-glass__inner {
    padding-block: 0.45rem;
  }
}
