:root {
  --ink: #17212b;
  --muted: #5b6673;
  --line: #dbe1e8;
  --surface: #ffffff;
  --soft: #fff5f5;
  --blue: #df1f17;
  --teal: #b51212;
  --gold: #ffbe3d;
  --red-dark: #7d0d0d;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: 132px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  color: var(--red-dark);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--blue);
}

.hero {
  display: grid;
  min-height: 78vh;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 245, 245, 0.98), rgba(255, 245, 245, 0.74)),
    radial-gradient(circle at 90% 20%, rgba(223, 31, 23, 0.2), transparent 32%),
    #fff5f5;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red-dark));
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: clamp(18px, 6vw, 70px);
  bottom: 32px;
  max-width: 190px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red-dark));
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.22);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 1.35rem;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 190px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.05fr);
  gap: 30px 64px;
  background: #fff;
  border-block: 1px solid var(--line);
}

.intro > p,
.section-heading > p,
.service-card p,
.video-slot p,
.contact-section p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-grid,
.gallery-grid,
.video-grid,
.proof-grid,
.partner-grid,
.door-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.photo-slot,
.video-slot,
.proof-list,
.goal-panel,
.partner-grid article,
.door-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.06);
}

.service-card {
  padding: 24px;
}

.icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 800;
}

.proof-section {
  background: #fff;
}

.proof-grid {
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.85fr);
}

.proof-list,
.goal-panel,
.partner-grid article {
  padding: 24px;
}

.proof-list p,
.partner-grid p {
  margin: 0;
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.proof-list p:last-child,
.partner-grid p:last-child {
  border-bottom: 0;
}

.goal-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-dark), #1f1111);
}

.goal-panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.media-section {
  background: #fff1f1;
}

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

.photo-slot {
  margin: 0;
  overflow: hidden;
}

.photo-slot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.photo-slot.wide-card img {
  object-fit: contain;
  background: #fff;
}

.photo-slot figcaption,
.video-slot,
.door-card figcaption {
  padding: 18px;
}

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

.video-slot {
  color: var(--ink);
}

.video-slot video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  background: #101820;
  border-radius: 6px;
}

.partner-section {
  background: #fff;
}

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

.door-section {
  background: #fff;
}

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

.door-card {
  margin: 0;
  overflow: hidden;
}

.door-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.door-card figcaption,
.photo-slot figcaption {
  font-weight: 800;
  color: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: 40px;
  background: #fff;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 700;
}

.contact-details a {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #101820;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: 2;
    min-height: 360px;
  }

  .service-grid,
  .gallery-grid,
  .proof-grid,
  .partner-grid,
  .door-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .service-grid,
  .gallery-grid,
  .video-grid,
  .proof-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 300px;
  }

  .brand img {
    width: 120px;
  }
}
