:root{
  --bg:#ebe2d6;
  --surface:#fff7ec;
  --ink:#201611;
  --muted:#6f5d50;
  --line:rgba(255,255,255,.16);
  --brand:#8f4f2b;
  --brand2:#c18b52;
  --gold:#e6bd6a;
  --dark:#120c08;
  --cream:#fff4e5;
  --shadow:0 28px 80px rgba(32,22,17,.18);
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;

  font-size:18px;

  background:#ebe2d6;
  color:var(--ink);

  line-height:1.76;
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

p{
  font-size:1.18rem;
  line-height:1.88;
}
.card p,
#kontakt .card p,
#peod .card p,
.lead{
  font-size:1.18rem;
  line-height:1.88;
}
.container{
  width:min(1180px,calc(100% - 48px));
  margin:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  z-index:999;
  background:white;
  padding:10px 14px;
  border-radius:12px;
}

.skip:focus{
  left:10px;
}

/* ANIMATSIOONID */

.fade-up{
  opacity:0;
  transform:translateY(34px);

  transition:
    opacity .9s ease,
    transform .9s ease;
}

.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}
/* TOPBAR */

.topbar{
  position:absolute;
  inset:0 0 auto;
  z-index:120;
  color:#ead7bb;
  border-bottom:1px solid rgba(255,255,255,.11);
  background:rgba(12,8,5,.18);
  backdrop-filter:blur(10px);
}

.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:11px 0;
  font-size:.95rem;
  font-weight:550;
  letter-spacing:.015em;
}

.topbar-left,
.topbar-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.topbar a{
  text-decoration:none;
  color:#ead7bb;
}

.topbar a:hover{color:var(--gold)}
.topbar .sep{opacity:.38}

/* HEADER */

.header{
  position:absolute;
  inset:48px 0 auto;
  z-index:115;
  transition:.32s ease;
}

.header.scrolled{
  position:fixed;
  inset:0 0 auto;
  background:rgba(18,12,8,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 38px rgba(0,0,0,.22);
}

.nav{
  width:min(1180px,calc(100% - 48px));
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:22px 0;
  color:#f3dfc3;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-mark{
  color:#efca82;
  font-size:1rem;
}

.brand-text{
  display:flex;
  align-items:flex-end;
  gap:5px;
}

.brand-name{
  font-family:"Playfair Display",Georgia,serif;
  font-size:2.9rem;
  font-weight:800;
  color:#fffaf2;
  letter-spacing:-.05em;
  line-height:.9;
}

.brand-sub{
  display:block;
  background:linear-gradient(180deg,#f7d783 0%,#d9b24b 45%,#b88330 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:#d4af37;
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.22em;
  margin-bottom:6px;
  line-height:1;
  transform:translateY(4px);
}

.brand-logo{
  width:72px;
  height:72px;
  object-fit:contain;
  display:block;
  flex-shrink:0;
  border-radius:0;
  background:transparent;
  border:0;
  padding:0;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.35));
}

.navlinks{
  display:flex;
  align-items:center;
  gap:8px;
}

.navlinks a{
  text-decoration:none;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:.08em;
  padding:12px 14px;
  border-radius:999px;
  color:#ead8bd;
  transition:.32s ease;
}

.navlinks a:hover{
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(8px);
  color:#efca82;
}

.nav-cta{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-weight:700;
  font-size:.94rem;
  letter-spacing:.03em;
  color:#fff5e8;

  padding:12px 22px;
  border-radius:14px;

  background:
  linear-gradient(
    135deg,
    rgba(145,88,50,.9) 0%,
    rgba(178,116,70,.84) 52%,
    rgba(205,151,96,.78) 100%
  );

  border:1px solid rgba(239,202,130,.22);

  box-shadow:
    0 10px 26px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.08);

  backdrop-filter:blur(8px);

  white-space:nowrap;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);

  background:
  linear-gradient(
    135deg,
    rgba(165,101,59,.94) 0%,
    rgba(198,132,80,.88) 52%,
    rgba(225,169,108,.82) 100%
  );

  border-color:rgba(239,202,130,.42);

  box-shadow:
    0 16px 34px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.menu-btn{
  display:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.24);
  color:#fff4e5;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  font-size:1.05rem;
}

/* HERO */

.hero{
  min-height:100dvh;
min-height:100vh;
  position:relative;
  overflow:hidden;
  color:#fffaf2;
  padding-bottom:210px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.58) 0%,rgba(0,0,0,.34) 38%,rgba(0,0,0,.10) 72%,rgba(0,0,0,.02) 100%),
    linear-gradient(180deg,rgba(18,12,8,.20),rgba(18,12,8,.05) 42%,rgba(18,12,8,.13)),
    url("../images/hero-ratturi-talu-kohvik.jpg") center center / cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:210px;
  background:linear-gradient(transparent,var(--bg));
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:calc(100svh - 210px);
  display:grid;
  align-items:center;
  padding:180px 0 80px;
}

.hero-text{
  max-width:620px;
}

.eyebrow{
  font-size:1.08rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:950;
  color:var(--gold);
  margin-bottom:22px;
}

.hero h1{
  font-family:"Playfair Display",Georgia,serif;

  font-size:clamp(4.6rem,6.8vw,7.7rem);

  line-height:.9;
  letter-spacing:-.055em;

  font-weight:500;

  max-width:820px;

  margin:0;

  color:#fffaf3;

  text-shadow:
    0 12px 40px rgba(0,0,0,.34),
    0 4px 10px rgba(0,0,0,.20);
}

/* ainult kuldseks märgitud sõnad */
.hero h1 .gold{
  color:rgba(228,190,118,.92);
}

.hero-accent{
  display:flex;
  align-items:center;
  gap:18px;
  margin:28px 0 28px;
}
.hero-accent .star{
  color:#d4af37;
  font-size:1.28rem;
  line-height:1;
}

