:root{
  --black:#06162d;
  --black-2:#0b2447;
  --white:#ffffff;
  --soft:#f3f7fb;
  --muted:#9fb3c8;
  --line:rgba(255,255,255,.14);
  --line-dark:rgba(6,22,45,.12);
  --yellow:#ffd400;
  --yellow-2:#ffb800;
  --gold:#d7a72f;
  --radius:28px;
  --shadow:0 30px 80px rgba(6,22,45,.22);
  --ff-display:"Big Shoulders Display", sans-serif;
  --ff-body:"Inter", Arial, Helvetica, sans-serif;
  --ff-mono:"IBM Plex Mono", monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--black);
  background:var(--soft);
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,calc(100% - 32px));margin:auto}

.cursor-glow{
  position:fixed;
  width:420px;height:420px;
  background:radial-gradient(circle, rgba(255,212,0,.18), transparent 60%);
  border-radius:50%;
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:0;
  opacity:.75;
}

.site-header{
  position:fixed;
  top:16px;left:50%;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 32px));
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(5,5,5,.72);
  backdrop-filter:blur(22px);
  border-radius:999px;
  color:var(--white);
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}

.brand{display:flex;align-items:center;gap:12px}

.brand-logo{
  display:block;
  height:44px;
  width:auto;
  max-width:210px;
  object-fit:contain;
  filter: drop-shadow(0 0 18px rgba(255,212,0,.16));
}
.footer-logo-img{
  height:58px;
  max-width:260px;
}

.brand-mark{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--yellow),var(--yellow-2));
  color:#000;font-weight:950;font-size:22px;
  box-shadow:0 0 28px rgba(255,212,0,.32);
}
.brand-text{line-height:1}
.brand-text strong{display:block;font-size:18px}
.brand-text span{display:block;font-size:12px;color:#d8d8d8;margin-top:4px}

.nav-links{display:flex;gap:22px;font-size:14px}
.nav-links a{opacity:.78;transition:.25s}
.nav-links a:hover{opacity:1;color:var(--yellow)}
.header-cta{
  background:var(--white);
  color:#000;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
}
.menu-toggle{display:none}

.section-dark{background:var(--black);color:var(--white)}
.hero{
  min-height:100vh;
  position:relative;
  padding:160px 0 0;
  overflow:hidden;
  background:radial-gradient(ellipse 90% 60% at 25% 0%, #1c3652 0%, #132538 55%, #0d1c2c 100%);
}
.hero:before{
  content:"";
  position:absolute;inset:0;
  background-image:repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 64px);
  opacity:.6;
  pointer-events:none;
}
.hero-bg-shape{
  position:absolute;border-radius:50%;
  filter:blur(16px);opacity:.7;
  animation:float 8s ease-in-out infinite alternate;
}
.shape-one{width:360px;height:360px;background:rgba(255,212,0,.10);top:15%;right:8%}
.shape-two{width:280px;height:280px;background:rgba(255,255,255,.06);bottom:14%;left:7%;animation-delay:1s}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:60px;
  align-items:center;
  z-index:1;
}

.kicker{
  margin:0 0 14px;
  font-family:var(--ff-mono);
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
}

