:root {
  --bg: #f6f4ef;
  --surface: #fffaf0;
  --ink: #222018;
  --muted: #6d6658;
  --line: #d9d1c2;
  --accent: #007a78;
  --accent-dark: #005f5d;
  --shadow: 0 20px 40px rgba(34, 32, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff9ea 0%, #f5f0e3 45%, #efe7d8 100%);
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(0, 59, 76, 0.85), rgba(0, 122, 120, 0.62)),
    url('images/a1bccf947a762b4323d1b01cde600bb020c6cc80.jpg') center / cover no-repeat;
  color: #f8f9f4;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 22, 0.65), rgba(7, 12, 22, 0.15));
  pointer-events: none;
}

.topbar,
.hero-content {
  position: relative;
  z-index: 2;
}

.topbar {
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.lang-switch {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #f7f7f7;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: #f8f8f2;
  color: #123d47;
}

.hero-content {
  padding: 0 1rem clamp(2.5rem, 7vh, 4.5rem);
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.95;
  margin: 0.4rem 0 1rem;
  letter-spacing: 0.02em;
}

.intro {
  max-width: 70ch;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #f8fffd;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.section {
  padding: clamp(2.4rem, 5vw, 5rem) clamp(1rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.2rem;
}

.description-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.2rem;
}

.description-text p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: #2f2d26;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  align-self: start;
}

.price-inline {
  background: linear-gradient(145deg, #fffdf6, #f8f1e2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.8rem 0.6rem;
  margin-bottom: 0.8rem;
}

.price-inline-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f5a4e;
}

.price-inline-value {
  margin: 0.1rem 0 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  letter-spacing: 0.02em;
  color: #153e46;
  line-height: 1;
}

.spec-card h3 {
  margin-top: 0;
}

.spec-card ul {
  margin: 0;
  padding-left: 1rem;
}

.spec-card li {
  margin: 0.4rem 0;
}

.highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.8rem;
}

.highlights-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 18px rgba(34, 32, 24, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: translateY(-2px) scale(1.01);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 20, 0.92);
  z-index: 1000;
  padding: 3.5rem 1rem 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: min(95vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(10, 15, 20, 0.5);
  color: #fff;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

.contact-section {
  background: linear-gradient(145deg, #fff8ea, #fcf8ee);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.contact-copy {
  color: var(--muted);
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.field-row {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8bfad;
  border-radius: 12px;
  padding: 0.8rem;
  font: inherit;
  background: #fffdfa;
}

.submit {
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.2rem 0 0;
  color: #854001;
}

.footer {
  padding: 1rem;
  text-align: center;
  color: var(--muted);
}

.footer a {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.7s 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 revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .description-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

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