.hero-accent .line{
  width:min(520px,70vw);
  height:1px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(212,175,55,1) 0%,rgba(212,175,55,.55) 55%,rgba(212,175,55,0) 100%);
}

.hero .lead{
  max-width:560px;
  color:#f6e6cf;
  font-size:clamp(1.55rem,2.15vw,2.05rem);
  line-height:1.55;
  font-weight:500;
  letter-spacing:.01em;
  margin-top:18px;
  text-shadow:0 4px 18px rgba(0,0,0,.38);
}

.ctas{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:28px;
  margin-bottom:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  min-height:54px;
  min-width:228px;

  padding:14px 24px;

  border-radius:12px;

  border:1px solid transparent;

  text-decoration:none;

  font-weight:700;
  font-size:.98rem;
  letter-spacing:.02em;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 44px rgba(0,0,0,.26);
}

.btn.primary{
  background:linear-gradient(135deg,#95552e,#d1a064);
  color:#fffaf2;
  box-shadow:0 18px 42px rgba(0,0,0,.25);
}

.btn.outline{
  border-color:rgba(239,202,130,.62);
  background:rgba(0,0,0,.18);
  color:#f1dcc0;
  backdrop-filter:blur(6px);
}

.btn.light{
  background:rgba(255,244,229,.92);
  color:#2a180f;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  font-weight:750;
  letter-spacing:.03em;
}

/* TRUST */

.hero-trust{
  position:absolute;
  z-index:4;
  left:50%;
  bottom:38px;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 48px));
  display:grid;
  grid-template-columns:repeat(4,1fr);

  background:rgba(16,9,5,.82);

  border:1px solid rgba(239,202,130,.14);
  border-radius:26px;

  backdrop-filter:blur(18px);

  overflow:hidden;

  box-shadow:0 18px 48px rgba(0,0,0,.22);

  padding:6px;
}

.trust-item{
  display:grid;

  grid-template-columns:52px minmax(0,1fr);

  gap:18px;
  align-items:start;

  padding:24px 30px;

  border-right:1px solid rgba(239,202,130,.11);
}

.trust-item:last-child{
  border-right:0;
}
.trust-item b{
  line-height:1.28;
}

.trust-item span,
.mahutavus-list div{
  line-height:1.45;
}

.trust-icon{
  width:46px;
  height:46px;

  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#efca82;

  font-size:1.02rem;
  font-weight:700;
  line-height:1;

  background:rgba(239,202,130,.10);

  border:1px solid rgba(239,202,130,.24);

  box-shadow:none;
}

.trust-item b{
  display:block;

  color:#fff4e5;

  font-size:1.08rem;
  line-height:1.34;

  font-weight:700;

  letter-spacing:.01em;
}

.trust-item span{
  display:block;

  color:rgba(255,244,229,.76);

  font-size:.98rem;
  line-height:1.58;

  margin-top:7px;

  font-weight:450;
}

.mahutavus-list{
  margin-top:7px;

  display:flex;
  flex-direction:column;

  gap:4px;
}

.mahutavus-list div{
  color:rgba(255,244,229,.76);

  font-size:.98rem;
  line-height:1.58;

  font-weight:450;
}

.trust-item b{
  display:block;
  color:#fff4e5;
  font-size:1.08rem;
  line-height:1.35;
  font-weight:700;
  letter-spacing:.01em;
}

.trust-item span{
  display:block;
  color:rgba(255,244,229,.76);
  font-size:.98rem;
  margin-top:7px;
  line-height:1.65;
  font-weight:450;
}

.mahutavus-list{
  margin-top:7px;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.mahutavus-list div{
  color:rgba(255,244,229,.76);
  font-size:.98rem;
  line-height:1.65;
  font-weight:450;
}

/* ÜLDSEKTSIOONID */

.section{
  padding:132px 0;
}

.section-head{
  max-width:860px;
  margin-bottom:56px;
}

.section-head.center{
  text-align:center;
  margin-inline:auto;
}

.section .eyebrow{
  color:var(--brand);
  text-shadow:none;
  margin-bottom:14px;
}

h2,h3{
  font-family:"Playfair Display",Georgia,serif;
}

h2{
  font-size:clamp(2.7rem,4.2vw,4.4rem);
  line-height:1.03;
  letter-spacing:-.05em;
  margin:0 0 20px;
}

h3{
  font-size:1.78rem;
  line-height:1.16;
  margin:0 0 14px;
}

.lead{
  font-size:1.55rem;
  line-height:1.9;
  color:var(--muted);
  max-width:870px;
}
#meist h2{
  font-size:clamp(3.1rem,4.8vw,5.4rem);
  line-height:.95;
  letter-spacing:-.055em;
}

#meist .card{
  padding:58px 56px;
  border-radius:30px;
}

#meist .two{
  gap:54px;
  align-items:center;
}

#meist .photo{
  min-height:520px;
  border-radius:30px;
}

#meist .lead,
#video .lead{
  font-size:1.36rem;
  line-height:1.78;
  color:#6b5a4e;
  max-width:760px;
}

.card p{
  font-size:1.62rem;
  line-height:1.92;
  color:#5a493e;
}

#peod .card p{
  font-size:1.62rem;
  line-height:1.92;
  color:#5b4a3e;
}
#video .two{
  gap:48px;
  align-items:center;
}

.video-text-card{
  padding:48px 48px 44px;
  border-radius:30px;
  background:#f7f3ee;

  display:flex;
  flex-direction:column;
  justify-content:center;

  min-height:470px;
}

#video .card{
  min-height:470px;
}

#video h2{
  font-size:clamp(2.55rem,3.9vw,4.45rem);
  line-height:.96;
  letter-spacing:-.052em;
  max-width:10.5ch;
  margin-bottom:26px;
}

#video .lead{
  font-size:1.2rem;
  line-height:1.76;
  max-width:620px;
  color:#6a584c;
}

