:root {
  --bg: #fdfaf6;
  --surface: #f3f3f3;
  --surface-strong: #ececec;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --accent: #f7931e;
  --accent-dark: #d87300;
  --border: rgba(43, 43, 43, 0.12);
  --shadow: 0 18px 40px rgba(31, 31, 31, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 20px; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(247, 147, 30, 0.08), transparent 30%);
}

.page-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
  background: white;
  border-right: 1px solid var(--border);
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 20;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.logo-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb357);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}
.logo-text { font-size: 0.95rem; font-weight: 700; }
.logo-text span { display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.sidebar-nav a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--text-muted);
  font-weight: 600;
  transition: all 0.25s ease;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--surface);
  color: var(--accent-dark);
  transform: translateX(3px);
}

.cta-box {
  background: linear-gradient(135deg, var(--accent), #ff9d2e);
  color: white;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.cta-box .btn {
  margin-top: 10px;
  background: white;
  color: var(--accent-dark);
  border: 0;
  width: 100%;
}
.cta-box small { display: block; margin-top: 10px; opacity: 0.9; }

.main-content {
  flex: 1;
  padding: 24px 24px 40px;
}

.topbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  background: white;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.menu-toggle {
  border: 0;
  background: var(--surface);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
}

.hero, .section-card, .quote-block {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.hero p { color: var(--text-muted); font-size: 1.02rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 147, 30, 0.12);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-visual {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.14), rgba(247, 147, 30, 0.03));
  border-radius: 24px;
  padding: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247, 147, 30, 0.2); }
.btn-primary { background: var(--accent); color: white; }

.section-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 20px; }
.section-card { margin-bottom: 0; }
.section-card h2, .section-card h3 { font-size: 1.35rem; margin-top: 0; }
.section-card ul { padding-left: 18px; color: var(--text-muted); }
.section-card li { margin-bottom: 8px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin-top: 0; margin-bottom: 8px; }
.card p { color: var(--text-muted); margin: 0; }

.quote-block {
  margin-top: 24px;
  border-left: 6px solid var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: linear-gradient(90deg, rgba(247, 147, 30, 0.1), white 60%);
}

.gallery-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item, .review-card, .contact-card, .story-card, .staff-card, .service-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.04);
}
.review-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-weight: 600; color: var(--text-muted); }
input, textarea, select {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}
textarea { min-height: 130px; resize: vertical; }

.map-frame {
  border: 0;
  border-radius: 20px;
  width: 100%;
  min-height: 280px;
}

.footer-note {
  margin-top: 24px;
  padding: 16px 18px;
  color: var(--text-muted);
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .sidebar { width: 250px; }
  .cards, .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .page-shell { flex-direction: column; }
  .sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: min(85vw, 320px);
    height: 100vh;
    transition: left 0.3s ease;
  }
  .sidebar.is-open { left: 0; }
  .topbar { display: flex; }
  .main-content { padding: 16px; }
  .section-grid, .form-grid { grid-template-columns: 1fr; }
  .cards, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
}