h1,h2,h3,p{margin-top:0}
h1,h2,h3{font-family:var(--ff-display);font-weight:800;text-transform:uppercase;}
h1{
  font-size:clamp(48px,7.7vw,108px);
  line-height:.88;
  letter-spacing:-.075em;
  max-width:920px;
  margin-bottom:28px;
}
h2{
  font-size:clamp(34px,4.7vw,68px);
  line-height:.95;
  letter-spacing:-.055em;
  margin-bottom:18px;
}
h3{font-size:24px;line-height:1.1;margin-bottom:12px}
.hero-lead{
  font-size:clamp(18px,2.1vw,24px);
  color:#d7d7d7;
  max-width:780px;
  line-height:1.45;
  margin-bottom:32px;
}
.hero-copy h1{font-size:clamp(56px,7vw,108px);letter-spacing:-.02em;line-height:.9;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:42px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:15px 24px;border-radius:999px;
  font-weight:900;border:1px solid transparent;transition:.25s;
  cursor:pointer;
}
.btn-primary{
  background:linear-gradient(135deg,var(--yellow),var(--yellow-2));
  color:#000;box-shadow:0 14px 35px rgba(255,212,0,.24);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 20px 50px rgba(255,212,0,.32)}
.btn-ghost{border-color:rgba(255,255,255,.18);color:var(--white);background:rgba(255,255,255,.04)}
.btn-ghost:hover{border-color:var(--yellow);color:var(--yellow);transform:translateY(-3px)}

.trust-row{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:14px;max-width:760px;
}
.trust-row div{
  padding:18px;border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  border-radius:22px;
}
.trust-row strong{display:block;font-size:26px;color:var(--yellow);font-family:var(--ff-display);letter-spacing:-.02em}
.trust-row span{display:block;font-size:13px;color:#cfcfcf}

.hero-visual{position:relative;min-height:560px}
.visual-card,.floating-card{
  position:absolute;
  background:rgba(255,255,255,.92);
  color:#000;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.35);
  backdrop-filter:blur(16px);
}
.main-card{
  width:min(420px,100%);
  top:80px;right:32px;
  padding:34px;
  transform:rotate(-3deg);
  animation:cardFloat 5.5s ease-in-out infinite;
}
.status-dot{
  display:inline-block;width:12px;height:12px;border-radius:50%;
  background:#25d366;box-shadow:0 0 0 7px rgba(37,211,102,.15);
}
.main-card p{margin:16px 0 8px;color:#656565;font-weight:700}
.main-card h2{font-size:38px;letter-spacing:-.05em}
.progress{height:11px;background:#e8e8e8;border-radius:999px;overflow:hidden;margin:24px 0 12px}
.progress span{display:block;height:100%;background:linear-gradient(90deg,var(--yellow),#0b2447);border-radius:999px}
.main-card small{color:#666}
.floating-card{padding:18px 20px;min-width:210px}
.floating-card strong{display:block}
.floating-card span{font-size:13px;color:#5e5e5e}
.card-a{left:18px;top:35px;animation:float 4.6s ease-in-out infinite alternate}
.card-b{right:0;bottom:120px;animation:float 4.2s ease-in-out infinite alternate-reverse}
.orbit-ring{
  position:absolute;inset:26px 0 auto auto;width:470px;height:470px;
  border:1px dashed rgba(255,212,0,.32);
  border-radius:50%;animation:spin 24s linear infinite;
}

.marquee{position:relative;z-index:2;margin-top:74px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);overflow:hidden}
.marquee-track{display:flex;gap:40px;white-space:nowrap;animation:marquee 28s linear infinite;padding:22px 0}
.marquee span{font-size:22px;font-weight:950;text-transform:uppercase;color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.4)}
.marquee span:nth-child(odd){color:var(--yellow);-webkit-text-stroke:0}

.section{padding:105px 0}
.section-heading{max-width:820px;margin-bottom:42px}
.section-heading.center{text-align:center;margin-left:auto;margin-right:auto}
.section-heading p{font-size:18px;color:#636363}
.section-dark .section-heading p{color:#d0d0d0}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line-dark);
  border-radius:var(--radius);
  padding:30px;
  min-height:280px;
  position:relative;
  overflow:hidden;
  transition:.35s;
}
.service-card:before{
  content:"";
  position:absolute;inset:auto -40px -80px auto;
  width:180px;height:180px;border-radius:50%;
  background:rgba(255,212,0,.15);
  transition:.35s;
}
.service-card:hover{transform:translateY(-9px);box-shadow:var(--shadow)}
.service-card:hover:before{transform:scale(1.5)}
.icon{
  width:54px;height:54px;border-radius:18px;background:#0b2447;color:var(--yellow);
  display:grid;place-items:center;font-size:24px;margin-bottom:28px;
}
.service-card p{color:#5f5f5f}
.service-card a{font-weight:900;color:#000;position:relative}

.packages{position:relative}
.package-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.price-card{
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:32px;
  padding:32px;
  position:relative;
  overflow:hidden;
}
.price-card.featured{
  background:linear-gradient(180deg,rgba(255,212,0,.18),rgba(255,255,255,.06));
  border-color:rgba(255,212,0,.55);
  transform:translateY(-18px);
}
.price-label{
  display:inline-flex;
  background:rgba(255,212,0,.15);
  color:var(--yellow);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:18px;
}
.price-card p,.price-card li{color:#d8d8d8}
.price{font-size:42px;font-weight:950;letter-spacing:-.05em;margin:24px 0}
.price-card ul{padding-left:20px;margin-bottom:28px}
.price-card li{margin:10px 0}

.price-list{
  margin-top:26px;
  background:#fff;
  color:#000;
  border-radius:32px;
  padding:30px;
}
.price-list-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.price-list-grid div{
  border:1px solid #e6e6e6;
  border-radius:20px;
  padding:18px;
  background:#fafafa;
}
.price-list-grid span{display:block;color:#666;font-size:14px}
.price-list-grid strong{font-size:18px}

.portfolio{background:#fff}
.portfolio-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
}
.project-card{
  min-height:260px;
  border-radius:32px;
  padding:30px;
  background:
    linear-gradient(135deg, rgba(255,212,0,.18), transparent 45%),
    linear-gradient(145deg,#0b2447,#12345f);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  position:relative;
}
.project-card:before{
  content:"";position:absolute;top:-80px;right:-80px;width:200px;height:200px;border-radius:50%;
  border:34px solid rgba(255,212,0,.18);
}
.project-card span{position:absolute;top:26px;left:30px;color:var(--yellow);font-weight:950}
.project-card p{color:#d5d5d5;margin:0}
.project-card.tall{grid-row:span 2;min-height:540px}
.project-card.wide{grid-column:span 2}

.process-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:60px;
}
.process-grid > div:first-child p{font-size:18px;color:#d0d0d0}
.timeline{position:relative}
.timeline:before{
  content:"";position:absolute;left:20px;top:0;bottom:0;width:2px;background:rgba(255,212,0,.28)
}
.timeline-item{
  position:relative;padding:0 0 34px 66px;
}
.timeline-item span{
  position:absolute;left:0;top:0;width:42px;height:42px;border-radius:50%;
  background:var(--yellow);color:#000;display:grid;place-items:center;font-weight:950;
}
.timeline-item p{color:#cfcfcf}

.seo-section{background:var(--soft)}
.two-col{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:50px;
}
.two-col p{font-size:18px;color:#555}

.contact{background:#fff}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:42px;
  align-items:start;
}
.contact-grid p{font-size:18px;color:#555}
.contact-cards{display:grid;gap:14px;margin-top:28px}
.contact-cards a{
  padding:18px;border:1px solid #e8e8e8;border-radius:22px;background:#fafafa;
  transition:.25s;
}
.contact-cards a:hover{transform:translateX(6px);border-color:var(--yellow)}
.contact-cards strong,.contact-cards span{display:block}
.contact-cards span{color:#606060;margin-top:4px}

.quote-form{
  background:#0b2447;color:#fff;border-radius:34px;padding:30px;box-shadow:var(--shadow);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
label{display:block;font-weight:900;margin-bottom:16px}
input,textarea,select{
  width:100%;margin-top:8px;padding:15px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);color:#fff;
  font:inherit;outline:none;
}
select option{color:#000}
input:focus,textarea:focus,select:focus{border-color:var(--yellow);box-shadow:0 0 0 4px rgba(255,212,0,.12)}
.quote-form .btn{width:100%;margin-top:6px}
.quote-form small{display:block;color:#bfbfbf;margin-top:14px}

.footer{padding:70px 0 24px}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:30px;
  border-bottom:1px solid var(--line);padding-bottom:34px;
}
.footer a,.footer span{display:block;color:#cfcfcf;margin-top:10px}
.footer p{color:#cfcfcf}
.copyright{padding-top:24px;color:#9e9e9e;font-size:14px}

[data-animate]{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .75s ease, transform .75s ease;
}
[data-animate].is-visible{opacity:1;transform:translateY(0)}

@keyframes marquee{to{transform:translateX(-50%)}}
@keyframes float{to{transform:translateY(-24px)}}
@keyframes cardFloat{50%{transform:rotate(2deg) translateY(-16px)}}
@keyframes spin{to{transform:rotate(360deg)}}

@media(max-width:980px){
  .site-header{top:10px;border-radius:24px}
  .menu-toggle{
    display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
    background:rgba(255,255,255,.08);color:#fff;border:1px solid var(--line);font-size:22px;
  }
  .header-cta{display:none}
  .nav-links{
    position:fixed;top:74px;left:0;right:0;margin:auto;width:min(100%,calc(100vw - 32px));
    display:grid;gap:0;background:#0b2447;border:1px solid var(--line);border-radius:24px;
    overflow:hidden;transform:translateY(-14px);opacity:0;pointer-events:none;transition:.25s;
  }
  body.menu-open .nav-links{transform:translateY(0);opacity:1;pointer-events:auto}
  .nav-links a{padding:18px;border-bottom:1px solid var(--line)}
  .hero-grid,.process-grid,.two-col,.contact-grid{grid-template-columns:1fr}
  .hero-visual{min-height:470px}
  .service-grid,.package-grid,.portfolio-grid,.price-list-grid{grid-template-columns:1fr 1fr}
  .price-card.featured{transform:none}
  .project-card.tall,.project-card.wide{grid-column:auto;grid-row:auto;min-height:280px}
}

@media(max-width:640px){
  .brand-logo{height:38px;max-width:180px}
  .footer-logo-img{height:48px;max-width:220px}
  .cursor-glow{display:none}
  .hero{padding-top:130px}
  .section{padding:76px 0}
  .trust-row,.service-grid,.package-grid,.portfolio-grid,.price-list-grid,.form-row,.footer-grid{grid-template-columns:1fr}
  .main-card{right:0;top:70px}
  .card-a{left:0}
  .card-b{right:0;bottom:60px}
  .orbit-ring{width:330px;height:330px}
  h1{font-size:54px}
  .hero-lead{font-size:18px}
}


.clients{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(255,212,0,.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.05), transparent 20%),
    #071a33;
}

.client-logos-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  align-items:stretch;
}

.client-logo-card{
  min-height:170px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
}

.client-logo-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,212,0,.45);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.client-logo-card img{
  max-width:100%;
  max-height:110px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}

@media(max-width:980px){
  .client-logos-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media(max-width:640px){
  .client-logos-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .client-logo-card{
  min-height:170px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
}
  .client-logo-card img{
  max-width:100%;
  max-height:110px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
}





/* Dark blue premium theme with yellow Reklamhus accent */
.site-header{
  background:rgba(3,16,38,.78);
  border-color:rgba(255,212,0,.18);
}

.hero:before{
  background:
    radial-gradient(circle at 18% 18%, rgba(255,212,0,.18), transparent 26%),
    radial-gradient(circle at 75% 45%, rgba(255,255,255,.08), transparent 25%),
    linear-gradient(135deg,#031026 0%,#0b2b55 52%,#06162d 100%);
}

.brand-mark,
.btn-primary,
.timeline-item span{
  background:linear-gradient(135deg,#ffd400,#ffb800);
}

.service-card .icon{
  background:#06162d;
  color:#ffd400;
}

.project-card{
  background:
    linear-gradient(135deg, rgba(255,212,0,.22), transparent 45%),
    linear-gradient(145deg,#06162d,#12345f);
}

.clients{
  background:
    radial-gradient(circle at top left, rgba(255,212,0,.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.05), transparent 20%),
    #071a33;
}

.quote-form{
  background:linear-gradient(145deg,#06162d,#0b2b55);
}

.footer{
  background:#031026;
}


/* Quick calculator */
.quick-calc{
  position:relative;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,212,0,.16), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.06), transparent 24%),
    linear-gradient(135deg,#031026 0%,#0b2b55 52%,#06162d 100%);
  overflow:hidden;
}

.quick-calc-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

.quick-calc h2{
  max-width:780px;
}

.quick-calc p{
  color:#d7d7d7;
  font-size:18px;
}

.calc-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:30px;
}

.calc-fields label{
  display:block;
  color:#fff;
  font-weight:900;
  margin:0;
}

.calc-fields select,
.calc-fields input{
  width:100%;
  margin-top:8px;
  padding:16px 17px;
  border-radius:17px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
  outline:none;
}

.calc-fields select option,
.calc-fields optgroup{
  color:#000;
}

.calc-fields select:focus,
.calc-fields input:focus{
  border-color:#ffd400;
  box-shadow:0 0 0 4px rgba(255,212,0,.12);
}

#calcUnitPrice{
  display:block;
  margin-top:9px;
  color:rgba(255,255,255,.62);
  font-size:13px;
  font-weight:700;
}

.calc-note{
  margin-top:20px;
  color:rgba(255,255,255,.62) !important;
  font-size:14px !important;
}

.calc-result-card{
  background:linear-gradient(135deg,#ffd400,#ffb800);
  color:#06162d;
  border-radius:36px;
  padding:42px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  box-shadow:0 32px 80px rgba(0,0,0,.28);
  position:relative;
  overflow:hidden;
}

.calc-result-card::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  right:-90px;
  top:-90px;
  background:rgba(255,255,255,.24);
}

.calc-result-card span{
  position:relative;
  z-index:1;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  font-weight:950;
  opacity:.72;
}

.calc-result-card strong{
  position:relative;
  z-index:1;
  display:block;
  font-size:clamp(48px,6vw,82px);
  line-height:.9;
  letter-spacing:-.06em;
  margin:15px 0 6px;
}

.calc-result-card small{
  position:relative;
  z-index:1;
  font-weight:900;
  opacity:.7;
  margin-bottom:28px;
}

.calc-result-card .btn{
  position:relative;
  z-index:1;
  background:#06162d;
  color:#fff;
  box-shadow:none;
}

@media(max-width:900px){
  .quick-calc-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .calc-fields{
    grid-template-columns:1fr;
  }

  .calc-result-card{
    padding:30px;
    min-height:260px;
  }
}


/* ============================================================
   HERO EXACT FIX FROM UPLOADED FILE
   ============================================================ */
:root{
  --ff-display:"Big Shoulders Display", sans-serif;
  --ff-body:"Inter", Arial, Helvetica, sans-serif;
  --ff-mono:"IBM Plex Mono", monospace;
}

body{
  font-family:var(--ff-body);
}

h1,h2,h3{
  font-family:var(--ff-display);
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:radial-gradient(ellipse 90% 60% at 25% 0%, #1c3652 0%, #132538 55%, #0d1c2c 100%) !important;
  color:var(--white);
  overflow:hidden;
  padding-top:120px;
  padding-bottom:80px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 64px) !important;
  opacity:.6;
  pointer-events:none;
}

.hero-bg-shape,
.shape-one,
.shape-two{
  display:none !important;
}

.hero-registermarks{
  position:absolute;
  top:110px;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  padding:0 6%;
  opacity:.5;
  pointer-events:none;
  z-index:1;
}

.hero-registermarks span{
  width:1px;
  height:16px;
  background:rgba(255,255,255,0.5);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}

.hero-copy{
  position:relative;
  z-index:3;
}

.hero .kicker{
  font-family:var(--ff-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#d99a00;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.hero .kicker::before{
  content:"";
  width:22px;
  height:2px;
  background:#d99a00;
}

.hero-headline{
  font-family:var(--ff-display);
  font-size:clamp(2.2rem,5.2vw,4.45rem);
  text-transform:uppercase;
  letter-spacing:-0.01em;
  line-height:1.08;
  position:relative;
  margin-bottom:28px;
  max-width:900px;
}

.hero-headline .line{
  display:block;
  position:relative;
  overflow:hidden;
}

.hero-headline .line span:first-child{
  display:block;
  clip-path:inset(0 100% 0 0);
  animation:cutReveal .9s cubic-bezier(.22,.9,.28,1) forwards;
}

.hero-headline .line:nth-child(1) span:first-child{animation-delay:.15s;}
.hero-headline .line:nth-child(2) span:first-child{animation-delay:.42s;color:var(--yellow);}
.hero-headline .line:nth-child(3) span:first-child{animation-delay:.69s;}

.blade{
  position:absolute;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg,var(--yellow),var(--yellow-2));
  box-shadow:0 0 18px 3px rgba(242,183,5,0.8);
  left:0;
  opacity:0;
  animation:bladeMove .9s cubic-bezier(.22,.9,.28,1) forwards;
}

.hero-headline .line:nth-child(1) .blade{animation-delay:.15s;}
.hero-headline .line:nth-child(2) .blade{animation-delay:.42s;}
.hero-headline .line:nth-child(3) .blade{animation-delay:.69s;}

@keyframes cutReveal{
  to{clip-path:inset(0 0% 0 0);}
}

@keyframes bladeMove{
  0%{left:0;opacity:1;}
  92%{opacity:1;}
  100%{left:100%;opacity:0;}
}

.hero-sub{
  margin-top:0;
  font-size:1.15rem;
  color:rgba(255,255,255,0.72);
  max-width:44ch;
  line-height:1.5;
  opacity:0;
  animation:fadeUp .7s cubic-bezier(.22,.9,.28,1) forwards;
  animation-delay:1.05s;
}

.hero-actions{
  margin-top:38px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp .7s cubic-bezier(.22,.9,.28,1) forwards;
  animation-delay:1.2s;
}

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

.hero-stats{
  display:flex !important;
  grid-template-columns:none !important;
  gap:34px;
  margin-top:54px;
  max-width:none;
  opacity:0;
  animation:fadeUp .7s cubic-bezier(.22,.9,.28,1) forwards;
  animation-delay:1.35s;
}

.hero-stats div{
  border-left:2px solid rgba(255,255,255,0.18);
  border-top:0;
  border-right:0;
  border-bottom:0;
  padding:0 0 0 16px;
  background:transparent;
  border-radius:0;
}

.hero-stats strong{
  display:block;
  font-family:var(--ff-display);
  font-size:2rem;
  line-height:1;
  color:var(--yellow);
}

.hero-stats span{
  font-size:.8rem;
  color:rgba(255,255,255,0.6);
}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  min-height:auto;
}

.sign-panel{
  width:100%;
  max-width:380px;
  aspect-ratio:3/4;
  background:linear-gradient(155deg,#1b3350,#0d1c2c);
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 30px 60px -25px rgba(19,37,56,0.45);
  position:relative;
  overflow:hidden;
  animation:floaty 6s ease-in-out infinite;
}

@keyframes floaty{
  0%,100%{transform:translateY(0) rotate(-1.2deg);}
  50%{transform:translateY(-14px) rotate(0.6deg);}
}

.sign-panel .tag{
  position:absolute;
  top:26px;
  left:26px;
  right:26px;
  background:var(--yellow);
  border-radius:14px;
  padding:16px 18px;
  box-shadow:0 12px 24px -10px rgba(0,0,0,0.5);
}

.sign-panel .tag strong{
  font-family:var(--ff-display);
  font-size:1.5rem;
  color:#0d1c2c;
  text-transform:uppercase;
  display:block;
}

.sign-panel .tag em{
  font-family:var(--ff-mono);
  font-style:normal;
  font-size:.85rem;
  color:#5a4300;
}

.sign-panel .rows{
  position:absolute;
  left:26px;
  right:26px;
  top:120px;
  bottom:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-around;
}

.sign-panel .row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  border-bottom:1px dashed rgba(255,255,255,0.15);
  padding-bottom:8px;
}

.sign-panel .row b{
  color:var(--white);
  font-weight:600;
  font-size:.92rem;
}

.sign-panel .row span{
  font-family:var(--ff-mono);
  color:var(--yellow);
  font-size:.85rem;
}

.sign-glow{
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(242,183,5,0.35),transparent 70%);
  top:-40px;
  right:-60px;
  filter:blur(10px);
  pointer-events:none;
}

@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero-stats{
    flex-wrap:wrap;
  }
}

@media(max-width:640px){
  .hero{
    padding-top:120px;
  }

  .hero-headline{
    font-size:clamp(2.2rem,14vw,3.35rem);
    line-height:1.1;
  }

  .hero-stats{
    flex-direction:column;
    gap:18px;
  }
}


/* ============================================================
   HERO FINETUNE – white animated cards + airier headline
   ============================================================ */
.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  min-height:560px;
}

.visual-card,
.floating-card{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.4);
}

.main-card{
  width:min(420px,100%);
  top:80px;
  right:32px;
  padding:34px;
  transform:rotate(-3deg);
  animation:cardFloat 5.5s ease-in-out infinite;
}

.main-card h2{
  font-family:var(--ff-display);
  font-size:2.15rem;
  line-height:1.02;
  letter-spacing:.015em;
  text-transform:uppercase;
}

.hero-headline{
  font-size:clamp(2.1rem,4.95vw,4.15rem);
  letter-spacing:.018em;
  line-height:1.16;
  margin-bottom:30px;
  max-width:920px;
}

.hero-headline .line{
  margin-bottom:7px;
}

.hero-headline .line:last-child{
  margin-bottom:0;
}

.hero-headline .line span:first-child{
  padding-right:.06em;
}

.hero-sub{
  line-height:1.62;
  max-width:45ch;
}

.hero-copy{
  max-width:760px;
}

@media(max-width:900px){
  .hero-visual{
    min-height:470px;
  }
}

@media(max-width:640px){
  .hero-headline{
    font-size:clamp(2rem,12vw,3.05rem);
    line-height:1.14;
    letter-spacing:.014em;
  }

  .hero-headline .line{
    margin-bottom:6px;
  }

  .main-card h2{
    font-size:1.7rem;
  }
}


/* ============================================================
   HEADER ANIMATION + TYPOGRAPHY AIR FIX
   ============================================================ */

/* Header: centered from start, but still animated */
.site-header{
  left:50%;
  right:auto;
  transform:translateX(-50%) translateY(0);
  opacity:1;
  will-change:transform, opacity;
  transition:transform .35s cubic-bezier(.22,.9,.28,1), opacity .35s cubic-bezier(.22,.9,.28,1), background .35s cubic-bezier(.22,.9,.28,1);
}

.site-header.header-animated{
  animation:headerDropIn .75s cubic-bezier(.22,.9,.28,1) both;
}

.site-header.is-hidden{
  transform:translateX(-50%) translateY(-120%);
  opacity:.98;
}

@keyframes headerDropIn{
  from{
    opacity:0;
    transform:translateX(-50%) translateY(-18px);
  }
  to{
    opacity:1;
    transform:translateX(-50%) translateY(0);
  }
}

/* The heading font across the whole website needs more breathing room */
h1,
h2,
h3,
.hero-headline,
.main-card h2,
.price-card h3,
.project-card h3,
.timeline-item h3,
.service-card h3{
  letter-spacing:.026em;
  line-height:1.14;
}

/* Hero heading: a bit more open than the rest */
.hero-headline{
  font-size:clamp(2.05rem,4.75vw,4rem);
  letter-spacing:.038em;
  line-height:1.22;
  word-spacing:.08em;
}

.hero-headline .line{
  margin-bottom:10px;
}

.hero-headline .line:last-child{
  margin-bottom:0;
}

/* Keep large section headings readable and not cramped */
h2{
  line-height:1.08;
  letter-spacing:.018em;
}

h3{
  line-height:1.16;
  letter-spacing:.022em;
}

/* Body lead text also gets a little more air */
.hero-lead,
.hero-sub,
.section-heading p,
.quick-calc p,
.contact-grid p{
  line-height:1.66;
}

/* Mobile: keep it airy without becoming too tall */
@media(max-width:640px){
  .hero-headline{
    font-size:clamp(1.9rem,10.5vw,3rem);
    line-height:1.2;
    letter-spacing:.025em;
  }

  .hero-headline .line{
    margin-bottom:8px;
  }

  h2{
    line-height:1.12;
    letter-spacing:.014em;
  }
}


/* ============================================================
   HERO HEIGHT ADJUSTMENT
   Gör första blåa sektionen högre och luftigare
   ============================================================ */
.hero{
  min-height:112vh !important;
  padding-top:150px !important;
  padding-bottom:130px !important;
}

.hero-grid{
  align-items:center;
}

.marquee{
  margin-top:0;
}

@media(max-width:900px){
  .hero{
    min-height:auto !important;
    padding-top:140px !important;
    padding-bottom:95px !important;
  }
}

@media(max-width:640px){
  .hero{
    padding-top:125px !important;
    padding-bottom:80px !important;
  }
}


/* ============================================================
   STRONG FIX – FIRST BLUE HERO SECTION TALLER
   ============================================================ */
body .hero.section-dark#top,
body section.hero.section-dark#top{
  min-height:128vh !important;
  padding-top:155px !important;
  padding-bottom:0 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

body .hero.section-dark#top > .hero-registermarks{
  flex:none !important;
}

body .hero.section-dark#top > .container.hero-grid{
  flex:1 0 auto !important;
  display:grid !important;
  align-items:center !important;
  padding-top:50px !important;
  padding-bottom:90px !important;
}

body .hero.section-dark#top .marquee{
  width:100%;
  margin-top:auto !important;
  flex:none !important;
  border-top:1px solid rgba(255,255,255,.14) !important;
  border-bottom:1px solid rgba(255,255,255,.14) !important;
  background:rgba(255,255,255,.025) !important;
}

@media(max-width:900px){
  body .hero.section-dark#top,
  body section.hero.section-dark#top{
    min-height:118vh !important;
    padding-top:135px !important;
  }

  body .hero.section-dark#top > .container.hero-grid{
    padding-bottom:70px !important;
  }
}

@media(max-width:640px){
  body .hero.section-dark#top,
  body section.hero.section-dark#top{
    min-height:auto !important;
    padding-top:125px !important;
  }

  body .hero.section-dark#top > .container.hero-grid{
    padding-bottom:55px !important;
  }
}






/* ============================================================
   CLEAN CONTACT SECTION FIX
   ============================================================ */

/* Restore contact section to clean Reklamhus dark-blue/yellow style */
#kontakt.contact,
.contact{
  background:#031026 !important;
  color:#ffffff !important;
  position:relative;
}

#kontakt.contact::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,212,0,.12), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,.055), transparent 26%);
  pointer-events:none;
}

#kontakt.contact > .container{
  position:relative;
  z-index:1;
}

.contact .kicker{
  color:var(--yellow) !important;
}



.contact-list,
.contact-info,
.contact-form,
.contact-embed-grid{
  position:relative;
  z-index:2;
}

/* Original-style contact form */
.contact-form{
  background:rgba(255,255,255,.055) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:28px !important;
  box-shadow:0 28px 70px rgba(0,0,0,.24);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  background:rgba(255,255,255,.08) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.16) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(255,255,255,.42) !important;
}

.contact-form label{
  color:#ffffff !important;
}

/* Map + social embed: dark frame, clean white content */
.contact-embed-grid{
  grid-column:1/-1;
  margin-top:54px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.map-card,
.social-gallery{
  background:rgba(255,255,255,.055) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:30px !important;
  padding:18px !important;
  box-shadow:0 28px 70px rgba(0,0,0,.24);
  overflow:hidden;
}

.embed-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  padding:8px 8px 18px;
}

.embed-head span{
  color:var(--yellow) !important;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}

.embed-head strong{
  color:#ffffff !important;
  font-family:var(--ff-display);
  font-size:28px;
  line-height:1.1;
  letter-spacing:.035em;
  text-transform:uppercase;
}

.map-card iframe{
  width:100%;
  height:430px;
  border:0;
  border-radius:22px;
  display:block;
  background:#ffffff;
}

/* Real feed containers. Frame matches site; actual feed is white and scrollable. */
.social-embed-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.social-embed-card{
  height:520px;
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  background:#ffffff !important;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 55px rgba(0,0,0,.24);
  display:flex;
  flex-direction:column;
}

.embed-browser-top{
  height:50px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 16px;
  background:#06162d !important;
  color:#ffffff !important;
  border-bottom:3px solid var(--yellow);
}

.embed-browser-top span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.58);
}

.embed-browser-top b{
  margin-left:auto;
  color:#ffffff !important;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:950;
}

.feed-frame{
  flex:1;
  min-height:0;
  position:relative;
  overflow:auto;
  background:#ffffff !important;
}

.feed-frame iframe{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  min-height:470px;
  border:0;
  display:block;
  background:#ffffff;
}

.feed-fallback{
  position:absolute;
  z-index:1;
  inset:18px;
  border-radius:18px;
  background:#ffffff;
  color:#06162d;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:26px;
  border:1px solid #e6eaf0;
}

.feed-fallback strong{
  color:#06162d !important;
  font-family:var(--ff-display);
  font-size:36px;
  line-height:1;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.feed-fallback p{
  color:#5b6572 !important;
  line-height:1.55;
  margin:14px 0 22px;
}

.feed-fallback a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--yellow),var(--yellow-2));
  color:#06162d !important;
  font-weight:950;
}

.embed-note{
  display:block;
  color:rgba(255,255,255,.58) !important;
  margin:16px 8px 0;
  line-height:1.5;
}

/* Keep loop line visible without affecting contact colors */
.marquee{
  overflow:hidden !important;
}

.marquee-track{
  display:flex !important;
  gap:44px !important;
  width:max-content !important;
  white-space:nowrap !important;
  animation:marqueeNeverEnd 46s linear infinite !important;
  will-change:transform;
  padding:24px 0 !important;
}

.marquee span{
  font-family:var(--ff-display);
  font-size:clamp(28px,3vw,44px) !important;
  font-weight:900 !important;
  text-transform:uppercase;
  letter-spacing:.055em !important;
  color:rgba(255,255,255,.90) !important;
  -webkit-text-stroke:0 !important;
  text-shadow:0 0 16px rgba(255,255,255,.16);
}

.marquee span:nth-child(odd){
  color:var(--yellow) !important;
  text-shadow:0 0 18px rgba(255,212,0,.25);
}

@keyframes marqueeNeverEnd{
  from{transform:translate3d(0,0,0);}
  to{transform:translate3d(-50%,0,0);}
}

@media(max-width:1100px){
  .social-embed-grid{
    grid-template-columns:1fr;
  }

  .social-embed-card{
    height:560px;
  }
}

@media(max-width:980px){
  .contact-embed-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .social-embed-card{
    height:500px;
    min-height:500px;
  }

  .map-card iframe{
    height:330px;
  }
}


/* ============================================================
   CONTACT TEXT COLORS – TARGETED FIX
   ============================================================ */

/* Intro text block */
#kontakt .contact-grid > div > h2{
  color:#ffffff !important;
}