#video .photo{
  min-height:470px;
  border-radius:32px;
  overflow:hidden;
}

#video .photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

#video .photo:hover img{
  transform:scale(1.03);
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:68px;
  align-items:center;
}

.card{
  background:
    linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,250,244,.96));
  border:1px solid rgba(32,22,17,.08);
  border-radius:34px;
  padding:44px;
  box-shadow:var(--shadow);
}

.photo,
.video{
  width:100%;
  min-height:520px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:0 24px 70px rgba(32,22,17,.18);
}

.photo,
.gallery img,
.menu-photo{
  transition:
    transform .7s ease,
    filter .7s ease,
    box-shadow .7s ease;
}

.photo:hover,
.gallery img:hover,
.menu-photo:hover{
  transform:scale(1.015);
  filter:saturate(1.02) contrast(1.03);
}

.video{
  aspect-ratio:16/10;
  background:#130d09;
}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.pill{
  background:#fffdf9;
  border:1px solid rgba(32,22,17,.10);
  border-radius:999px;
  padding:11px 16px;
  font-weight:900;
  font-size:1.1rem;
  color:#4b2c1b;
}

/* MENÜÜ — PREMIUM */

.menu-section{
  padding:100px 0 120px;

  background:
    radial-gradient(circle at 12% 8%,rgba(239,202,130,.13),transparent 34%),
    radial-gradient(circle at 92% 18%,rgba(168,102,47,.12),transparent 36%),
    linear-gradient(135deg,#0d0907 0%,#17100c 46%,#24160f 100%);

  color:#fff4e5;
  overflow:hidden;
}

.menu-section .section-head{
  max-width:850px;
  margin:0 auto 46px;
  text-align:center;
}

.menu-section .eyebrow{
  color:var(--gold);
}

.menu-section h2{
  color:#fff4e5;
  font-size:clamp(3.2rem,5.6vw,6.2rem);
  line-height:.92;
  letter-spacing:-.055em;
}

.menu-section .lead{
  color:#ead8bd;
  margin-left:auto;
  margin-right:auto;
  font-size:1.24rem;
  line-height:1.75;
  max-width:820px;
}

.menu-layout{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(400px,.92fr);
  gap:52px;
  align-items:start;
  margin-top:34px;
}

.menu-intro{
  position:relative;
  min-height:520px;
  border-radius:34px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 80px rgba(0,0,0,.30);
}

.menu-photo{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  border-radius:34px;
  filter:saturate(.98) contrast(1.03);
}

.menu-intro::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,transparent 38%,rgba(0,0,0,.76) 100%),
    linear-gradient(90deg,rgba(0,0,0,.14),transparent 55%);
  pointer-events:none;
}

.menu-intro-content{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;

  width:min(380px,calc(100% - 48px));

  padding:26px;

  border-radius:24px;

  background:rgba(17,11,8,.70);

  border:1px solid rgba(239,202,130,.18);

  backdrop-filter:blur(14px);

  box-shadow:0 14px 38px rgba(0,0,0,.22);
}

.menu-intro h3{
  color:#fff4e5;
  font-size:1.72rem;
  line-height:1.08;
  margin-bottom:10px;
}

.menu-intro p{
  color:#ead8bd;
  margin:0;
  font-size:1rem;
  line-height:1.64;
}

.menu-intro .ctas{
  margin-top:22px;
}

.menu-intro .btn{
  min-width:unset;
  min-height:52px;
  padding:13px 22px;
  border-radius:10px;
}

.menu-list{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:26px;
}

.dish{
  position:relative;
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  column-gap:20px;
  row-gap:4px;
  align-items:start;
  min-height:auto;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.dish > *{
  min-width:0;
}

.dish::before{
  content:"✦";
  grid-column:1;
  grid-row:1 / span 2;
  width:50px;
  height:50px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:1rem;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(239,202,130,.14);
  box-shadow:none;
}

.dish h3{
  grid-column:2;
  grid-row:1;
  color:#fff4e5;
  font-size:1.58rem;
  line-height:1.12;
  margin:0 0 7px;
}

.dish p{
  grid-column:2;
  grid-row:2;
  color:#ead8bd;
  margin:0;
  font-size:1.02rem;
  line-height:1.66;
  max-width:520px;
}

.dish:hover{
  transform:none;
  background:transparent;
  border-color:transparent;
  box-shadow:none;
}

.dish img{
  display:none;
}

.notice{
  margin-top:40px;
  border:1px solid rgba(239,202,130,.20);
  border-radius:18px;
  padding:18px 24px;
  color:#d9c5aa;
  background:rgba(255,255,255,.04);
  text-align:left;
  font-size:1.04rem;
  line-height:1.68;
}
/* GALERII */

#galerii{
  padding-top:72px;
  padding-bottom:110px;

  background:
    radial-gradient(circle at 8% 4%,rgba(239,202,130,.16),transparent 32%),
    linear-gradient(135deg,#100a06,#24170f);

  color:#fff4e5;
}

#galerii .section-head{
  margin-bottom:26px;
}

#galerii .eyebrow{
  color:var(--gold);
  margin-bottom:10px;
}

#galerii h2{
  color:#fff4e5;

  font-size:clamp(2.5rem,4.2vw,4.6rem);

  line-height:.9;

  letter-spacing:-.06em;

  max-width:16ch;

  margin-inline:auto;
}

#galerii .lead{
  color:#ead8bd;

  margin-left:auto;
  margin-right:auto;

  font-size:1.16rem;

  line-height:1.72;

  max-width:720px;
}

.gallery{
  display:grid;

  grid-template-columns:1.08fr .92fr .92fr;

  grid-auto-rows:220px;

  gap:18px;

  margin-top:24px;
}

