/* ═══════════════════════════════════════════════════════════
   GERMAN GARTEN — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --forest:       #1c3a28;
  --forest-deep:  #0f2218;
  --moss:         #3a6b45;
  --sage:         #6a9e72;
  --pale-mint:    #e4f2e7;
  --parchment:    #f7f3ed;
  --sand:         #ede8df;
  --sand-mid:     #d9d2c5;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --cream:        #fafaf6;
  --text:         #1a1a15;
  --text-mid:     #424238;
  --text-muted:   #787868;
  --white:        #ffffff;
  --shadow-sm:    0 2px 16px rgba(15,34,24,.07);
  --shadow-md:    0 8px 40px rgba(15,34,24,.12);
  --shadow-lg:    0 20px 80px rgba(15,34,24,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999; isolation: isolate;
  height: 76px; padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,34,24,.97); backdrop-filter: blur(16px);
  transition: height .3s, box-shadow .3s;
  box-shadow: 0 2px 32px rgba(0,0,0,.25);
}
nav.slim { height: 62px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; transition: height .3s; image-rendering: crisp-edges; }
nav.slim .nav-logo img { height: 40px; }

/* Desktop menu */
.nav-links { display: flex; list-style: none; align-items: center; gap: 0; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 0.55rem 0.95rem;
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; transition: color .2s;
  position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: .95rem; right: .95rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .3s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Dropdown arrow indicator */
.has-dropdown > a::after { display: none; }
.has-dropdown > a { padding-right: 1.4rem; }
.has-dropdown > a::before {
  content: '▾'; position: absolute; right: .35rem; top: 50%;
  transform: translateY(-50%); font-size: .62rem; color: var(--gold);
  transition: transform .25s;
}
.has-dropdown:hover > a::before { transform: translateY(-50%) rotate(-180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 210px; background: rgba(12,27,18,.98);
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 900;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: .7rem 1.15rem;
  color: rgba(255,255,255,.78); text-decoration: none;
  font-size: .78rem; font-weight: 400; letter-spacing: .07em; text-transform: uppercase;
  border-bottom: .5px solid rgba(255,255,255,.07);
  transition: color .2s, background .2s, padding-left .2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: rgba(255,255,255,.04); padding-left: 1.5rem; }

/* CTA button in nav */
.nav-cta {
  background: var(--gold) !important; color: var(--forest-deep) !important;
  padding: .45rem 1.1rem !important; border-radius: 3px;
  font-weight: 600 !important; margin-left: .6rem; white-space: nowrap !important;
  transition: background .2s !important;
}
.nav-cta::before, .nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--forest-deep) !important; }

/* Hamburger button - hidden on desktop */
.nav-mobile-btn, #mobileBtn {
  display: none !important;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
  z-index: 9999;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.9); border-radius: 2px; transition: all .28s ease;
}
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER ── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.slides-wrap { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; transform: scale(1.06); transition: opacity 1.4s ease, transform 7s ease; }
.slide.active { opacity: 1; transform: scale(1); }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,34,24,.88) 0%, rgba(15,34,24,.6) 45%, rgba(15,34,24,.3) 100%); }
.hero-content { position: relative; z-index: 10; padding: 78px 4rem 0; max-width: 760px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; border: 1px solid rgba(201,168,76,.5); color: var(--gold); padding: .38rem 1.1rem; border-radius: 2px; font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 2rem; animation: fadeUp .8s .1s both; }
.hero-eyebrow span { width: 20px; height: 1px; background: var(--gold); display: block; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 1.6rem; animation: fadeUp .9s .25s both; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem; animation: fadeUp .9s .4s both; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .9s .55s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.slide-progress { position: absolute; bottom: 0; left: 0; right: 0; z-index: 20; display: flex; height: 3px; }
.spb { flex: 1; background: rgba(255,255,255,.15); overflow: hidden; cursor: pointer; }
.spb-fill { height: 100%; background: var(--gold); width: 0; }
.hero-stats { position: absolute; bottom: 3px; left: 0; right: 0; z-index: 19; display: flex; background: rgba(0,0,0,.45); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,.1); }
.hstat { flex: 1; padding: 1rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; display: block; }
.hstat-lbl { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; display: block; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--forest); overflow: hidden; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: .7rem; padding: 0 2.5rem; white-space: nowrap; font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); padding: 1.4rem 4rem; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; border-bottom: 1px solid var(--sand); }
.trust-item { display: flex; align-items: center; gap: .7rem; font-size: .87rem; color: var(--text-mid); font-weight: 500; }
.trust-icon { width: 32px; height: 32px; background: var(--pale-mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* ── GENERAL SECTIONS ── */
section { padding: 6rem 4rem; }
.section-center { text-align: center; }
.section-center .sec-title, .section-center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-label { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-bottom: .9rem; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 600; color: var(--text); line-height: 1.2; max-width: 640px; }
.sec-title em { font-style: italic; color: var(--moss); }
.sec-sub { margin-top: 1rem; font-size: .96rem; color: var(--text-muted); max-width: 580px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--forest-deep); padding: .9rem 2.2rem; border-radius: 3px; font-weight: 600; font-size: .92rem; text-decoration: none; letter-spacing: .04em; box-shadow: 0 4px 24px rgba(201,168,76,.35); transition: background .2s, transform .2s; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.4); color: var(--white); padding: .9rem 2.2rem; border-radius: 3px; font-weight: 400; font-size: .92rem; text-decoration: none; transition: all .2s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }
.btn-outline-g { display: inline-block; padding: .85rem 2rem; border-radius: 3px; font-weight: 500; font-size: .88rem; text-decoration: none; border: 1.5px solid var(--sage); color: var(--moss); transition: background .2s; }
.btn-outline-g:hover { background: var(--pale-mint); }
.btn-solid-g { display: inline-block; padding: .85rem 2rem; border-radius: 3px; font-weight: 600; font-size: .88rem; text-decoration: none; background: var(--moss); color: var(--white); transition: background .2s; }
.btn-solid-g:hover { background: var(--forest); }

