:root{
  --bg:#f7f3eb;
  --bg-2:#fffaf3;
  --card:rgba(255,255,255,.78);
  --card-strong:rgba(255,255,255,.92);
  --text:#2c231d;
  --muted:#6f6258;
  --line:rgba(90,65,40,.12);
  --primary:#a4551d;
  --primary-2:#d57a21;
  --accent:#e7c282;
  --green:#688c55;
  --shadow:0 18px 45px rgba(87,55,27,.12);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(213,122,33,.10), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(104,140,85,.10), transparent 24%),
    linear-gradient(180deg, #faf6f0 0%, #f6efe4 100%);
  overflow-x:hidden;
}

body::after{
  content:"";
  position:fixed;
  inset:-10% -20%;
  pointer-events:none;
  opacity:.45;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.45), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(231,194,130,.18), transparent 18%),
    radial-gradient(circle at 50% 85%, rgba(104,140,85,.08), transparent 22%);
  filter:blur(18px);
  animation:ambientDrift 18s ease-in-out infinite alternate;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:
    linear-gradient(rgba(80,55,35,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,55,35,.03) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(circle at center, black 60%, transparent 100%);
}

img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--container));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(18px);
  background:rgba(250,246,240,.78);
  border-bottom:1px solid rgba(100,70,45,.08);
  transform:translateY(-16px);
  opacity:0;
  transition:transform .8s ease, opacity .8s ease, background .3s ease, box-shadow .3s ease;
}

body.is-ready .site-header{
  transform:translateY(0);
  opacity:1;
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:58px;
  height:58px;
  border-radius:18px;
  overflow:hidden;
  flex:0 0 auto;
  box-shadow:0 10px 26px rgba(164,85,29,.22);
  transition:transform .5s ease, box-shadow .5s ease;
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.brand:hover .brand-logo{
  transform:translateY(-2px) rotate(-3deg);
  box-shadow:0 16px 34px rgba(164,85,29,.22);
}

.brand:hover .brand-logo img{
  transform:scale(1.06);
}

.brand-text strong{
  display:block;
  font-size:1.06rem;
  line-height:1.1;
  letter-spacing:.01em;
}

.brand-text span{
  color:var(--muted);
  font-size:.9rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:nowrap;
  white-space:nowrap;
}

.mobile-menu-toggle,
.mobile-menu{
  display:none;
}

.mobile-menu-toggle{
  width:48px;
  height:48px;
  border:1px solid rgba(110,80,54,.12);
  border-radius:16px;
  background:rgba(255,255,255,.78);
  box-shadow:0 10px 24px rgba(87,55,27,.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.mobile-menu-toggle span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:transform .25s ease, opacity .25s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.mobile-menu-toggle.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu{
  padding-bottom:10px;
}

.mobile-menu-panel{
  background:rgba(255,250,243,.96);
  border:1px solid rgba(100,70,45,.10);
  border-radius:24px;
  box-shadow:0 18px 45px rgba(87,55,27,.10);
  backdrop-filter:blur(18px);
  padding:14px;
  display:grid;
  gap:8px;
}

.mobile-nav-link{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  color:var(--text);
  font-weight:700;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(110,80,54,.08);
}

.mobile-nav-pricelist{
  background:linear-gradient(135deg, rgba(231,194,130,.34), rgba(255,255,255,.92));
  border-color:rgba(164,85,29,.16);
  color:#5d3718;
}

.mobile-nav-cta{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  border-color:transparent;
}

.language-switcher{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(110,80,54,.12);
  box-shadow:0 10px 24px rgba(87,55,27,.08);
}

.lang-btn{
  border:0;
  background:transparent;
  color:var(--muted);
  min-width:46px;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.04em;
  cursor:pointer;
  transition:background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.lang-btn:hover{
  color:var(--text);
  transform:translateY(-1px);
}

.lang-btn.active{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 10px 22px rgba(164,85,29,.18);
}

.nav-links a{
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  transition:transform .25s ease, color .25s ease, background .25s ease;
  font-size:.92rem;
}

.nav-links a:hover{
  color:var(--text);
  background:rgba(164,85,29,.08);
  transform:translateY(-1px);
}

.nav-links .cta{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  box-shadow:0 12px 28px rgba(164,85,29,.20);
}

.nav-links .nav-pricelist{
  position:relative;
  padding:10px 16px 10px 38px;
  color:#5d3718;
  font-weight:800;
  background:linear-gradient(135deg, rgba(231,194,130,.34), rgba(255,255,255,.92));
  border:1px solid rgba(164,85,29,.16);
  box-shadow:0 14px 28px rgba(164,85,29,.10);
}

.nav-links .nav-pricelist::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  width:14px;
  height:16px;
  border-radius:3px;
  border:2px solid currentColor;
  transform:translateY(-50%);
  box-sizing:border-box;
}

.nav-links .nav-pricelist::after{
  content:"";
  position:absolute;
  left:20px;
  top:50%;
  width:6px;
  height:2px;
  background:currentColor;
  border-radius:999px;
  transform:translateY(-1px);
  box-shadow:0 -4px 0 currentColor, 0 4px 0 currentColor;
}

.nav-links .nav-pricelist:hover{
  color:#3d2513;
  background:linear-gradient(135deg, rgba(231,194,130,.52), rgba(255,255,255,.98));
  box-shadow:0 18px 34px rgba(164,85,29,.16);
}

.hero{
  padding:54px 0 30px;
  position:relative;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}

.hero-copy,.hero-visual{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(92,63,39,.08);
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.76));
  transform:translateY(30px);
  opacity:0;
  transition:transform 1s cubic-bezier(.2,.7,.2,1), opacity 1s ease, box-shadow .45s ease;
}

body.is-ready .hero-copy,
body.is-ready .hero-visual{
  transform:translateY(0);
  opacity:1;
}

.hero-copy{
  padding:42px 42px 88px;
  min-height:760px;
  display:block;
  isolation:isolate;
}

.hero-copy-inner{
  position:relative;
  transform:translate3d(0, var(--hero-copy-shift, 0px), 0);
  will-change:transform;
  padding-bottom:28px;
}

.hero-copy::before{
  content:"";
  position:absolute;
  inset:auto -90px -120px auto;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(213,122,33,.18), transparent 70%);
  z-index:-1;
}

