:root {
  --bg: #1f1915;
  --surface: #2b221d;
  --surface-soft: #342a24;
  --text: #f6eee3;
  --muted: #c8b7a1;
  --accent: #c58b4b;
  --accent-dark: #9f6831;
  --line: #4a3a2f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at 15% 10%, #3a2c23 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.5;
}

.hero {
  padding: 1rem 1rem 3.5rem;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3)),
    repeating-linear-gradient(
      -45deg,
      rgba(197, 139, 75, 0.08),
      rgba(197, 139, 75, 0.08) 16px,
      rgba(0, 0, 0, 0.15) 16px,
      rgba(0, 0, 0, 0.15) 32px
    );
}

.hero-shell {
  margin: 3.5rem 0 auto;
  display: grid;
  gap: 1.4rem;
  align-items: end;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(43, 34, 29, 0.86);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  min-width: 2.4rem;
  min-height: 2rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  color: #1a130d;
}

.brand {
  font-family: "Cinzel", "Times New Roman", serif;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-small {
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-content {
  max-width: 40rem;
}

.hero-visual {
  max-width: 34rem;
  justify-self: end;
  padding: 1rem;
  border: 1px solid rgba(197, 139, 75, 0.28);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.88), rgba(34, 24, 18, 0.72));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.eyebrow {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: "Cinzel", "Times New Roman", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}

.hero-text {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  color: #e8d8c4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 36rem;
}

.hero-points li {
  padding-left: 1rem;
  position: relative;
  color: #dbc8b0;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.btn {
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #1a130d;
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 2.6rem 1rem;
  max-width: 68rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 6vw, 2.3rem);
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

.card {
  background: linear-gradient(160deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: #dcc9b1;
}

.price-list {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.price-item:nth-child(even) {
  background: #312720;
}

.price-item:last-child {
  border-bottom: 0;
}

.muted {
  color: var(--muted);
  margin-top: 0.8rem;
}

.about-text {
  margin: 0;
  color: #e2d0bc;
  max-width: 54ch;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
}

.gallery-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, rgba(197, 139, 75, 0.18), rgba(43, 34, 29, 0.94)),
    radial-gradient(circle at top right, rgba(239, 216, 178, 0.18), transparent 40%);
}

.gallery-card p {
  margin: 0.55rem 0 0;
  color: #dbc8b0;
  max-width: 34ch;
}

.contact {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact a {
  color: var(--accent);
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hours li:last-child {
  border-bottom: 0;
}

.footer {
  padding: 1.2rem 1rem 2.1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: #a9957d;
}

@media (min-width: 700px) {
  .hero {
    padding: 1.2rem 2rem 4.5rem;
  }

  .section {
    padding: 3.4rem 2rem;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}