.gallery img{
  width:100%;
  height:100%;

  object-fit:cover;

  border-radius:28px;

  box-shadow:0 12px 32px rgba(0,0,0,.18);

  transition:
    transform .7s ease,
    filter .7s ease,
    box-shadow .7s ease;

  filter:saturate(.95) contrast(1.03) brightness(.97);
}

.gallery img:hover{
  transform:scale(1.015);

  filter:saturate(1) contrast(1.05) brightness(1);

  box-shadow:0 18px 44px rgba(0,0,0,.24);
}

/* esimene suurem */

.gallery img:first-child{
  grid-row:span 2;
}

/* MUUD OSAD */

.checks{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:30px;
}

.check{
  background:#fffaf4;
  border:1px solid rgba(80,55,35,.08);
  border-radius:16px;
  padding:20px 22px;
  font-weight:800;
  font-size:1rem;
  line-height:1.45;
  color:#3d2416;
  box-shadow:0 10px 26px rgba(50,30,15,.06);
}

#peod .two{
  grid-template-columns:.92fr 1.08fr;
  gap:38px;
  align-items:center;
}

#peod .card{
  padding:48px 46px;
  border-radius:34px;
}

#peod h2{
  font-size:clamp(2.6rem,3.9vw,4.4rem);
  line-height:.93;
  letter-spacing:-.058em;
  max-width:8.6ch;
  margin-bottom:22px;
}

#peod .card p{
  font-size:1.12rem;
  line-height:1.7;
  max-width:540px;
  color:#5f4d41;
}

#peod .photo{
  min-height:560px;
  border-radius:34px;
  overflow:hidden;
}

#peod .photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.quote{
  background:
    linear-gradient(180deg,rgba(255,255,255,.52),rgba(255,250,244,.70));
  border-block:1px solid rgba(32,22,17,.08);
  padding:60px 0;
  text-align:center;
}

.quote p{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(2rem,3.1vw,2.95rem);
  max-width:940px;
  margin:auto;
  line-height:1.2;
}

/* KONTAKT */

#kontakt{
  padding-top:100px;
}

.contact-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:30px;
  align-items:center;
}

.contact-grid .card{
  border-radius:34px;
  padding:36px 38px;
}

#kontakt h2{
  font-size:clamp(2.25rem,3.5vw,3.95rem);
  line-height:.94;
  letter-spacing:-.052em;
  max-width:12ch;
  margin-bottom:22px;
}

#kontakt h3{
  font-size:1.9rem;
  line-height:1.08;
  margin-bottom:18px;
}

#kontakt .card p{
  font-size:1.08rem;
  line-height:1.72;
  color:#5d4a3f;
  max-width:520px;
}

.contact-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.contact-list a,
.contact-list div{
  background:#fffdfa;
  border:1px solid rgba(32,22,17,.06);
  border-radius:20px;
  padding:16px 18px;
  text-decoration:none;
  font-size:1.04rem;
  line-height:1.58;
  box-shadow:0 10px 28px rgba(32,22,17,.045);
}

.contact-label{
  display:block;
  font-size:.74rem;
  line-height:1;
  color:#9a6a44;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.map{
  width:100%;
  height:330px;
  border:0;
  border-radius:24px;
  margin-top:26px;
  box-shadow:0 24px 70px rgba(32,22,17,.14);
}

form{
  display:grid;
  gap:14px;
}

label{
  font-weight:800;
  font-size:.98rem;
}

input,
select,
textarea{
  width:100%;
  border:1px solid rgba(32,22,17,.08);
  border-radius:18px;
  background:#fffdfa;
  padding:16px 18px;
  font:inherit;
  font-size:1.02rem;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:rgba(168,102,47,.38);
  box-shadow:0 0 0 4px rgba(168,102,47,.08);
}

textarea{
  min-height:150px;
  resize:vertical;
}

.form-status{
  font-weight:900;
  color:#334b37;
}

/* FOOTER */

#kontakt{
  padding-bottom:55px;
}

#kontakt .map{
  height:285px;
}

.footer{
  background:#140d09;
  color:#f6ead6;

  padding:12px 0;

  margin-top:0;
}

.footer-grid{
  display:block;
}

.footer h3,
.footer p,
.footer a{
  display:none;
}

.footer small{
  color:#c9b39a;
  font-size:.92rem;
  line-height:1.4;
}

.copy{
  border-top:0;

  margin-top:0;

  padding-top:0;

  min-height:32px;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;

  gap:0;

  flex-wrap:wrap;
}

.sticky-cta{
  display:none !important;
}
/* LOETAVUSE PARANDUS — DESKTOP */

@media(min-width:761px){

  .lead,
  #meist .lead,
  #video .lead,
  .menu-section .lead{
    font-size:1.62rem !important;
    line-height:1.92 !important;
  }

  .card p{
    font-size:1.26rem !important;
    line-height:1.9 !important;
  }

  #peod .card p,
  #kontakt .card p{
    font-size:1.62rem !important;
    line-height:1.92 !important;
  }

  .dish p,
  .menu-intro p{
    font-size:1.18rem !important;
    line-height:1.84 !important;
  }

  .dish h3{
    font-size:1.9rem !important;
    line-height:1.14 !important;
  }

  .notice,
  .contact-list a,
  .contact-list div{
    font-size:1.16rem !important;
    line-height:1.82 !important;
  }

  #kontakt h3{
    font-size:2.2rem !important;
    line-height:1.08 !important;
  }

  label{
    font-size:1.14rem !important;
    font-weight:800;
  }

  input,
  select,
  textarea{
    font-size:1.14rem !important;
    line-height:1.6 !important;
  }

  input::placeholder,
  textarea::placeholder{
    font-size:1.08rem;
  }
}
/* TAHVEL */

