@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#f6edde;
  --paper:#fff8ec;
  --paper-soft:#fff4df;
  --ink:#26170e;
  --muted:#4f3c2d;
  --gold:#bd8738;
  --gold-dark:#8f6428;
  --line:#e0bd87;
  --red:#8a2117;
  --red-dark:#64150d;
  --focus:#1f5eff;
  --max:1440px;
  --shadow:0 16px 34px rgba(64,35,14,.08);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--ink);
  background: #ccc0b6;
  background: linear-gradient(90deg, rgba(204, 192, 182, 1) 0%, rgba(253, 249, 243, 1) 50%, rgba(204, 192, 182, 1) 100%);
  font-family:'Source Sans 3',system-ui,sans-serif;
  font-size:17px;
  line-height:1.5;
  border-top: 20px solid #26170e;
}

a{
  color:inherit;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}

a:hover{
  color:var(--red);
  text-decoration:underline;
}

a:focus-visible,
button:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:4px;
  border-radius:4px;
}

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

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}

.skip-link:focus{
  left:20px;
  top:20px;
  z-index:9999;

  padding:14px 18px;

  background:#fff;
  color:#000;

  border:2px solid #000;
  border-radius:6px;
}

/* HEADER */

.hero{
  width:100%;
  padding:0px 20px 0;
}

.hero-stage{
  position:relative;
  width:min(var(--max),100%);
  min-height:260px;
  margin:0 auto;
  overflow:visible;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.hero-logo{
  position:relative;
  z-index:3;
  /*width:min(560px,42vw);*/
  height:auto;
  margin-top:30px;
  padding-bottom: 32px;
}

.hero-art{
  position:absolute;
  z-index:2;
  top:-40px;
  width:min(460px,32vw);
  height:auto;
  object-fit:contain;
  pointer-events:none;
}

.hero-art-left{left:0}
.hero-art-right{right:0}

/* PAGE */

.page{
  width:min(var(--max),100%);
  margin:0 auto;
  padding:0 20px 42px;
}

.intro{
  text-align:center;
  margin:-24px auto 30px;
}

.intro p{
  margin:16px 0 54px;
  font-family:'Libre Baskerville',Georgia,serif;
  font-size:clamp(24px,2vw,36px);
  font-weight:700;
  line-height:1.35;
  letter-spacing:.005em;
}

.small-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:22px;
  color:var(--gold);
}

.small-mark i{
  width:24px;
  height:24px;
  stroke-width:1.6;
}

/* PANELS */

.quick-panel,
.product-panel,
.why,
.map-panel{
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg,rgba(255,250,241,.88),rgba(255,246,230,.72));
  box-shadow:var(--shadow);
}

/* QUICK INFO */

.quick-panel{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin:0 0 46px;
  overflow:hidden;
}

.quick-item{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:24px;
  align-items:start;
  min-height:205px;
  padding:34px;
  border-right:1px solid var(--line);
}

.quick-item:last-child{
  border-right:0;
}

.quick-icon{
  width:96px;
  height:96px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#f0dfc8;
  color:#372115;
  flex:0 0 auto;
}

.quick-icon svg{
  width:54px;
  height:54px;
  stroke-width:1.75;
}

.quick-text h2,
.map-info h2{
  margin:2px 0 16px;
  font-family:'Source Sans 3',system-ui,sans-serif;
  text-transform:uppercase;
  font-size:20px;
  font-weight:800;
  letter-spacing:.08em;
}

.quick-text p,
.map-info p{
  margin:0;
  font-size:20px;
  line-height:1.55;
}

.quick-text strong{
  display:block;
  font-family:'Libre Baskerville',Georgia,serif;
  font-size:clamp(28px,2.8vw,38px);
  font-weight:700;
  line-height:1.05;
  margin:8px 0 10px;
}

.quick-text small,
.map-info small{
  font-size:15px;
}

/* NOTICE */
.notice {
    //border-color: transparent;
    grid-template-columns: repeat(1, 1fr); // Ediiiit to 2 jakmile fotka
   // background: transparent;
}

.notice-icon {
    width: 62px;
    height: 62px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align:center;
    font-size: 32px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 18px
}

.notice .quick-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    //border-color: transparent;
}

 
.notice .quick-item.alert .quick-icon {
    background: white;
    border: 5px solid var(--red);
}
.notice .quick-item.alert .quick-icon svg{
    stroke: var(--red);
}