#kontakt .contact-grid > div > p{
  color:rgba(255,255,255,.78) !important;
}

/* Contact cards */
#kontakt .contact-cards a{
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#ffffff !important;
}

#kontakt .contact-cards a:hover{
  border-color:rgba(255,212,0,.45) !important;
  background:rgba(255,255,255,.08) !important;
}

#kontakt .contact-cards a strong{
  color:#ffffff !important;
}

#kontakt .contact-cards a span{
  color:rgba(255,255,255,.72) !important;
}

/* Form */
#kontakt .quote-form,
#kontakt .quote-form *{
  color:#ffffff;
}

#kontakt .quote-form small{
  color:rgba(255,255,255,.62) !important;
}

#kontakt .quote-form .btn{
  color:#06162d !important;
}

/* Headings inside map/social wrapper */
#kontakt .embed-head strong{
  color:#ffffff !important;
}

#kontakt .embed-head span{
  color:var(--yellow) !important;
}

/* Keep white feed windows readable */
#kontakt .social-embed-card,
#kontakt .social-embed-card *{
  color:initial;
}

#kontakt .embed-browser-top,
#kontakt .embed-browser-top *{
  color:#ffffff !important;
}

#kontakt .feed-fallback strong{
  color:#06162d !important;
}

#kontakt .feed-fallback p{
  color:#5b6572 !important;
}

