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

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

:root {
  --primary: #C26E4B;
  --accent: #7A845C;
  --bg: #F7F3EC;
  --surface: #EBE3D5;
  --text: #2D241E;
  --muted: #7A6B5D;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

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

  --shadow-offset: 6px 6px 0 var(--primary);
  --shadow-offset-accent: 6px 6px 0 var(--accent);
  --shadow-offset-sm: 4px 4px 0 var(--primary);

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

  --transition-base: 0.25s ease;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ==========================================================================
   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.2rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

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

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

h4 {
  font-size: 1.2rem;
}

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

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

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

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ==========================================================================
   4. Layout & Container
   ========================================================================== */

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

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

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

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

.section--primary h2,
.section--primary h3,
.section--primary p {
  color: var(--bg);
}

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

.section--accent h2,
.section--accent h3,
.section--accent p {
  color: var(--bg);
}

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

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--bg);
}

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

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

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

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

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

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

.header.scrolled {
  background-color: var(--bg);
  border-bottom-color: var(--surface);
  box-shadow: 0 2px 0 var(--surface);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

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

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

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

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-toggle span {
  position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

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

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

.mobile-menu-toggle.active span {
  background-color: transparent;
}

.mobile-menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span::after {
  top: 0;
  transform: 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;
  padding: 4rem 1.25rem;
}

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

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

.hero-content h1 {
  color: var(--bg);
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: var(--surface);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

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

/* ==========================================================================
   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-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
  white-space: nowrap;
}

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

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

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

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

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

.cta-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--accent);
  color: var(--bg);
}

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   10. Features Section
   ========================================================================== */

.features-section {
  padding: var(--section-padding);
}

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

/* ==========================================================================
   11. Services Section
   ========================================================================== */

.services-section {
  padding: var(--section-padding);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 2px solid var(--surface);
}

.service-item:last-child {
  border-bottom: none;
}

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

.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-content h3 {
  margin-bottom: 0.75rem;
}

.service-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   12. About Section
   ========================================================================== */

.about-section {
  padding: var(--section-padding);
}

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

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

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

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

.about-content p {
  color: var(--muted);
}

/* ==========================================================================
   13. Stats Section
   ========================================================================== */

.stats-section {
  padding: var(--section-padding);
}

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

.stat-item {
  padding: 2rem 1rem;
}

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

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================================================
   14. Testimonials Section
   ========================================================================== */

.testimonial-section {
  padding: var(--section-padding);
  background-size: cover;
  background-position: center;
}

.testimonial-section h2,
.testimonial-section .section-label {
  color: var(--bg);
}

.testimonial-section .section-subtitle {
  color: var(--surface);
}

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

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

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 0.15em;
}

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

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

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

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

/* ==========================================================================
   15. CTA Section
   ========================================================================== */

.cta-section {
  padding: var(--section-padding);
  text-align: center;
}

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

.cta-section p {
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   16. Contact Section & Rows
   ========================================================================== */

.contact-section {
  padding: var(--section-padding);
}

.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 {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 1.4rem;
  text-align: center;
  color: var(--primary);
  line-height: 1.5;
}

.contact-row-text {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-row-text a {
  color: var(--text);
}

.contact-row-text a:hover {
  color: var(--primary);
}

/* ==========================================================================
   17. Forms
   ========================================================================== */

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

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

.form-group label {
  font-family: var(--font-heading);
  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(194, 110, 75, 0.2);
}

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

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

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

/* ==========================================================================
   18. Policy Pages
   ========================================================================== */

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

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

.policy-page h1 {
  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: 1rem;
  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 {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.policy-page ul li {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   19. Footer
   ========================================================================== */

.footer {
  background-color: var(--text);
  color: var(--surface);
  padding: 4rem 1.25rem 2rem;
}

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

.footer-brand .logo {
  color: var(--bg);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 1.25rem;
}

.footer-column ul li {
  margin-bottom: 0.65rem;
}

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

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(247, 243, 236, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-size: 1.1rem;
  transition: background-color var(--transition-base), color var(--transition-base);
}

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

/* ==========================================================================
   20. Cookie Popup
   ========================================================================== */

.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background-color: var(--surface);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-offset);
  z-index: 9999;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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

.cookie-popup h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

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

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

.cookie-actions .btn-primary {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

.cookie-actions .btn-secondary {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

/* ==========================================================================
   21. Accessibility & Focus
   ========================================================================== */

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background-color: 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;
}

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

/* ==========================================================================
   22. Responsive – Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --section-padding: 5rem 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);
  }

  .service-item {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .service-item:nth-child(even) .service-image {
    order: 2;
  }

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

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

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

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

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

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

  .cookie-popup {
    left: auto;
  }
}

/* ==========================================================================
   23. Responsive – Desktop (1024px+)
   ========================================================================== */

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

  .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 h1 {
    font-size: 3.75rem;
  }

  .service-image img {
    height: 360px;
  }

  .about-image img {
    height: 440px;
  }
}

/* ==========================================================================
   24. Mobile Navigation (CRITICAL – 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);
    gap: 0;
    box-shadow: 0 4px 0 var(--surface);
  }

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

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

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

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

  .card:hover,
  .testimonial-card:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .cta-button:hover,
  .form-submit:hover {
    transform: none;
  }
}

/* ==========================================================================
   26. Print Styles
   ========================================================================== */

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

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

  .section {
    padding: 1.5rem 0;
  }

  .card,
  .testimonial-card,
  .contact-form {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}