@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700;800&display=swap');

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
  --primary: #ff8a4c;
  --accent: #ff5e8a;
  --bg: #2b1520;
  --surface: #3a1f2a;
  --text: #fdf1e6;
  --muted: #d8b8b0;

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

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

  --gradient-warm: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-hero: linear-gradient(160deg, #ff8a4c 0%, #ff5e8a 50%, #c94b7c 100%);
  --gradient-surface: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);

  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ==========================================================================
   2. 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.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

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

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

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

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

blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */

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

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

.section--alt {
  background-color: var(--surface);
}

.section--gradient {
  background: var(--gradient-warm);
}

.section--gradient .section-subtitle,
.section--gradient p {
  color: rgba(253, 241, 230, 0.85);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section--gradient .section-subtitle {
  color: var(--text);
}

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

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

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

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

.flex {
  display: flex;
  gap: 1rem;
}

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

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

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

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

/* ==========================================================================
   5. Header & Navigation
   ========================================================================== */

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

.header.scrolled {
  background-color: rgba(43, 21, 32, 0.97);
  border-bottom-color: var(--muted);
  backdrop-filter: blur(8px);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

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

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

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--muted);
  border-radius: 0;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  position: relative;
  transition: background-color var(--transition-base);
}

.mobile-menu-toggle .bar::before,
.mobile-menu-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: transform var(--transition-base);
}

.mobile-menu-toggle .bar::before {
  top: -7px;
}

.mobile-menu-toggle .bar::after {
  top: 7px;
}

.mobile-menu-toggle[aria-expanded="true"] .bar {
  background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .bar::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* ==========================================================================
   7. Hero Section
   ========================================================================== */

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

.hero-section .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.hero-section h1 {
  color: var(--text);
}

.hero-section h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-section p {
  font-size: 1.15rem;
  color: rgba(253, 241, 230, 0.85);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--primary);
}

/* ==========================================================================
   8. 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: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--text);
}

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

.cta-button {
  background: var(--gradient-warm);
  color: var(--text);
  border-color: transparent;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.cta-button:hover {
  opacity: 0.9;
  color: var(--text);
}

.form-submit {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.form-submit:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

/* ==========================================================================
   9. Feature Cards
   ========================================================================== */

.features-section {
  background-color: var(--bg);
}

.feature-card {
  background-color: var(--surface);
  border: 1px solid rgba(216, 184, 176, 0.15);
  padding: 2rem;
  transition: border-color var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gradient-warm);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--text);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ==========================================================================
   10. Services Section
   ========================================================================== */

.services-section {
  background-color: var(--surface);
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  border: 1px solid rgba(216, 184, 176, 0.15);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  margin-bottom: 0.5rem;
}

.service-card__body p {
  font-size: 0.95rem;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 1rem;
}

.service-card__link:hover {
  color: var(--accent);
}

.service-card__link::after {
  content: "→";
  transition: transform var(--transition-base);
}

.service-card__link:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   11. About Section
   ========================================================================== */

.about-section {
  background-color: var(--bg);
}

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

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-warm);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   12. Stats Section
   ========================================================================== */

.stats-section {
  background: var(--gradient-warm);
}

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

.stat-item {
  padding: 1.5rem 1rem;
  border: 1px solid rgba(253, 241, 230, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253, 241, 230, 0.8);
}

/* ==========================================================================
   13. Testimonials Section
   ========================================================================== */

.testimonial-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(216, 184, 176, 0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

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

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--primary);
}

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

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   14. CTA Section
   ========================================================================== */

.cta-section {
  background: var(--gradient-hero);
  text-align: center;
}

.cta-section h2 {
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(253, 241, 230, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-section .cta-button {
  background-color: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}

.cta-section .cta-button:hover {
  background-color: var(--text);
  color: var(--bg);
  border-color: var(--text);
  opacity: 1;
}

/* ==========================================================================
   15. Contact Section & Form
   ========================================================================== */

.contact-section {
  background-color: var(--surface);
}

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

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.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__text {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-row__text strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.contact-form {
  background-color: var(--bg);
  border: 1px solid rgba(216, 184, 176, 0.15);
  padding: 2rem;
}

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

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

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(216, 184, 176, 0.5);
}

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}

/* ==========================================================================
   16. Footer
   ========================================================================== */

.footer {
  background-color: #1a0d14;
  border-top: 1px solid rgba(216, 184, 176, 0.15);
  padding-block: 3.5rem 1.5rem;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition-base);
}

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

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--muted);
  color: var(--muted);
  font-size: 1rem;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216, 184, 176, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(216, 184, 176, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(216, 184, 176, 0.6);
}

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

/* ==========================================================================
   17. Cookie Popup
   ========================================================================== */

.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  background-color: var(--surface);
  border: 1px solid var(--muted);
  padding: 1.5rem;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-popup.hidden {
  display: none;
}

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

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

.cookie-popup__actions .btn-primary {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.cookie-popup__actions .btn-secondary {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   18. Policy Pages (Privacy, Terms)
   ========================================================================== */

.policy-page {
  padding-block: 3rem;
}

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

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .policy-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(216, 184, 176, 0.15);
}

.policy-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 184, 176, 0.1);
}

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

.policy-page p,
.policy-page li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.policy-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy-page ul li {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.policy-page a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   19. Pricing Section (Bonus)
   ========================================================================== */

.pricing-section {
  background-color: var(--bg);
}

.pricing-card {
  background-color: var(--surface);
  border: 1px solid rgba(216, 184, 176, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--primary);
}

.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card--featured::after {
  content: "Popular";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

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

.pricing-card__features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* ==========================================================================
   20. Accessibility & Focus States
   ========================================================================== */

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

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background-color: var(--primary);
  color: var(--bg);
}

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

/* ==========================================================================
   22. Media Queries — Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --section-padding-y: 5rem;
    --container-padding: 2rem;
  }

  .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: 3rem;
  }

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

  .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;
    max-width: 400px;
  }

  .hero-section .container {
    gap: 1.75rem;
  }

  .hero-section p {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   23. Media Queries — Mobile Nav (max-width: 767px)
   ========================================================================== */

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

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

  .nav-menu.open a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(216, 184, 176, 0.1);
  }

  .nav-menu.open a:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   24. Media Queries — Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  :root {
    --section-padding-y: 6rem;
    --container-padding: 2.5rem;
    --header-height: 80px;
  }

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

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

  .about-grid {
    gap: 4rem;
  }

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

  .hero-section .container {
    max-width: 800px;
  }

  .hero-section h1 {
    font-size: 3.75rem;
  }

  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }

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

/* ==========================================================================
   25. Print Styles
   ========================================================================== */

@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle,
  .cta-section {
    display: none !important;
  }

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

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding-block: 1.5rem;
    break-inside: avoid;
  }
}