/* ============================================================
   MW DER HANDWERKER — "Werkstatt Refined" Design System
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --color-sand: #C4A882;
  --color-sand-light: #D2B48C;
  --color-sand-lighter: #e0ceaf;
  --color-cream: #F5F0EB;
  --color-white: #FFFFFF;
  --color-charcoal: #3D3D3D;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-orange: #E8913A;
  --color-orange-hover: #d17e2d;
  --color-orange-glow: rgba(232, 145, 58, 0.15);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1200px;
  --header-height: 90px;
  --header-height-scrolled: 64px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

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

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

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

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

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

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

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

p {
  margin-bottom: 1em;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  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; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--color-cream);
  height: var(--header-height);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background: rgba(245, 240, 235, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo {
  height: 50px;
  width: auto;
  transition: height var(--transition-base);
}

.scrolled .header-logo {
  height: 36px;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-company-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.header-contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.header-contact-row a {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-contact-row a:hover {
  color: var(--color-orange);
}

.header-contact-row svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-list a:hover {
  color: var(--color-dark);
  background: rgba(0,0,0,0.03);
}

.nav-list a.active {
  color: var(--color-dark);
  font-weight: 600;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1030;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    z-index: 1020;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-list a {
    font-size: 18px;
    padding: 14px 16px;
    width: 100%;
    color: var(--color-dark);
  }

  .nav-list a::after {
    bottom: 10px;
    left: 16px;
    right: 16px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1010;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header-info {
    display: none;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  margin-top: var(--header-height);
  padding: 80px 0 60px;
  text-align: center;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px var(--color-orange-glow);
  margin-bottom: 48px;
}

.hero-cta:hover {
  background: var(--color-orange-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 145, 58, 0.3);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   INTRO BOX
   ============================================================ */
.intro-section {
  padding: 0 0 0;
  background: var(--color-sand);
}

.intro-box {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
}

.intro-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

/* Google Reviews Badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.06);
}

.google-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.google-badge-icon {
  width: 24px;
  height: 24px;
}

.google-badge-stars {
  display: flex;
  gap: 2px;
}

.google-badge-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBC04;
}

.google-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.google-badge-count {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT / "DAS BIN ICH" SECTION
   ============================================================ */
.about-section {
  background: var(--color-cream);
  padding: 80px 0;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 25% 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 8px;
}

.about-content .logo-small {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.about-list {
  margin-bottom: 24px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--color-orange);
}

.about-service-areas {
  margin-top: 8px;
  padding-left: 24px;
}

.about-service-areas li {
  padding-left: 0;
  font-weight: 500;
}

.about-service-areas li::before {
  display: none;
}

.about-statement {
  font-style: italic;
  color: var(--color-text-light);
  border-left: 3px solid var(--color-orange);
  padding-left: 20px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy-section {
  background: var(--color-white);
  padding: 80px 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-content h2 {
  margin-bottom: 8px;
}

.philosophy-content .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-orange);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.philosophy-content p {
  font-size: 16px;
  line-height: 1.8;
}

.philosophy-content strong {
  font-weight: 600;
  color: var(--color-dark);
}

.philosophy-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-dark);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.philosophy-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-hero {
  margin-top: var(--header-height);
  padding: 64px 0 48px;
  text-align: center;
  background: var(--color-sand);
  position: relative;
}

.service-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-cream));
  pointer-events: none;
}

.service-hero h1 {
  margin-bottom: 16px;
}

.service-hero-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Service Content */
.service-content {
  background: var(--color-cream);
  padding: 60px 0 80px;
}

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

.service-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-cream);
}

.service-card-header h2 {
  font-size: 1.4rem;
}

.service-card-header .logo-icon {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

.service-card-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.service-card-list li:last-child {
  border-bottom: none;
}

.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
}

.service-card-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-text-light);
}

/* Service Area */
.service-area {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-orange);
  box-shadow: var(--shadow-sm);
}

.service-area p {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
  font-size: 15px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-area-list li {
  background: var(--color-cream);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.service-cta {
  margin-top: 40px;
  text-align: center !important;
  padding: 32px 0 8px;
}

.service-cta .btn-primary {
  font-size: 17px;
  padding: 16px 40px;
}

.service-cta-hint {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--color-text-light);
}

.service-cta-hint a {
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: none;
}

.service-cta-hint a:hover {
  color: var(--color-orange);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  margin-top: var(--header-height);
  padding: 64px 0 48px;
  text-align: center;
  background: var(--color-sand-light);
}

.contact-hero h1 {
  max-width: 650px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.contact-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Contact Info Bar */
.contact-info-bar {
  background: var(--color-white);
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.contact-info-item h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.contact-info-item a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}

.contact-info-item a:hover {
  color: var(--color-orange);
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--color-sand-light);
  padding: 60px 0 80px;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--color-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px var(--color-orange-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

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

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-submit {
  background: var(--color-charcoal);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 48px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  background: var(--color-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Form Messages */
.form-message {
  grid-column: 1 / -1;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
  margin-top: var(--header-height);
  padding: 64px 0 80px;
  background: var(--color-cream);
  min-height: calc(100vh - var(--header-height) - 300px);
}

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

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

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
  list-style: none;
}

.legal-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 600;
}

.legal-content a {
  color: var(--color-orange);
  text-decoration: underline;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
}

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

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.footer-social-links svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color var(--transition-fast);
}

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

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-right a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color var(--transition-fast);
}

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

.footer-seo {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-seo p {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px var(--color-orange-glow);
}

.btn-primary:hover {
  background: var(--color-orange-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 145, 58, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-logo {
    width: 110px;
  }

  .intro-box {
    padding: 28px 24px;
  }

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

  .about-image-wrapper img {
    height: 320px;
  }

  .about-image-wrapper::after {
    display: none;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .philosophy-image {
    order: -1;
  }

  .philosophy-image img {
    height: 300px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .service-card {
    padding: 28px 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-cta {
    font-size: 14px;
    padding: 12px 24px;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PAGE-TOP SPACER (for pages without hero)
   ============================================================ */
.page-spacer {
  height: var(--header-height);
}

/* Print Styles */
@media print {
  .site-header,
  .nav-toggle,
  .mobile-overlay {
    display: none !important;
  }

  .hero, .service-hero, .contact-hero, .legal-page {
    margin-top: 0;
  }

  body {
    background: white;
    color: black;
  }
}