/* BUTTON */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:18px;
  padding:14px 20px;
  border-radius:6px;
  background:linear-gradient(180deg,#a52d22,#76180f);
  color:#fff;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-decoration:none;
 
 
}

.btn:hover{
  color:#fff;
  text-decoration:none;
 
  background:#a52d22; 
  text-decoration:underline;
 
}

.btn span{
  font-size:20px;
  line-height:0;
}

/* SECTIONS */

.section{
  margin:0 0 42px;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:96px 0 28px;
  font-family:'Libre Baskerville',Georgia,serif;
  font-size:clamp(24px,3vw,32px);
  font-weight:700;
  letter-spacing:.025em;
  text-transform:uppercase;
  text-align:center;
}

.section-title::before,
.section-title::after{
  content:'';
  display:block;
  width:72px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}

.section-title::before{
  background:linear-gradient(90deg,transparent,var(--gold-dark),var(--gold));
}

.section-title::after{
  background:linear-gradient(90deg,var(--gold),var(--gold-dark),transparent);
}

/* PRODUCTS */

.product-panel{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
}

.product-card{
  min-height:274px;
  padding:34px 28px 30px;
  text-align:center;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

.product-card:last-child{
  border-right:0;
}

.product-card img{
  width:100%;
  height:132px;
  object-fit:contain;
  object-position:center;
  margin:0 0 24px;
}

.product-panel-secondary .product-card img{
  height:124px;
}

.product-card h3{
  min-height:20px;
  margin:0 0 10px;
  font-family:'Libre Baskerville',Georgia,serif;
  font-size:20px;
  font-weight:700;
  line-height:1.25;
  text-transform:none;
}

.product-card p{
  margin:0;
  color:#2f2118;
  font-size:15px;
  line-height:1.45;
}

/* WHY */

.why{
  display:grid;
  grid-template-columns:1.05fr repeat(5,1fr);
  align-items:stretch;
  margin-bottom:34px;
  overflow:hidden;
}

.why h2{
  margin:0;
  padding:26px 32px;
  font-family:'Libre Baskerville',Georgia,serif;
  font-size:clamp(28px,2.8vw,38px);
  font-weight:700;
  line-height:1.15;
  text-transform:none;
  border-right:1px solid var(--line);
}

.why-box{
  min-height:112px;
  padding:22px 18px;
  text-align:center;
  border-right:1px solid var(--line);
}

.why-box:last-child{
  border-right:0;
}

.why-icon{
  display:grid;
  place-items:center;
  margin:0 auto 10px;
  color:var(--gold-dark);
}

.why-icon i{
  width:38px;
  height:38px;
  stroke-width:1.75;
}

.why-box p{
  margin:0;
  font-size:16px;
  line-height:1.35;
}

/* MAP */

.map-panel{
  display:grid;
  grid-template-columns:330px 1fr;
  overflow:hidden;
  margin-bottom:0;
}

.map-info{
  padding:34px 46px;
}

.map-img{
  min-height:214px;
  overflow:hidden;
  background:#eee;
  text-decoration:none;
}

.map-img:hover img{
  opacity:1;
  transform:scale(1.025);
}

.map-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.92;
  transition:opacity .2s ease,transform .25s ease;
}

/* FOOTER */

.footer{
  background:radial-gradient(circle at 50% 0,#442515 0,#2b160c 58%,#170c07 100%);
  color:#f2dfbf;
  padding:30px 20px 18px;
}

.footer a:hover{
  color:#ffd59b;
}

.footer-inner{
  width:min(var(--max),100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.footer-cell{
  position:relative;
  min-height:100px;
  padding:0 28px;
  border-right:1px solid rgba(213,160,85,.38);
}

.footer-cell:first-child{
  padding-left:0;
}

.footer-cell:last-child{
  border-right:0;
  padding-right:0;
}

.footer-icon{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  margin:0 0 8px;
  color:#d39a4a;
}

.footer-icon i{
  width:34px;
  height:34px;
  stroke-width:1.75;
}

.footer-cell strong{
  display:block;
  color:#d9a65d;
  text-transform:uppercase;
  font-family:'Source Sans 3',system-ui,sans-serif;
  font-size:15px;
  font-weight:800;
  letter-spacing:.06em;
}

.footer-cell p{
  margin:8px 0 0;
  font-size:15px;
  line-height:1.45;
  color:#f6e7cf;
}

.copy{
  width:min(var(--max),100%);
  margin:20px auto 0;
  text-align:center;
  color:#d5b992;
  font-size:14px;
}



/* INTERACTION POLISH */
.quick-item,
.product-card{
  transition:
    transform .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

@media (hover:hover) and (pointer:fine){
  .quick-item:hover{
    transform:translateY(-4px);
    background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,248,236,.82));
    box-shadow:0 18px 36px rgba(64,35,14,.08);
  }

  .product-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.55);
  }
}

