:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --ink: #1c1917;
  --ink-soft: #57534e;
  --line: #e7e5e4;
  --paper: #fffaf5;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(154, 52, 18, 0.12);
  --radius: 18px;
  --header-h: 78px;
  --max: 1160px;
  --font: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  color: var(--orange-700);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.accent {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-400));
  border-radius: 99px;
  margin: 16px 0 22px;
}

.accent.center {
  margin-inline: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.muted {
  color: var(--ink-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover {
  background: var(--orange-700);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--orange-700);
}

.btn-outline {
  background: transparent;
  color: var(--orange-700);
  border-color: var(--orange-200);
}

.btn-outline:hover {
  background: var(--orange-50);
  border-color: var(--orange-600);
}

/* Header */
.topbar {
  background: var(--orange-700);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 88, 12, 0.12);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.brand img,
.brand svg {
  width: 42px;
  height: 42px;
}

.brand span {
  color: var(--orange-600);
}

nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--ink-soft);
}

nav a:hover,
nav a.active {
  color: var(--orange-700);
  background: var(--orange-50);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--orange-50);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange-700);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background:
    linear-gradient(120deg, rgba(28, 25, 23, 0.82) 0%, rgba(154, 52, 18, 0.55) 52%, rgba(234, 88, 12, 0.35) 100%),
    var(--slide-image) center / cover no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  padding: 80px 0 100px;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p {
  max-width: 46ch;
  margin: 18px 0 28px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.active {
  width: 32px;
  background: var(--orange-400);
}

.page-hero {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(28, 25, 23, 0.78), rgba(194, 65, 12, 0.7)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=70") center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
}

/* Sections */
section {
  padding: 88px 0;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.about-grid,
.cta-inner,
.contact-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.intro-grid,
.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--orange-600);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
  max-width: 180px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 10px;
  font-weight: 700;
}

.checklist li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--orange-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M3 8.5 6.2 12 13 4'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.stat {
  background: var(--white);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--orange-600);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.cta-band {
  background:
    linear-gradient(110deg, #9a3412 0%, #ea580c 55%, #f97316 100%);
  color: var(--white);
  padding: 72px 0;
}

.cta-inner {
  grid-template-columns: 1fr auto;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.services {
  background: var(--white);
}

.center {
  text-align: center;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--orange-100);
  border-left: 5px solid var(--orange-500);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange-200);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--orange-600);
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

.tile {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 22px;
  color: var(--white);
  background: center / cover no-repeat;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(28, 25, 23, 0.82));
}

.tile h3 {
  position: relative;
  z-index: 1;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-card,
.form-card {
  background: var(--paper);
  border: 1px solid var(--orange-100);
  border-radius: 24px;
  padding: 32px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.tabs button {
  border: 0;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.tabs button.active {
  background: var(--orange-600);
  color: var(--white);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--orange-400);
  border-color: var(--orange-400);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf3;
  color: #166534;
  font-weight: 700;
}

.form-note.show {
  display: block;
}

.map {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  background: var(--orange-100);
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.site-footer {
  background: #1c1917;
  color: #e7e5e4;
  padding: 56px 0 24px;
}

.site-footer h3 {
  color: var(--white);
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a:hover {
  color: var(--orange-400);
}

.copyright {
  padding-top: 18px;
  font-size: 0.9rem;
  color: #a8a29e;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--orange-100);
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  .intro-grid,
  .about-grid,
  .cta-inner,
  .contact-grid,
  .cards,
  .tiles,
  .stats,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }
}
