:root {
  --bg: #0f172a;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --text-light: #e2e8f0;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --border: #dbe3ed;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    radial-gradient(circle at top right, #334155 0%, #0f172a 65%);
  color: var(--text-light);
  padding-bottom: 5rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: #fff;
}

.hero-content {
  padding-top: 3.5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
  color: #fff;
}

.hero-content p {
  max-width: 680px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid #94a3b8;
  color: #e2e8f0;
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  color: #fff;
}

.section {
  padding: 4rem 0;
}

.section-intro {
  margin-top: -0.2rem;
  color: #334155;
}

.section-soft {
  background: var(--surface-soft);
}

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

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}

.card p,
.services p {
  margin-bottom: 0;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.opening-hours-box h3 {
  margin-bottom: 0.6rem;
}

.opening-hours-box p {
  margin: 0.35rem 0;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
  max-width: 640px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 0.4rem;
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  font-size: 0.92rem;
  color: #475569;
  margin-top: 0.8rem;
}

.footer {
  background: var(--bg);
  color: #cbd5e1;
  padding: 1.2rem 0;
}

.footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .brand {
    font-size: 1.8rem;
  }

  .brand-logo {
    width: 96px;
    height: 96px;
  }

  .nav {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  .section {
    padding: 3rem 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}