.btn:active{
  transform:translateY(1px) scale(.985);
}

.notice .quick-item.alert{
  justify-content:center;
}

.notice .quick-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* MOBILE CTA */
.mobile-cta{
  display:none;
}

@media (max-width:768px){
  body{
    padding-bottom:84px;
  }

  .mobile-cta{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    z-index:999;
    display:grid;
    grid-template-columns:1fr 1fr;
    padding-bottom:env(safe-area-inset-bottom);
    background:rgba(34,19,11,.96);
    backdrop-filter:blur(12px);
    border-top:1px solid rgba(255,255,255,.08);
  }

  .mobile-cta a{
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#f3dfbf;
    font-weight:800;
    font-size:15px;
    text-decoration:none;
    transition:background .18s ease,color .18s ease,transform .12s ease;
  }

  .mobile-cta a:first-child{
    border-right:1px solid rgba(255,255,255,.08);
  }

  .mobile-cta a:hover,
  .mobile-cta a:focus-visible{
    color:#fff;
    background:rgba(255,255,255,.08);
  }

  .mobile-cta a:active{
    transform:scale(.98);
  }

  .mobile-cta svg{
    width:20px;
    height:20px;
    stroke-width:2;
  }
}

/* ANIMATIONS */

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .55s ease,transform .55s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }
}

/* RESPONSIVE */

@media (max-width:1050px){

  .hero-stage{
    min-height:230px;
  }

  /*.hero-logo{
    width:min(480px,48vw);
  }*/

  .hero-art{
    width:min(360px,31vw);
    top:48px;
  }

  .intro{
    margin: 0px auto 28px;
  }

  .quick-item{
    grid-template-columns:82px 1fr;
    padding:30px 26px;
    gap:20px;
  }

  .quick-icon{
    width:82px;
    height:82px;
  }

  .quick-icon i{
    width:46px;
    height:46px;
  }
  
    .quick-panel,
  .product-panel,
  .why,
  .map-panel{
    grid-template-columns:1fr;
  }

  .quick-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:18px;
    padding:30px 24px;
    border-right:0;
    border-bottom:1px solid var(--line);
  }

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

  .quick-icon{
    margin:0 auto;
  }

  .quick-text{
    width:100%;
  }

  .product-card,
  .why h2,
  .why-box{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .product-card:last-child,
  .why-box:last-child{
    border-bottom:0;
  }

  .product-card{
    min-height:auto;
  }

  .product-card img{
    height:150px;
  }
}

@media (max-width:860px){

  .hero{
    padding:18px 14px 0;
  }

  .hero-stage{
    min-height:auto;
    display:flex;
    justify-content:center;
  }

  .hero-art{
    display:none;
  }

  /*.hero-logo{
    width:min(520px,92vw);
    margin-top:0;
  }*/

  .intro{
    margin:18px auto 28px;
  }



  .why h2{
    text-align:center;
    border-right:0;
  }

  .footer-inner{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }

  .footer-cell{
    border-right:0;
    padding:0;
  }
}

@media (max-width:560px){

  .page{
    padding:0 12px 30px;
  }

  .quick-item{
    padding:26px 18px;
  }

  .quick-icon{
    width:78px;
    height:78px;
  }

  .quick-icon i{
    width:42px;
    height:42px;
  }

  .section-title{
    gap:12px;
  }

  .section-title::before,
  .section-title::after{
    width:34px;
  }

  .map-info{
    padding:28px 24px;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

.quick-text a:not(.btn),
.footer-cell a{
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}

.quick-text a:not(.btn):hover,
.footer-cell a:hover{
  text-decoration-thickness:2px;
}