@media(max-width:1050px) and (min-width:761px){

  .nav-cta{
    display:none;
  }

  .hero{
    padding-bottom:0;
  }

  .hero-content{
    min-height:auto;
    padding:150px 0 60px;
  }

  .hero-trust{
    grid-template-columns:repeat(2,1fr);
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    margin:0 auto 40px;
  }

  .trust-item:nth-child(2){
    border-right:0;
  }

  .two,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .menu-layout{
    grid-template-columns:1fr;
    gap:56px;
  }

  .menu-intro,
  .menu-photo{
    min-height:580px;
    height:580px;
  }

  .gallery{
    grid-template-columns:1fr;
    grid-auto-rows:270px;
  }

  .gallery img:first-child{
    grid-row:auto;
  }
}


/* MOBIIL */

@media(max-width:760px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  html{
    height:100%;
    -webkit-text-size-adjust:100%;
  }

  body{
    min-height:100%;
    font-size:17px;
    -webkit-overflow-scrolling:touch;
  }

  .container,
  .nav{
    width:calc(100% - 32px);
    max-width:1180px;
  }

  .topbar{
    display:block !important;
    position:relative;
    z-index:1000;
    background:#9a5528;
    border-bottom:0;
    transform:translateZ(0);
    backface-visibility:hidden;
  }

  .topbar .container{
    width:calc(100% - 32px);
    padding:8px 0;
    justify-content:center;
    text-align:center;
    color:#fff4e5;
    font-size:.9rem;
    line-height:1.35;
    font-weight:700;
  }

  .topbar-left{
    display:flex;
    justify-content:center;
    width:100%;
  }

  .topbar-left span:first-child,
  .topbar-left .sep,
  .topbar-right{
    display:none;
  }

  .header{
    position:sticky;
    top:0;
    inset:auto;
    z-index:999;
    background:rgba(20,13,9,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,244,229,.10);
    transform:translateZ(0);
    backface-visibility:hidden;
  }

  .nav{
    padding:14px 0;
    gap:14px;
  }

  .brand{
    min-width:0;
  }

  .brand-name{
    font-size:1.82rem;
    line-height:.9;
    letter-spacing:-.045em;
  }

  .brand-sub{
    font-size:.66rem;
    letter-spacing:.12em;
    margin-bottom:4px;
    transform:translateY(4px);
  }

  .brand-mark{
    font-size:.82rem;
  }

  .nav-cta{
    display:none;
  }

  .menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:10px 18px;
    border-radius:18px;
    font-size:1rem;
    font-weight:750;
    color:#fff4e5;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.16);
  }

  .navlinks{
    position:fixed;
    inset:92px 16px auto 16px;
    z-index:1000;
    display:none;
    flex-direction:column;
    gap:8px;
    padding:16px;
    background:rgba(35,22,15,.98);
    border:1px solid rgba(255,244,229,.14);
    border-radius:22px;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
  }

  .navlinks.open{
    display:flex;
  }

  .navlinks a{
    text-align:center;
    font-size:1.08rem;
    font-weight:750;
    letter-spacing:.04em;
    padding:14px 18px;
    color:#ead8bd;
  }

  .hero{
    position:relative;
    min-height:auto;
    padding-bottom:0;
    margin-bottom:0;
    overflow:hidden;
    background-attachment:scroll !important;
    transform:translateZ(0);
    will-change:transform;
    background:
      linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.38) 42%,rgba(0,0,0,.10) 72%,rgba(0,0,0,.02) 100%),
      linear-gradient(180deg,rgba(0,0,0,.24),rgba(0,0,0,.12) 48%,rgba(0,0,0,.28)),
      url("../images/hero-ratturi-talu-kohvik.jpg") center center / cover no-repeat;
  }

  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:radial-gradient(circle at 30% 35%,rgba(214,171,109,.10),transparent 42%);
    pointer-events:none;
  }

  .hero::after{
    height:110px;
    z-index:1;
  }

  .hero-content{
    position:relative;
    z-index:2;
    min-height:auto !important;
    padding:42px 0 26px;
  }

  .hero h1{
    font-size:clamp(3.55rem,12.4vw,4.7rem);
    line-height:.9;
    letter-spacing:-.062em;
    max-width:5.4ch;
  }

  .hero h1 .gold,
  .hero h1 em,
  .hero h1 span{
    color:rgba(228,190,118,.92);
  }

  .hero .lead,
  .hero p{
    max-width:340px;
    font-size:1.18rem !important;
    line-height:1.44 !important;
    font-weight:500;
    color:#f3e7d4;
  }

  .ctas{
    width:100%;
    gap:10px;
    margin-top:20px;
    margin-bottom:0;
  }

  .btn{
    width:100%;
    min-width:0;
    min-height:54px;
    padding:14px 18px;
    border-radius:18px;
    font-size:1.02rem;
    font-weight:800;
  }
/* TAHVEL */

@media(max-width:1050px) and (min-width:761px){

  .nav-cta{
    display:none;
  }

  .hero{
    padding-bottom:0;
  }

  .hero-content{
    min-height:auto;
    padding:150px 0 60px;
  }

  .hero-trust{
    grid-template-columns:repeat(2,1fr);
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    margin:0 auto 40px;
  }

  .trust-item:nth-child(2){
    border-right:0;
  }

  .two,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .menu-layout{
    grid-template-columns:1fr;
    gap:56px;
  }

  .menu-intro,
  .menu-photo{
    min-height:580px;
    height:580px;
  }

  .gallery{
    grid-template-columns:1fr;
    grid-auto-rows:270px;
  }

  .gallery img:first-child{
    grid-row:auto;
  }
}


/* MOBIIL */