.hero-copy-inner > *{
  opacity:0;
  transform:translateY(18px);
}

body.is-ready .hero-copy-inner > *{
  animation:fadeUp .8s ease forwards;
}

body.is-ready .hero-copy-inner > :nth-child(1){animation-delay:.18s}
body.is-ready .hero-copy-inner > :nth-child(2){animation-delay:.28s}
body.is-ready .hero-copy-inner > :nth-child(3){animation-delay:.38s}
body.is-ready .hero-copy-inner > :nth-child(4){animation-delay:.48s}
body.is-ready .hero-copy-inner > :nth-child(5){animation-delay:.58s}
body.is-ready .hero-copy-inner > :nth-child(6){animation-delay:.68s}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  max-width:100%;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(102,74,48,.10);
  color:var(--green);
  font-weight:700;
  font-size:.92rem;
  margin-bottom:18px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 8px rgba(104,140,85,.12);
}

h1,h2,h3{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.02em;
}

.hero h1{
  font-size:clamp(2.8rem, 6vw, 5.2rem);
  line-height:.95;
  max-width:650px;
  margin-bottom:14px;
}

.hero-subtitle{
  font-size:clamp(1.22rem,2vw,1.7rem);
  line-height:1.25;
  color:#45362c;
  max-width:640px;
  margin-bottom:18px;
  font-family:Georgia,"Times New Roman",serif;
}

.hero-desc{
  font-size:1.05rem;
  line-height:1.8;
  color:var(--muted);
  max-width:620px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 22px;
  border-radius:16px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  border:1px solid transparent;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn::after{
  content:"";
  position:absolute;
  inset:-120% auto -120% -30%;
  width:40%;
  transform:rotate(18deg);
  background:linear-gradient(180deg, transparent, rgba(255,255,255,.32), transparent);
  opacity:0;
  transition:transform .7s ease, opacity .35s ease;
}

.btn:hover::after{
  opacity:1;
  transform:translateX(260%) rotate(18deg);
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  box-shadow:0 14px 28px rgba(164,85,29,.22);
}

.btn-secondary{
  background:rgba(255,255,255,.7);
  border-color:rgba(110,80,54,.12);
  color:var(--text);
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:6px;
}

.stat{
  background:rgba(255,255,255,.65);
  border:1px solid rgba(110,80,54,.10);
  border-radius:18px;
  padding:18px 16px;
  min-height:110px;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.stat:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 32px rgba(87,55,27,.12);
  border-color:rgba(164,85,29,.18);
}

.stat strong{
  display:block;
  font-size:1.65rem;
  font-family:Georgia,"Times New Roman",serif;
  margin-bottom:6px;
}

.stat span{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.45;
}

.hero-visual{
  min-height:640px;
  padding:18px;
  display:grid;
  grid-template-rows:1.35fr .95fr;
  gap:16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.55)),
    linear-gradient(135deg, rgba(231,194,130,.18), rgba(104,140,85,.12));
}

