/* =====================================================================
   Honighäus'l am Viktualienmarkt – gemeinsames Stylesheet
   ===================================================================== */

:root {
  --honig-braun: #5C2E00;
  --wachs-gelb: #F5CD5F;
  --waben-weiss: #FFFDF5;
  --markt-gruen: #7A9E76;
  --display: 'Playfair Display', serif;
  --body: 'Lato', sans-serif;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--honig-braun);
  background: var(--waben-weiss);
  line-height: 1.6;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }

/* ---------------------------------------------------------------------
   SPRACHUMSCHALTUNG
   Robust: die SICHTBARE Sprache wird nie per display-Regel angefasst,
   damit ihr natürliches Layout (inline-block, flex, grid …) erhalten
   bleibt. Nur die jeweils inaktive Sprache wird ausgeblendet.
   Standard = Deutsch; bei <html class="lang-en"> = Englisch.
   --------------------------------------------------------------------- */
html:not(.lang-en) [data-en],
html.lang-en        [data-de] { display: none !important; }

section { scroll-margin-top: 110px; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================ INFO-LEISTE ============ */
.topbar {
  background: var(--honig-braun);
  color: var(--waben-weiss);
  font-size: 0.8rem;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
}
.topbar .info { display: flex; gap: 24px; align-items: center; }
.topbar .info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .divider { opacity: 0.35; }
.topbar .info a { text-decoration: none; }
.topbar .info a:hover { color: var(--wachs-gelb); }
.topbar .lang { display: flex; gap: 3px; font-weight: 700; align-items: center; }
.topbar .lang button {
  background: none; border: none; cursor: pointer;
  font-family: var(--body); font-weight: 700; font-size: 0.8rem;
  padding: 3px 9px; border-radius: 50px; transition: all 0.25s;
}
.topbar .lang .active { background: var(--wachs-gelb); color: var(--honig-braun); }
.topbar .lang .inactive { color: var(--wachs-gelb); opacity: 0.6; }
.topbar .lang .inactive:hover { opacity: 1; }

/* ============================================ HAUPTNAVIGATION ======== */
.mainnav {
  background: var(--waben-weiss);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
  border-bottom: 1px solid #ece3cc;
  position: sticky; top: 0; z-index: 100;
}
.logo-link { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-link img { height: 56px; width: auto; display: block; }
.logo-text {
  font-family: var(--display); font-size: 1.55rem; font-weight: 700;
  color: var(--honig-braun); line-height: 1;
}
.logo-text small {
  display: block; font-family: var(--body); font-weight: 400;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--honig-braun); margin-top: 4px;
}
.mainnav ul { list-style: none; display: flex; gap: 6px; align-items: center; }
.mainnav a {
  color: var(--honig-braun); text-decoration: none;
  font-size: 0.93rem; font-weight: 500;
  padding: 10px 18px; border-radius: 50px; transition: all 0.25s;
}
.mainnav a:not(.shop):hover { background: #fbf3dd; }
.mainnav a:not(.shop).current { color: var(--honig-braun); font-weight: 700; background: #fbf3dd; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.shop {
  border: 2px solid var(--markt-gruen); color: var(--markt-gruen) !important;
  padding: 9px 22px; border-radius: 50px; font-weight: 700;
  font-size: 0.88rem; transition: all 0.25s; white-space: nowrap;
  text-decoration: none;
}
.shop:hover { background: var(--markt-gruen); color: var(--waben-weiss) !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--honig-braun); border-radius: 2px; transition: all 0.3s; }

/* mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 78%; max-width: 320px;
  background: var(--waben-weiss);
  z-index: 200;
  padding: 90px 32px 32px;
  flex-direction: column; gap: 8px;
  box-shadow: -10px 0 40px rgba(92,46,0,0.18);
  transform: translateX(100%); transition: transform 0.3s;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { text-decoration: none; color: var(--honig-braun); font-size: 1.1rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid #f0e8d3; }
.mobile-menu a.current { font-weight: 700; }
.mobile-menu .shop { border: 2px solid var(--markt-gruen); text-align: center; margin-top: 14px; }
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(58,28,0,0.45); z-index: 150; }
.menu-overlay.open { display: block; }
.menu-close { position: absolute; top: 26px; right: 26px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--honig-braun); line-height: 1; }

/* ============================================ BUTTONS =============== */
.btn { text-decoration: none; padding: 15px 34px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.28s; display: inline-block; cursor: pointer; border: none; }
.btn-primary { background: var(--wachs-gelb); color: var(--honig-braun); box-shadow: 0 8px 24px rgba(245,205,95,0.35); }
.btn-primary:hover { background: #ffd97a; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,205,95,0.45); }
.btn-secondary { background: rgba(255,253,245,0.12); color: var(--waben-weiss); border: 2px solid rgba(255,253,245,0.55); backdrop-filter: blur(4px); }
.btn-secondary:hover { background: var(--waben-weiss); color: var(--honig-braun); border-color: var(--waben-weiss); }
.btn-brown { background: var(--honig-braun); color: var(--waben-weiss); }
.btn-brown:hover { background: #7a3d00; transform: translateY(-2px); }

/* ============================================ HERO (Startseite) ===== */
.hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  background-image:
    linear-gradient(to right, rgba(58,28,0,0.78) 0%, rgba(70,34,0,0.55) 45%, rgba(92,46,0,0.18) 80%, rgba(92,46,0,0.05) 100%),
    url('../img/marktstand.png');
  background-size: cover; background-position: center 30%;
}
.hero-content { max-width: 580px; }
.hero .eyebrow {
  display: inline-block; font-family: var(--body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--wachs-gelb); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--display); font-size: 3.4rem; font-weight: 600;
  line-height: 1.12; color: var(--waben-weiss); margin-bottom: 22px;
}
.hero p { font-size: 1.15rem; line-height: 1.65; color: #f5ecdb; margin-bottom: 38px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================ SEITEN-HERO (Unterseiten) */
.page-hero {
  background:
    linear-gradient(rgba(58,28,0,0.82), rgba(58,28,0,0.82)),
    url('../img/marktstand.png');
  background-size: cover; background-position: center;
  color: var(--waben-weiss);
  padding: 78px 0 64px;
  text-align: center;
}
.page-hero .breadcrumb { font-size: 0.82rem; letter-spacing: 0.04em; color: #e7d4b6; margin-bottom: 18px; }
.page-hero .breadcrumb a { color: var(--wachs-gelb); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span { opacity: 0.6; margin: 0 8px; }
.page-hero .eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wachs-gelb); margin-bottom: 16px; }
.page-hero h1 { font-family: var(--display); font-size: 2.9rem; font-weight: 600; line-height: 1.15; margin-bottom: 18px; }
.page-hero p { font-size: 1.12rem; color: #f1e4d0; max-width: 620px; margin: 0 auto; line-height: 1.6; }

/* ============================================ TRUST-LEISTE ========== */
.trust { background: var(--honig-braun); padding: 36px 0; }
.trust .container { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--waben-weiss); flex: 1; min-width: 200px; }
.trust-item .icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(245,205,95,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-item .icon svg { width: 24px; height: 24px; stroke: var(--wachs-gelb); fill: none; stroke-width: 1.8; }
.trust-item .txt { font-size: 0.95rem; font-weight: 500; line-height: 1.3; }
.trust-item .txt strong { display: block; font-family: var(--display); font-size: 1.15rem; font-weight: 600; color: var(--wachs-gelb); }

/* ============================================ SECTION-BASIS ========= */
.section-pad { padding: 96px 0; }
.eyebrow-dark { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--markt-gruen); margin-bottom: 16px; }
h2.section-title { font-family: var(--display); font-size: 2.5rem; font-weight: 600; line-height: 1.2; margin-bottom: 18px; }
.section-lead { font-size: 1.1rem; color: #7d6a52; max-width: 560px; }
.head-center { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.head-center .section-lead { margin: 0 auto; }

/* ============================================ PROSE / TEXTSEITEN ==== */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--display); font-size: 1.9rem; font-weight: 600; margin: 44px 0 16px; }
.prose h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 600; margin: 30px 0 10px; }
.prose p { color: #6d5c45; font-size: 1.06rem; margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 22px; color: #6d5c45; }
.prose li { margin-bottom: 8px; }
.prose a.textlink { color: var(--markt-gruen); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--wachs-gelb); padding-bottom: 1px; }
.prose a.textlink:hover { color: var(--honig-braun); }

/* ============================================ ÜBER UNS (Teaser) ===== */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.about-text p { margin-bottom: 18px; color: #6d5c45; font-size: 1.05rem; }
.about-text .signature { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--honig-braun); margin-top: 10px; }
.about-text .signature span { display: block; font-family: var(--body); font-style: normal; font-size: 0.85rem; color: var(--markt-gruen); margin-top: 2px; letter-spacing: 0.05em; }
.about-text a.textlink { color: var(--markt-gruen); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--wachs-gelb); padding-bottom: 2px; transition: color 0.2s; }
.about-text a.textlink:hover { color: var(--honig-braun); }
.about-img { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 18px 50px rgba(92,46,0,0.18);
  background: linear-gradient(135deg, #f3e7c7, #e9d9b0); display: flex; align-items: center; justify-content: center; color: #b89a5e; font-style: italic; text-align: center; padding: 20px; }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Werte-Raster (Über uns) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.value-card { background: var(--waben-weiss); border: 1px solid #f0e6cf; border-radius: 20px; padding: 32px 28px; }
.value-card .picon { width: 56px; height: 56px; margin-bottom: 18px; background: rgba(245,205,95,0.22); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.value-card .picon svg { width: 28px; height: 28px; stroke: var(--honig-braun); fill: none; stroke-width: 1.6; }
.value-card h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 0.97rem; color: #7d6a52; }

/* ============================================ PRODUKTE ============= */
.products { background: linear-gradient(180deg, #fdf8ec, var(--waben-weiss)); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--waben-weiss); border-radius: 20px; padding: 34px 28px;
  border: 1px solid #f0e6cf; transition: all 0.3s; text-align: center;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(92,46,0,0.12); border-color: var(--wachs-gelb); }
.product-card .picon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(245,205,95,0.22); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.product-card .picon svg { width: 32px; height: 32px; stroke: var(--honig-braun); fill: none; stroke-width: 1.6; }
.product-card h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.product-card p { font-size: 0.95rem; color: #7d6a52; line-height: 1.55; }

/* ---------- Flip-Karten (Startseite) ---------- */
.product-card.flip {
  background: none; border: none; padding: 0;
  perspective: 1400px; cursor: pointer; min-height: 320px;
}
.product-card.flip:hover { transform: translateY(-6px); box-shadow: none; }
.product-card.flip .card-inner {
  position: relative; width: 100%; height: 100%; min-height: inherit;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
}
.product-card.flip.is-flipped .card-inner { transform: rotateY(180deg); }
.product-card.flip .card-front,
.product-card.flip .card-back {
  position: absolute; inset: 0; height: 100%; box-sizing: border-box;
  border-radius: 20px; border: 1px solid #f0e6cf;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(92, 46, 0, 0.07);
}
.product-card.flip .card-front {
  position: relative;
  background: var(--waben-weiss); padding: 34px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.product-card.flip .card-back {
  transform: rotateY(180deg); overflow: hidden; background: #fff;
}
.product-card.flip .card-back img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.product-card.flip .flip-cue {
  margin-top: 16px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--markt-gruen);
}
.product-card.flip .back-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px; font-family: var(--display); font-size: 1.15rem; color: #fff;
  background: linear-gradient(180deg, rgba(60,32,4,0) 0%, rgba(60,32,4,0.78) 100%);
}
.cta-center { text-align: center; margin-top: 52px; }

/* Produkt-Detailreihen (Produktseite) */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.product-detail:last-child { margin-bottom: 0; }
.product-detail.reverse .pd-media { order: 2; }
.pd-media { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 24px; background: linear-gradient(135deg, #f3e7c7, #e9d9b0); display: flex; align-items: center; justify-content: center; color: #b89a5e; font-style: italic; text-align: center; padding: 20px; box-shadow: 0 14px 40px rgba(92,46,0,0.12); }
.pd-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-text .eyebrow-dark { margin-bottom: 12px; }
.pd-text h3 { font-family: var(--display); font-size: 1.7rem; font-weight: 600; margin-bottom: 14px; }
.pd-text p { color: #6d5c45; font-size: 1.04rem; margin-bottom: 16px; }
.pd-text ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pd-text li { display: flex; gap: 10px; align-items: flex-start; color: #6d5c45; font-size: 1rem; }
.pd-text li::before { content: ""; width: 9px; height: 9px; margin-top: 8px; flex-shrink: 0; background: var(--wachs-gelb); border-radius: 50%; box-shadow: 0 0 0 3px rgba(245,205,95,0.25); }

/* ============================================ ERLEBNIS / USP ======= */
.experience { background: var(--markt-gruen); color: var(--waben-weiss); }
.experience .head-center .section-lead { color: #eef3ec; }
.experience .eyebrow-dark { color: var(--wachs-gelb); }
.experience h2.section-title { color: var(--waben-weiss); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.exp-item { text-align: center; padding: 0 10px; }
.exp-item .enum { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--wachs-gelb); opacity: 0.55; margin-bottom: 8px; display: block; }
.exp-item h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.exp-item p { font-size: 1rem; color: #eef3ec; line-height: 1.6; }

/* ============================================ STANDORT / KONTAKT === */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-info h2.section-title { margin-bottom: 14px; }
.location-info > p { color: #6d5c45; font-size: 1.05rem; margin-bottom: 28px; max-width: 460px; }
.opening { background: #fdf8ec; border-radius: 18px; padding: 26px 30px; margin-bottom: 28px; border: 1px solid #f0e6cf; }
.opening h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 16px; font-weight: 600; }
.opening table { width: 100%; border-collapse: collapse; }
.opening td { padding: 8px 0; font-size: 0.98rem; }
.opening td:first-child { color: #6d5c45; }
.opening td.time { text-align: right; font-weight: 700; color: var(--honig-braun); }
.opening tr:not(:last-child) td { border-bottom: 1px solid #f0e6cf; }
.opening .closed { color: var(--markt-gruen) !important; font-weight: 700; }
.addr { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
.addr svg { width: 22px; height: 22px; stroke: var(--markt-gruen); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.addr .a-txt { font-size: 1.02rem; line-height: 1.5; }
.addr .a-txt a { color: var(--markt-gruen); text-decoration: none; font-weight: 700; }
.map-embed { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 50px rgba(92,46,0,0.16); min-height: 420px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Lageplan / Marktgrundriss-Platzhalter */
.lageplan { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 24px; background: linear-gradient(135deg, #f3e7c7, #e9d9b0); display: flex; align-items: center; justify-content: center; color: #b89a5e; font-style: italic; text-align: center; padding: 24px; box-shadow: 0 14px 40px rgba(92,46,0,0.12); }
.lageplan img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Anfahrt-Karten */
.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.travel-card { background: var(--waben-weiss); border: 1px solid #f0e6cf; border-radius: 18px; padding: 26px; }
.travel-card h4 { font-family: var(--display); font-size: 1.15rem; margin-bottom: 8px; font-weight: 600; }
.travel-card p { color: #7d6a52; font-size: 0.97rem; }

/* Kontaktformular */
.contact-form { background: #fdf8ec; border: 1px solid #f0e6cf; border-radius: 24px; padding: 38px; }
.contact-form h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.contact-form .form-intro { color: #7d6a52; margin-bottom: 24px; font-size: 0.98rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #e3d6ba; border-radius: 12px;
  font-family: var(--body); font-size: 0.97rem; color: var(--honig-braun); background: var(--waben-weiss);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--markt-gruen); box-shadow: 0 0 0 3px rgba(122,158,118,0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: #9b8a72; margin-top: 14px; }

/* ============================================ SHOP-TEASER ========== */
.shop-teaser { background: var(--honig-braun); color: var(--waben-weiss); text-align: center; }
.shop-teaser h2 { font-family: var(--display); font-size: 2.4rem; font-weight: 600; margin-bottom: 18px; }
.shop-teaser p { font-size: 1.1rem; color: #f0e3cf; max-width: 540px; margin: 0 auto 34px; line-height: 1.6; }

/* ============================================ FAQ ================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid #f0e6cf; border-radius: 16px; padding: 22px 26px; margin-bottom: 16px; background: var(--waben-weiss); }
.faq-item h3 { font-family: var(--display); font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: #6d5c45; font-size: 1rem; }

/* ============================================ FOOTER =============== */
footer { background: #3a1c00; color: #e8d9c2; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo-text { color: var(--waben-weiss); margin-bottom: 14px; }
.footer-brand .logo-text small { color: var(--wachs-gelb); }
.footer-brand p { font-size: 0.92rem; color: #c2ad92; line-height: 1.6; max-width: 280px; }
.footer-col h5 { font-family: var(--display); font-size: 1.05rem; color: var(--wachs-gelb); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #e8d9c2; text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--wachs-gelb); }
.footer-col .line { font-size: 0.92rem; color: #c2ad92; margin-bottom: 11px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(232,217,194,0.15); padding: 24px 0; text-align: center; font-size: 0.85rem; color: #a8916f; }

/* ============================================ RESPONSIVE ========== */
@media (max-width: 940px) {
  .mainnav ul { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-right .shop { display: none; }
  .hero h1 { font-size: 2.7rem; }
  .page-hero h1 { font-size: 2.3rem; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 4/5; width: 100%; max-width: 420px; justify-self: center; }
  .about-img img { object-position: center top; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-detail.reverse .pd-media { order: 0; }
  .exp-grid { grid-template-columns: 1fr; gap: 30px; max-width: 420px; margin: 0 auto; }
  .location { grid-template-columns: 1fr; gap: 40px; }
  .travel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .topbar { flex-direction: column; gap: 6px; padding: 8px 20px; font-size: 0.72rem; }
  .topbar .info { flex-wrap: wrap; justify-content: center; gap: 4px 14px; }
  .mainnav { padding: 0 20px; height: 78px; }
  .container { padding: 0 24px; }
  .logo-link img { height: 44px; }
  .logo-text { font-size: 1.25rem; }
  .hero { min-height: 540px; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1.02rem; }
  .hero-buttons { flex-direction: column; }
  .btn { text-align: center; }
  .section-pad { padding: 64px 0; }
  h2.section-title { font-size: 2rem; }
  .page-hero h1 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust .container { gap: 20px; }
  .trust-item { min-width: 100%; }
  .contact-form { padding: 26px; }
}