/* ── ABOUT ── */
.about { background: var(--parchment); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; height: 500px; }
.about-img-main { position: absolute; left: 0; top: 0; width: 82%; height: 100%; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-lg); transition: transform .6s; }
.about-img-accent { position: absolute; right: 0; bottom: 2rem; width: 48%; height: 54%; object-fit: cover; border-radius: 4px; border: 4px solid var(--parchment); box-shadow: var(--shadow-md); transition: transform .6s; }
.about-img-stack:hover .about-img-main { transform: scale(1.02); }
.about-img-stack:hover .about-img-accent { transform: translateY(-6px); }
.about-badge { position: absolute; top: 2.5rem; right: -1rem; z-index: 2; background: var(--forest); color: var(--white); padding: 1.4rem 1.6rem; border-radius: 4px; text-align: center; box-shadow: var(--shadow-md); }
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.about-badge-txt { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.65); margin-top: .35rem; display: block; }
.about-points { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.apoint { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.3rem; background: var(--white); border-radius: 4px; border-left: 3px solid var(--sage); box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s; }
.apoint:hover { transform: translateX(5px); border-color: var(--gold); }
.apoint-icon { font-size: 1.3rem; flex-shrink: 0; }
.apoint-title { font-weight: 600; font-size: .93rem; color: var(--text); }
.apoint-text { font-size: .83rem; color: var(--text-muted); margin-top: .2rem; line-height: 1.55; }

/* ── SERVICES GRID ── */
.services { background: var(--cream); }
.services-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(106,158,114,.1); transition: transform .3s, box-shadow .3s; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card-img-wrap { overflow: hidden; height: 210px; position: relative; }
.svc-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.svc-card:hover .svc-card-img { transform: scale(1.07); }
.svc-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,34,24,.6) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.svc-card:hover .svc-card-overlay { opacity: 1; }
.svc-body { padding: 1.5rem; }
.svc-icon { width: 40px; height: 40px; background: var(--pale-mint); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: .9rem; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.svc-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.svc-link { font-size: .8rem; font-weight: 600; color: var(--moss); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; }
.svc-link:hover { gap: .8rem; }

/* ── PROCESS ── */
.process { background: var(--forest-deep); padding: 6rem 4rem; }
.process .sec-label { color: var(--gold); }
.process .sec-title { color: var(--white); max-width: 100%; }
.process .sec-sub { color: rgba(255,255,255,.55); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 4rem; position: relative; }
.proc-grid::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 1px; background: repeating-linear-gradient(90deg, rgba(201,168,76,.35) 0, rgba(201,168,76,.35) 6px, transparent 6px, transparent 14px); }
.pstep { text-align: center; }
.pstep-num { width: 72px; height: 72px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); margin: 0 auto 1.6rem; background: var(--forest-deep); position: relative; z-index: 1; transition: background .3s; }
.pstep:hover .pstep-num { background: var(--gold); color: var(--forest-deep); }
.pstep h3 { font-weight: 600; font-size: .98rem; color: var(--white); margin-bottom: .6rem; }
.pstep p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── PRICING ── */
.pricing { background: var(--parchment); }
.pricing-note { font-size: .8rem; color: var(--text-muted); font-style: italic; margin-top: .6rem; }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3.5rem; align-items: start; }
.pcard { background: var(--white); border-radius: 6px; padding: 2.2rem; border: 1.5px solid var(--sand-mid); position: relative; transition: box-shadow .3s, transform .3s; }
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.pcard.feat { border-color: var(--sage); box-shadow: var(--shadow-md); }
.pfeat-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--moss); color: var(--white); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .3rem 1.1rem; border-radius: 0 0 5px 5px; white-space: nowrap; }
.pname { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: .5rem; }
.pprice { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--text); line-height: 1; margin: .5rem 0 .3rem; }
.pprice span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pdesc { font-size: .84rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--sand-mid); line-height: 1.65; }
.pfeats { list-style: none; margin-bottom: 2rem; }
.pfeats li { font-size: .86rem; color: var(--text-mid); padding: .5rem 0; display: flex; align-items: center; gap: .75rem; border-bottom: 1px solid rgba(0,0,0,.03); }
.pfeats li::before { content: '✓'; width: 18px; height: 18px; background: var(--pale-mint); color: var(--moss); font-size: .72rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── TESTIMONIALS MARQUEE ── */
.tmarquee-hp { background: var(--forest); padding: 4.5rem 0; overflow: hidden; }
.tmarquee-title { text-align: center; margin-bottom: 2.5rem; padding: 0 2rem; }
.tmarquee-lbl { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.tmarquee-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--white); }
.tmarquee-h2 em { font-style: italic; color: var(--gold); }
.tmarquee-track { display: flex; gap: 1.4rem; width: max-content; animation: tmarquee 50s linear infinite; }
.tmarquee-track:hover { animation-play-state: paused; }
@keyframes tmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tcard { flex-shrink: 0; width: 300px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 1.5rem; transition: background .3s; }
.tcard:hover { background: rgba(255,255,255,.1); }
.tcard-stars { color: var(--gold); font-size: .85rem; margin-bottom: .8rem; letter-spacing: .05em; }
.tcard-text { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.1rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: .8rem; }
.tcard-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.5); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .75rem; color: var(--gold); flex-shrink: 0; }
.tcard-name { font-weight: 600; font-size: .84rem; color: var(--white); }
.tcard-loc { font-size: .73rem; color: rgba(255,255,255,.45); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--forest); padding: 6rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(201,168,76,.12), transparent); pointer-events: none; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); color: var(--white); margin-bottom: 1.1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 500px; margin: 0 auto 3rem; line-height: 1.8; position: relative; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-phone { display: flex; align-items: center; gap: .7rem; padding: .9rem 2rem; border-radius: 3px; font-weight: 500; font-size: .92rem; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); text-decoration: none; transition: all .2s; }
.btn-phone:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* ── NUMBERS STRIP ── */
.numbers { background: var(--forest); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.ncard { background: var(--forest); padding: 2.5rem 2rem; text-align: center; }
.ncard-num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.ncard-lbl { font-size: .76rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .6rem; display: block; }

/* ── EXP BOX ── */
.exp-section { background: var(--sand); padding: 5rem 4rem; }
.exp-box { background: var(--white); border-radius: 6px; padding: 3rem; border-left: 4px solid var(--gold); box-shadow: var(--shadow-sm); max-width: 880px; margin: 0 auto; display: flex; gap: 2.2rem; align-items: flex-start; }
.exp-icon-wrap { width: 60px; height: 60px; background: rgba(201,168,76,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.exp-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text); margin-bottom: .7rem; }
.exp-box p { font-size: .91rem; color: var(--text-mid); line-height: 1.8; }
.exp-box p + p { margin-top: .6rem; }

/* ── PAGE HERO ── */
.page-hero { padding: 130px 4rem 5.5rem; background: var(--forest); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 0% 100%, rgba(201,168,76,.1), transparent); pointer-events: none; }
.page-hero-label { font-size: .73rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 600; color: var(--white); line-height: 1.15; max-width: 700px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { margin-top: 1.2rem; font-size: 1rem; color: rgba(255,255,255,.7); max-width: 580px; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-size: .77rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.22); }