@media(max-width:760px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  html{
    height:100%;
    -webkit-text-size-adjust:100%;
  }

  body{
    min-height:100%;
    font-size:17px;
    -webkit-overflow-scrolling:touch;
  }

  .container,
  .nav{
    width:calc(100% - 32px);
    max-width:1180px;
  }

  .topbar{
    display:block !important;
    position:relative;
    z-index:1000;
    background:#9a5528;
    border-bottom:0;
    transform:translateZ(0);
    backface-visibility:hidden;
  }

  .topbar .container{
    width:calc(100% - 32px);
    padding:8px 0;
    justify-content:center;
    text-align:center;
    color:#fff4e5;
    font-size:.9rem;
    line-height:1.35;
    font-weight:700;
  }

  .topbar-left{
    display:flex;
    justify-content:center;
    width:100%;
  }

  .topbar-left span:first-child,
  .topbar-left .sep,
  .topbar-right{
    display:none;
  }

  .header{
    position:sticky;
    top:0;
    inset:auto;
    z-index:999;
    background:rgba(20,13,9,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,244,229,.10);
    transform:translateZ(0);
    backface-visibility:hidden;
  }

  .nav{
    padding:14px 0;
    gap:14px;
  }

  .brand{
    min-width:0;
  }

  .brand-name{
    font-size:1.82rem;
    line-height:.9;
    letter-spacing:-.045em;
  }

  .brand-sub{
    font-size:.66rem;
    letter-spacing:.12em;
    margin-bottom:4px;
    transform:translateY(4px);
  }

  .brand-mark{
    font-size:.82rem;
  }

  .nav-cta{
    display:none;
  }

  .menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:10px 18px;
    border-radius:18px;
    font-size:1rem;
    font-weight:750;
    color:#fff4e5;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.16);
  }

  .navlinks{
    position:fixed;
    inset:92px 16px auto 16px;
    z-index:1000;
    display:none;
    flex-direction:column;
    gap:8px;
    padding:16px;
    background:rgba(35,22,15,.98);
    border:1px solid rgba(255,244,229,.14);
    border-radius:22px;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
  }

  .navlinks.open{
    display:flex;
  }

  .navlinks a{
    text-align:center;
    font-size:1.08rem;
    font-weight:750;
    letter-spacing:.04em;
    padding:14px 18px;
    color:#ead8bd;
  }

  .hero{
    position:relative;
    min-height:auto;
    padding-bottom:0;
    margin-bottom:0;
    overflow:hidden;
    background-attachment:scroll !important;
    transform:translateZ(0);
    will-change:transform;
    background:
      linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.38) 42%,rgba(0,0,0,.10) 72%,rgba(0,0,0,.02) 100%),
      linear-gradient(180deg,rgba(0,0,0,.24),rgba(0,0,0,.12) 48%,rgba(0,0,0,.28)),
      url("../images/hero-ratturi-talu-kohvik.jpg") center center / cover no-repeat;
  }

  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:radial-gradient(circle at 30% 35%,rgba(214,171,109,.10),transparent 42%);
    pointer-events:none;
  }

  .hero::after{
    height:110px;
    z-index:1;
  }

  .hero-content{
    position:relative;
    z-index:2;
    min-height:auto !important;
    padding:42px 0 26px;
  }

  .hero h1{
    font-size:clamp(3.55rem,12.4vw,4.7rem);
    line-height:.9;
    letter-spacing:-.062em;
    max-width:5.4ch;
  }

  .hero h1 .gold,
  .hero h1 em,
  .hero h1 span{
    color:rgba(228,190,118,.92);
  }

  .hero .lead,
  .hero p{
    max-width:340px;
    font-size:1.18rem !important;
    line-height:1.44 !important;
    font-weight:500;
    color:#f3e7d4;
  }

  .ctas{
    width:100%;
    gap:10px;
    margin-top:20px;
    margin-bottom:0;
  }

.btn{
  width:100%;
  min-width:0;

  min-height:58px;
  padding:15px 20px;

  border-radius:20px;

  font-size:.98rem;
  font-weight:650;
  letter-spacing:.01em;
}

.hero-trust{
  position:relative;
  left:auto;
  bottom:auto;
  transform:none;
  width:calc(100% - 32px);
  margin:18px auto 0;
  grid-template-columns:1fr;
  padding:6px;
  border-radius:24px;
}

.trust-item{
  grid-template-columns:46px minmax(0,1fr);
  gap:14px;
  padding:18px;
  border-right:0;
  border-bottom:1px solid rgba(239,202,130,.12);
}

.trust-item:last-child{
  border-bottom:0;
}

.section{
  padding:70px 0;
}

.two,
.contact-grid,
#peod .two,
.menu-layout{
  grid-template-columns:1fr;
  gap:32px;
}

  .card,
  #meist .card,
  #peod .card,
  .contact-grid .card,
  .video-text-card{
    padding:28px 24px;
    border-radius:26px;
    min-height:auto;
  }

  h2,
  #meist h2,
  #video h2,
  #peod h2,
  #kontakt h2{
    font-size:clamp(2.35rem,10vw,3.35rem);
    line-height:.95;
    max-width:100%;
  }

  p,
  .lead,
  .card p,
  #meist .lead,
  #video .lead,
  #peod .card p,
  #kontakt .card p{
    font-size:1.16rem !important;
    line-height:1.74 !important;
  }

  .photo,
  .video,
  #meist .photo,
  #video .photo,
  #peod .photo{
    width:100%;
    min-height:330px;
    height:auto;
    border-radius:26px;
  }

  #meist{
    margin-top:0 !important;
    transform:none !important;
  }

  .menu-section{
    padding:70px 0 80px;
  }

  .menu-section h2{
    font-size:clamp(2.8rem,12vw,3.9rem);
    line-height:.92;
    max-width:9ch;
    margin-inline:auto;
  }

  .menu-intro,
  .menu-photo{
    min-height:430px;
    height:430px;
    border-radius:26px;
  }

  .menu-intro-content{
    left:16px;
    bottom:16px;
    width:calc(100% - 32px);
    padding:22px;
    border-radius:20px;
  }

  .dish{
    grid-template-columns:42px minmax(0,1fr);
    column-gap:14px;
    row-gap:4px;
  }

  .dish::before{
    width:40px;
    height:40px;
  }

  .dish h3{
    font-size:1.42rem !important;
    line-height:1.16 !important;
    overflow-wrap:break-word;
  }

  .dish p{
    font-size:1.04rem !important;
    line-height:1.62 !important;
    overflow-wrap:break-word;
  }

  .checks{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:210px;
    gap:14px;
  }

  .gallery img{
    border-radius:22px;
  }

  .gallery img:first-child{
    grid-row:span 2;
  }

  #kontakt{
    padding-top:70px;
    padding-bottom:50px;
  }

  .contact-list a,
  .contact-list div{
    font-size:1.08rem !important;
    line-height:1.55 !important;
    padding:17px 18px;
  }

  .map,
  #kontakt .map{
    height:290px;
    border-radius:22px;
  }

  label{
    font-size:1.04rem !important;
  }

  input,
  select,
  textarea{
    font-size:1.06rem !important;
    line-height:1.55 !important;
    padding:16px 17px;
  }

  .footer{
    padding:14px 0;
  }

  .footer small{
    font-size:.95rem;
    line-height:1.45;
  }

  .sticky-cta{
    display:none !important;
  }
