:root {
  --bg: #f7f4ef;
  --bg-soft: #f0ebe4;
  --card-bg: #ffffff;
  --text-main: #222222;
  --text-muted: #555555;
  --accent: #d9822b;
  --accent-soft: #f5b477;
  --accent-dark: #b9681f;
  --cool: #1e88e5;
  --border-soft: #e0d8cc;
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --transition-fast: 0.18s ease-out;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: radial-gradient(circle at top left, #fefcf8, #f4eee5);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 239, 0.9);
  border-bottom: 1px solid rgba(224, 216, 204, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0.25rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--cool));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 650;
  font-size: 1.05rem;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.header-phone .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.header-phone a {
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.25rem 0;
  position: relative;
  color: var(--text-muted);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--cool));
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #555;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-soft);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: #3b260e;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.7rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  max-width: 34rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.25rem;
}

.hero-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.hero-card {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(224, 216, 204, 0.9);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.hero-card-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.2rem;
  font-size: 0.9rem;
}

.hero-card-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cool);
}

.hero-card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.section {
  padding: 2.75rem 0;
}

.section-soft {
  background: radial-gradient(circle at top left, #fdf8f1, #f0ebe4);
}

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: start;
}

.card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 216, 204, 0.9);
}

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

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

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

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

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

.list-dot li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.list-dot li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.testimonial-block {
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 216, 204, 0.9);
}

.testimonial-block h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.6rem;
}

.testimonial-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.testimonial-name {
  margin-top: 0.6rem;
  font-weight: 600;
  color: #333;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.link-arrow::after {
  content: "→";
  font-size: 0.9rem;
}

.cta-panel {
  border-radius: 20px;
  padding: 1.6rem 1.6rem;
  background: linear-gradient(125deg, rgba(217,130,43,0.09), rgba(30,136,229,0.05));
  border: 1px solid rgba(224, 216, 204, 0.9);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-panel h2 {
  margin: 0 0 0.4rem;
}

.cta-panel p {
  margin: 0;
  color: var(--text-muted);
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-hero {
  padding: 2.7rem 0 1.8rem;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
}

.page-subtitle {
  margin: 0 0 1.2rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.checklist-grid .card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.panel {
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(224, 216, 204, 0.9);
  box-shadow: var(--shadow-soft);
}

.panel-highlight {
  background: linear-gradient(135deg, #fff9f2, #eef5ff);
}

.panel-soft {
  background: #fbf7f2;
}

.panel-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 1.4rem;
  background: #17130e;
  color: #f7f4ef;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer p,
.site-footer li {
  font-size: 0.9rem;
}

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

.site-footer a {
  color: #f7f4ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.9rem;
  font-size: 0.8rem;
  color: rgba(247,244,239,0.76);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}

.contact-list li {
  margin-bottom: 0.2rem;
}

.service-form {
  background: rgba(255,255,255,0.96);
  padding: 1.3rem 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 216, 204, 0.9);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.form-row label {
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 0.48rem 0.6rem;
  font: inherit;
  background: #fdfbf8;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(30,136,229,0.3);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.header-inner,
.hero,
.section,
.page-hero {
  transition: padding 0.2s ease-out;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .header-contact {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(247,244,239,0.97);
    padding: 0.75rem 1.2rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    border-bottom: 1px solid rgba(224,216,204,0.9);
  }

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

  .nav-toggle {
    display: flex;
  }

  .cta-panel {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 2.2rem;
  }

  .header-inner {
    padding-inline: 0;
  }

  .section {
    padding: 2.1rem 0;
  }

  .page-hero {
    padding-top: 2.1rem;
  }
}