:root {
  --ink: #161616;
  --muted: #6b6a68;
  --paper: #f5f4f2;
  --white: #ffffff;
  --line: #ddd8d2;
  --charcoal: #0B2341;
  --smoke: #666461;
  --ember: #FF6A3D;
  --ember-dark: #e65329;
  --amber: #f28b42;
  --shadow: 0 18px 50px rgba(24, 24, 22, 0.15);
  --glow: 0 0 34px rgba(255, 75, 37, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 106, 61, 0.08), transparent 24%),
    var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 222, 232, 0.85);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(255, 106, 61, 0.24);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #263244;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--ember);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font: 700 14px/1 "DM Sans", Arial, sans-serif;
  cursor: pointer;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--ember);
  box-shadow: 0 12px 28px rgba(255, 106, 61, 0.24);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--ember-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 72px) 76px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 106, 61, 0.34), transparent 26%),
    radial-gradient(circle at 78% 30%, rgba(242, 139, 66, 0.14), transparent 22%),
    linear-gradient(130deg, #000000 0%, #0B2341 56%, #2f3a4b 100%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.hero-mark {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: var(--glow);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.showcase h2,
.testimonial h2,
.contact h2 {
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 88px);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 30px;
  color: #e6edf7;
  font-size: 20px;
}

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

.hero-phone {
  display: inline-flex;
  margin-top: 18px;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 106, 61, 0.8);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics div {
  min-height: 128px;
  padding: 28px clamp(20px, 5vw, 56px);
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--ember);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  display: block;
  max-width: 230px;
  margin-top: 8px;
  color: var(--muted);
}

.section,
.showcase,
.testimonial,
.contact,
.footer {
  padding: 84px clamp(20px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
  background: var(--white);
}

.section h2,
.showcase h2,
.testimonial h2,
.contact h2 {
  max-width: 850px;
  font-size: clamp(32px, 4vw, 52px);
}

.intro > p,
.showcase-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.why {
  background: #fbfaf8;
}

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

.why-grid article {
  min-height: 190px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 106, 61, 0.2), transparent 28%),
    var(--charcoal);
  border-radius: 8px;
}

.why-grid h3 {
  margin: 0 0 10px;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 24px;
}

.why-grid p {
  margin: 0;
  color: #dce4ef;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 236px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 24, 22, 0.05);
}

.service-card h3,
.process-list h3 {
  margin: 18px 0 8px;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ember), #7e3428);
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255, 106, 61, 0.22);
}

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

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

.package-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.package-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 10%, rgba(255, 106, 61, 0.35), transparent 32%),
    var(--charcoal);
  border-color: rgba(255, 106, 61, 0.45);
  box-shadow: var(--shadow);
}

.package-name {
  margin: 0;
  color: var(--ember);
  font-weight: 700;
}

.package-card.featured .package-name {
  color: var(--amber);
}

.package-card strong {
  display: block;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.package-card.featured ul {
  color: #dce4ef;
}

.package-card a {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--ember);
  border-radius: 6px;
  font-weight: 700;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 106, 61, 0.12), transparent 28%),
    #ebe8e4;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ember);
  font-weight: 700;
  border-bottom: 2px solid currentColor;
}

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

.portfolio-grid article {
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(11, 35, 65, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.portfolio-grid span {
  color: var(--ember);
  font-weight: 700;
}

.portfolio-grid h3 {
  margin: 14px 0 8px;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 22px;
}

.portfolio-grid p {
  margin: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 220px;
  padding: 24px;
  border-left: 4px solid var(--ember);
  background: var(--white);
  border-radius: 8px;
}

.process-list span {
  color: var(--ember);
  font-weight: 700;
}

.testimonial {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 106, 61, 0.22), transparent 26%),
    var(--charcoal);
}

blockquote {
  max-width: 900px;
  margin: 24px 0;
  color: #e6edf7;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
}

.quote-author {
  margin: 0;
  color: var(--amber);
  font-weight: 700;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 44px;
  background: var(--white);
}

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

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #263244;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c5ccd8;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: 400 16px/1.4 "DM Sans", Arial, sans-serif;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--ember);
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 28px;
  color: #dce4ef;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 106, 61, 0.14), transparent 22%),
    #000000;
}

.footer p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #aab5c4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px;
  font-weight: 700;
}

.footer-links span {
  color: #aab5c4;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 69px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 13px;
  }

  .metrics,
  .intro,
  .why-grid,
  .service-grid,
  .package-grid,
  .showcase,
  .portfolio-grid,
  .process-list,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 15px;
  }

  .hero {
    min-height: 84vh;
    padding: 118px 20px 52px;
  }

  .hero-copy,
  .intro > p,
  .showcase-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .section,
  .showcase,
  .testimonial,
  .contact,
  .footer {
    padding: 58px 20px;
  }

  .contact-form,
  .service-card,
  .process-list li {
    padding: 22px;
  }
}
