:root {
  --primary: #74141C;
  --primary-dark: #4f0d13;
  --bg: #f5f3f4;
  --text: #1f1f1f;
  --muted: #7a7a7a;
  --card-bg: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(116, 20, 28, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.logo-title {
  font-weight: 700;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

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

.btn-nav {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(116, 20, 28, 0.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 3px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* burger animation optional */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(116, 20, 28, 0.90), rgba(18, 10, 12, 0.96)),
    url('https://images.pexels.com/photos/462235/pexels-photo-462235.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.16), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 72px 0 72px;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 20px;
  font-size: 16px;
  color: #f7e9ea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-primary,
.btn-secondary,
.btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.4);
}

.btn-block {
  width: 100%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(116, 20, 28, 0.36);
}

.btn-block:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(116, 20, 28, 0.45);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #f9dfe2;
}

.hero-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

/* Sections */

.section {
  padding: 64px 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 26px;
  margin: 0 0 12px;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: flex-start;
}

.section-grid--map {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.6fr);
}

/* Cards & lists */

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--primary);
}

/* Offer grid */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card-offer h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card-offer p {
  font-size: 14px;
  color: var(--muted);
}

/* Comfort */

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

.comfort-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 14px 14px 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.comfort-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.comfort-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Map */

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

/* Contact */

.section-contact {
  background: radial-gradient(circle at top left, #f4dde0 0, #f7f3f4 40%, #f5f3f4 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: flex-start;
}

.contact-box {
  margin: 16px 0;
  padding: 16px 18px 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.contact-list li {
  margin-bottom: 6px;
}

.contact-note {
  font-size: 13px;
  color: var(--muted);
}

.contact-form {
  background: #ffffff;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-top: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-row label {
  font-size: 13px;
  margin-bottom: 4px;
}

.form-row input,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid #dad4d5;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(116, 20, 28, 0.25);
  background: #fffdfd;
}

.form-status {
  margin-top: 8px;
  font-size: 13px;
  min-height: 18px;
  color: var(--muted);
}

/* Footer */

.site-footer {
  background: #1b1112;
  color: #d5c8c9;
  padding: 18px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 900px) {
  .section-grid,
  .section-grid--map,
  .cards-grid,
  .comfort-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 4px;
  }

  .logo-title {
    font-size: 12px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 16px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-inner {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta span {
    width: 100%;
  }
  
  .container {
	  padding-left: 30px;
    padding-right: 30px;
  }
  
  
}
