
:root{
  --bg:#f4ede4;
  --surface:#fffdfa;
  --surface-2:#f6efe7;
  --text:#2c241e;
  --muted:#6c5f54;
  --line:#dccdbf;
  --brand:#7a4a2b;
  --brand-dark:#5f3820;
  --shadow:0 16px 40px rgba(0,0,0,.08);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.65) 0, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #efe5d8 0%, #f7f2eb 260px, var(--bg) 100%);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(43,36,31,.92);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
  min-width:0;
}
.brand img{
  width:148px;
  max-width:32vw;
  background:#fff;
  border-radius:12px;
  padding:6px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.brand-copy{
  min-width:0;
}
.brand-copy strong{
  display:block;
  font-size:1.08rem;
  letter-spacing:.2px;
}
.brand-copy span{
  display:block;
  color:#d7c9bb;
  font-size:.84rem;
}
.menu{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
  white-space:nowrap;
}
.menu a{
  text-decoration:none;
  color:#fff;
  font-size:.9rem;
}
.menu a:hover{color:#f1dcc8}
.menu-toggle{display:none}
.menu-button{display:none}

.hero{
  padding:48px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
}
.hero-copy{
  padding:20px 0;
}
.eyebrow{
  margin:0 0 10px;
  color:var(--brand);
  font-size:.8rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:700;
}
h1{
  margin:0 0 18px;
  font-size:clamp(2.3rem, 5vw, 4.1rem);
  line-height:1.04;
  letter-spacing:-.02em;
}
h2{
  margin:0 0 14px;
  font-size:clamp(1.6rem, 3vw, 2.3rem);
  line-height:1.15;
}
h3{
  margin:0 0 10px;
  font-size:1.08rem;
}
.lead{
  margin:0;
  max-width:62ch;
  color:var(--muted);
  font-size:1.08rem;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0 28px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}
.button.primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 12px 24px rgba(122,74,43,.22);
}
.button.primary:hover{background:var(--brand-dark)}
.button.secondary{
  background:#ede2d5;
  color:var(--brand-dark);
}
.button.secondary:hover{background:#e3d3c2}
.hero-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.fact{
  padding:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  border-radius:18px;
}
.fact strong{
  display:block;
  font-size:1rem;
  margin-bottom:4px;
}
.fact span{
  display:block;
  color:var(--muted);
  font-size:.92rem;
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-visual{
  position:relative;
  overflow:hidden;
  min-height:560px;
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-badge{
  position:absolute;
  right:18px;
  bottom:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--brand-dark);
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}
.intro-strip{
  padding:10px 0 16px;
}
.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.intro-text,
.intro-image{
  overflow:hidden;
}
.intro-text{
  padding:30px;
}
.intro-text p{
  margin:0;
  color:var(--muted);
}
.intro-image img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
}
.section{
  padding:52px 0;
}
.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,0));
  border-top:1px solid rgba(220,205,191,.7);
  border-bottom:1px solid rgba(220,205,191,.7);
}
.section-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  margin-bottom:20px;
}
.section-note{
  margin:0;
  max-width:42ch;
  color:var(--muted);
  font-size:.95rem;
}
.cards.four{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.category{
  overflow:hidden;
}

.category-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}
.category-card-link:hover{
  transform:translateY(-2px);
}
.category-image{
  aspect-ratio:4/3;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#f3ede4;
}
.category-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:14px;
}
.category-body{
  padding:20px;
}
.category-body p{
  margin:0 0 12px;
  color:var(--muted);
}
.category-link{
  color:var(--brand);
  font-weight:700;
  text-decoration:none;
}
.category-link:hover{text-decoration:underline}
.story-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
}
.story-copy p{
  color:var(--muted);
}
.contact-highlight{
  padding:26px;
}
.contact-highlight ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.contact-highlight li + li{
  margin-top:10px;
}
.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.contact-copy p{
  color:var(--muted);
}
.contact-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.contact-card{
  padding:22px;
}
.contact-card p{
  margin:.45rem 0;
  color:var(--muted);
}
.page-hero{
  padding:36px 0 18px;
}
.page-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:center;
}
.page-hero-copy{
  padding:6px 0;
}
.page-hero-visual{
  overflow:hidden;
  min-height:360px;
}
.page-hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.product-card{
  overflow:hidden;
}
.product-card-media{
  aspect-ratio: 4/3;
  background:#f3ede4;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-card-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
}
.product-card-body{
  padding:18px 18px 20px;
}
.price{
  color:var(--brand-dark);
  font-weight:700;
  margin:0 0 8px;
}
.meta{
  color:var(--muted);
  font-size:.94rem;
}
.text-card{
  padding:26px;
}
.text-card p{
  color:var(--muted);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.gallery-tile{
  padding:18px;
  text-align:center;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.gallery-tile img{
  max-height:140px;
  object-fit:contain;
  margin:0 auto 14px;
}
.site-footer{
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.32);
}
.footer-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.footer-inner p{
  margin:0;
  color:var(--muted);
}
.footer-inner a{
  text-decoration:none;
  color:var(--brand);
  font-weight:700;
}

@media (max-width: 1080px){
  .hero-grid,
  .intro-grid,
  .story-grid,
  .contact-box,
  .page-hero-grid{
    grid-template-columns:1fr;
  }
  .cards.four{
    grid-template-columns:repeat(2,1fr);
  }
  .contact-cards,
  .product-grid{
    grid-template-columns:1fr 1fr;
  }
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .hero-visual{
    min-height:440px;
  }
}
@media (max-width: 760px){
  .nav{
    min-height:74px;
    flex-wrap:wrap;
    padding:12px 0;
  }
  .brand img{
    width:136px;
    max-width:44vw;
  }
  .brand-copy strong{
    font-size:1rem;
  }
  .brand-copy span{
    font-size:.8rem;
  }
  .menu-button{
    display:flex;
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:12px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    margin-left:auto;
  }
  .menu-button span{
    width:18px;
    height:2px;
    background:#fff;
    display:block;
    border-radius:999px;
  }
  .menu{
    display:none;
    width:100%;
    padding:6px 0 8px;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .menu-toggle:checked ~ .menu{
    display:flex;
  }
  .hero,
  .page-hero{
    padding-top:28px;
  }
  h1{
    font-size:clamp(2rem, 9vw, 3rem);
  }
  .hero-facts{
    grid-template-columns:1fr;
  }
  .cards.four,
  .contact-cards,
  .product-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }
  .section-head{
    grid-template-columns:1fr;
  }
  .footer-inner{
    min-height:auto;
    padding:18px 0;
    flex-direction:column;
    align-items:flex-start;
  }
}


.partner-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.partner-card{
  padding:24px;
}
.partner-card h3{
  margin:0 0 8px;
}
.partner-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight:700;
}
.partner-link:hover{
  background:var(--brand-dark);
}
@media (max-width:1080px){
  .partner-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width:760px){
  .partner-grid{
    grid-template-columns:1fr;
  }
}


