/* ==========================================================================
   BEAUTYDELUXE | HAMBURG – Stylesheet
   Mobile-first, responsive, kein Framework
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-white:       #ffffff;
  --color-offwhite:    #faf9f7;
  --color-beige:       #f5f0ea;
  --color-beige-mid:   #ede5d8;
  --color-nude:        #d4b99a;
  --color-nude-dark:   #b89476;
  --color-rose:        #e8c4c4;
  --color-rose-soft:   #f2dada;
  --color-rose-mid:    #d4a0a0;
  --color-gold:        #c9a86c;
  --color-gold-light:  #dfc18a;
  --color-text:        #2c2420;
  --color-text-mid:    #5a4a42;
  --color-text-light:  #9a8880;
  --color-border:      #e8e0d8;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 20px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(44, 36, 32, 0.06);
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.10);
  --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.12);

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Header height */
  --header-h: 96px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-eyebrow--light { color: var(--color-gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.section-title em {
  font-style: italic;
  color: var(--color-rose-mid);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-mid);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.section-header .section-subtitle { margin-bottom: 0; }

.price {
  font-weight: 500;
  color: var(--color-gold);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}
.btn--primary:hover {
  background-color: var(--color-text-mid);
  border-color: var(--color-text-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn--outline:hover {
  background-color: var(--color-text);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
}
.btn--white:hover {
  background-color: var(--color-beige);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

.btn--wa {
  background-color: #25d366;
  border-color: #25d366;
  color: var(--color-white);
  margin-top: var(--space-5);
}
.btn--wa:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
}

.btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 100px;
  width: auto;
  display: block;
}

.logo__img--footer {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-3);
}

.nav { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover { color: var(--color-text); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--cta {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  transition: all var(--transition);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. MOBILE NAV
   -------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav__list {
  padding: var(--space-5) var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover { color: var(--color-text); }

.mobile-nav__link--cta {
  color: var(--color-gold);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + var(--space-8));
  padding-bottom: var(--space-9);
  background-color: var(--color-offwhite);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(232,196,196,0.18) 0%, transparent 70%);
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(201,168,108,0.10) 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.hero__title em {
  font-style: italic;
  color: var(--color-rose-mid);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(
    145deg,
    var(--color-beige) 0%,
    var(--color-rose-soft) 50%,
    var(--color-beige-mid) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(90,74,66,0.3);
  letter-spacing: 0.1em;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
}

.hero__badge-text {
  font-size: 0.75rem;
  color: var(--color-text-mid);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--color-text);
  padding: var(--space-5) 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.trust-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   9. ABOUT
   -------------------------------------------------------------------------- */
.about {
  padding: var(--space-9) 0;
  background-color: var(--color-white);
}

.about__inner {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.about__slider:active {
  cursor: grabbing;
}

.about__slides {
  position: relative;
  aspect-ratio: 4 / 3;
}

.about__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about__slide-img.active {
  opacity: 1;
}

.about__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.about__arrow:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.about__arrow svg {
  width: 18px;
  height: 18px;
}

.about__arrow--prev { left: 12px; }
.about__arrow--next { right: 12px; }

.about__slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.about__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.about__dot--active {
  background: var(--color-white);
  transform: scale(1.3);
}

.about__accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid var(--color-beige-mid);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about__text {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.about__highlights {
  margin: var(--space-5) 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--color-text-mid);
}

.about__highlights svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   10. SERVICES
   -------------------------------------------------------------------------- */
.services {
  padding: var(--space-9) 0;
  background-color: var(--color-offwhite);
}

/* Bild-Visual */
.services__visual {
  margin-bottom: var(--space-8);
}

.services__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.services__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 36, 32, 0.55) 0%,
    rgba(44, 36, 32, 0.08) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-7) var(--space-7);
}

.services__image-claim {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Cards */
.services__grid {
  display: grid;
  gap: var(--space-5);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card--accent {
  border-color: var(--color-rose);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(242, 218, 218, 0.2) 100%);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-rose-soft) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: var(--space-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color var(--transition), gap var(--transition);
  align-self: flex-start;
}

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

.service-card:hover .service-card__link {
  color: var(--color-nude-dark);
  gap: var(--space-3);
}

/* --------------------------------------------------------------------------
   11. WHY
   -------------------------------------------------------------------------- */
.why {
  padding: var(--space-9) 0;
  background-color: var(--color-white);
}

.why__grid {
  display: grid;
  gap: var(--space-5);
}

.why-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-rose-soft) 0%, var(--color-beige) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-gold);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.why-card__text {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   12. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  padding: var(--space-10) 0;
  background: linear-gradient(
    135deg,
    var(--color-text) 0%,
    #3d2e28 60%,
    #2c2420 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232,196,196,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.cta-section__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-7);
  line-height: 1.75;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* --------------------------------------------------------------------------
   14. CONTACT
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--space-9) 0;
  background-color: var(--color-white);
}

.contact__inner {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}

.contact__intro {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  background-color: var(--color-offwhite);
  cursor: pointer;
}

.contact-item:hover {
  border-color: var(--color-nude);
  box-shadow: var(--shadow-sm);
  background-color: var(--color-beige);
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: var(--color-beige);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-item__value {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 400;
}

/* Contact form */
.contact__form-wrap {
  background-color: var(--color-offwhite);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  border: 1px solid var(--color-border);
}

.contact-form__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-nude-dark);
  box-shadow: 0 0 0 3px rgba(180, 148, 118, 0.12);
}

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

.contact-form__note {
  text-align: center;
  font-size: 0.775rem;
  color: var(--color-text-light);
  margin-top: var(--space-3);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-text);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  gap: var(--space-8);
  padding-top: var(--space-9);
  padding-bottom: var(--space-7);
}


.footer__tagline {
  margin-top: var(--space-4);
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--color-white); }

.footer__social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.footer__social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer__social-links a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(201,168,108,0.1);
}

.footer__social-links svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-5) 0;
}

.footer__bottom p {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE – TABLET (≥ 640px)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  :root {
    --container-pad: 32px;
  }

  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero__img { aspect-ratio: 4 / 3; }

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

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

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

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

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

/* --------------------------------------------------------------------------
   17. RESPONSIVE – DESKTOP (≥ 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --container-pad: 40px;
  }

  /* Header */
  .nav { display: flex; }
  .nav-toggle { display: none; }

  /* Hero */
  .hero { padding-top: calc(var(--header-h) + var(--space-9)); }
  .hero__inner { grid-template-columns: 1fr 0.75fr; gap: var(--space-10); }

  /* About */
  .about__inner { grid-template-columns: 0.85fr 1fr; gap: var(--space-10); }

  /* Services – 3 Spalten */
  .services__grid { grid-template-columns: repeat(3, 1fr); }

  /* Why – 4 per row */
  .why__grid { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr 1fr; gap: var(--space-10); }

  /* Footer */
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   18. ACCESSIBILITY & MISC
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Scroll padding for anchor links */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
