:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --line: #e4e4e4;

  --text: #1f2b20;
  --text-soft: #667364;

  --primary: #E89A1C;
  --primary-dark: #c97f10;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */
.topbar {
  background: #111;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.topbar a {
  color: #fff;
}

/* Header */
.header-main {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo img {
  height: 32px;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 25px;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

/* CTA */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* Footer */
.site-footer {
  background: #111;
  color: #ddd;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
}

/* Footer brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-brand img {
  height: 36px;
}

.footer-brand strong {
  color: #fff;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer columns */
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

/* Info list */
.footer-info-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-info-list span {
  color: #888;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #222;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

.hero {
  background: var(--surface);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-secondary {
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* Services */
.services {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--surface);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

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

.service-card a {
  color: var(--primary);
  font-weight: 600;
}

/* Booking */
.booking-choice {
  background: var(--surface);
  padding: 60px 0;
}

.booking-inner {
  display: flex;
  gap: 30px;
}

.booking-box {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}