:root {
  --color-bg: #222831;
  --color-surface: #393e46;
  --color-accent: #948979;
  --color-soft: #dfd0b8;
  --color-text: #f5f3ef;
  --color-muted: #d8ccbb;
  --font-main: "Segoe UI", "Roboto", "Arial", sans-serif;
  --font-heading: "Segoe UI", "Roboto", "Arial", sans-serif;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #4a5160 0%, var(--color-bg) 55%);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
}

a {
  color: var(--color-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #ffffff;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(34, 40, 49, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(223, 208, 184, 0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: var(--space-6) 0 var(--space-5);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: var(--space-3);
}

.hero-copy,
.hero-visual,
.order-card,
.card,
.faq-item,
.policy-main,
.thank-you-card {
  background: rgba(57, 62, 70, 0.7);
  border: 1px solid rgba(223, 208, 184, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease, translate 0.5s ease;
}

.card:hover,
.faq-item:hover,
.order-card:hover,
.policy-main:hover,
.thank-you-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 208, 184, 0.35);
}

.hero-copy {
  padding: var(--space-4);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead {
  color: var(--color-muted);
}

.trust-row,
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.price-current {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.price-old {
  margin: 0;
  align-self: end;
  text-decoration: line-through;
  opacity: 0.8;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.collage img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.collage img {
  width: 100%;
  height: 100%;
}



.order-card {
  padding: var(--space-3);
}

label {
  display: block;
  margin-top: var(--space-2);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(223, 208, 184, 0.25);
  background: rgba(34, 40, 49, 0.9);
  color: var(--color-text);
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(148, 137, 121, 0.35);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.checkbox-row input {
  width: auto;
  margin: 0;
}

.btn {
  display: inline-block;
  margin-top: var(--space-2);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--color-soft);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: #f0e6d2;
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-soft);
}

.btn-secondary:hover {
  background: rgba(148, 137, 121, 0.2);
}

.error-message {
  min-height: 1.1rem;
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #ffaea8;
}

.section {
  padding: var(--space-5) 0;
}

.alt {
  background: rgba(57, 62, 70, 0.5);
}

.narrow {
  width: min(800px, 92%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.card,
.faq-item {
  padding: var(--space-3);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-2);
}

.tab-btn {
  background: transparent;
  color: var(--color-soft);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--color-soft);
  color: var(--color-bg);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-2);
}

.timeline-step {
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-soft);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.timeline-step.active,
.timeline-step:hover {
  background: rgba(223, 208, 184, 0.2);
}

.timeline-panel {
  animation: fadeUp 0.45s ease;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-top: 0.8rem;
}

.reveal {
  opacity: 0;
  translate: 0 14px;
}

.reveal-visible {
  opacity: 1;
  translate: 0 0;
}

.map-wrap iframe {
  width: 100%;
  border-radius: var(--radius-sm);
}

.disclaimer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.site-footer {
  border-top: 1px solid rgba(223, 208, 184, 0.2);
  padding: var(--space-2) 0;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-line nav {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: var(--space-2);
  right: var(--space-2);
  width: min(430px, calc(100% - 1rem));
  z-index: 40;
}

.cookie-content {
  background: rgba(34, 40, 49, 0.98);
  border: 1px solid rgba(223, 208, 184, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-lg);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hidden {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-body,
.thank-you-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-main,
.thank-you-card {
  width: min(920px, 92%);
  margin: var(--space-5) auto;
  padding: var(--space-4);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-card {
    grid-column: 1 / -1;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding-top: var(--space-4);
  }

  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list {
    justify-content: flex-start;
  }
}