#kontakt .feed-fallback a{
  color:#06162d !important;
}

/* General contact note text */
#kontakt .embed-note{
  color:rgba(255,255,255,.58) !important;
}






/* ============================================================
   FOCUSED CENTER INTRO TEXT TO LOGO ANIMATION – FULL WIDTH
   ============================================================ */
.hero{
  overflow:hidden;
}

.hero-focus-logo{
  width:min(1380px, 96vw);
  height:290px;
  margin:18px auto 22px;
  position:relative;
  display:grid;
  place-items:center;
  z-index:4;
  isolation:isolate;
  animation:focusLogoIntro .9s cubic-bezier(.22,.9,.28,1) both;
}

.focus-glow{
  position:absolute;
  inset:26px 18px;
  border-radius:52px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,212,0,.26), transparent 58%),
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 82% 65%, rgba(255,255,255,.06), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 0 120px rgba(255,212,0,.12),
    0 28px 70px rgba(0,0,0,.20);
  backdrop-filter:blur(10px);
  z-index:1;
}

.focus-ring{
  position:absolute;
  border-radius:58px;
  pointer-events:none;
  z-index:2;
}

.ring-one{
  inset:10px 10px;
  border:1px solid rgba(255,212,0,.34);
  animation:focusRingPulse 3.8s ease-in-out infinite;
}

