/* style.css — Made by Lane */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=switzer@400,500,600&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale */
  --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.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ─── LIGHT MODE (default) ─── */
:root, [data-theme="light"] {
  --color-bg: #faf8f4;
  --color-surface: #f5f2ed;
  --color-text: #1a1815;
  --color-text-muted: #7a756d;
  --color-gold: #c9a96e;
  --color-gold-hover: #b8944f;
  --color-gold-highlight: #f0e8d8;
  --color-divider: #e5e0d8;
  --color-border: #d9d3ca;
  --color-gold-dark: #d4b87a;

  --shadow-sm: 0 1px 2px rgba(26, 24, 21, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 24, 21, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 24, 21, 0.12);
}

/* ─── DARK MODE ─── */
[data-theme="dark"] {
  --color-bg: #1a1815;
  --color-surface: #221f1b;
  --color-text: #e8e5e0;
  --color-text-muted: #8a857d;
  --color-gold: #d4b87a;
  --color-gold-hover: #c9a96e;
  --color-gold-highlight: #332f2a;
  --color-divider: #332f2a;
  --color-border: #3d3831;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1a1815;
    --color-surface: #221f1b;
    --color-text: #e8e5e0;
    --color-text-muted: #8a857d;
    --color-gold: #d4b87a;
    --color-gold-hover: #c9a96e;
    --color-gold-highlight: #332f2a;
    --color-divider: #332f2a;
    --color-border: #3d3831;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}

/* ─── GLOBAL TYPOGRAPHY ─── */
.display-font {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.label-font {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: var(--text-xs);
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}
@media (min-width: 1200px) {
  .container { padding-inline: var(--space-12); }
}

.section-padding {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ─── HEADER / NAV ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .header {
  background: rgba(26, 24, 21, 0.92);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header__inner { height: 4.5rem; }
}

.header__logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.65rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header__logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .header__nav { display: flex; }
}

.header__nav-link {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: var(--text-xs);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

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

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

/* ─── MOBILE MENU ─── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  height: calc(100dvh - 4rem);
  z-index: 99;
  background: var(--color-bg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}

.mobile-nav .btn-primary {
  margin-top: var(--space-4);
  text-align: center;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 21, 0.85) 0%,
    rgba(26, 24, 21, 0.4) 40%,
    rgba(26, 24, 21, 0.1) 70%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
  padding-top: var(--space-32);
  max-width: 700px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--text-hero);
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 480px;
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ─── EXPERIENCE SECTION ─── */
.experience {
  background: var(--color-bg);
}

.experience__grid {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}

@media (min-width: 768px) {
  .experience__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.experience__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  order: -1;
}

@media (min-width: 768px) {
  .experience__image { order: 1; }
}

.experience__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.experience__features {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.feature-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

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

.testimonial {
  margin-top: var(--space-10);
  padding: var(--space-8);
  border-left: 2px solid var(--color-gold);
  max-width: 540px;
}

.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.testimonial__author {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ─── COLLECTION ─── */
.collection {
  background: var(--color-surface);
}

.collection__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.collection__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.chain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

@media (min-width: 640px) {
  .chain-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .chain-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

.chain-card {
  padding: var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  text-align: center;
}

.chain-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}

.chain-card__price {
  font-size: var(--text-sm);
  color: var(--color-gold);
  font-weight: 500;
}

.materials-legend {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  padding: var(--space-6);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.materials-legend span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  max-width: none;
  margin-inline: auto;
}

.collection__cta {
  margin-top: var(--space-10);
  text-align: center;
}

/* ─── EVENTS ─── */
.events {
  background: var(--color-bg);
}

.events__grid {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}

@media (min-width: 768px) {
  .events__grid { grid-template-columns: 1fr 1fr; }
}

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

.events__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.event-types {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.event-type {
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}

.event-type:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-type__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

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

/* ─── BOOKING ─── */
.booking {
  background: var(--color-surface);
}

.booking__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.booking__form {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-10);
  text-align: left;
}

@media (min-width: 640px) {
  .booking__form { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-highlight);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.booking__submit {
  margin-top: var(--space-6);
  grid-column: 1 / -1;
  text-align: center;
}

/* ─── INLINE DATE PICKER (booking form) ─── */
.date-picker-group {
  position: relative;
}

.date-picker__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
  text-align: left;
}

.date-picker__trigger:hover {
  border-color: var(--color-gold);
}

.date-picker__trigger:focus-visible {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-highlight);
}

.date-picker__trigger--filled {
  color: var(--color-text);
  font-weight: 500;
}

.date-picker__trigger--filled .date-picker__value {
  color: var(--color-text);
}

.date-picker__icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* Calendar panel — collapsed by default, animated open */
.date-picker__panel {
  display: none;
  margin-top: var(--space-3);
}

.date-picker__panel--open {
  display: block;
  animation: dpSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dpSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.date-picker__cal {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
}

.date-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

/* Reuse cal__ styles from the calendar page — the grid, days, dots, etc. are shared */

/* Session info bar (shown after selection, below the trigger) */
.date-picker__session {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-gold-highlight);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-gold);
}

.date-picker__event {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.date-picker__event + .date-picker__event {
  margin-top: var(--space-2);
}

.date-picker__event-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.date-picker__event-tag--session {
  background: var(--color-gold);
  color: #fff;
}

.date-picker__event-tag--popup {
  background: #8b6f47;
  color: #fff;
}

.date-picker__event-tag--party {
  background: #a0845c;
  color: #fff;
}

.date-picker__event-info {
  font-size: var(--text-xs);
  color: var(--color-text);
  line-height: 1.4;
}

.date-picker__no-events {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Make the date picker span full width on mobile and desktop */
@media (min-width: 640px) {
  .date-picker-group {
    grid-column: 1 / -1;
  }
}

.booking__note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

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

.trust-signal__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.trust-signal__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ─── ABOUT ─── */
.about {
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid { grid-template-columns: 5fr 7fr; }
}

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

.about__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about__text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.about__text p:last-of-type {
  margin-bottom: var(--space-6);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  border: 1px solid var(--color-divider);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--color-surface);
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-divider);
}

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

@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-12); }
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

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

.footer__heading {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

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

.footer__attribution a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
}

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

/* ─── SCROLL ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════
   BLOG & ARTICLES
   ═══════════════════════════════════════════════════════ */

/* ─── BLOG HERO ─── */
.blog__hero {
  background: var(--color-surface);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  padding-top: clamp(var(--space-20), 10vw, var(--space-32));
  border-bottom: 1px solid var(--color-divider);
}

.blog__hero-inner {
  max-width: 720px;
}

.blog__hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.blog__hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* ─── BLOG GRID ─── */
.blog__grid-section {
  background: var(--color-bg);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
}

/* ─── ARTICLE CARD ─── */
.article__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article__card--expanded {
  grid-column: 1 / -1;
}

.article__card--expanded:hover {
  transform: none;
}

/* Card header gradients — warm gold/ivory tones */
.article__card-header {
  position: relative;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-4);
}

