/* ═══════════════════════════════════════
   DESIGN TOKENS – Salzburg Premium
   ═══════════════════════════════════════ */
:root {
  /* Colors - Warm Salzburg Palette */
  --color-bg: #faf7f2;
  --color-bg-alt: #f2ece3;
  --color-bg-card: #ffffff;
  --color-surface: #efe8dc;

  --color-text: #2c2418;
  --color-text-light: #6b5e4f;
  --color-text-muted: #9a8d7e;

  --color-primary: #1a2332;
  --color-primary-light: #2a3a52;
  --color-accent: #b89b5e;
  --color-accent-light: #d4bc7e;
  --color-accent-dark: #96793d;

  --color-gold: #b89b5e;
  --color-cream: #faf7f2;
  --color-warm-white: #fdfcf9;
  --color-charcoal: #2c2418;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(44, 36, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 24, 0.12);
  --shadow-card: 0 2px 16px rgba(44, 36, 24, 0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

h1 em, h2 em {
  font-style: italic;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

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

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

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-top: 16px;
}

.gold-line {
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  margin: 16px auto;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 155, 94, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 1.1em;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--color-primary);
}

.nav-logo-icon {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  text-decoration: none;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text-light);
}

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

.nav-cta {
  padding: 8px 20px !important;
  border: 1.5px solid var(--color-accent) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--color-accent) !important;
}

.nav-cta:hover {
  background: var(--color-accent) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--color-primary);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.85) 0%,
    rgba(26, 35, 50, 0.7) 40%,
    rgba(44, 36, 24, 0.6) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(184, 155, 94, 0.4);
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 em {
  color: var(--color-accent-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════════ */
.philosophy {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philosophy-card {
  background: var(--color-bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(184, 155, 94, 0.08);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 155, 94, 0.2);
}

.philosophy-icon {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  opacity: 0.7;
}

.philosophy-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.philosophy-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */
.steps {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.step-item:hover {
  border-color: rgba(184, 155, 94, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.step-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.step-item p {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--color-bg-card);
  padding: 36px 28px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(184, 155, 94, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 155, 94, 0.25);
}

.service-icon {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  flex-grow: 1;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: rgba(184, 155, 94, 0.1);
  border-radius: 20px;
  align-self: flex-start;
}

/* Services Note */
.services-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.08), rgba(184, 155, 94, 0.03));
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.note-icon {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.services-note strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.services-note p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   DIFFERENCE
   ═══════════════════════════════════════ */
.difference {
  padding: var(--section-padding);
  background: var(--color-primary);
  color: #fff;
}

.difference .section-label {
  color: var(--color-accent-light);
}

.difference h2 {
  color: #fff;
}

.difference .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.difference-content {
  margin-bottom: 60px;
}

.difference-text {
  max-width: 720px;
  margin: 0 auto;
}

blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-accent-light);
  padding: 28px 0 28px 28px;
  border-left: 3px solid var(--color-accent);
  margin-bottom: 32px;
}

.difference-list {
  list-style: none;
}

.difference-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.difference-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.about-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.about-title {
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-intro {
  color: var(--color-text-light);
  font-size: 1.02rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-details {
  display: grid;
  gap: 24px;
}

.about-detail {
  padding: 20px 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent);
}

.about-detail h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}

.about-detail p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
}

a.contact-method:hover {
  background: rgba(184, 155, 94, 0.1);
  color: var(--color-text);
}

.contact-method-icon {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 155, 94, 0.1);
  border-radius: 50%;
}

.contact-method strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Form */
.contact-form {
  background: var(--color-bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 155, 94, 0.1);
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-surface);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.1);
}

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

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

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand span:first-child {
  color: var(--color-accent);
}

.footer-brand > span:nth-child(2) {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-contact span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-text {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

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

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-page {
  padding: 120px 0 80px;
  background: var(--color-bg);
  min-height: 80vh;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-accent);
}

.legal-intro {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--color-surface);
  font-size: 1.3rem;
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--color-text);
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-accent-dark);
}

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

.legal-footer-note {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--color-surface);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184, 155, 94, 0.08);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(184, 155, 94, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  border-color: rgba(184, 155, 94, 0.25);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  list-style: none;
  transition: color var(--transition);
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--color-accent-dark);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  font-family: var(--font-body);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

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

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

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

  .about-content {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: var(--color-primary);
    padding: 40px;
    gap: 24px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.05rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

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

  /* Hero */
  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  /* Grids */
  .philosophy-grid,
  .services-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-photo::after {
    display: none;
  }

  /* Contact */
  .contact-form {
    padding: 28px;
  }

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

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .philosophy-card,
  .step-item {
    padding: 28px 20px;
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
  }

  blockquote {
    font-size: 1.05rem;
    padding-left: 20px;
  }
}