/* ── SERVICES PAGE (alternating layout) ── */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.svc-detail-img { overflow: hidden; border-radius: 6px; box-shadow: var(--shadow-lg); }
.svc-detail-img img { width: 100%; height: 380px; object-fit: cover; transition: transform .6s; }
.svc-detail-img:hover img { transform: scale(1.04); }
.svc-detail-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.svc-feat-list { list-style: none; margin: 1.5rem 0 2rem; }
.svc-feat-list li { font-size: .88rem; color: var(--text-mid); padding: .5rem 0; display: flex; align-items: center; gap: .7rem; border-bottom: 1px solid rgba(0,0,0,.04); }
.svc-feat-list li::before { content: '✓'; width: 18px; height: 18px; background: var(--pale-mint); color: var(--moss); font-size: .72rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-qnav { background: var(--forest); padding: 2.5rem 4rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.svc-qnav a { padding: .5rem 1.3rem; border: 1px solid rgba(255,255,255,.25); border-radius: 3px; color: rgba(255,255,255,.75); text-decoration: none; font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; transition: all .2s; white-space: nowrap; }
.svc-qnav a:hover { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }

/* ── PROJECTS ── */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.proj-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(106,158,114,.1); transition: transform .3s, box-shadow .3s; }
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-card-img { overflow: hidden; height: 200px; background: var(--forest); }
.proj-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.proj-card:hover .proj-card-img img { transform: scale(1.07); }
.proj-card-body { padding: 1.4rem; }
.proj-cat { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); background: var(--pale-mint); padding: .2rem .7rem; border-radius: 2px; display: inline-block; }
.proj-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--text); margin: .75rem 0 .3rem; }
.proj-loc { font-size: .75rem; color: var(--text-muted); margin-bottom: .7rem; }
.proj-desc { font-size: .83rem; color: var(--text-mid); line-height: 1.65; }
.proj-notice { background: rgba(201,168,76,.1); border-left: 4px solid var(--gold); padding: 1.3rem 1.8rem; border-radius: 4px; margin-bottom: 3.5rem; max-width: 800px; font-size: .9rem; color: var(--text-mid); line-height: 1.8; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-card { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.2rem; background: var(--white); border-radius: 6px; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; }
.contact-card-icon { width: 44px; height: 44px; background: var(--pale-mint); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-card-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: .3rem; }
.contact-card-val { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }
.contact-card-val a { color: var(--moss); text-decoration: none; }
.form-box { background: var(--white); border-radius: 6px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: .45rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--sand-mid);
  border-radius: 3px; font-family: 'Jost', sans-serif; font-size: .9rem;
  color: var(--text); background: var(--cream); outline: none; transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage); }
