@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-italic.woff2') format('woff2');
  font-weight: 400 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/urbanist.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-brand: #D30071;
  --color-brand-light: #e04d96;
  --color-brand-dark: #a8005a;

  --color-accent: #E6B133;
  --color-accent-hover: #9c7822;
  --color-accent-light: #FDF8F0;

  --color-topbar: #CC487D;

  --color-navy: #212121;
  --color-slate: #3A4F66;
  --color-silver: #e1e8ed;
  --color-cloud: #f2f5f7;
  --color-mist: #FAFBFC;
  --color-white: #ffffff;
  --color-black: #0d0d0d;
  --color-footer: #1c1c1c;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Urbanist', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(33,33,33,0.04);
  --shadow-md: 0 8px 24px rgba(33,33,33,0.06);
  --shadow-lg: 0 16px 48px rgba(33,33,33,0.08);
  --shadow-accent: 0 8px 32px rgba(211,0,113,0.15);
  --shadow-accent-gold: 0 8px 32px rgba(230,177,51,0.25);

  --header-h: 80px;
  --topbar-h: 32px;
  --container-max: 1290px;
  --transition: 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  --transition-fast: 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2.5rem; }

.section { padding: 10rem 0; }
.section--dark { background: var(--color-brand); }
.section--cloud { background: var(--color-cloud); }

.section__header { text-align: center; margin-bottom: 5rem; }
.section__subtitle {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--color-brand); margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1; color: var(--color-navy);
  letter-spacing: -0.01em;
}
.section__title--light { color: var(--color-white); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.9s cubic-bezier(0.32, 0.72, 0, 1),
              filter 0.9s cubic-bezier(0.32, 0.72, 0, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.delay-4 { transition-delay: 0.6s; }
.reveal.delay-5 { transition-delay: 0.75s; }

@media (max-width: 768px) {
  :root { --header-h: 70px; --topbar-h: 0px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .section__header { margin-bottom: 3rem; }
}

section[id],
[id^="hm-"],
[id^="cr-"],
[id^="mt-"],
[id^="ct-"] {
  scroll-margin-top: 120px;
}

::selection {
  background: var(--color-brand);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-brand);
  color: var(--color-white);
}

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

img, a, button {
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

body {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--color-cloud); }
::-webkit-scrollbar-thumb { background: var(--color-silver); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-brand); }

@media print {
  .header, .footer, .mobile-bottom-nav, .cookie-banner, .cookie-modal { display: none !important; }
  body { padding: 0; font-size: 12pt; }
  .section { padding: 2rem 0; break-inside: avoid; }
}
