@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #C97B5B;
  --accent: #A0522D;
  --bg: #F5EFE6;
  --surface: #EDE4D3;
  --text: #3A2E26;
  --muted: #8A7A68;

  --font-heading: 'Crimson Pro', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --radius-pill: 999px;
  --radius-card: 22px;
  --radius-input: 12px;

  --shadow-bold: 6px 6px 0 var(--primary);
  --shadow-bold-accent: 6px 6px 0 var(--accent);
  --shadow-bold-hover: 8px 8px 0 var(--accent);

  --header-height: 72px;
  --container-max: 1200px;
  --container-padding: 1.25rem;

  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  max-width: 65ch;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 55ch;
}

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

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

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

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: 5rem;
}

.section--tight {
  padding-block: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .lead {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.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-col {
  flex-direction: column;
}

.gap-sm {
  gap: 0.75rem;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--surface);
  box-shadow: 0 2px 20px rgba(58, 46, 38, 0.06);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--primary);
}

.logo span {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--text);
  transition: background var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: var(--surface);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* ============================================
   HAMBURGER MENU — MOBILE
   ============================================ */
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
    box-shadow: 0 8px 24px rgba(58, 46, 38, 0.1);
  }

  .nav-menu.open a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-input);
  }

  .nav-menu.open a:hover {
    background: var(--surface);
  }

  .nav-menu.open a::after {
    display: none;
  }
}

/* ============================================
   PHOTO BACKGROUND OVERLAY (CRITICAL)
   ============================================ */
.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding-block: 4rem;
}

.hero-section .container {
  width: 100%;
}

.hero-content {
  max-width: 720px;
}

.hero-section h1 {
  color: #F5EFE6;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: rgba(245, 239, 230, 0.85);
  margin-bottom: 2.5rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base),
              color var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  box-shadow: var(--shadow-bold);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-bold-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
  box-shadow: 4px 4px 0 var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--primary);
}

.cta-button {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--shadow-bold);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.cta-button:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-bold-hover);
}

.form-submit {
  background: var(--primary);
  color: var(--bg);
  box-shadow: var(--shadow-bold);
  width: auto;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-bold-hover);
}

.btn-primary:active,
.btn-secondary:active,
.cta-button:active,
.form-submit:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-bold);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-bold-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.35rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--bg);
}

.features-section .card-icon {
  box-shadow: 3px 3px 0 var(--accent);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--surface);
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-bold);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.service-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-bold-hover);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.service-item h3 {
  margin-bottom: 0.25rem;
}

.service-item p {
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content .lead {
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-bold);
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--text);
  color: var(--bg);
}

.stats-section h2 {
  color: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-section {
  background-size: cover;
  background-position: center;
  padding-block: 5rem;
}

.testimonial-section h2 {
  color: #F5EFE6;
}

.testimonial-section .section-header .lead {
  color: rgba(245, 239, 230, 0.75);
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-bold);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-bold-hover);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--surface);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section .lead {
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT SECTION & FORMS
   ============================================ */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.15rem;
}

.contact-row .icon svg {
  width: 100%;
  height: 100%;
}

.contact-row p {
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-bold);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius-input);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 123, 91, 0.2);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(245, 239, 230, 0.8);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--bg);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 30ch;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
}

.footer-bottom a {
  color: rgba(245, 239, 230, 0.5);
}

.footer-bottom a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base),
              border-color var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-bold), 0 12px 40px rgba(58, 46, 38, 0.15);
  z-index: 9999;
  margin-left: auto;
  transition: transform var(--transition-base),
              opacity var(--transition-base);
}

.cookie-popup.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-popup h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-popup p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.cookie-actions .btn-secondary {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page {
  padding-block: 4rem;
}

.policy-page .container {
  max-width: 800px;
}

.policy-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.policy-page .policy-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.policy-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface);
}

.policy-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.8;
}

.policy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.policy-page ul li {
  margin-bottom: 0.4rem;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 1rem;
}

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

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
    --header-height: 80px;
  }

  .section {
    padding-block: 6rem;
  }

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

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

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

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

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-popup {
    left: auto;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --container-padding: 2.5rem;
    --header-height: 88px;
  }

  .section {
    padding-block: 7rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .hero-content {
    max-width: 800px;
  }

  .about-grid {
    gap: 5rem;
  }

  .contact-grid {
    gap: 5rem;
  }

  .contact-form {
    padding: 2.5rem;
  }
}

/* ============================================
   DECORATIVE / EXTRAS
   ============================================ */
.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.divider--center {
  margin-inline: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   PRICING CARDS (BONUS)
   ============================================ */
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-bold);
  text-align: center;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-bold-hover);
}

.pricing-card.featured {
  background: var(--text);
  color: var(--bg);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--bg);
}

.pricing-card.featured .price-period {
  color: rgba(245, 239, 230, 0.6);
}

.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(138, 122, 104, 0.15);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out both;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 2rem;
  }

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