.partner-card h3{
  font-size:1.22rem;
}


.zoomable-card{
  cursor: zoom-in;
}
.zoomable-card:focus-visible{
  outline: 3px solid rgba(122,74,43,.45);
  outline-offset: 3px;
}
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(20,16,13,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}
.lightbox.is-open{
  display: flex;
}
.lightbox-inner{
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image{
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: #2c241e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}
.lightbox-close:hover{
  background: #fff;
}


.gallery-only-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.gallery-image-card{
  padding:0;
  overflow:hidden;
  cursor:zoom-in;
}
.gallery-image-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}
.gallery-image-card:focus-visible{
  outline:3px solid rgba(122,74,43,.45);
  outline-offset:3px;
}
@media (max-width:1080px){
  .gallery-only-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width:760px){
  .gallery-only-grid{
    grid-template-columns:1fr;
  }
}


/* Mobile + tablet optimalizálás */
html{
  -webkit-text-size-adjust:100%;
}
body{
  overflow-x:hidden;
}
img{
  height:auto;
}
.button{
  min-height:48px;
}
@media (max-width: 980px){
  .container{
    width:min(1180px, calc(100% - 28px));
  }
  .nav{
    min-height:74px;
    flex-wrap:wrap;
    padding:12px 0;
  }
  .brand{
    gap:10px;
    max-width:calc(100% - 56px);
  }
  .brand img{
    width:132px;
    max-width:40vw;
  }
  .brand-copy strong{
    font-size:1rem;
  }
  .brand-copy span{
    font-size:.78rem;
    line-height:1.3;
  }
  .menu-button{
    display:flex;
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:12px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    margin-left:auto;
  }
  .menu-button span{
    width:18px;
    height:2px;
    background:#fff;
    display:block;
    border-radius:999px;
  }
  .menu{
    display:none;
    width:100%;
    padding:10px 0 6px;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .menu-toggle:checked ~ .menu{
    display:flex;
  }
  .hero,
  .page-hero{
    padding-top:28px;
  }
  .hero-grid,
  .intro-grid,
  .story-grid,
  .contact-box,
  .page-hero-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .cards.four{
    grid-template-columns:repeat(2,1fr);
  }
  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .gallery-grid,
  .gallery-only-grid,
  .partner-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .hero-visual{
    min-height:420px;
  }
  .page-hero-visual{
    min-height:320px;
  }
}
@media (max-width: 760px){
  .container{
    width:min(1180px, calc(100% - 22px));
  }
  h1{
    font-size:clamp(2rem, 9vw, 3rem);
  }
  h2{
    font-size:clamp(1.45rem, 6vw, 2rem);
  }
  .hero-copy,
  .page-hero-copy{
    padding:0;
  }
  .intro-text,
  .contact-card,
  .text-card,
  .contact-highlight,
  .category-body,
  .product-card-body{
    padding:18px;
  }
  .hero-facts,
  .cards.four,
  .contact-cards,
  .product-grid,
  .gallery-grid,
  .gallery-only-grid,
  .partner-grid{
    grid-template-columns:1fr;
  }
  .section{
    padding:38px 0;
  }
  .section-head{
    grid-template-columns:1fr;
    gap:10px;
  }
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
    margin:20px 0 24px;
  }
  .hero-actions .button{
    width:100%;
  }
  .hero-visual{
    min-height:300px;
  }
  .page-hero-visual,
  .intro-image img{
    min-height:220px;
  }
  .product-card-media img{
    padding:12px;
  }
  .gallery-image-card img{
    height:240px;
  }
  .lightbox{
    padding:14px;
  }
  .lightbox-image{
    max-height:82vh;
    border-radius:14px;
  }
  .lightbox-close{
    top:12px;
    right:12px;
    width:42px;
    height:42px;
  }
  .footer-inner{
    min-height:auto;
    padding:18px 0;
    flex-direction:column;
    align-items:flex-start;
  }
}
