/* Bebach.bo premium multi-page website
   Zamijeni placeholder kontakt podatke u HTML datotekama kada klijent pošalje broj, email i linkove. */

:root{
  --bg:#fbf7f2;
  --surface:#fffdf9;
  --surface-2:#f4ece5;
  --ink:#332722;
  --muted:#74655e;
  --line:rgba(75,58,51,.14);
  --blush:#e8b9aa;
  --blush-2:#f4d9cf;
  --sage:#aeb9a6;
  --taupe:#cdbdad;
  --gold:#c79e69;
  --shadow:0 24px 70px rgba(85,64,54,.12);
  --shadow-soft:0 12px 38px rgba(85,64,54,.10);
  --radius:28px;
  --radius-lg:40px;
  --container:min(1180px, calc(100% - 40px));
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(232,185,170,.32), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(174,185,166,.22), transparent 30rem),
    linear-gradient(180deg,#fffaf6 0%,var(--bg) 44%,#fffaf6 100%);
  overflow-x:hidden;
}
body.nav-open{overflow:hidden}
img,svg{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
::selection{background:var(--blush-2);color:var(--ink)}

.container{width:var(--container);margin-inline:auto}
.eyebrow{
  display:inline-flex;
  gap:.55rem;
  align-items:center;
  color:#8b6d5c;
  font-size:.76rem;
  letter-spacing:.16em;
  font-weight:800;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:32px;
  height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
h1,h2,h3{
  margin:0;
  font-family:"Playfair Display", Georgia, serif;
  line-height:1.02;
  letter-spacing:-.035em;
  color:#2c211d;
}
h1{font-size:clamp(3rem,8vw,6.7rem)}
h2{font-size:clamp(2.25rem,5.5vw,4.4rem)}
h3{font-size:clamp(1.3rem,2.2vw,2rem)}
p{
  margin:0;
  line-height:1.85;
  color:var(--muted);
}
.lead{
  font-size:clamp(1.05rem,1.7vw,1.25rem);
  line-height:1.9;
}
.section{
  padding:110px 0;
  position:relative;
}
.section-tight{padding:76px 0}
.section-head{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.7fr);
  gap:40px;
  align-items:end;
  margin-bottom:42px;
}
.section-head h2{margin-top:15px}
.section-head p{max-width:590px}
.center{text-align:center}
.center .eyebrow{justify-content:center}
.center .eyebrow::after{
  content:"";
  width:32px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.center .eyebrow::before{display:block}
.center p{margin-inline:auto;max-width:720px}

.site-header{
  position:fixed;
  inset:18px 0 auto;
  z-index:100;
  transition:transform .35s ease, background .35s ease;
  pointer-events:none;
}
.nav-shell{
  width:var(--container);
  margin-inline:auto;
  min-height:76px;
  padding:12px 14px 12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:rgba(255,253,249,.78);
  border:1px solid rgba(255,255,255,.66);
  border-radius:999px;
  box-shadow:0 18px 60px rgba(85,64,54,.09);
  backdrop-filter:blur(18px);
  pointer-events:auto;
}
.header-scrolled .nav-shell{
  background:rgba(255,253,249,.92);
  border-color:rgba(75,58,51,.1);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.brand-logo{
  width:50px;
  height:50px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #fff;
  box-shadow:0 8px 25px rgba(85,64,54,.14);
}
.brand-text strong{
  display:block;
  font-family:"Playfair Display", Georgia, serif;
  font-size:1.35rem;
  letter-spacing:-.04em;
}
.brand-text span{
  display:block;
  color:var(--muted);
  font-size:.76rem;
  margin-top:1px;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links a{
  display:inline-flex;
  padding:13px 15px;
  border-radius:999px;
  font-size:.92rem;
  font-weight:750;
  color:#584941;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.nav-links a:hover,.nav-links a.active{
  background:#fff2ec;
  color:#2d211c;
  transform:translateY(-1px);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:#2f241f;
  color:#fffaf6;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  display:block;
  width:20px;
  height:2px;
  background:currentColor;
  border-radius:3px;
  transition:transform .25s ease, opacity .25s ease;
  content:"";
}
.menu-toggle span::before{transform:translateY(-7px)}
.menu-toggle span::after{transform:translateY(5px)}
.nav-open .menu-toggle span{transform:rotate(45deg)}
.nav-open .menu-toggle span::before{opacity:0}
.nav-open .menu-toggle span::after{transform:translateY(-2px) rotate(-90deg)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:15px 22px;
  min-height:54px;
  font-weight:850;
  letter-spacing:-.01em;
  line-height:1;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{
  color:#fffaf6;
  background:#2f241f;
  box-shadow:0 14px 34px rgba(47,36,31,.24);
}
.btn-primary:hover{box-shadow:0 18px 44px rgba(47,36,31,.30)}
.btn-soft{
  color:#3a2b25;
  background:#fff1eb;
  box-shadow:inset 0 0 0 1px rgba(199,158,105,.14);
}
.btn-ghost{
  background:transparent;
  box-shadow:inset 0 0 0 1px var(--line);
  color:#3a2b25;
}

.hero{
  position:relative;
  padding:168px 0 90px;
  min-height:100svh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,250,246,.98) 0%, rgba(255,250,246,.86) 45%, rgba(255,250,246,.50) 100%),
    radial-gradient(circle at 75% 26%, rgba(232,185,170,.48), transparent 26rem);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,.78fr);
  align-items:center;
  gap:52px;
}
.hero-copy{
  max-width:760px;
}
.hero-copy h1{
  margin:18px 0 24px;
}
.hero-copy .lead{max-width:680px}
.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.hero-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.meta-pill{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(75,58,51,.11);
  background:rgba(255,253,249,.72);
  box-shadow:0 8px 28px rgba(85,64,54,.06);
  border-radius:999px;
  padding:10px 14px;
  color:#5b4b44;
  font-size:.93rem;
  font-weight:750;
}
.meta-dot{
  width:10px;
  height:10px;
  background:linear-gradient(135deg,var(--blush),var(--gold));
  border-radius:50%;
}
.hero-visual{
  position:relative;
  min-height:620px;
}
.photo-card{
  position:absolute;
  overflow:hidden;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  border:10px solid rgba(255,253,249,.92);
  background:#fff;
}
.photo-card.main{
  inset:22px 0 auto auto;
  width:min(475px,100%);
  height:570px;
  transform:rotate(2deg);
}
.photo-card.main img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.photo-card.small{
  left:0;
  bottom:42px;
  width:270px;
  padding:22px;
  border-width:1px;
  transform:rotate(-4deg);
}
.photo-card.small img{
  width:76px;
  height:76px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:16px;
}
.photo-card.small strong{
  display:block;
  font-family:"Playfair Display",Georgia,serif;
  font-size:1.6rem;
  margin-bottom:6px;
}
.photo-card.small p{font-size:.94rem;line-height:1.6}
.float-badge{
  position:absolute;
  right:20px;
  bottom:84px;
  z-index:3;
  width:154px;
  height:154px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,251,246,.82);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 18px 55px rgba(85,64,54,.14);
  backdrop-filter:blur(14px);
  animation:float 6s ease-in-out infinite;
}
.float-badge span{
  width:112px;
  height:112px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:50%;
  color:#5e463b;
  font-family:"Playfair Display",Georgia,serif;
  font-weight:800;
  background:#fff1eb;
  line-height:1.18;
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}
.marquee{
  border-block:1px solid var(--line);
  background:rgba(255,253,249,.62);
  overflow:hidden;
}
.marquee-track{
  display:flex;
  width:max-content;
  animation:scroll 32s linear infinite;
}
.marquee span{
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:20px 22px;
  color:#7a6258;
  text-transform:uppercase;
  font-size:.82rem;
  font-weight:850;
  letter-spacing:.12em;
}
.marquee span::after{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--blush);
}
@keyframes scroll{
  to{transform:translateX(-50%)}
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  position:relative;
  overflow:hidden;
  padding:30px;
  border-radius:var(--radius);
  background:rgba(255,253,249,.86);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.card::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-90px;
  top:-80px;
  border-radius:50%;
  background:rgba(232,185,170,.18);
  pointer-events:none;
}
.card h3{margin:16px 0 12px}
.card p{font-size:.98rem}
.icon-bubble{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#fff1eb;
  color:#6c5045;
  font-size:1.45rem;
}
.product-card{
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:rgba(255,253,249,.9);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.product-card img{
  width:100%;
  aspect-ratio:1.2/1;
  object-fit:cover;
  background:#f5eee7;
}
.product-content{padding:26px}
.product-content h3{margin-bottom:12px}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.tag{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:8px 11px;
  background:#fff3ed;
  color:#7b5e52;
  font-size:.78rem;
  font-weight:800;
}
.split{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:54px;
  align-items:center;
}
.split.reverse{
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
}
.soft-panel{
  border-radius:var(--radius-lg);
  padding:40px;
  background:linear-gradient(135deg,rgba(255,253,249,.92),rgba(244,236,229,.82));
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow);
}
.soft-panel h2,.soft-panel h3{margin:16px 0 18px}
.check-list{
  display:grid;
  gap:14px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}