.form-textarea { resize: vertical; }
.form-submit { width: 100%; padding: 1rem; background: var(--gold); color: var(--forest-deep); border: none; border-radius: 3px; font-family: 'Jost', sans-serif; font-size: .95rem; font-weight: 600; cursor: pointer; letter-spacing: .04em; transition: background .2s; }
.form-submit:hover { background: var(--gold-light); }
.form-msg { display: none; margin-top: 1rem; padding: 1rem; border-radius: 3px; font-size: .88rem; text-align: center; }
.form-note { font-size: .74rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }
.form-note a { color: var(--moss); }

/* ── LEGAL PAGES ── */
.legal-box { background: var(--white); border-radius: 6px; padding: 3rem; box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto; }
.legal-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text); margin: 2rem 0 1rem; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text); margin: 1.5rem 0 .7rem; }
.legal-box p { font-size: .87rem; line-height: 1.85; color: var(--text-muted); margin-bottom: .8rem; }
.legal-box strong { color: var(--text-mid); }

/* ── UEBER UNS ── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value-card { background: var(--white); border-radius: 6px; padding: 2rem; border-left: 3px solid var(--sage); box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s; }
.value-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: .6rem; }
.value-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--forest-deep); color: rgba(255,255,255,.7); padding: 5rem 4rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-logo { display: block; margin-bottom: 1.4rem; }
.footer-logo img { height: 62px; width: auto; object-fit: contain; image-rendering: crisp-edges; }
.footer-desc { font-size: .87rem; line-height: 1.75; color: rgba(255,255,255,.5); margin-bottom: 1.8rem; max-width: 340px; }
.fc-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .87rem; margin-bottom: .6rem; color: rgba(255,255,255,.68); line-height: 1.5; }
.fc-item a { color: rgba(255,255,255,.68); text-decoration: none; transition: color .2s; }
.fc-item a:hover { color: var(--gold); }
.fcol-title { font-weight: 600; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--white); margin-bottom: 1.3rem; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.flinks a { font-size: .87rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s, padding-left .2s; }
.flinks a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.8rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, section, .page-hero, footer, .exp-section, .numbers { padding-left: 2.5rem; padding-right: 2.5rem; }
  .about { grid-template-columns: 1fr; gap: 3.5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid::before { display: none; }
  .pgrid { grid-template-columns: 1fr; max-width: 420px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 3rem; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { padding: 1.2rem 2rem; gap: 1.5rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  nav { padding: 0 2rem; }
  section, .page-hero, footer, .exp-section, .numbers { padding-left: 2rem; padding-right: 2rem; }
  .about { grid-template-columns: 1fr; gap: 3.5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid::before { display: none; }
  .pgrid { grid-template-columns: 1fr; max-width: 420px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 3rem; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { padding: 1.2rem 2rem; gap: 1.5rem; }
}





/* ═ */