.ring-two{
  inset:38px 84px;
  border:1px dashed rgba(255,255,255,.20);
  animation:focusRingRotate 18s linear infinite;
}

.focus-scan{
  position:absolute;
  width:82%;
  height:2px;
  left:9%;
  top:50%;
  z-index:6;
  background:linear-gradient(90deg, transparent, rgba(255,212,0,.98), transparent);
  box-shadow:0 0 22px rgba(255,212,0,.75);
  opacity:.78;
  animation:focusScan 3s cubic-bezier(.22,.9,.28,1) infinite;
}

.hero-intro-wordmark,
.hero-logo-reveal{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}

.hero-intro-wordmark{
  z-index:7;
  animation:introTextOutro 2.2s cubic-bezier(.22,.9,.28,1) forwards;
}

.hero-intro-wordmark span{
  display:inline-block;
  font-family:var(--ff-display);
  font-size:clamp(2.8rem, 6.2vw, 6.6rem);
  line-height:1.14;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#ffffff;
  text-shadow:
    0 0 18px rgba(255,212,0,.22),
    0 16px 34px rgba(0,0,0,.26);
  padding:0 30px;
  text-align:center;
  white-space:nowrap;
}

.hero-logo-reveal{
  z-index:5;
  opacity:0;
  transform:scale(.78);
  animation:logoRevealIn 1.25s cubic-bezier(.22,.9,.28,1) forwards;
  animation-delay:1.55s;
}

