:root {
  --bg: #fff8f0;
  --surface: #ffffff;
  --ink: #201a17;
  --muted: #6b625d;
  --line: #eaded6;
  --orange: #e68016;
  --red: #cf2e33;
  --gold: #f5b31b;
  --dark: #15110f;
  --warm: #fff1df;
  --soft: #fffaf6;
  --shadow: 0 18px 42px rgba(49, 31, 20, 0.1);
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

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

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

.topbar {
  background: #ffffff;
  color: var(--muted);
  font-size: 0.74rem;
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(20px, 5vw, 72px);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 650;
  color: var(--ink);
}

.topbar a,
.contact-details a,
.nav a,
.button,
.nav-button,
.service-card,
.feature-list div,
.step {
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.topbar svg,
.contact-details svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.topbar a,
.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar a:hover,
.nav a:hover,
.contact-details a:hover {
  color: var(--orange);
}

a:focus-visible {
  outline: 3px solid rgba(230, 128, 22, 0.28);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(49, 31, 20, 0.05);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo-frame {
  display: block;
  width: 168px;
  height: 50px;
  overflow: hidden;
}

.brand-logo-frame img {
  width: 168px;
  height: 168px;
  max-width: none;
  object-fit: contain;
  transform: translateY(-58px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: #3b312b;
  font-size: 0.91rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 38px;
  min-width: 98px;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1;
}

.nav-button,
.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(207, 46, 51, 0.18);
}

.nav-button:hover,
.button.primary:hover {
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(207, 46, 51, 0.24);
  transform: translateY(-1px);
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  position: relative;
  justify-self: end;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  height: 2px;
  width: 18px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 19px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(21, 17, 15, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(86vw, 340px);
  padding: 22px;
  background: #ffffff;
  box-shadow: -18px 0 42px rgba(49, 31, 20, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-title {
  color: var(--ink);
  font-weight: 800;
}

.menu-close {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-close span {
  position: absolute;
  top: 18px;
  left: 9px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 0;
}

.mobile-nav a,
.mobile-menu-contact a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #3b312b;
  font-weight: 750;
}

.mobile-nav a:hover,
.mobile-menu-contact a:hover {
  background: var(--soft);
  color: var(--orange);
}

.mobile-nav .mobile-contact {
  justify-content: center;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
}

.mobile-menu-contact {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.menu-open {
  overflow: hidden;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .mobile-menu {
  transform: translateX(0);
}

.button.secondary {
  border: 1px solid rgba(230, 128, 22, 0.34);
  background: #ffffff;
  color: #3b312b;
}

.button.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 100px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 28%, rgba(245, 179, 27, 0.2), transparent 32%),
    linear-gradient(180deg, #fffaf6 0%, #fff1df 100%);
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange) 58%, var(--red));
}

.hero-media img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: min(680px, 100%);
  padding: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 16ch;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

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

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro,
.split-section,
.approach {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.section-copy {
  max-width: 760px;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(49, 31, 20, 0.05);
}

.feature-list div:hover,
.service-card:hover,
.step:hover {
  border-color: rgba(230, 128, 22, 0.45);
  box-shadow: 0 16px 34px rgba(49, 31, 20, 0.09);
  transform: translateY(-2px);
}

.feature-list span {
  color: var(--orange);
  font-weight: 800;
}

.feature-list strong {
  font-size: 1rem;
  line-height: 1.25;
}

.split-section {
  background: #ffffff;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(49, 31, 20, 0.1);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(49, 31, 20, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.step p,
blockquote p {
  color: var(--muted);
}

.service-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}

.service-card-wide img {
  height: 100%;
  aspect-ratio: auto;
}

.service-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 24px;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  transform: translateY(-50%);
}

.approach {
  background: #ffffff;
  color: var(--ink);
}

.approach .section-copy p:not(.eyebrow),
.approach .step p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #ffffff;
  font-weight: 800;
}

.testimonials {
  background: var(--warm);
}

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

blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #ffffff;
}

blockquote p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 650;
}

.contact-section {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, #fff1df 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: 32px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(49, 31, 20, 0.08);
}

.contact-card p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-details a,
.contact-details span {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #3b312b;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  border-color: rgba(230, 128, 22, 0.5);
  background: var(--soft);
  transform: translateX(2px);
}

.footer {
  display: grid;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.footer-brand-text {
  transform: translateY(4px);
}

.footer-icon-frame {
  display: block;
  width: 44px;
  height: 26px;
  overflow: hidden;
}

.footer-icon-frame img {
  width: 44px;
  height: 44px;
  max-width: none;
  object-fit: contain;
  transform: translateY(-9px);
}

.footer-brand {
  color: #ffffff;
  font-weight: 800;
}

.copyright {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 6px 16px;
  }

  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-block: 10px;
  }

  .nav,
  .site-header > .nav-button {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: block;
  }

  .menu-toggle {
    border-color: transparent;
    background: transparent;
  }

  .menu-close {
    border-color: transparent;
  }

  .intro,
  .hero,
  .split-section,
  .approach,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-content {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-media {
    order: -1;
    width: min(620px, 100%);
  }

  .service-grid,
  .quote-row {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .service-card-wide img {
    height: auto;
    aspect-ratio: 1.35 / 1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .brand {
    min-width: 136px;
  }

  .brand-logo-frame {
    width: 148px;
    height: 44px;
  }

  .brand-logo-frame img {
    width: 148px;
    height: 148px;
    transform: translateY(-51px);
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-media::after {
    right: -12px;
    bottom: -12px;
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

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

  .feature-list div {
    padding: 18px;
  }

  .service-card div,
  .step,
  blockquote {
    padding: 20px;
  }

  .footer {
    gap: 16px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }
}
