:root {
  --burgundy: #6b1f2b;
  --burgundy-dark: #521720;
  --cream: #f6f2ec;
  --stone: #e7e0d6;
  --text: #222222;
  --text-soft: #5a5a5a;
  --white: #ffffff;
  --border: rgba(34, 34, 34, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}


ul {
  /* list-style: none; */
  margin-left: 20px;

}


.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.centre,
.centre-text {
  text-align: center;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.logo {
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  font-weight: normal;
}
/*
.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--burgundy);
}

.has-dropdown {
  display: "none" !important;
  position: relative;
}

.sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.sub-menu li a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  white-space: nowrap;
}

.sub-menu.show {
  display: block !important;
}

#lang-toggle.disabled {
  opacity: 0.5;
  cursor: default;
}
*/
.navbar {
  overflow: hidden;
  background-color: inherit;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
}

.dropdown {
  display: inline;
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 17px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  color: #521720;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  color: var(--burgundy);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(20, 10, 12, 0.35), rgba(20, 10, 12, 0.35)),
    url("../images/tempevin_hero.jpg") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 700px;
  padding: 6rem 0;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.trade-box {
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.eyebrow,
.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  font-weight: normal;
}

.hero-copy {
  font-size: 1.1rem;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Sections */

.section {
  padding: 6rem 0;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  font-weight: normal;
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.text-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.text-block p + p {
  margin-top: 1rem;
}

.text-block p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Placeholder blocks */

.placeholder-box {
  min-height: 320px;
  background: linear-gradient(135deg, #ece5db, #ddd3c6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  padding: 2rem;
  text-align: center;
}

.placeholder-box.large {
  min-height: 440px;
}

/* Steps */

.steps {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: normal;
}

.step-card p {
  color: var(--text-soft);
}

/* Showcase */

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

/* Highlight */

.highlight {
  background: var(--burgundy);
  color: var(--white);
}

.highlight .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.highlight h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: normal;
}

.highlight p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

/* CTA */

.call-to-action {
  background: var(--stone);
}

/* Footer */

.site-footer {
  background: #1b1617;
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 1rem;
  font-weight: normal;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: var(--white);
}

/* Responsive */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .main-nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column,
  .two-column.reverse,
  .steps-grid,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: 75vh;
  }
}

@media (max-width: 600px) {
  .hero-text {
    padding: 4.5rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}