.hero-logo-reveal img{
  width:min(760px, 78vw);
  max-width:760px;
  height:auto;
  display:block;
  filter:
    drop-shadow(0 0 20px rgba(255,212,0,.34))
    drop-shadow(0 24px 32px rgba(0,0,0,.28));
  animation:focusLogoFloat 4.5s ease-in-out infinite;
  animation-delay:2.2s;
}

.hero-grid{
  position:relative;
  z-index:5;
  padding-top:14px !important;
}

@keyframes focusLogoIntro{
  from{opacity:0;transform:translateY(-24px) scale(.94);}
  to{opacity:1;transform:translateY(0) scale(1);}
}

@keyframes introTextOutro{
  0%{
    opacity:0;
    transform:translateY(10px) scale(.92);
    filter:blur(8px);
  }
  16%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
  58%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
  100%{
    opacity:0;
    transform:translateY(-14px) scale(1.04);
    filter:blur(10px);
  }
}

@keyframes logoRevealIn{
  0%{
    opacity:0;
    transform:scale(.78);
    filter:blur(14px);
  }
  55%{
    opacity:1;
    transform:scale(1.04);
    filter:blur(0);
  }
  100%{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
  }
}

@keyframes focusLogoFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}

@keyframes focusRingPulse{
  0%,100%{opacity:.50;transform:scale(.985);}
  50%{opacity:1;transform:scale(1.012);}
}