.visual-card{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  background:#e8dfd2;
  border:1px solid rgba(90,62,35,.08);
  min-height:0;
  transition:transform .45s ease, box-shadow .45s ease;
}

.visual-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform 1.1s ease;
}

.visual-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 45%, rgba(35,25,18,.28) 100%);
  transition:opacity .45s ease;
}

.visual-card:hover{
  transform:translateY(-4px);
}

.visual-card:hover img{
  transform:scale(1.07);
}

.visual-card:hover::after{
  opacity:.82;
}

.floating-badge{
  position:absolute;
  left:20px;
  bottom:20px;
  z-index:2;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border:1px solid rgba(95,65,40,.08);
  border-radius:18px;
  padding:14px 16px;
  box-shadow:0 10px 26px rgba(45,30,18,.12);
  max-width:72%;
  animation:badgeDrift 7s ease-in-out infinite;
}

.floating-badge strong{
  display:block;
  font-size:1rem;
  margin-bottom:4px;
}

.floating-badge span{
  color:var(--muted);
  font-size:.92rem;
  line-height:1.45;
}

.visual-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  min-height:0;
}

.section{
  padding:34px 0;
}

.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.section-heading h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1;
  margin-bottom:8px;
}

.section-heading p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  max-width:700px;
}

.overview-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.overview-card,
.why-card,
.client-box,
.contact-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}

.overview-card{
  padding:22px 20px;
  min-height:190px;
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.overview-card::before,
.point::before,
.contact-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.36) 50%, transparent 100%);
  transform:translateX(-130%);
  transition:transform .8s ease;
  pointer-events:none;
}

.overview-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 50px rgba(87,55,27,.16);
}

.overview-card:hover::before,
.point:hover::before,
.contact-item:hover::before{
  transform:translateX(130%);
}

.overview-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(164,85,29,.12), rgba(213,122,33,.18));
  margin-bottom:16px;
  color:#111;
  transition:transform .35s ease, background .35s ease;
}

.overview-icon svg{
  width:24px;
  height:24px;
  display:block;
  fill:currentColor;
}

.overview-card h3{
  font-size:1.35rem;
  margin-bottom:10px;
}

.overview-card:hover .overview-icon{
  transform:translateY(-2px) scale(1.04);
  background:linear-gradient(135deg, rgba(164,85,29,.18), rgba(213,122,33,.24));
}

.overview-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:.98rem;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.about-text,
.image-panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .45s ease, box-shadow .45s ease;
}

.about-text{
  padding:30px;
}

.about-text h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:18px;
}

.about-text p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.85;
  font-size:1rem;
}

.about-text p:last-child{margin-bottom:0}

.image-panel{
  position:relative;
  min-height:420px;
}

.image-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.1s ease;
}

.image-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(32,22,15,.18));
  transition:opacity .45s ease;
}

.about-text:hover,
.image-panel:hover,
.client-box:hover,
.why-card:hover,
.private-label:hover,
.contact-card:hover,
.map-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 52px rgba(87,55,27,.15);
}

.image-panel:hover img{
  transform:scale(1.06);
}

.image-panel:hover::after{
  opacity:.75;
}

.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.client-box,
.why-card{
  padding:28px;
  transition:transform .4s ease, box-shadow .4s ease;
}

.client-box h2,
.why-card h2{
  font-size:clamp(1.9rem,3vw,2.6rem);
  margin-bottom:18px;
}

.list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--muted);
  line-height:1.65;
  font-size:1rem;
  opacity:0;
  transform:translateX(-18px);
}

