/* ============================================
   URIM H. — Website Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --olive:       #9AA63A;
  --olive-dark:  #7A8630;
  --olive-light: #B4BE67;
  --cream:       #F4EEDF;
  --cream-dark:  #EAE1CE;
  --white:       #FFFFFF;
  --charcoal:    #4C4C42;
  --charcoal-light: #6B6B60;
  --text:        #3A3A32;

  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Manrope', sans-serif;

  --container: 1100px;
  --section-py: 80px;
  --radius: 3px;
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(244, 238, 223, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal-light);
  text-transform: none;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--olive);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--olive); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* Call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--olive);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-call::after { display: none !important; }
.btn-call:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-call svg { flex-shrink: 0; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--cream-dark);
  color: var(--olive);
}
.mobile-nav .btn-call-mobile {
  display: block;
  margin: 16px 24px 4px;
  text-align: center;
  background: var(--olive);
  color: var(--white);
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: none;
  border: none;
}
.mobile-nav .btn-call-mobile:hover { background: var(--olive-dark); }

/* ============================================
   PAGE OFFSET (fixed header)
   ============================================ */
.page-top { padding-top: 68px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
}
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(154,166,58,0.3); }
.btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-outline:hover { background: var(--olive); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--olive);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--olive);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  padding-left: 2px;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-divider {
  width: 50px; height: 2px;
  background: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--white); }
.section-olive { background: var(--olive); color: var(--white); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.section-olive .section-label { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-olive .section-title { color: var(--white); }

.section-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 580px;
  line-height: 1.8;
}
.section-olive .section-intro { color: rgba(255,255,255,0.8); }

.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-intro { margin: 0 auto; }

/* ============================================
   INTRO / ABOUT TEASER
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-visual {
  background: var(--olive);
  border-radius: 2px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.intro-visual-inner {
  text-align: center;
  color: var(--white);
}
.intro-logo-big {
  width: 90px;
  opacity: 0.9;
  margin: 0 auto 16px;
}
.intro-visual-name {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
}
.intro-visual-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.intro-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.intro-visual--portrait {
  background: var(--olive);
  padding: 0;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1 / 1;
}
.intro-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.intro-visual-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  text-align: center;
  color: var(--white);
}
.intro-visual--portrait::before { display: none; }
.intro-text p {
  color: var(--charcoal-light);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.intro-text p:last-of-type { margin-bottom: 32px; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--olive);
  transition: width var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }
.section-alt .service-card { background: var(--cream); }

.service-icon {
  width: 42px; height: 42px;
  background: rgba(154,166,58,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--olive);
}
.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================
   TRUST / WHY US
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.trust-item {
  text-align: center;
  padding: 28px 20px;
}
.trust-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.trust-item h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px;
  background: var(--cream-dark);
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ============================================
   CONTACT BLOCK
   ============================================ */
.contact-strip {
  background: var(--charcoal);
  padding: 60px 0;
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-strip-text .section-title { color: var(--white); margin-bottom: 8px; }
.contact-strip-text p { color: rgba(255,255,255,0.65); font-weight: 300; }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
}
.contact-info-item svg { color: var(--olive-light); flex-shrink: 0; }
.contact-info-item a { color: var(--white); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--olive-light); }

/* Contact Page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-card h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(154,166,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 4px;
}
.contact-detail-body a, .contact-detail-body span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}
.contact-detail-body a:hover { color: var(--olive); }

.contact-info-box {
  background: var(--olive);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-box h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.contact-info-box p {
  font-size: 0.93rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}
.cta-big {
  display: block;
  background: var(--white);
  color: var(--olive);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.cta-big:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta-email {
  display: block;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.cta-email:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--charcoal);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(154,166,58,0.08);
  transform: translate(40%, -40%);
}
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero .section-title { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.65); font-weight: 300; max-width: 520px; }

/* ============================================
   LEISTUNGEN PAGE
   ============================================ */
.leistung-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}
.leistung-block:last-child { border-bottom: none; }
.leistung-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--olive-light);
  line-height: 1;
  padding-top: 4px;
}
.leistung-content h3 {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.leistung-content p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.85;
  max-width: 620px;
}

/* ============================================
   ÜBER UNS PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--olive);
  padding: 24px 22px;
  border-radius: var(--radius);
}
.value-card h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--olive);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}
.footer-col h5 {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--olive-light); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { color: var(--olive-light); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--olive-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--olive-light); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 760px;
  padding: 64px 0 80px;
}
.legal-content h2 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--olive); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 72px 0 60px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { text-align: center; }

  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-visual { aspect-ratio: 16/7; }
  .intro-visual--portrait { aspect-ratio: 1 / 1; max-width: 420px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }

  .contact-strip-inner { flex-direction: column; text-align: center; }
  .contact-info-list { align-items: center; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { padding: 20px 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}


/* ============================================
   2026 UPDATE — BRAND / NAV / PAGE TRANSITIONS
   ============================================ */

.logo {
  gap: 12px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.intro-logo-big {
  width: 110px;
  opacity: 0.96;
  margin: 0 auto 16px;
}

.service-icon svg,
.trust-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(244, 238, 223, 0.96);
  backdrop-filter: blur(2px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.38s ease, visibility 0.38s ease;
  z-index: 2400;
  pointer-events: none;
}

body.is-loaded::after {
  opacity: 0;
  visibility: hidden;
}

body.is-leaving::after {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 58, 50, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 998;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

body.mobile-nav-open {
  overflow: hidden;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--cream-dark);
  background: rgba(255, 255, 255, 0.45);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  background: var(--white);
  border-color: rgba(154, 166, 58, 0.24);
}

.nav-toggle.open {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .header-inner {
    height: 74px;
  }

  .page-top {
    padding-top: 74px;
  }

  .logo-text {
    font-size: 1.16rem;
    letter-spacing: 0.1em;
  }

  .logo-text span {
    font-size: 0.58rem;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    display: block;
    top: 86px;
    left: 14px;
    right: 14px;
    padding: 12px 0;
    border: 1px solid rgba(234, 225, 206, 0.95);
    border-radius: 20px;
    background: rgba(244, 238, 223, 0.985);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-nav a {
    border-bottom: 1px solid rgba(234, 225, 206, 0.9);
    opacity: 0;
    transform: translateY(10px);
    transition: background var(--transition), color var(--transition), opacity 0.24s ease, transform 0.24s ease;
  }

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

  .mobile-nav.open a:nth-child(1) { transition-delay: 0.03s; }
  .mobile-nav.open a:nth-child(2) { transition-delay: 0.06s; }
  .mobile-nav.open a:nth-child(3) { transition-delay: 0.09s; }
  .mobile-nav.open a:nth-child(4) { transition-delay: 0.12s; }
  .mobile-nav.open a:nth-child(5) { transition-delay: 0.15s; }

  .mobile-nav .btn-call-mobile {
    margin: 14px 16px 4px;
    border-radius: 14px;
  }

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

@media (max-width: 480px) {
  .mobile-nav {
    left: 10px;
    right: 10px;
    top: 82px;
  }

  .mobile-nav a {
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  .logo {
    gap: 10px;
  }

  .logo-text {
    font-size: 1.02rem;
  }

  .logo-text span {
    font-size: 0.54rem;
  }
}
