:root {
  --ink: #101613;
  --ink-soft: #19221d;
  --paper: #f4f0e8;
  --paper-dark: #e9e5dc;
  --gold: #c7a86b;
  --gold-light: #ddc38e;
  --muted: #777a74;
  --line: rgba(16, 22, 19, .14);
  --white-line: rgba(255, 255, 255, .13);
  --serif: "Manrope", sans-serif;
  --sans: "DM Sans", sans-serif;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.65; }
body.menu-open, body.contact-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 999; background: var(--gold); padding: 12px 18px; }
.skip-link:focus { top: 20px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 6.7vw, 6.7rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.6rem); }
h1 em, h2 em { color: var(--gold); font-style: normal; font-weight: 500; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: .76rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { width: 30px; height: 1px; background: currentColor; content: ""; }
.eyebrow.dark { color: #897348; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 32px; padding: 0 25px; border: 1px solid transparent; border-radius: 2px; font-weight: 600; transition: .25s ease; cursor: pointer; }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #28332d; }
.button-outline { border-color: rgba(255,255,255,.3); color: white; }
.button-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.text-link { display: inline-flex; gap: 18px; align-items: center; font-weight: 600; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.text-link.light { color: white; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid var(--white-line); color: white; }
.nav-wrap { height: 92px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 255px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: .92rem; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 34px 0; }
.main-nav > a:not(.nav-cta)::after { position: absolute; bottom: 25px; left: 0; width: 0; height: 1px; background: var(--gold); content: ""; transition: width .25s; }
.main-nav > a:hover::after, .main-nav > a.active::after { width: 100%; }
.nav-cta { padding: 11px 19px; border: 1px solid rgba(255,255,255,.35); }
.nav-cta:hover { border-color: var(--gold); color: var(--gold-light); }
.language-switcher { position: relative; margin-left: auto; margin-right: 24px; color: white; }
.language-current { display: flex; min-width: 82px; height: 40px; align-items: center; justify-content: center; gap: 9px; padding: 0 12px; border: 1px solid rgba(255,255,255,.22); background: rgba(8,12,10,.38); color: white; cursor: pointer; transition: .2s; }
.language-current:hover, .language-switcher.open .language-current { border-color: var(--gold); background: rgba(199,168,107,.12); }
.language-switcher img { width: 24px; height: 16px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.language-switcher b { font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.language-chevron { width: 7px; height: 7px; border-right: 1px solid var(--gold-light); border-bottom: 1px solid var(--gold-light); transform: translateY(-2px) rotate(45deg); transition: .2s; }
.language-switcher.open .language-chevron { transform: translateY(2px) rotate(225deg); }
.language-menu { position: absolute; top: calc(100% + 9px); right: 0; width: 178px; padding: 7px; visibility: hidden; border: 1px solid rgba(199,168,107,.35); background: #111713; box-shadow: 0 18px 45px rgba(0,0,0,.35); opacity: 0; pointer-events: none; transform: translateY(-7px); transition: .18s; }
.language-switcher.open .language-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.language-menu::before { position: absolute; top: -5px; right: 25px; width: 9px; height: 9px; border-top: 1px solid rgba(199,168,107,.35); border-left: 1px solid rgba(199,168,107,.35); background: #111713; content: ""; transform: rotate(45deg); }
.language-menu button { position: relative; display: grid; width: 100%; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; min-height: 43px; padding: 7px 9px; border: 0; background: transparent; color: #d5d9d6; text-align: left; cursor: pointer; transition: .2s; }
.language-menu button:hover { background: var(--gold); color: var(--ink); }
.language-menu button span { font-size: .78rem; }
.language-menu button b { color: #858d88; }
.language-menu button:hover b { color: var(--ink); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; width: 27px; height: 2px; margin: 6px; background: white; transition: .25s; }

.hero { position: relative; min-height: 810px; overflow: hidden; background: var(--ink); color: white; }
.hero::before { position: absolute; inset: 0; opacity: .08; content: ""; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to right, transparent, black); }
.hero-glow { position: absolute; top: 80px; right: 4%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(199,168,107,.18), transparent 68%); }
.hero-grid { position: relative; min-height: 810px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding-top: 90px; }
.hero-copy { padding: 70px 0; }
.hero-copy h1 { max-width: 820px; margin: 22px 0 25px; }
.hero-lead { max-width: 620px; color: #c7cbc8; font-size: 1.16rem; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.trust-row { display: flex; gap: 45px; margin-top: 55px; padding-top: 26px; border-top: 1px solid var(--white-line); }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-family: var(--serif); font-size: .95rem; }
.trust-row span { color: #888f8b; font-size: .79rem; }
.hero-visual { position: relative; display: grid; place-items: center; }
.stone-card { position: relative; width: min(440px, 100%); aspect-ratio: .78; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 45px; border: 1px solid rgba(199,168,107,.48); border-radius: 48% 48% 6px 6px; background: radial-gradient(circle at 50% 28%, rgba(199,168,107,.15), transparent 31%), linear-gradient(145deg, #242c27, #090d0b 74%); box-shadow: 0 35px 90px rgba(0,0,0,.48), inset 0 0 80px rgba(0,0,0,.25); }
.stone-card::after { position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.07); border-radius: inherit; content: ""; pointer-events: none; }
.stone-card::before { position: absolute; top: -30%; left: -90%; z-index: 4; width: 50%; height: 160%; background: linear-gradient(90deg, transparent, rgba(234,211,156,.12), transparent); content: ""; transform: rotate(18deg); animation: stoneShine 7s ease-in-out infinite; pointer-events: none; }
.stone-card p { position: absolute; right: 34px; bottom: 30px; left: 34px; z-index: 5; width: auto; margin: 0; padding: 18px 0 0; border-top: 1px solid rgba(199,168,107,.5); background: none; color: #cbd0cc; font-family: var(--serif); font-size: 1.35rem; line-height: 1.32; }
.stone-card strong { color: var(--gold-light); }
.stone-card small { display: block; margin-top: 10px; color: #858d88; font-family: var(--sans); font-size: .6rem; font-weight: 500; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
html[lang="de"] .stone-card p { font-size: 1.22rem; }
html[lang="de"] .stone-card small { font-size: .57rem; letter-spacing: .07em; }
.stone-orbit { position: absolute; top: 38px; left: 50%; width: 300px; aspect-ratio: 1; transform: translateX(-50%); border: 1px solid rgba(199,168,107,.14); border-radius: 50%; }
.stone-orbit::before, .stone-orbit::after { position: absolute; inset: 18px; border: 1px solid rgba(199,168,107,.09); border-radius: 50%; content: ""; }
.stone-orbit::after { inset: 55px; }
.animated-monument { position: absolute; top: 15%; left: 50%; z-index: 3; width: 190px; height: 260px; transform: translateX(-50%); animation: monumentFloat 5.5s ease-in-out infinite; filter: drop-shadow(0 27px 20px rgba(0,0,0,.4)); }
.monument-face { position: absolute; top: 0; left: 22px; width: 146px; height: 205px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(234,211,156,.75); border-radius: 72px 72px 4px 4px; background: linear-gradient(120deg, #303933 0%, #121814 48%, #252d28 100%); box-shadow: inset -18px -10px 35px rgba(0,0,0,.45), inset 10px 8px 25px rgba(255,255,255,.035); }
.monument-face::before { position: absolute; inset: 10px; border: 1px solid rgba(244,240,232,.1); border-radius: inherit; content: ""; }
.monument-face::after { position: absolute; top: -40%; left: -90%; width: 55%; height: 180%; background: linear-gradient(90deg, transparent, rgba(234,211,156,.16), transparent); content: ""; transform: rotate(20deg); animation: monumentShine 5.5s 1s ease-in-out infinite; }
.monument-face span { color: var(--gold); font-family: var(--serif); font-size: 2.35rem; font-weight: 800; letter-spacing: -.09em; text-shadow: 0 2px 20px rgba(199,168,107,.24); }
.monument-base { position: absolute; bottom: 35px; left: 6px; width: 178px; height: 24px; border: 1px solid rgba(199,168,107,.62); background: linear-gradient(180deg, #303833, #111713); transform: perspective(80px) rotateX(8deg); }
.monument-ground { position: absolute; bottom: 19px; left: -7px; width: 204px; height: 18px; background: linear-gradient(180deg, #242c27, #0c100e); box-shadow: 0 12px 24px rgba(0,0,0,.38); }
.gold-particle { position: absolute; z-index: 2; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 14px var(--gold); opacity: .45; animation: particleDrift 5s ease-in-out infinite; }
.particle-one { top: 25%; left: 18%; }
.particle-two { top: 38%; right: 17%; animation-delay: -2s; }
.particle-three { top: 15%; right: 28%; animation-delay: -3.5s; }
.floating-note { position: absolute; top: 19%; z-index: 6; max-width: 155px; padding: 9px 13px; border: 1px solid rgba(199,168,107,.28); background: rgba(10,14,12,.88); backdrop-filter: blur(10px); color: #b9bfbb; font-size: .65rem; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; white-space: nowrap; }
.note-one { left: 0; transform: translateX(-18%); }
.note-two { right: 0; transform: translateX(18%); }

@media (max-width: 1280px) {
  .note-one { left: 12px; transform: none; }
  .note-two { right: 12px; transform: none; }
}
.hero-bottom { position: absolute; right: 0; bottom: 0; left: 0; padding: 20px 4%; border-top: 1px solid var(--white-line); color: #888f8b; font-size: .75rem; letter-spacing: .12em; text-align: right; text-transform: uppercase; }

.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { color: #656963; font-size: 1.05rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid article { padding: 42px 38px 38px 0; }
.stats-grid article + article { padding-left: 38px; border-left: 1px solid var(--line); }
.stats-grid span { color: #a38b5d; font-size: .72rem; }
.stats-grid h3 { margin: 18px 0 10px; font-size: 1.25rem; }
.stats-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

.services-preview { background: var(--ink); color: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.section-head h2 { max-width: 780px; margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.service-card { position: relative; min-height: 380px; padding: 40px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); transition: background .3s, transform .3s; }
.service-card:hover { z-index: 2; background: #202a24; transform: translateY(-5px); }
.service-no { color: #717a74; font-size: .75rem; }
.service-icon { display: grid; width: 56px; height: 56px; place-items: center; margin: 45px 0 30px; border: 1px solid #8d784f; border-radius: 50%; color: var(--gold-light); font-family: var(--serif); }
.service-card h3 { max-width: 280px; font-size: 1.55rem; }
.service-card p { color: #9ca39f; font-size: .92rem; }
.service-card b { position: absolute; bottom: 34px; color: var(--gold-light); font-size: .82rem; }

.comparison-section { background: #e9e5dc; }
.comparison-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.comparison-copy h2 { margin: 18px 0 25px; }
.comparison-copy > p:not(.eyebrow) { color: #656963; }
.comparison-copy code, .gallery-empty code { padding: 2px 5px; background: rgba(16,22,19,.07); font-size: .82em; }
.comparison-controls { display: flex; align-items: center; gap: 15px; margin: 35px 0 28px; }
.round-btn { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: .2s; }
.round-btn:hover { background: var(--ink); color: white; }
.comparison-count { min-width: 70px; color: var(--muted); font-size: .8rem; text-align: center; }
.comparison-stage { min-height: 530px; }
.compare-card { position: relative; height: 530px; overflow: hidden; background: #d7d3ca; user-select: none; touch-action: pan-y; }
.compare-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare-after { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.compare-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: white; box-shadow: 0 0 12px rgba(0,0,0,.25); transform: translateX(-1px); pointer-events: none; }
.compare-handle { position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; background: rgba(16,22,19,.75); color: white; font-size: 1rem; transform: translate(-50%,-50%); }
.compare-label { position: absolute; top: 20px; z-index: 4; padding: 8px 13px; background: rgba(16,22,19,.8); color: white; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.label-before { left: 20px; }
.label-after { right: 20px; background: var(--gold); color: var(--ink); }
.gallery-empty { min-height: inherit; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; border: 1px dashed rgba(16,22,19,.25); text-align: center; }
.gallery-empty img { width: 110px; margin-bottom: 24px; }
.gallery-empty h3 { margin-bottom: 8px; font-size: 1.4rem; }
.gallery-empty p { max-width: 450px; margin: 0; color: var(--muted); }

.care-section { background: var(--paper); }
.care-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 75px; background: #d9d2c4; }
.care-card .eyebrow { color: #715927; }
.care-card .eyebrow::before { height: 2px; background: #8c6c2d; }
.care-card h2 { margin-bottom: 0; }
.care-card > div:last-child { align-self: end; }
.care-card > div:last-child p { margin-bottom: 30px; color: #5c605b; }
.cta-section { padding: 100px 0; background: var(--ink); color: white; text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-inner > img { width: 72px; margin-bottom: 25px; }
.cta-inner h2 { max-width: 800px; margin: 18px auto 24px; }
.cta-inner > p:not(.eyebrow) { max-width: 570px; color: #a6ada9; }
.cta-inner > div { display: flex; gap: 14px; margin-top: 20px; }

.page-hero { min-height: 560px; display: flex; align-items: flex-end; padding: 190px 0 90px; background: var(--ink); color: white; }
.page-hero::before { position: absolute; inset: 0; opacity: .07; content: ""; background-image: linear-gradient(30deg, #fff 1px, transparent 1px); background-size: 32px 32px; }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 1000px; margin: 20px 0 24px; }
.page-hero .container > p:last-child { max-width: 660px; color: #aab0ac; font-size: 1.08rem; }
.service-list { padding-top: 60px; }
.service-row { display: grid; grid-template-columns: 80px 1fr 150px; gap: 35px; padding: 58px 0; border-bottom: 1px solid var(--line); }
.service-row > span { color: #9b8354; font-size: .8rem; }
.service-row h2 { margin: 5px 0 18px; font-size: clamp(2rem, 3.2vw, 3.3rem); }
.service-row p { max-width: 740px; margin: 0; color: #696d67; }
.service-row > b { justify-self: end; align-self: start; padding: 7px 12px; border: 1px solid var(--line); color: #81704f; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.process { background: #e5e0d6; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid > div { padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid strong { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 70px; border-radius: 50%; background: var(--ink); color: var(--gold); }
.process-grid h3 { font-size: 1.18rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.gallery-page { min-height: 600px; }
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.gallery-toolbar p { margin: 0; }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #6b927b; box-shadow: 0 0 0 5px rgba(107,146,123,.12); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.gallery-grid .compare-card { height: 460px; }
.gallery-item-meta { display: flex; justify-content: space-between; padding: 15px 2px 0; }
.gallery-item-meta strong { font-family: var(--serif); }
.gallery-item-meta span { color: var(--muted); font-size: .8rem; }
.gallery-empty.full { grid-column: 1 / -1; min-height: 430px; }

.contact-page { padding: 180px 0 110px; background: var(--ink); color: white; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy h1 { margin: 22px 0 28px; font-size: clamp(3rem,5.4vw,5.7rem); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #a6ada9; }
.contact-items { margin: 50px 0; border-top: 1px solid var(--white-line); }
.contact-items a { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--white-line); }
.contact-items span { color: #858d88; font-size: .8rem; }
.contact-items strong { font-weight: 500; }
.contact-note { padding: 24px; border: 1px solid rgba(199,168,107,.3); background: rgba(199,168,107,.06); }
.contact-note strong { color: var(--gold-light); }
.contact-note p { margin: 6px 0 0; color: #a6ada9; font-size: .87rem; }
.form-card { padding: 48px; background: var(--paper); color: var(--ink); }
.form-head { display: flex; align-items: center; gap: 15px; margin-bottom: 26px; }
.form-head.second { margin-top: 40px; }
.form-head span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold); font-size: .7rem; }
.form-head h2 { margin: 0; font-size: 1.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-bottom: 18px; color: #444944; font-size: .78rem; font-weight: 600; }
input, select, textarea { width: 100%; margin-top: 8px; padding: 14px 15px; border: 1px solid #d5d0c6; border-radius: 0; outline: 0; background: #faf8f3; color: var(--ink); transition: .2s; }
input:focus, select:focus, textarea:focus { border-color: #9b8354; box-shadow: 0 0 0 3px rgba(199,168,107,.12); }
textarea { min-height: 130px; resize: vertical; }
.file-label small { color: #8a8e88; font-weight: 400; }
input[type="file"] { padding: 10px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.consent input { width: auto; margin-top: 4px; }
.submit-button { width: 100%; border: 0; }
.form-footnote { margin: 14px 0 0; color: #8a8e88; font-size: .72rem; text-align: center; }
.upload-status { margin: -10px 0 18px; color: #777c76; font-size: .75rem; }
.upload-status.valid { color: #52735f; }
.upload-status.error { color: #a4403b; font-weight: 600; }
.honey { position: absolute; left: -9999px; }

.site-footer { padding: 75px 0 20px; background: #0b0f0d; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 80px; padding-bottom: 55px; }
.footer-logo { width: 275px; margin-bottom: 20px; }
.footer-grid p { max-width: 370px; color: #7e8581; font-size: .9rem; }
.footer-grid h3 { margin-bottom: 20px; color: #b6bcb8; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: #939a96; font-size: .9rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--white-line); color: #5f6662; font-size: .72rem; }
.mobile-call { display: none; }

.contact-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.contact-modal.open { visibility: visible; opacity: 1; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(3,6,4,.84); backdrop-filter: blur(10px); }
.contact-modal-panel { position: relative; z-index: 1; width: min(560px, 100%); padding: 48px; overflow: hidden; border: 1px solid rgba(199,168,107,.48); background: linear-gradient(145deg, #f7f3eb, #e7dfd1); box-shadow: 0 35px 100px rgba(0,0,0,.5); transform: translateY(22px) scale(.98); transition: transform .3s ease; }
.contact-modal.open .contact-modal-panel { transform: none; }
.contact-modal-panel::before { position: absolute; top: -90px; right: -80px; width: 240px; height: 240px; border: 1px solid rgba(199,168,107,.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 35px rgba(199,168,107,.04), 0 0 0 70px rgba(199,168,107,.025); }
.contact-modal-panel > img { width: 64px; margin-bottom: 20px; filter: drop-shadow(0 8px 14px rgba(0,0,0,.2)); }
.contact-modal-panel h2 { position: relative; max-width: 440px; margin: 14px 0 10px; font-size: clamp(2rem, 5vw, 3rem); }
.contact-modal-intro { color: var(--muted); }
.contact-modal-close { position: absolute; top: 18px; right: 18px; z-index: 3; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.55rem; line-height: 1; cursor: pointer; transition: .2s; }
.contact-modal-close:hover { border-color: var(--gold); background: var(--ink); color: white; transform: rotate(8deg); }
.contact-choice-list { display: grid; gap: 10px; margin-top: 28px; }
.contact-choice { display: grid; grid-template-columns: 48px 1fr 24px; gap: 15px; align-items: center; padding: 15px; border: 1px solid rgba(16,22,19,.12); background: rgba(255,255,255,.5); transition: .22s; }
.contact-choice:hover { border-color: var(--gold); background: white; transform: translateX(4px); box-shadow: 0 10px 30px rgba(34,30,20,.08); }
.contact-choice-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold-light); font-family: var(--serif); font-weight: 800; }
.viber-choice .contact-choice-icon { background: #665cac; color: white; }
.whatsapp-choice .contact-choice-icon { background: #198b4e; color: white; }
.contact-choice > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; }
.contact-choice strong { font-family: var(--serif); font-size: .95rem; }
.contact-choice small { overflow: hidden; color: var(--muted); font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.contact-choice b { color: #8b754a; transition: transform .2s; }
.contact-choice:hover b { transform: translateX(3px); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes monumentFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotateY(-2deg); }
  50% { transform: translateX(-50%) translateY(-9px) rotateY(2deg); }
}
@keyframes monumentShine {
  0%, 22% { left: -90%; }
  55%, 100% { left: 145%; }
}
@keyframes stoneShine {
  0%, 35% { left: -90%; }
  70%, 100% { left: 145%; }
}
@keyframes particleDrift {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50% { transform: translateY(-18px); opacity: .75; }
}

@media (max-width: 980px) {
  .language-switcher { margin-left: auto; margin-right: 5px; }
  .main-nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; gap: 5px; background: var(--ink); opacity: 0; pointer-events: none; transition: .25s; }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav > a:not(.nav-cta) { padding: 12px; font-family: var(--serif); font-size: 1.8rem; }
  .main-nav > a::after { display: none; }
  .nav-cta { margin-top: 20px; }
  .nav-toggle { position: relative; z-index: 2; display: block; }
  .nav-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 90px; }
  .hero-visual { display: none; }
  .split-heading, .comparison-layout, .care-card, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-copy { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1180px); }
  .section { padding: 75px 0; }
  .nav-wrap { height: 78px; }
  .brand img { width: 205px; }
  .language-switcher { position: relative; top: auto; right: auto; z-index: 60; margin: 0 3px 0 auto; opacity: 1; pointer-events: auto; transform: none; }
  .language-current { min-width: 72px; height: 38px; padding: 0 9px; }
  .language-menu { right: 0; width: 170px; }
  .hero, .hero-grid { min-height: 720px; }
  .hero-grid { padding-top: 115px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10.5vw, 3rem); }
  .hero-copy { padding: 35px 0; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .trust-row { flex-direction: column; gap: 16px; margin-top: 40px; }
  .hero-bottom { display: none; }
  .split-heading { gap: 25px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article, .stats-grid article + article { padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .stats-grid article:last-child { border-bottom: 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { min-height: 350px; grid-column: auto; }
  .comparison-layout { gap: 42px; }
  .compare-card, .gallery-grid .compare-card { height: 400px; }
  .comparison-stage { min-height: 400px; }
  .care-card { padding: 38px 25px; }
  .cta-inner > div { width: 100%; flex-direction: column; }
  .page-hero { min-height: 510px; padding-bottom: 65px; }
  .service-row { grid-template-columns: 42px 1fr; gap: 15px; padding: 42px 0; }
  .service-row > b { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid strong { margin-bottom: 35px; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-page { padding: 125px 0 80px; }
  .form-card { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-items a { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-bottom: 64px; }
  .mobile-call { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 45; display: flex; min-height: 49px; align-items: center; justify-content: center; background: var(--gold); color: var(--ink); font-weight: 700; box-shadow: 0 10px 35px rgba(0,0,0,.25); }
  .contact-modal { padding: 14px; }
  .contact-modal-panel { padding: 34px 20px 22px; }
  .contact-modal-panel > img { width: 52px; }
  .contact-choice { grid-template-columns: 43px 1fr 18px; padding: 12px; }
  .contact-choice-icon { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