.article__card-header--1 {
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 40%, #c9a96e 100%);
}

.article__card-header--2 {
  background: linear-gradient(135deg, #f0e8d8 0%, #ddd2bb 50%, #c4a96e 100%);
}

.article__card-header--3 {
  background: linear-gradient(135deg, #f5efe4 0%, #e6d9c2 40%, #d4b87a 100%);
}

.article__card-header--4 {
  background: linear-gradient(135deg, #ece4d4 0%, #d9ccb4 50%, #bfa262 100%);
}

.article__card-header--5 {
  background: linear-gradient(135deg, #eae0ce 0%, #d6c8aa 40%, #c9a96e 80%, #b8944f 100%);
}

[data-theme="dark"] .article__card-header--1 {
  background: linear-gradient(135deg, #332f2a 0%, #3d3526 40%, #5a4a2e 100%);
}

[data-theme="dark"] .article__card-header--2 {
  background: linear-gradient(135deg, #2e2a24 0%, #3a3228 50%, #4d3f28 100%);
}

[data-theme="dark"] .article__card-header--3 {
  background: linear-gradient(135deg, #302c26 0%, #3c3428 40%, #554630 100%);
}

[data-theme="dark"] .article__card-header--4 {
  background: linear-gradient(135deg, #2c2822 0%, #38302a 50%, #4a3c26 100%);
}

[data-theme="dark"] .article__card-header--5 {
  background: linear-gradient(135deg, #2e2a24 0%, #3a3228 40%, #4d3f28 80%, #5a4a2e 100%);
}

.article__reading-time {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(26, 24, 21, 0.6);
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

[data-theme="dark"] .article__reading-time {
  color: rgba(232, 229, 224, 0.8);
  background: rgba(0, 0, 0, 0.35);
}

/* Card body */
.article__card-body {
  padding: var(--space-6);
}

.article__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.article__card-excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

/* Read more button */
.article__read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-gold);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--transition-interactive);
}

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

.article__read-more svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article__card--expanded .article__read-more svg {
  transform: rotate(180deg);
}

/* ─── ARTICLE EXPANDED CONTENT ─── */
.article__content {
  border-top: 1px solid var(--color-divider);
}

.article__content-inner {
  padding: var(--space-8) var(--space-6);
  max-width: 720px;
}

@media (min-width: 1024px) {
  .article__content-inner {
    padding: var(--space-10) var(--space-8);
  }
}

.article__content-inner p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.article__content-inner p:last-child {
  margin-bottom: 0;
}

.article__content-inner h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.article__content-inner h3:first-child {
  margin-top: 0;
}

.article__content-inner ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.article__content-inner li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-left: var(--space-5);
  position: relative;
}

.article__content-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.article__content-inner a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article__content-inner a:hover {
  color: var(--color-gold-hover);
}

.article__content-inner strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ─── COMPARISON TABLE ─── */
.article__table-wrapper {
  overflow-x: auto;
  margin-block: var(--space-6);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}

.article__comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.article__comparison-table thead {
  background: var(--color-surface);
}

.article__comparison-table th {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
  white-space: nowrap;
}

.article__comparison-table td {
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-divider);
  line-height: 1.5;
  vertical-align: top;
}

.article__comparison-table tr:last-child td {
  border-bottom: none;
}

.article__comparison-table td:first-child {
  color: var(--color-text);
  white-space: nowrap;
}

.article__comparison-table tbody tr:hover {
  background: var(--color-gold-highlight);
}

/* ─── BLOG CTA ─── */
.blog__cta-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

/* ─── ACTIVE NAV LINK ─── */
.header__nav-link--active {
  color: var(--color-gold);
}

/* ─── CALENDAR PAGE (cal__) ─── */

/* Calendar Hero */
.cal__hero {
  background: var(--color-surface);
  text-align: center;
  padding-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.cal__hero-inner {
  max-width: 600px;
  margin-inline: auto;
}

.cal__hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

.cal__hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-inline: auto;
}

/* Calendar Wrapper */
.cal__wrapper {
  max-width: 720px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-4), 3vw, var(--space-8));
  box-shadow: var(--shadow-md);
}

/* Calendar Header — month + arrows */
.cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-inline: var(--space-2);
}

.cal__month-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  letter-spacing: 0.02em;
  user-select: none;
}

.cal__nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.cal__nav-btn:hover {
  color: var(--color-text);
  background: var(--color-bg);
}

/* Weekday headers */
.cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: var(--space-2);
}