/* ═══════════════════════════════════════════════
   MOBILE NAVIGATION  ≤ 860px
   ═══════════════════════════════════════════════ */
@media screen and (max-width: 860px) {

  #mainNav {
    padding: 0 1rem !important;
    z-index: 99999 !important;
    overflow: visible !important;
    height: 62px !important;
  }

  /* Show hamburger */
  .nav-mobile-btn,
  #mobileBtn {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 100000 !important;
    position: relative !important;
  }

  .nav-mobile-btn span,
  #mobileBtn span {
    display: block !important;
    width: 26px !important;
    height: 2.5px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: transform 0.28s ease, opacity 0.2s ease !important;
  }

  .nav-mobile-btn.open span:nth-child(1),
  #mobileBtn.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg) !important; }
  .nav-mobile-btn.open span:nth-child(2),
  #mobileBtn.open span:nth-child(2) { opacity: 0 !important; }
  .nav-mobile-btn.open span:nth-child(3),
  #mobileBtn.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg) !important; }

  /* HIDE desktop nav */
  #navLinks,
  ul.nav-links {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* OPEN state — full screen overlay */
  #navLinks.open,
  ul.nav-links.open {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    min-height: 100vh !important;
    height: auto !important;
    background-color: #0a1610 !important;
    background: #0a1610 !important;
    z-index: 99998 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 72px 0 40px !important;
    margin: 0 !important;
    list-style: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    box-sizing: border-box !important;
  }

  /* List items */
  #navLinks > li,
  ul.nav-links > li {
    display: block !important;
    width: 100% !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Links */
  #navLinks > li > a,
  ul.nav-links > li > a {
    display: block !important;
    width: 100% !important;
    padding: 18px 32px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    background: transparent !important;
    box-sizing: border-box !important;
  }

  #navLinks > li > a:hover,
  ul.nav-links > li > a:hover {
    color: #c9a84c !important;
    background: rgba(255,255,255,0.04) !important;
  }

  /* Dropdown in mobile */
  .nav-dropdown {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: rgba(0,0,0,0.4) !important;
    box-shadow: none !important;
    border: none !important;
  }
  .has-dropdown.mob-open .nav-dropdown { display: block !important; }
  .nav-dropdown a {
    padding: 14px 48px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.75) !important;
    display: block !important;
  }
  .has-dropdown.mob-open > a { color: #c9a84c !important; }

  /* CTA button */
  .nav-cta,
  #navLinks .nav-cta,
  ul.nav-links .nav-cta {
    display: block !important;
    margin: 20px 32px 0 !important;
    text-align: center !important;
    width: calc(100% - 64px) !important;
    padding: 14px 20px !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    background: #c9a84c !important;
    color: #0f2218 !important;
  }

  /* Hero fix */
  .hero { overflow: visible !important; }

  /* General layout */
  .hero-content { padding: 80px 1.5rem 0 !important; }
  .hero-stats { display: none !important; }
  section { padding: 4rem 1.5rem !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .pgrid { max-width: 100% !important; }
  .tcard { width: 260px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; }
  .value-grid { grid-template-columns: 1fr !important; }
  .proj-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .cta-banner { padding: 4rem 1.5rem !important; }
  .exp-box { flex-direction: column !important; gap: 1.5rem !important; }
}
/* ═══════════════════════════════════════════════ */