.list .check{
  width:26px;
  height:26px;
  border-radius:50%;
  flex:0 0 26px;
  display:grid;
  place-items:center;
  font-size:.9rem;
  color:#fff;
  background:linear-gradient(135deg,var(--green),#88a96f);
  box-shadow:0 8px 16px rgba(104,140,85,.18);
  margin-top:2px;
  transition:transform .3s ease, box-shadow .3s ease;
}

.visible .list li{
  animation:slideInSoft .6s ease forwards;
}

.visible .list li:nth-child(1){animation-delay:.08s}
.visible .list li:nth-child(2){animation-delay:.16s}
.visible .list li:nth-child(3){animation-delay:.24s}

.list li:hover .check{
  transform:scale(1.08);
  box-shadow:0 12px 22px rgba(104,140,85,.22);
}

.private-label{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.70)),
    radial-gradient(circle at top right, rgba(213,122,33,.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(104,140,85,.10), transparent 30%);
}

.private-label-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
}

.private-label h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:16px;
}

.private-label p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.8;
  font-size:1rem;
  max-width:700px;
}

.private-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.point{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(100,70,45,.10);
  color:var(--text);
  font-weight:600;
  line-height:1.45;
  position:relative;
  overflow:hidden;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.point:hover{
  transform:translateY(-4px);
  border-color:rgba(164,85,29,.18);
  box-shadow:0 16px 28px rgba(87,55,27,.10);
}

.mini-gallery{
  display:grid;
  gap:14px;
}

.mini-gallery .image-panel{
  min-height:230px;
  border-radius:22px;
  box-shadow:none;
  background:#eadfce;
}

.contact-card{
  padding:30px;
  position:relative;
  overflow:hidden;
  transition:transform .45s ease, box-shadow .45s ease;
}

.contact-card::before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(213,122,33,.18), transparent 70%);
}

.contact-top{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:24px;
  align-items:start;
}

.contact-card h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:16px;
}

.contact-card p{
  color:var(--muted);
  line-height:1.8;
  margin:0 0 10px;
}

.contact-lines{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.contact-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(100,70,45,.10);
  position:relative;
  overflow:hidden;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.contact-item:hover{
  transform:translateX(4px);
  border-color:rgba(164,85,29,.18);
  box-shadow:0 16px 28px rgba(87,55,27,.10);
}

.contact-item strong{
  display:block;
  margin-bottom:4px;
  font-size:1rem;
}

.contact-item span,
.contact-item a{
  color:var(--muted);
  line-height:1.55;
  word-break:break-word;
}

.contact-badge{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:0 0 40px;
  background:linear-gradient(135deg, rgba(164,85,29,.12), rgba(213,122,33,.18));
  color:#111;
  transition:transform .35s ease, background .35s ease;
}

.contact-badge svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}

.contact-item:hover .contact-badge{
  transform:scale(1.08);
  background:linear-gradient(135deg, rgba(164,85,29,.18), rgba(213,122,33,.24));
}

.map-card{
  height:100%;
  min-height:320px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(100,70,45,.10);
  background:#efe5d7;
}

.map-consent{
  position:relative;
  z-index:2;
  height:100%;
  min-height:320px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  padding:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.8)),
    linear-gradient(135deg, rgba(231,194,130,.20), rgba(104,140,85,.08));
}

.map-consent strong{
  font-size:1.15rem;
  font-family:Georgia,"Times New Roman",serif;
}

.map-consent p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.map-consent-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.map-consent-btn{
  border:0;
}

.map-card iframe{
  width:100%;
  height:100%;
  display:block;
  transition:transform .8s ease;
}

.map-card.has-map .map-consent{
  display:none;
}

.map-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(120,85,55,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,85,55,.08) 1px, transparent 1px);
  background-size:36px 36px;
  opacity:.45;
  pointer-events:none;
}

.map-pin{
  position:absolute;
  top:50%;
  left:54%;
  transform:translate(-50%,-50%);
  width:92px;
  height:92px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.9);
  box-shadow:0 18px 40px rgba(50,30,16,.18);
  border:1px solid rgba(100,70,45,.10);
  z-index:2;
  text-align:center;
  padding:14px;
  font-weight:800;
  color:var(--primary);
}

.site-footer{
  padding:22px 0 36px;
  color:var(--muted);
  opacity:0;
  transform:translateY(18px);
  transition:opacity .8s ease .35s, transform .8s ease .35s;
}

body.is-ready .site-footer{
  opacity:1;
  transform:translateY(0);
}

