:root {
  --bg: #0b1218;
  --bg-soft: #111c24;
  --card: rgba(13, 24, 33, 0.78);
  --text: #eef3f7;
  --muted: #a2b2bf;
  --accent: #c99a4a;
  --accent-soft: #e4c188;
  --line: rgba(224, 190, 132, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, #1a2b37 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, #402d17 0%, transparent 45%),
    linear-gradient(130deg, #080d13 0%, #0f1822 45%, #0c131b 100%);
  padding: 1.25rem;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  filter: blur(44px);
  border-radius: 999px;
}

.bg-glow-a {
  width: 280px;
  height: 280px;
  background: rgba(201, 154, 74, 0.18);
  top: -70px;
  right: -80px;
}

.bg-glow-b {
  width: 240px;
  height: 240px;
  background: rgba(90, 162, 190, 0.15);
  bottom: -80px;
  left: -60px;
}

.topbar {
  max-width: 1100px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.lang-toggle {
  display: inline-flex;
  gap: 0.35rem;
}

.lang-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

.lang-btn.active {
  background: rgba(201, 154, 74, 0.16);
  border-color: var(--accent);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.35rem;
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -35% -70% -35%;
  height: 70%;
  background: radial-gradient(circle, rgba(201, 154, 74, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent-soft);
  font-weight: 700;
}

h1,
h2 {
  margin: 0 0 0.7rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: 1.5rem;
}

p {
  margin: 0;
  line-height: 1.75;
}

.hero-subtitle {
  margin-bottom: 1rem;
  max-width: 780px;
}

.hero-cta-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-photo-wrap {
  margin: 0;
  justify-self: end;
  max-width: 280px;
  width: 100%;
}

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: rgba(6, 12, 18, 0.9);
}

.hero-photo-caption {
  margin-top: 0.5rem;
  font-size: 0.84rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: #14100a;
  background: linear-gradient(180deg, #ddb879 0%, #c99a4a 100%);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.offer-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.65rem;
}

.news-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.news-controls {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

#news-date-select {
  min-width: 210px;
  font: inherit;
  color: var(--text);
  background: rgba(6, 12, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.42rem 0.6rem;
}

.news-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(10, 18, 26, 0.6);
}

.news-item a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.news-item a:hover {
  text-decoration: underline;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.form-stack {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

input,
textarea {
  font: inherit;
  color: var(--text);
  background: rgba(6, 12, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.feedback {
  min-height: 1.3rem;
  font-size: 0.9rem;
  color: var(--accent-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.1s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.2s;
}

.reveal:nth-of-type(4) {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .grid-two {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap {
    justify-self: start;
    max-width: 200px;
  }

  body {
    padding: 0.8rem;
  }

  .card {
    padding: 1.05rem;
  }
}
