*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --wine: #6b1e1e;
  --wine-dk: #4a1515;
  --wine-lt: #8c2e2e;
  --gold: #c9a275;
  --gold-lt: #d4aa55;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-500: #8a8a8a;
  --gray-700: #444444;
  --gray-900: #1a1a1a;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--gray-100);
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 15px;
}

/* ── BANNER ── */
.banner {
  background: var(--gold);
  text-align: center;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.banner-btn:hover {
  background: var(--gray-100);
}

.banner-btn svg {
  flex-shrink: 0;
}

/* ── HEADER ── */
header {
  background: var(--white);
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--gray-200);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

header img.logo {
  height: 100px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.header-text {
  text-align: left;
}

header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-900);
}

header .subtitle {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.4rem;
}

.header-rule {
  display: none;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  border: none;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  display: block;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--wine);
  border-bottom-color: var(--gold);
}

/* ── SPLIT SECTION ── */
.split-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 3rem 2.8rem;
  transition: box-shadow 0.25s;
}

.panel:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.panel-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(107, 30, 30, 0.07);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.panel .panel-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.panel-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0 0 2rem;
}

.hours-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.65rem 0;
  vertical-align: top;
}

.hours-table td:first-child {
  width: 42%;
  color: var(--gray-900);
  font-weight: 500;
  font-size: 0.88rem;
}

.hours-table td:last-child {
  color: var(--gray-700);
  font-size: 0.88rem;
}

/* ── ONLINESHOP ── */
.shop-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 3rem 1.5rem;
}

.shop-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.shop-info {
  padding: 0 2.8rem;
}

.shop-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.shop-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.shop-info p {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* newsletter – full-width row below the image/text grid */
.newsletter-full {
  max-width: 1140px;
  margin: 1.5rem auto 0;
  padding: 2rem 2.2rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
}

.nl-inline-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nl-input-email {
  flex: 1 1 260px;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: 3px;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s;
}

.nl-input-email:focus {
  outline: none;
  border-color: var(--gold);
}

.nl-captcha-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  white-space: nowrap;
}

.nl-input-captcha {
  width: 64px;
  padding: 0.6rem 0.5rem;
  font-size: 0.88rem;
  font-family: inherit;
  text-align: center;
  border: 1px solid var(--gray-300);
  border-radius: 3px;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s;
  -moz-appearance: textfield;
  appearance: textfield;
}

.nl-input-captcha::-webkit-outer-spin-button,
.nl-input-captcha::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.nl-input-captcha:focus {
  outline: none;
  border-color: var(--gold);
}

.nl-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.nl-submit:hover {
  background: var(--gold-lt);
}

.nl-legal {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* feedback messages */
.nl-message {
  display: none;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.nl-message.nl-success {
  display: block;
  background: #edf7ed;
  color: #2e6b30;
  border: 1px solid #b6deb8;
}

.nl-message.nl-error {
  display: block;
  background: #fdf0f0;
  color: #7a1f1f;
  border: 1px solid #e8b4b4;
}

.nl-message.nl-info {
  display: block;
  background: #f0f4fd;
  color: #1e3a6b;
  border: 1px solid #b4c8e8;
}

/* ── CONTACT ── */
#kontakt {
  position: relative;
  background-color: #3d2010;
  background-image: url('img/2148327733.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 1.5rem;
}

#kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 7, 2, 0.58);
}

#kontakt .inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#kontakt .section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(184, 150, 58, 0.5);
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

#kontakt h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
}

#kontakt .contact-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 1.2rem auto 2.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.contact-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  backdrop-filter: blur(2px);
}

.contact-card-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.8rem;
}

.contact-card address {
  font-style: normal;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--gold-lt);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  transition: background 0.2s;
}

.contact-map-btn:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  text-decoration: none !important;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  transition: background 0.2s;
  align-self: flex-start;
}

.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  text-decoration: none !important;
}


.construction-box {
  margin-top: 2.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 3rem 2.5rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col--center {
  align-items: center;
  text-align: center;
}

.footer-col--right {
  align-items: flex-end;
  text-align: right;
}

footer img.footer-logo {
  height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: difference;
  opacity: 0.55;
}

.footer-name {
  color: var(--gray-300);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-address {
  color: var(--gray-500);
  font-size: 0.78rem;
}

.footer-copy {
  color: var(--gray-500);
  font-size: 0.72rem;
  margin-top: 0.4rem;
}

.footer-nav-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
}

footer a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold-lt);
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .split {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 2rem 1.5rem;
  }

  header {
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  header img.logo {
    height: 64px;
  }

  header h1 {
    font-size: 1.4rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  nav a {
    padding: 0.7rem 0.8rem;
    font-size: 0.68rem;
  }

  .shop-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col--center,
  .footer-col--right {
    align-items: center;
    text-align: center;
  }
}