.cal__weekday {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding-block: var(--space-2);
}

/* Calendar Grid */
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Day Cell */
.cal__day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 44px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: transparent;
  cursor: default;
  transition: background var(--transition-interactive), color var(--transition-interactive), box-shadow var(--transition-interactive);
  gap: 4px;
  border: 2px solid transparent;
}

.cal__day:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-gold);
}

.cal__day-number {
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* Outside month */
.cal__day--outside {
  color: var(--color-text-muted);
  opacity: 0.3;
  pointer-events: none;
}

/* Past days */
.cal__day--past {
  color: var(--color-text-muted);
  opacity: 0.5;
}

.cal__day--past.cal__day--has-events {
  opacity: 0.5;
}

/* Today */
.cal__day--today {
  background: var(--color-gold-highlight);
  font-weight: 600;
}

.cal__day--today .cal__day-number {
  color: var(--color-gold);
}

/* Has events dot */
.cal__day-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  display: block;
}

/* Clickable event days */
.cal__day--has-events:not(.cal__day--past) {
  cursor: pointer;
}

.cal__day--has-events:not(.cal__day--past):hover {
  background: var(--color-gold-highlight);
}

/* Selected day */
.cal__day--selected {
  background: var(--color-gold) !important;
  color: #fff !important;
  border-color: var(--color-gold-hover);
}

