/* ============================================
   Blumen Meier — Editorial Floristik-Boutique
   ============================================ */

:root {
  /* Warm, earthy palette */
  --bg: #f7f2ea;
  --bg-soft: #f0e8db;
  --paper: #fdfaf4;
  --ink: #2d241c;
  --ink-soft: #5a4a3a;
  --ink-muted: #8a7a66;
  --accent: #c97e63;       /* terracotta */
  --accent-deep: #a85f47;
  --moss: #6b7a4f;          /* sage/moss */
  --cream: #ebe0cc;
  --rose: #e8b8a8;
  --line: #d9cfbe;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 126, 99, 0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(107, 122, 79, 0.04) 0, transparent 40%);
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__logo-mark {
  color: var(--accent);
  font-size: 22px;
  transition: transform 0.6s ease;
}
.nav__logo:hover .nav__logo-mark { transform: rotate(72deg); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}
.nav__cta {
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  color: var(--ink);
  transition: all 0.3s;
}
.nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px 120px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}
.hero__decoration--1 {
  top: 60px; left: 20%;
  width: 320px; height: 320px;
  background: var(--rose);
}
.hero__decoration--2 {
  bottom: 0; right: 5%;
  width: 280px; height: 280px;
  background: var(--cream);
}

.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
.hero__accent {
  position: relative;
  display: inline-block;
}
.hero__accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  height: 14px;
  background: var(--rose);
  opacity: 0.5;
  z-index: -1;
  transform: skewX(-6deg);
}
.hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: 100px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 36, 28, 0.18);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: var(--paper);
  border-color: var(--ink);
}

/* Hero Card */
.hero__visual { position: relative; z-index: 2; }
.hero__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  box-shadow:
    0 1px 0 rgba(45, 36, 28, 0.04),
    0 30px 60px -20px rgba(45, 36, 28, 0.18);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}
.hero__card:hover { transform: rotate(0deg); }
.hero__card::before {
  content: '✿';
  position: absolute;
  top: -18px;
  right: 24px;
  background: var(--bg);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  border: 1px solid var(--line);
}
.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.hero__card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px rgba(107, 122, 79, 0.2);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(107, 122, 79, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(107, 122, 79, 0.05); }
}
.hero__card-rows { display: flex; flex-direction: column; gap: 14px; }
.hero__card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 8px;
}
.hero__card-row span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ink);
}
.hero__card-row span:last-child {
  color: var(--ink-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.hero__card-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ===== Pillars ===== */
.pillars {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 40px;
}
.pillars__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.pillar {
  position: relative;
  padding-top: 30px;
}
.pillar__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.pillar__num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--accent);
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pillar p {
  color: rgba(253, 250, 244, 0.7);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== Section Helpers ===== */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 700px;
}

/* ===== Catalog ===== */
.catalog {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
}
.catalog__head { margin-bottom: 60px; }

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.product {
  cursor: pointer;
  transition: transform 0.4s ease;
}
.product:hover { transform: translateY(-6px); }

.product__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background-size: cover;
  background-position: center;
}

/* Each product gets a unique illustrated/gradient background */
.product__image--1 {
  background-image:
    linear-gradient(180deg, rgba(45,36,28,0) 50%, rgba(45,36,28,0.35) 100%),
    url('https://images.unsplash.com/photo-1487530811176-3780de880c2d?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
}
.product__image--1::before { content: none; }
.product__image--2 {
  background-image:
    linear-gradient(180deg, rgba(45,36,28,0) 50%, rgba(45,36,28,0.35) 100%),
    url('https://images.unsplash.com/photo-1455582916367-25f75bfc6710?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
}
.product__image--2::before { content: none; }
.product__image--3 {
  background-image:
    linear-gradient(180deg, rgba(45,36,28,0) 50%, rgba(45,36,28,0.45) 100%),
    url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
}
.product__image--3::before { content: none; }
.product__image--4 {
  background-image:
    linear-gradient(180deg, rgba(45,36,28,0) 50%, rgba(45,36,28,0.35) 100%),
    url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
}
.product__image--4::before { content: none; }
.product__image--5 {
  background-image:
    linear-gradient(180deg, rgba(45,36,28,0) 50%, rgba(45,36,28,0.35) 100%),
    url('https://images.unsplash.com/photo-1597848212624-a19eb35e2651?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
}
.product__image--5::before { content: none; }
.product__image--6 {
  background-image:
    linear-gradient(180deg, rgba(45,36,28,0) 50%, rgba(45,36,28,0.35) 100%),
    url('https://images.unsplash.com/photo-1508610048659-a06b669e3321?auto=format&fit=crop&w=1200&q=90');
  background-size: cover;
  background-position: center;
}
.product__image--6::before { content: none; }

.product__tag {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
}
.product__tag--alt {
  background: var(--ink);
  color: var(--paper);
}

.product__body { padding: 0 4px; }
.product h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
}
.product__price span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ===== Quote ===== */
.quote {
  max-width: 900px;
  margin: 40px auto 100px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
}
.quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
}
.quote__mark {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  color: var(--accent);
  opacity: 0.4;
  font-family: 'Cormorant Garamond', serif;
}
.quote cite {
  display: block;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-style: normal;
}

/* ===== Page Header ===== */
.page-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px 60px;
}
.page-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  max-width: 900px;
}
.page-header__title em {
  font-style: italic;
  color: var(--accent-deep);
}
.page-header__lead {
  max-width: 580px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== Standort: Location ===== */
.location {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: sticky;
  top: 100px;
}
.info-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.info-block__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.info-block__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
}
.info-block__value a:hover { color: var(--accent-deep); }
.info-block__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.info-block__hours div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted var(--line);
}
.info-block__hours div span:first-child { color: var(--ink-soft); }
.info-block__hours div.closed span:last-child {
  color: var(--ink-muted);
  font-style: italic;
}