@keyframes focusRingRotate{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes focusScan{
  0%{transform:translateY(-72px) scaleX(.25);opacity:0;}
  22%{opacity:.9;}
  58%{opacity:.9;}
  100%{transform:translateY(72px) scaleX(1);opacity:0;}
}

@media(max-width:1100px){
  .hero-focus-logo{
    width:min(980px, 95vw);
    height:240px;
  }

  .hero-intro-wordmark span{
    font-size:clamp(2.4rem, 6vw, 4.8rem);
    white-space:normal;
  }

  .hero-logo-reveal img{
    width:min(600px, 72vw);
  }
}

@media(max-width:640px){
  .hero-focus-logo{
    width:min(96vw, 420px);
    height:155px;
    margin:8px auto 12px;
  }

  .hero-intro-wordmark span{
    font-size:clamp(1.5rem,8.2vw,2.5rem);
    letter-spacing:.055em;
    white-space:normal;
    padding:0 18px;
  }

  .hero-logo-reveal img{
    width:min(290px, 76vw);
  }

  .focus-glow{
    inset:16px 8px;
    border-radius:30px;
  }

  .ring-one{
    inset:4px 4px;
    border-radius:34px;
  }

  .ring-two{
    inset:20px 34px;
    border-radius:28px;
  }

  .focus-scan{
    width:78%;
    left:11%;
  }
}


/* ============================================================
   CONTACT MAP + SOCIAL SAME HEIGHT
   ============================================================ */
#kontakt .contact-embed-grid{
  align-items:stretch !important;
}

#kontakt .map-card,
#kontakt .social-gallery{
  height:620px !important;
  min-height:620px !important;
  display:flex !important;
  flex-direction:column !important;
}

#kontakt .map-card .embed-head,
#kontakt .social-gallery .embed-head{
  flex:0 0 auto !important;
}

#kontakt .map-card iframe{
  flex:1 1 auto !important;
  height:auto !important;
  min-height:0 !important;
}

#kontakt .social-embed-grid{
  flex:1 1 auto !important;
  min-height:0 !important;
  height:auto !important;
}

#kontakt .social-embed-card{
  height:100% !important;
  min-height:0 !important;
}

#kontakt .feed-frame iframe{
  min-height:0 !important;
}

#kontakt .embed-note{
  display:none !important;
}

@media(max-width:1100px){
  #kontakt .social-gallery{
    height:auto !important;
    min-height:0 !important;
  }

  #kontakt .social-embed-card{
    height:520px !important;
    min-height:520px !important;
  }
}

@media(max-width:980px){
  #kontakt .map-card{
    height:520px !important;
    min-height:520px !important;
  }
}

@media(max-width:640px){
  #kontakt .map-card{
    height:390px !important;
    min-height:390px !important;
  }

  #kontakt .social-embed-card{
    height:480px !important;
    min-height:480px !important;
  }
}




/* ============================================================
   HERO ADVERTISING OBJECTS – larger, more detailed, more centered
   ============================================================ */
.hero-ad-objects{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
}

.ad-object{
  position:absolute;
  width:280px;
  height:195px;
  border:2px dashed rgba(255,255,255,.26);
  border-radius:30px;
  background:linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  backdrop-filter:blur(4px);
  box-shadow:
    inset 0 0 0 1px rgba(255,212,0,.08),
    0 18px 38px rgba(0,0,0,.12);
}

.ad-object::before{
  content:"";
  position:absolute;
  inset:12px;
  border:1px dotted rgba(255,212,0,.30);
  border-radius:22px;
}

.ad-object::after{
  content:"";
  position:absolute;
  inset:auto 18px 14px;
  height:1px;
  border-bottom:1px dashed rgba(255,255,255,.10);
}

.obj-label{
  position:absolute;
  top:16px;
  left:18px;
  font-family:var(--ff-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.obj-icon{
  position:absolute;
  inset:42px 18px 18px;
}

/* More centered placement */
.beachflag-object{
  top:170px;
  left:12%;
  animation:heroAdFloatA 8s ease-in-out infinite;
}

.flyer-object{
  top:150px;
  right:12%;
  animation:heroAdFloatB 8.8s ease-in-out infinite;
}

.decal-object{
  bottom:150px;
  left:16%;
  animation:heroAdFloatC 9s ease-in-out infinite;
}

.letters-object{
  bottom:142px;
  right:16%;
  animation:heroAdFloatD 8.2s ease-in-out infinite;
}

/* Beach flag detailed */
.beachflag-icon .pole{
  position:absolute;
  left:68px;
  bottom:14px;
  width:3px;
  height:104px;
  background:rgba(255,255,255,.72);
}

.beachflag-icon .pole-base{
  position:absolute;
  left:58px;
  bottom:6px;
  width:24px;
  height:10px;
  border:2px dotted rgba(255,212,0,.85);
  border-radius:10px;
}

.beachflag-icon .flag{
  position:absolute;
  left:71px;
  top:4px;
  width:82px;
  height:88px;
  border:2px dashed rgba(255,212,0,.86);
  border-left:none;
  border-radius:0 54px 54px 12px;
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,212,0,.08));
  transform-origin:left center;
  animation:flagWave 3.4s ease-in-out infinite;
}

.beachflag-icon .flag-line{
  position:absolute;
  left:88px;
  width:48px;
  border-top:2px dotted rgba(255,255,255,.62);
  opacity:.85;
}

