:root {
  --bg: #f7f4ee;
  --ink: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --white: #ffffff;
  --yellow: #facc15;
  --yellow-soft: #fef3c7;
  --dark: #0f172a;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: currentColor; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.65);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .14);
  font-size: 25px;
}
.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.desktop-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}
.desktop-nav a:hover { background: #f1f5f9; color: var(--ink); }
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(250, 204, 21, .26);
  transition: .2s ease;
}
.call-button:hover { transform: translateY(-2px); background: #fde047; }
.menu-button {
  display: none;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: .2s ease;
}
.mobile-nav {
  display: none;
  padding: 12px 16px 18px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 900;
}
.mobile-nav a:hover { background: #f8fafc; }
.mobile-nav.is-open { display: block; }

.section-bg { position: relative; overflow: hidden; }
.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(250,204,21,.28), transparent 38%),
    radial-gradient(circle at bottom right, rgba(15,23,42,.12), transparent 36%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  padding: 88px 0;
}
.pill, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: #713f12;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 900;
}
.pill { background: #fff; color: #334155; box-shadow: var(--shadow-soft); }
.pill svg { color: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 76px);
  line-height: .94;
  letter-spacing: -0.065em;
  font-weight: 900;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}
h3 { margin-bottom: 10px; font-size: 24px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 900; }
.lead, .section-head p, .dark-section p, .lead-small, .contact-info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
  transition: .2s ease;
}
.primary-button { background: var(--ink); color: var(--white); box-shadow: 0 22px 45px rgba(15,23,42,.22); }
.secondary-button { background: var(--white); color: var(--ink); box-shadow: var(--shadow-soft); }
.primary-button:hover, .secondary-button:hover { transform: translateY(-2px); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.trust-grid div {
  border-radius: 19px;
  background: rgba(255,255,255,.82);
  padding: 16px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow);
}
.hero-card .glow {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--yellow);
  filter: blur(45px);
  opacity: .7;
  z-index: -1;
}
.hero-card img { width: 100%; height: 430px; object-fit: cover; border-radius: 25px; }
.contact-overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.contact-overlay p {
  margin-bottom: 10px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.contact-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
  font-size: 14px;
  font-weight: 900;
}
.contact-mini-grid span:last-child { grid-column: 1 / -1; }
.section { padding: 82px 0; }
.section-head { margin-bottom: 48px; }
.section-head.center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-head.row { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; }
.section-head.row p { max-width: 540px; margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 27px;
  font-weight: 900;
}
.service-card p { color: var(--muted); line-height: 1.75; }
ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
li { position: relative; padding-left: 28px; color: #334155; font-size: 14px; font-weight: 800; }
li::before { content: "✓"; position: absolute; left: 0; color: #ca8a04; font-weight: 900; }
.dark-section {
  padding: 88px 0;
  background: var(--dark);
  color: #fff;
}
.dark-section .section-label { background: var(--yellow-soft); color: #713f12; }
.dark-section p { color: #cbd5e1; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.feature-grid div, .process-item {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.07);
  border-radius: 22px;
}
.feature-grid div { padding: 20px; font-weight: 900; }
.process-list { display: grid; gap: 16px; }
.process-item { display: flex; gap: 18px; padding: 20px; }
.process-item span {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.process-item h3 { font-size: 21px; margin-bottom: 4px; }
.process-item p { margin-bottom: 0; font-size: 15px; line-height: 1.55; }
.image-frame { border-radius: var(--radius-xl); background: #fff; padding: 12px; box-shadow: var(--shadow); overflow: hidden; }
.image-frame img { width: 100%; min-height: 430px; object-fit: cover; border-radius: 25px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.benefit-grid div {
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.gallery-section { padding: 82px 0; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 27px; box-shadow: var(--shadow-soft); transition: .22s ease; }
.gallery-grid img:hover { transform: scale(1.02); }
.contact-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  border-radius: 42px;
  background: var(--dark);
  color: #fff;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-info { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.contact-info p { color: #cbd5e1; }
.contact-links { display: grid; gap: 14px; }
.contact-links a, .contact-links span {
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  padding: 14px 16px;
  font-weight: 900;
}
.contact-form { border-radius: 32px; background: #fff; color: var(--ink); padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-size: 14px; font-weight: 900; }
label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: .16s ease;
  background: #fff;
}
textarea { min-height: 145px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(250,204,21,.16); }
.contact-form button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}
.contact-form button:hover { background: #fde047; transform: translateY(-1px); }
.form-note { margin: 14px 0 0; color: var(--muted-2); font-size: 12px; line-height: 1.6; text-align: center; }
.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; color: var(--muted); font-size: 14px; font-weight: 800; }
.footer-inner p { margin: 0; }
.footer-inner div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-inner a:hover { color: var(--ink); }
.reveal { animation: reveal .7s ease both; }
.delay-1 { animation-delay: .14s; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .desktop-nav, .header-call { display: none; }
  .menu-button { display: block; }
  .hero-grid, .split-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { padding: 58px 0; }
  .service-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section-head.row { display: block; }
  .section-head.row p { margin-top: 14px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-icon { width: 42px; height: 42px; }
  .brand strong { font-size: 16px; }
  .hero-grid { gap: 34px; padding: 46px 0 58px; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .lead, .section-head p, .dark-section p, .lead-small, .contact-info p { font-size: 16px; }
  .button-row { flex-direction: column; }
  .primary-button, .secondary-button { width: 100%; }
  .trust-grid, .service-grid, .gallery-grid, .benefit-grid, .feature-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-card img { height: 360px; }
  .contact-overlay { position: static; margin-top: 12px; }
  .contact-mini-grid { grid-template-columns: 1fr; }
  .contact-mini-grid span:last-child { grid-column: auto; }
  .section, .gallery-section, .dark-section { padding: 62px 0; }
  .service-card, .contact-form { padding: 22px; }
  .contact-card { border-radius: 30px; padding: 22px; }
  .image-frame img { min-height: 320px; }
  .gallery-grid img { height: 230px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
