:root {
  --ink: #1f2933;
  --muted: #60707f;
  --line: #d8e0e7;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --accent: #11183d;
  --accent-strong: #090e29;
  --warm: #b3292e;
  --shadow: 0 20px 60px rgba(31, 41, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 20px;
}

.brand-logo {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
  color: var(--warm);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 168px clamp(20px, 6vw, 90px) 46px;
  background: #f2efe7;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-illustration {
  object-fit: contain;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 14, 41, 0.92) 0%, rgba(9, 14, 41, 0.72) 40%, rgba(9, 14, 41, 0.06) 100%),
    linear-gradient(0deg, rgba(9, 14, 41, 0.08), rgba(9, 14, 41, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd0bb;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.section,
.split-section,
.contact-section {
  padding: 86px clamp(20px, 6vw, 90px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.testimonial-grid,
.price-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
blockquote,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.06);
}

.card {
  padding: 28px;
}

.price-card {
  display: grid;
  align-content: space-between;
  min-height: 150px;
  padding: 24px;
}

.price-card h3 {
  margin-top: 0;
}

.price-card strong {
  color: var(--accent);
  font-size: 28px;
  line-height: 1.1;
}

.price-note {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--warm);
  color: var(--muted);
  background: #ffffff;
}

.section-note {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 800;
}

.card p,
.copy-block p,
blockquote p,
.contact-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  background: var(--soft);
}

.copy-block {
  max-width: 720px;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--warm);
}

.muted {
  background: #fbfcfc;
}

.gallery-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(9, 14, 41, 0.82);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 28px;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--accent-strong);
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
}

.instagram-link {
  color: var(--accent);
}

.instagram-qr {
  display: inline-block;
  width: 146px;
  margin-top: 8px;
}

.instagram-qr img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 107, 101, 0.18);
  border-color: var(--accent);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-note.success {
  color: #176b3f;
}

.form-note.error {
  color: #a32228;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 18px;
  padding: 32px;
}

.response-page h1 {
  color: var(--ink);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 128px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px;
  }

  .hero {
    min-height: 74vh;
    padding-top: 160px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(16, 28, 36, 0.84), rgba(16, 28, 36, 0.34));
  }

  .service-grid,
  .testimonial-grid,
  .price-grid,
  .gallery-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 72vh;
  }

  h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section,
  .split-section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