.footer-inner{
  border-top:1px solid rgba(100,70,45,.10);
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:.95rem;
}

.footer-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-meta a,
.footer-settings-btn{
  color:var(--muted);
  transition:color .25s ease;
}

.footer-meta a:hover,
.footer-settings-btn:hover{
  color:var(--text);
}

.footer-settings-btn{
  border:0;
  background:transparent;
  padding:0;
  font:inherit;
  cursor:pointer;
}

.cookie-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:140;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  border-radius:24px;
  border:1px solid rgba(100,70,45,.12);
  background:rgba(255,250,243,.96);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 60px rgba(50,30,16,.16);
}

.cookie-banner[hidden]{
  display:none;
}

.cookie-banner-copy{
  max-width:720px;
}

.cookie-banner-copy strong{
  display:block;
  margin-bottom:6px;
  font-size:1.02rem;
}

.cookie-banner-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.cookie-banner-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cookie-banner-link{
  color:var(--text);
  font-weight:700;
}

.cookie-banner-decline,
.cookie-banner-accept{
  min-height:48px;
}

[data-reveal]{
  opacity:0;
  transform:translateY(30px) scale(.985);
  filter:blur(6px);
  transition:opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1), filter .9s ease;
  will-change:transform, opacity;
}

[data-reveal].visible{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

.hero-float{
  animation:float 6s ease-in-out infinite;
}

body.is-ready .hero-visual{
  animation:heroLift 1.1s ease .15s both;
}

body.is-ready .hero-visual .visual-card:first-child{
  animation:fadeUp .95s ease .45s both;
}

body.is-ready .hero-visual .visual-bottom .visual-card:first-child{
  animation:fadeUp .95s ease .6s both;
}

body.is-ready .hero-visual .visual-bottom .visual-card:last-child{
  animation:fadeUp .95s ease .72s both;
}

.map-card:hover iframe{
  transform:scale(1.025);
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@keyframes heroLift{
  from{
    opacity:0;
    transform:translateY(34px) scale(.985);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes badgeDrift{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

@keyframes slideInSoft{
  from{
    opacity:0;
    transform:translateX(-18px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes ambientDrift{
  0%{transform:translate3d(-1.5%, -1%, 0) scale(1)}
  100%{transform:translate3d(1.5%, 1%, 0) scale(1.04)}
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  [data-reveal],
  .site-header,
  .site-footer,
  .hero-copy,
  .hero-visual,
  .hero-copy-inner,
  .hero-copy-inner > *{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}

@media (max-width: 1080px){
  .hero-grid,
  .about-grid,
  .split-grid,
  .private-label-grid,
  .contact-top{
    grid-template-columns:1fr;
  }

  .overview-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-copy,.hero-visual{
    min-height:auto;
  }

  .hero-copy-inner{
    position:relative;
    top:auto;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .nav{
    min-height:74px;
    align-items:center;
    padding:14px 0;
  }

  .nav-links{
    display:none;
  }

  .nav-actions{
    margin-left:auto;
    gap:10px;
  }

  .mobile-menu-toggle{
    display:inline-flex;
  }

  .language-switcher{
    padding:5px;
  }

  .mobile-menu{
    display:none;
  }

  .mobile-menu.is-open{
    display:block;
  }

  .lang-btn{
    min-width:42px;
    height:38px;
    padding:0 12px;
  }

  .hero{
    padding:28px 0 24px;
  }

  .hero-copy{
    padding:24px 24px 42px;
    border-radius:24px;
  }

  .hero-copy-inner{
    position:relative;
    top:auto;
  }

  .hero-visual{
    padding:12px;
    border-radius:24px;
  }

  .visual-bottom{
    grid-template-columns:1fr;
  }

  .overview-grid,
  .private-points{
    grid-template-columns:1fr;
  }

  .section{
    padding:24px 0;
  }

  .about-text,
  .client-box,
  .why-card,
  .private-label,
  .contact-card{
    padding:22px;
  }

  .floating-badge{
    max-width:82%;
    left:14px;
    bottom:14px;
  }

  .map-consent{
    padding:22px;
  }

  .cookie-banner{
    left:14px;
    right:14px;
    bottom:14px;
    padding:18px;
    border-radius:20px;
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-banner-actions{
    justify-content:flex-start;
  }

  .brand-text span{
    display:none;
  }
}