@media(max-width:760px){

  .brand-name{
    font-size:1.95rem;
  }

  .brand-sub{
    font-size:.7rem;
    letter-spacing:.13em;
  }

  .hero-content{
    padding:38px 0 42px;
  }

  .hero h1{
    font-size:clamp(4.15rem,13.2vw,5.7rem);
    line-height:.9;
    letter-spacing:-.065em;
    max-width:5.8ch;
  }
.hero h1 .gold{
    color:#e4be76;
  }

  .hero .lead,
  .hero p{
    max-width:350px;
    font-size:1.14rem !important;
    line-height:1.42 !important;
  }

  .hero-trust{
    margin-top:42px;
  }

  .ctas{
    margin-top:18px;
  }

  .btn{
    min-height:52px;
  }
@media(max-width:760px){

  .hero-trust{
    gap:0;
    border-radius:30px;
    padding:8px 0;
  }

  .trust-item{
    padding:18px 22px;
    gap:16px;
    min-height:auto;
  }

  .trust-icon{
    width:48px;
    height:48px;
    font-size:1.05rem;
    flex:0 0 48px;
  }

  .trust-item h3{
    font-size:1.02rem;
    line-height:1.18;
    margin-bottom:6px;
  }

  .trust-item p{
    font-size:.98rem !important;
    line-height:1.45 !important;
  }

  .trust-item span,
  .trust-item strong{
    font-size:1rem;
  }@media(max-width:760px){

  .hero-trust{
    gap:0;
    border-radius:30px;
    padding:8px 0;
  }

  .trust-item{
    padding:18px 22px;
    gap:16px;
    min-height:auto;
  }

  .trust-icon{
    width:48px;
    height:48px;
    font-size:1.05rem;
    flex:0 0 48px;
  }

  .trust-item h3{
    font-size:1.02rem;
    line-height:1.18;
    margin-bottom:6px;
  }

  .trust-item p{
    font-size:.98rem !important;
    line-height:1.45 !important;
  }

  .trust-item span,
  .trust-item strong{
    font-size:1rem;
  }
@media(max-width:760px){

  .hero-trust{
    width:100%;
    margin-inline:auto;
  }

  .trust-item h3{
    font-weight:750;
    letter-spacing:-.02em;
  }

  .trust-item p{
    opacity:.92;
  }
@media(max-width:760px){

  #meist .card{
    padding:36px 28px;
    border-radius:30px;
  }

  #meist h2{
    font-size:clamp(2.75rem,9.4vw,3.85rem);
    line-height:.93;
    letter-spacing:-.055em;
    max-width:15ch;
    margin-bottom:22px;
  }

  #meist .card p{
    font-size:1.14rem !important;
    line-height:1.68 !important;
    color:#5b4940;
  }

#meist .eyebrow{
  font-size:.9rem;
  letter-spacing:.24em;
  margin-bottom:18px;
}

@media(max-width:760px){

  .menu-intro{
    padding-top:44px;
    padding-inline:12px;
  }

  .menu-intro h2{
    font-size:clamp(2.6rem,9vw,3.7rem);
    line-height:.94;
    letter-spacing:-.05em;
    max-width:6.2ch;
    margin-inline:auto;
    margin-bottom:18px;
  }

  .menu-intro .lead{
    max-width:15.5ch;
    margin-inline:auto;
    font-size:1.08rem !important;
    line-height:1.64 !important;
  }

  .menu-intro .eyebrow{
    margin-bottom:18px;
    font-size:.9rem;
    letter-spacing:.18em;
  }

  .menu-intro,
  .menu-photo{
    min-height:390px;
    height:390px;
    border-radius:26px;
  }

  .menu-intro-content{
    left:18px;
    bottom:18px;
    width:calc(100% - 36px);
    padding:22px 20px;
    border-radius:22px;
  }

  .menu-intro h3{
    font-size:1.55rem;
    line-height:1.08;
    margin-bottom:10px;
  }

  .menu-intro p{
    font-size:1.02rem !important;
    line-height:1.58 !important;
  }

  .menu-intro .ctas{
    margin-top:18px;
  }

  .menu-intro .btn{
    width:100%;
    min-height:52px;
    padding:13px 16px;
    border-radius:14px;
    font-size:1rem;
  }

  .menu-list{
    margin-top:4px;
    gap:34px;
  }

  .dish{
    grid-template-columns:54px 1fr;
    column-gap:16px;
    row-gap:4px;
    padding:0 2px;
  }

  .dish::before{
    width:44px;
    height:44px;
    font-size:.82rem;
  }

  .dish h3{
    font-size:1.72rem;
    line-height:1.04;
    margin-bottom:6px;
  }

  .dish p{
    font-size:1.02rem !important;
    line-height:1.62 !important;
    color:#e6d8ca;
  }

  #peod .photo{
    min-height:430px;
    height:430px;
    border-radius:28px;
  }

  #peod .card{
    padding:30px 24px;
    border-radius:30px;
  }

  #peod .eyebrow{
    font-size:.86rem;
    letter-spacing:.22em;
    margin-bottom:18px;
  }

  #peod h2{
    font-size:clamp(2.25rem,8.4vw,3.15rem);
    line-height:.95;
    letter-spacing:-.055em;
    margin-bottom:20px;
  }

  #peod .card p{
    font-size:1.04rem !important;
    line-height:1.58 !important;
    color:#5d4b40;
  }

  .checks{
    gap:10px;
    margin-top:24px;
  }

  .check{
    min-height:58px;
    padding:15px 18px;
    border-radius:18px;
    font-size:.98rem;
    line-height:1.3;
    display:flex;
    align-items:center;
  }