.cal__day--selected .cal__day-number {
  color: #fff;
}

.cal__day--selected .cal__day-dot {
  background: rgba(255, 255, 255, 0.8);
}

/* Events Panel */
.cal__events-panel {
  max-width: 720px;
  margin-inline: auto;
  margin-top: var(--space-8);
  min-height: 120px;
}

.cal__events-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-10);
  text-align: center;
  color: var(--color-text-muted);
  border: 1px dashed var(--color-divider);
  border-radius: var(--radius-lg);
}

.cal__events-empty p {
  font-size: var(--text-sm);
  max-width: 360px;
  line-height: 1.6;
}

.cal__events-date {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
}

.cal__events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Event Card */
.cal__event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive);
}

.cal__event-card:hover {
  box-shadow: var(--shadow-md);
}

.cal__event-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.cal__event-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cal__event-tag--session {
  background: var(--color-gold-highlight);
  color: var(--color-gold-hover);
}

.cal__event-tag--popup {
  background: #e8f0e8;
  color: #4a7c59;
}

[data-theme="dark"] .cal__event-tag--popup {
  background: #2a332a;
  color: #7ab889;
}

.cal__event-tag--party {
  background: #f0e0f0;
  color: #8a4a8a;
}

[data-theme="dark"] .cal__event-tag--party {
  background: #332a33;
  color: #bb7abb;
}

.cal__event-time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

.cal__event-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

.cal__event-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.cal__event-cta {
  font-size: 0.7rem;
  padding: 0.5rem 1.25rem;
}

/* Error state */
.cal__error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-10);
  text-align: center;
  color: var(--color-text-muted);
  max-width: 720px;
  margin-inline: auto;
}

/* How Booking Works */
.cal__how {
  background: var(--color-surface);
}

.cal__steps {
  display: grid;
  gap: var(--space-6);
  margin-top: clamp(var(--space-8), 4vw, var(--space-12));
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .cal__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.cal__step {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}

.cal__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}

.cal__step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

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

.cal__how-cta {
  text-align: center;
  margin-top: clamp(var(--space-8), 4vw, var(--space-12));
}

/* Calendar responsive — small screens */
@media (max-width: 480px) {
  .cal__day {
    font-size: var(--text-xs);
    min-height: 40px;
    gap: 2px;
  }

  .cal__day-dot {
    width: 4px;
    height: 4px;
  }

  .cal__weekday {
    font-size: 0.65rem;
  }

  .cal__wrapper {
    padding: var(--space-3);
    border-radius: var(--radius-lg);
  }

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

  .cal__month-title {
    font-size: var(--text-lg);
  }
}

/* ─── PWA INSTALL BANNER ─── */
.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pwa-install-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.pwa-install-banner__content {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.pwa-install-banner__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.pwa-install-banner__text strong {
  font-weight: 600;
}

.pwa-install-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.pwa-install-banner__btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

.pwa-install-banner__dismiss {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
}

.pwa-install-banner__dismiss:hover {
  color: var(--color-text);
  background: var(--color-bg);
}

@media (max-width: 640px) {
  .pwa-install-banner__content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}