.location__map {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #f5efe6;
  box-shadow: 0 30px 60px -25px rgba(45, 36, 28, 0.2);
}
.location__map svg { width: 100%; height: auto; display: block; }

/* ===== Directions ===== */
.directions {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 40px;
}
.directions__head {
  max-width: 1280px;
  margin: 0 auto 60px;
}
.directions__head .section-eyebrow { color: var(--rose); }
.directions__head .section-title { color: var(--paper); }

.directions__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.direction {
  padding: 32px 24px;
  border: 1px solid rgba(253, 250, 244, 0.12);
  border-radius: 4px;
  transition: all 0.3s;
}
.direction:hover {
  background: rgba(253, 250, 244, 0.04);
  border-color: var(--accent);
}
.direction__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 24px;
}
.direction__icon svg { width: 100%; height: 100%; }
.direction h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 12px;
}
.direction p {
  color: rgba(253, 250, 244, 0.65);
  font-size: 14px;
  line-height: 1.65;
}
.direction strong { color: var(--paper); font-weight: 500; }

/* ===== Local SEO Text ===== */
.local-seo {
  background: var(--bg-soft);
  padding: 100px 40px;
}
.local-seo__inner {
  max-width: 880px;
  margin: 0 auto;
}
.local-seo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.local-seo p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.local-seo strong { color: var(--ink); font-weight: 500; }

/* ===== Contact Page ===== */
.contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 26px;
  border-radius: 4px;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}
.contact-card__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 12px;
}
.contact-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.contact-card__value:hover { color: var(--accent-deep); }
.contact-card__hint {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}
.contact-quote {
  margin-top: 12px;
  padding: 28px;
  border-left: 2px solid var(--accent);
  background: var(--bg-soft);
}
.contact-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-quote span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Form */
.contact__form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 30px 60px -30px rgba(45, 36, 28, 0.15);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row, .form-grid { display: flex; flex-direction: column; gap: 8px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row label, .form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label > span, .form-grid label > span, .form-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 3px;
  color: var(--ink);
  transition: all 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-group input { display: none; }
.chip {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg);
}
.chip:hover { border-color: var(--ink-soft); }
.chip-group input:checked + .chip {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.form-actions {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-hint {
  font-size: 12px;
  color: var(--ink-muted);
  max-width: 320px;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 40px 120px;
}
.faq__head { margin-bottom: 50px; }
.faq__list { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 40px 30px;
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(253, 250, 244, 0.12);
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.footer__tagline { color: rgba(253, 250, 244, 0.6); font-size: 14px; line-height: 1.7; }
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(253, 250, 244, 0.7);
}
.footer a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.footer__bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(253, 250, 244, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__actions,
.hero__visual,
.page-header__title,
.page-header__lead {
  animation: fadeUp 0.9s ease-out backwards;
}
.hero__eyebrow { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.15s; }
.hero__lead { animation-delay: 0.3s; }
.hero__actions { animation-delay: 0.45s; }
.hero__visual { animation-delay: 0.55s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav__inner { padding: 18px 24px; gap: 20px; }
  .nav__links { display: none; }
  .nav__cta { padding: 9px 16px; font-size: 12px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 60px;
  }
  .pillars, .directions, .local-seo { padding: 70px 24px; }
  .pillars__grid { grid-template-columns: 1fr; gap: 40px; }

  .catalog { padding: 70px 24px; }
  .catalog__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }

  .page-header { padding: 60px 24px 40px; }

  .location {
    grid-template-columns: 1fr;
    padding: 30px 24px 70px;
    gap: 40px;
  }
  .location__info { position: static; }

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

  .contact {
    grid-template-columns: 1fr;
    padding: 30px 24px 70px;
    gap: 50px;
  }
  .contact__form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .faq { padding: 50px 24px 80px; }
  .quote { padding: 60px 24px; margin-bottom: 60px; }

  .footer { padding: 60px 24px 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .directions__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}