.check-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:#594940;
  line-height:1.65;
}
.check-list li::before{
  content:"✓";
  flex:0 0 26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff2ec;
  color:#9a6a58;
  font-weight:900;
}
.image-stack{
  position:relative;
}
.image-stack .wide-image{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  border:12px solid #fffaf6;
  width:100%;
  aspect-ratio:1/1.05;
  object-fit:cover;
}
.note-card{
  position:absolute;
  left:-18px;
  bottom:28px;
  max-width:280px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,253,249,.85);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 18px 55px rgba(85,64,54,.14);
  backdrop-filter:blur(14px);
}
.note-card strong{
  display:block;
  margin-bottom:8px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:1.35rem;
}
.steps{
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  position:relative;
  min-height:240px;
  padding:28px;
  border-radius:var(--radius);
  background:rgba(255,253,249,.86);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.step::before{
  counter-increment:step;
  content:"0" counter(step);
  display:block;
  font-family:"Playfair Display",Georgia,serif;
  color:#c79e69;
  font-size:2.3rem;
  margin-bottom:22px;
}
.step h3{font-size:1.34rem;margin-bottom:10px}
.cta{
  position:relative;
  overflow:hidden;
  border-radius:52px;
  padding:70px;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.35),transparent 18rem),
    linear-gradient(135deg,#3a2b25,#64483f);
  color:#fffaf6;
  box-shadow:var(--shadow);
}
.cta h2,.cta p{color:#fffaf6}
.cta p{opacity:.82;max-width:620px;margin-top:18px}
.cta .hero-actions{margin-top:28px}
.cta .btn-soft{background:#fffaf6;color:#352722}
.cta .btn-ghost{color:#fffaf6;box-shadow:inset 0 0 0 1px rgba(255,255,255,.28)}
.cta::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-160px;
  top:-150px;
  border-radius:50%;
  background:rgba(232,185,170,.20);
}
.page-hero{
  padding:172px 0 86px;
  background:
    radial-gradient(circle at 12% 4%,rgba(232,185,170,.34),transparent 25rem),
    radial-gradient(circle at 90% 0%,rgba(174,185,166,.20),transparent 25rem);
}
.page-hero .inner{
  max-width:900px;
}
.page-hero h1{margin:18px 0 22px}
.breadcrumb{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:#8c776d;
  font-size:.9rem;
}
.breadcrumb a{font-weight:800}
.breadcrumb span{opacity:.65}

.product-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.product-line{
  display:grid;
  grid-template-columns:210px minmax(0,1fr);
  gap:24px;
  padding:18px;
  border-radius:var(--radius);
  background:rgba(255,253,249,.86);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.product-line img{
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
  border-radius:22px;
  background:#f4ece5;
}
.product-line h3{margin-bottom:12px}
.price-note{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-weight:850;
  color:#6b5146;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#f4ece5;
  min-height:340px;
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.gallery-item.tall{grid-row:span 2;min-height:698px}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.placeholder-art{
  width:100%;
  height:100%;
  min-height:340px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:22px;
  background:
    radial-gradient(circle at 25% 20%,rgba(232,185,170,.45),transparent 12rem),
    radial-gradient(circle at 80% 70%,rgba(174,185,166,.28),transparent 13rem),
    linear-gradient(135deg,#fffaf6,#f2e7df);
}
.placeholder-art strong{
  font-family:"Playfair Display",Georgia,serif;
  font-size:2rem;
}
.gallery-label{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:14px 16px;
  border-radius:20px;
  background:rgba(255,253,249,.82);
  backdrop-filter:blur(12px);
  color:#4c3a33;
  font-weight:850;
}
.form-grid{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:30px;
  align-items:start;
}
.contact-card{
  display:grid;
  gap:16px;
}
.contact-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:22px;
  border-radius:24px;
  background:rgba(255,253,249,.88);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.contact-row .icon-bubble{flex:0 0 50px}
.contact-row strong{display:block;margin-bottom:4px;color:#3b2c26}
.contact-row span{color:var(--muted);line-height:1.7}
.order-form{
  display:grid;
  gap:16px;
  padding:34px;
  border-radius:var(--radius-lg);
  background:rgba(255,253,249,.9);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field label{
  display:block;
  margin:0 0 8px 4px;
  color:#55443c;
  font-size:.9rem;
  font-weight:850;
}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid rgba(75,58,51,.16);
  border-radius:18px;
  background:#fffaf6;
  color:#342722;
  padding:15px 16px;
  outline:none;
  transition:border .22s ease,box-shadow .22s ease,background .22s ease;
}
.field textarea{min-height:145px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:rgba(199,158,105,.65);
  box-shadow:0 0 0 5px rgba(199,158,105,.10);
  background:#fffefc;
}
.form-note{
  font-size:.88rem;
  color:#8a756b;
  line-height:1.7;
}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.faq{
  padding:26px;
  border-radius:var(--radius);
  background:rgba(255,253,249,.88);
  border:1px solid rgba(75,58,51,.10);
  box-shadow:var(--shadow-soft);
}
.faq h3{font-size:1.35rem;margin-bottom:10px}

.footer{
  padding:72px 0 28px;
  background:#2f241f;
  color:#fffaf6;
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;
  inset:auto -10% -50% auto;
  width:520px;
  height:520px;
  background:rgba(232,185,170,.10);
  border-radius:50%;
}
.footer-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .7fr .7fr .9fr;
  gap:34px;
}
.footer h3{
  font-family:"Inter",system-ui,sans-serif;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:18px;
  color:#fffaf6;
}
.footer p,.footer a{color:rgba(255,250,246,.72);line-height:1.9}
.footer a:hover{color:#fffaf6}
.footer .brand-text span{color:rgba(255,250,246,.62)}
.footer-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.footer-bottom{
  position:relative;
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:rgba(255,250,246,.6);
  font-size:.92rem;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}
.reveal-delay-1{transition-delay:.12s}
.reveal-delay-2{transition-delay:.22s}
.reveal-delay-3{transition-delay:.32s}
.reveal-scale{
  opacity:0;
  transform:scale(.95);
  transition:opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal-scale.is-visible{
  opacity:1;
  transform:scale(1);
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.001ms!important;
  }
}

@media (max-width:1080px){
  .nav-links{
    position:fixed;
    top:100px;
    left:20px;
    right:20px;
    display:grid;
    padding:16px;
    background:rgba(255,253,249,.96);
    border:1px solid var(--line);
    border-radius:30px;
    box-shadow:var(--shadow);
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
  }
  .nav-open .nav-links{
    transform:none;
    opacity:1;
    pointer-events:auto;
  }
  .nav-links a{
    padding:15px 18px;
    justify-content:center;
  }
  .menu-toggle{display:flex}
  .nav-cta .btn{display:none}
  .hero-grid,.split,.split.reverse,.form-grid{
    grid-template-columns:1fr;
  }
  .hero-visual{min-height:520px}
  .photo-card.main{
    left:16%;
    right:auto;
    width:min(430px,80vw);
    height:490px;
  }
  .photo-card.small{left:0;bottom:10px}
  .cards-grid,.gallery-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .product-list{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .section-head{grid-template-columns:1fr;align-items:start}
}
@media (max-width:720px){
  :root{--container:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .nav-shell{min-height:66px;padding:9px 10px 9px 12px}
  .brand-logo{width:45px;height:45px}
  .brand-text strong{font-size:1.16rem}
  .brand-text span{font-size:.68rem}
  .hero{padding:134px 0 66px;min-height:auto}
  .hero-grid{gap:34px}
  .hero-actions{align-items:stretch}
  .hero-actions .btn{width:100%}
  .hero-meta{gap:10px}
  .meta-pill{width:100%;justify-content:center}
  .hero-visual{min-height:430px}
  .photo-card.main{
    left:4%;
    width:85%;
    height:390px;
    border-width:8px;
    border-radius:32px;
  }
  .photo-card.small{
    width:245px;
    left:0;
    bottom:0;
    padding:18px;
  }
  .float-badge{
    width:124px;height:124px;right:0;bottom:42px
  }
  .float-badge span{width:92px;height:92px;font-size:.92rem}
  .section{padding:78px 0}
  .section-tight{padding:56px 0}
  .cards-grid,.gallery-grid,.steps,.faq-grid,.footer-grid{grid-template-columns:1fr}
  .gallery-item.tall{grid-row:auto;min-height:360px}
  .product-line{
    grid-template-columns:1fr;
  }
  .soft-panel,.order-form,.cta{padding:28px;border-radius:30px}
  .cta{padding:42px 24px}
  .form-row{grid-template-columns:1fr}
  .footer-bottom{display:grid}
  .page-hero{padding:136px 0 66px}
}