@media(max-width:760px){

  .checks{
    gap:10px !important;
    margin-top:22px !important;
  }

  .check{
    min-height:0 !important;
    height:auto !important;
    padding:14px 18px !important;
    border-radius:18px !important;
    font-size:.98rem !important;
    line-height:1.28 !important;
    display:flex !important;
    align-items:center !important;
  }

  #kontakt .eyebrow{
    letter-spacing:.18em;
  }

  #kontakt h2{
    max-width:7ch;
    line-height:.92;
    margin-bottom:22px;
  }

  #kontakt .card p{
    font-size:1.06rem !important;
    line-height:1.62 !important;
  }

  .contact-list{
    gap:12px;
  }

  .contact-list a{
    min-height:auto;
    padding:16px 18px;
    border-radius:20px;
    justify-content:flex-start;
  }

  #kontakt textarea{
    min-height:150px;
  }
/* MOBIILI HERO NUPUD - parandatud suurus */

@media(max-width:760px){

  .hero .ctas{
    gap:14px !important;
    margin-top:22px !important;
    margin-bottom:0 !important;
  }

  .hero .btn{
    width:100% !important;
    min-height:62px !important;
    padding:17px 22px !important;
    border-radius:22px !important;
    font-size:1.08rem !important;
    font-weight:750 !important;
    line-height:1.2 !important;
  }

  .hero .btn.secondary,
  .hero .btn-outline,
  .hero .ctas .btn:last-child{
    min-height:58px !important;
    padding:15px 22px !important;
    border-radius:21px !important;
    background:rgba(20,12,7,.38) !important;
    backdrop-filter:blur(8px) !important;
  }
/* MOBIILI SCROLL HÜPPE FIX */

@media(max-width:760px){

  html{
    height:100%;
    overflow-x:hidden;
    -webkit-text-size-adjust:100%;
  }

  body{
    min-height:100%;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
  }

  .hero{
    min-height:100dvh;
    min-height:100vh;
    background-attachment:scroll !important;
    transform:translateZ(0);
    will-change:transform;
  }

  .hero-content{
    min-height:auto !important;
  }

  .header{
    transform:translateZ(0);
    backface-visibility:hidden;
  }

  .topbar{
    transform:translateZ(0);
    backface-visibility:hidden;
  }
/* MOBIILI HEADER JÄÄB ALLES + HÜPPE VÄHENDUS */

@media(max-width:760px){

  .topbar{
    position:relative !important;
    top:auto !important;
  }

  .header{
    position:sticky !important;
    top:0 !important;
    z-index:1200 !important;
    transform:translateZ(0);
    backface-visibility:hidden;
  }

  .hero{
    transform:none !important;
    will-change:auto !important;
    background-attachment:scroll !important;
  }

  .hero-content{
    padding-top:38px !important;
  }
/* MOBIIL: topbar + header jäävad alles */

@media(max-width:760px){

  body .topbar{
    display:block !important;
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    z-index:100000 !important;
    height:37px !important;
  }

  body .header{
    display:block !important;
    position:fixed !important;
    top:37px !important;
    left:0 !important;
    right:0 !important;
    z-index:99999 !important;
    transform:none !important;
    opacity:1 !important;
    visibility:visible !important;
  }

  body .hero{
    padding-top:115px !important;
  }

  body .navlinks{
    position:fixed !important;
    top:118px !important;
  }
@media(max-width:760px){

  .hero .lead,
  .hero p{
    max-width:370px;
    font-size:1.28rem !important;
    line-height:1.48 !important;
    font-weight:520;
  }

/* HERO NUPUD VÄIKSEMAD */

@media(max-width:760px){

  .hero .btn,
  .hero .ctas .btn{
    min-height:52px !important;
    padding:13px 18px !important;

    border-radius:18px !important;

    font-size:.92rem !important;
    font-weight:620 !important;
    letter-spacing:.01em !important;
  }

  .hero .ctas{
    gap:10px !important;
    margin-top:18px !important;
  }
@media(max-width:760px){

  .hero .ctas .btn,
  .hero .ctas .btn-outline,
  .hero .ctas .secondary{
    width:100% !important;

    height:52px !important;
    min-height:52px !important;

    padding:0 18px !important;

    border-radius:18px !important;

    font-size:.92rem !important;
    font-weight:620 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
@media(max-width:760px){

  .hero .ctas{
    gap:12px !important;
  }

  .hero .ctas .btn,
  .hero .ctas .btn-outline,
  .hero .ctas .secondary{
    height:56px !important;
    min-height:56px !important;

    padding:0 22px !important;

    border-radius:20px !important;

    font-size:.94rem !important;
    font-weight:620 !important;
    line-height:56px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    box-sizing:border-box !important;
  }

  .hero .ctas .btn-outline{
    border:1px solid rgba(255,255,255,.18) !important;
  }

}