.beachflag-icon .line-1{ top:24px; }
.beachflag-icon .line-2{ top:42px; width:58px; }
.beachflag-icon .line-3{ top:60px; width:40px; }

/* Flyer detailed */
.flyer-icon .sheet{
  position:absolute;
  width:88px;
  height:114px;
  border:2px dashed rgba(255,255,255,.78);
  border-radius:14px;
  background:rgba(255,255,255,.03);
}

.flyer-icon .sheet::before,
.flyer-icon .sheet::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  height:2px;
  border-top:2px dotted rgba(255,212,0,.72);
}

.flyer-icon .sheet::before{ top:26px; }
.flyer-icon .sheet::after{ top:48px; }

.flyer-icon .sheet-back{
  left:34px;
  top:14px;
  transform:rotate(-11deg);
  opacity:.38;
}

.flyer-icon .sheet-mid{
  left:60px;
  top:8px;
  transform:rotate(5deg);
  opacity:.65;
}

.flyer-icon .sheet-front{
  left:46px;
  top:0;
  transform:rotate(-2deg);
}

.flyer-icon .sheet-front span{
  display:none;
}

.flyer-icon .sheet-front::after{
  top:48px;
}

.flyer-icon .sheet-front::before{
  top:26px;
}

.flyer-icon .sheet-front{
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.flyer-icon .sheet-front:after{
  box-shadow:none;
}

.flyer-icon .sheet-front:before{
  box-shadow:none;
}

.flyer-icon .flyer-badge{
  position:absolute;
  right:38px;
  top:10px;
  width:20px;
  height:20px;
  border:2px solid rgba(255,212,0,.92);
  border-radius:50%;
  box-shadow:0 0 0 5px rgba(255,212,0,.08);
}

/* Car decal detailed */
.decal-icon .car-body{
  position:absolute;
  left:18px;
  top:56px;
  width:152px;
  height:44px;
  border:2px dashed rgba(255,255,255,.82);
  border-radius:18px 20px 16px 16px;
}

.decal-icon .car-roof{
  position:absolute;
  left:56px;
  top:30px;
  width:64px;
  height:30px;
  border:2px dashed rgba(255,255,255,.82);
  border-bottom:none;
  border-radius:20px 20px 0 0;
}

.decal-icon .window{
  position:absolute;
  top:40px;
  width:22px;
  height:14px;
  border:1px dotted rgba(255,212,0,.72);
  border-radius:6px 6px 2px 2px;
}

.decal-icon .window-left{ left:68px; }
.decal-icon .window-right{ left:98px; }

.decal-icon .door-line{
  position:absolute;
  left:95px;
  top:60px;
  width:1px;
  height:30px;
  border-left:2px dotted rgba(255,255,255,.52);
}

.decal-icon .wheel{
  position:absolute;
  bottom:14px;
  width:24px;
  height:24px;
  border:2px solid rgba(255,212,0,.88);
  border-radius:50%;
  box-shadow:inset 0 0 0 4px rgba(255,255,255,.08);
}

.decal-icon .wheel-left{ left:36px; }
.decal-icon .wheel-right{ left:126px; }

.decal-icon .stripe{
  position:absolute;
  left:36px;
  height:8px;
  width:112px;
}

.decal-icon .stripe-top{
  top:68px;
  border-top:2px dotted rgba(255,212,0,.98);
}

.decal-icon .stripe-bottom{
  top:80px;
  width:88px;
  border-top:2px dotted rgba(255,255,255,.54);
}

/* 3D letters detailed */
.letters-icon{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:14px;
}

.letters-object .letter{
  position:relative;
  display:grid;
  place-items:center;
  width:52px;
  height:68px;
  font-family:var(--ff-display);
  font-size:42px;
  line-height:1;
  color:rgba(255,255,255,.94);
  border:2px dashed rgba(255,255,255,.80);
  border-radius:14px;
  text-transform:uppercase;
  background:linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  text-shadow:4px 4px 0 rgba(255,212,0,.26);
  transform:translateY(0);
  box-shadow:inset -6px -6px 0 rgba(255,212,0,.05);
}

.letters-object .letter::before{
  content:"";
  position:absolute;
  right:-6px;
  top:8px;
  width:6px;
  height:calc(100% - 14px);
  border-right:2px dotted rgba(255,212,0,.38);
  border-radius:0 10px 10px 0;
}

.letters-object .letter::after{
  content:"";
  position:absolute;
  inset:7px;
  border:1px dotted rgba(255,212,0,.36);
  border-radius:9px;
}

.letters-object .letter-r{ animation:letterBounce 3.6s ease-in-out infinite; }
.letters-object .letter-h{ animation:letterBounce 3.6s ease-in-out infinite .22s; }
.letters-object .letter-m{ animation:letterBounce 3.6s ease-in-out infinite .44s; }

@keyframes flagWave{
  0%,100%{ transform:skewY(0deg) scaleX(1); }
  50%{ transform:skewY(-3deg) scaleX(1.06); }
}

@keyframes letterBounce{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

@keyframes heroAdFloatA{
  0%,100%{ transform:translateY(0) rotate(-2deg); }
  50%{ transform:translateY(-12px) rotate(1deg); }
}

@keyframes heroAdFloatB{
  0%,100%{ transform:translateY(0) rotate(2deg); }
  50%{ transform:translateY(-10px) rotate(-1deg); }
}

@keyframes heroAdFloatC{
  0%,100%{ transform:translateY(0) rotate(-1deg); }
  50%{ transform:translateY(10px) rotate(1deg); }
}

@keyframes heroAdFloatD{
  0%,100%{ transform:translateY(0) rotate(1.5deg); }
  50%{ transform:translateY(8px) rotate(-1deg); }
}

@media(max-width:1280px){
  .ad-object{
    width:240px;
    height:175px;
  }

  .beachflag-object{ left:8%; }
  .flyer-object{ right:8%; }
  .decal-object{ left:10%; }
  .letters-object{ right:10%; }
}

@media(max-width:1024px){
  .ad-object{
    width:190px;
    height:145px;
    border-radius:24px;
  }

  .obj-label{
    top:12px;
    left:12px;
    font-size:10px;
  }

  .obj-icon{
    inset:34px 14px 14px;
    transform:scale(.82);
    transform-origin:center;
  }

  .beachflag-object{ top:158px; left:4%; }
  .flyer-object{ top:145px; right:4%; }
  .decal-object{ bottom:126px; left:6%; }
  .letters-object{ bottom:118px; right:6%; }
}

@media(max-width:900px){
  .hero-ad-objects{
    opacity:.72;
  }
}

@media(max-width:640px){
  .hero-ad-objects{
    display:none;
  }
}
