:root {
  --black: #0B0B0B;
  --charcoal: #171412;
  --cream: #F7F1E8;
  --sand: #E7D8C8;
  --terracotta: #B85C38;
  --taupe: #8A7B70;
  --white: #FFFFFF;
  --text: #24201D;
  --muted: #6E625A;
  --max: 1160px;
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", "Rethink Sans", "Work Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 34px;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,11,11,0.08);
}

.brand img { width: 214px; max-width: 45vw; }

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.nav a {
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

.nav-toggle { display: none; }

.hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(184,92,56,0.14), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 82px 24px 70px;
  text-align: center;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto 44px;
}

.hero-logo {
  width: min(760px, 92vw);
  margin: 0 auto;
}

.hero-role {
  margin: 14px 0 8px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
}

.hero-kicker {
  margin: 10px 0 16px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto 28px;
  color: #4A403A;
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11,11,11,.12);
}

.primary { background: var(--black); color: var(--white); }

.secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(11,11,11,.28);
}

.hero-image-wrap {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(11,11,11,.08);
  box-shadow: 0 24px 70px rgba(11,11,11,.14);
  background: var(--sand);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
}

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

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
  color: var(--muted);
}

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

h1, h2, h3 {
  line-height: 1.06;
  margin: 0;
  color: var(--black);
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  letter-spacing: -0.055em;
}

h3 { font-size: 1.35rem; }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
  margin-top: 58px;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split.reverse .split-copy { order: 2; }
.split.reverse .image-card { order: 1; }

.split-copy p {
  font-size: 1.06rem;
  color: #3B342F;
}

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

.tick-list li::before {
  content: "•";
  color: var(--terracotta);
  font-weight: 900;
  margin-right: 10px;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.skill-pills span {
  border: 1px solid rgba(184,92,56,.28);
  background: #fff8f2;
  color: #5A3729;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: .9rem;
  font-weight: 700;
}

.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  background: var(--sand);
  box-shadow: 0 18px 48px rgba(11,11,11,.10);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.portrait img { min-height: 580px; }

.trusted {
  text-align: center;
  background: var(--cream);
  max-width: none;
}

.trusted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.trusted h2 {
  max-width: 800px;
  margin-bottom: 34px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.logo-strip div {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 20px;
  min-height: 118px;
  padding: 18px;
  display: grid;
  place-items: center;
}

.logo-strip img {
  max-height: 76px;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(11,11,11,.08);
}

.testimonials {
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(184,92,56,0.20), transparent 32%),
    var(--charcoal);
  color: var(--white);
  max-width: none;
}

.testimonials > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials h2,
.testimonials .eyebrow { color: var(--white); }

.testimonial-slider {
  position: relative;
  min-height: 230px;
  margin-top: 36px;
}

.testimonial {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  position: absolute;
  inset: 0;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.24;
  margin: 0 0 22px;
}

.testimonial footer { color: rgba(255,255,255,.72); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
}

.testimonial-dots span.active { background: var(--white); }

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.price-cards article {
  border: 1px solid rgba(11,11,11,.10);
  border-radius: 26px;
  padding: 36px;
  background: linear-gradient(180deg, var(--cream), #fff);
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--terracotta);
  margin: 18px 0 12px;
}

.faq-list { display: grid; gap: 12px; }

details {
  border: 1px solid rgba(11,11,11,.12);
  border-radius: 18px;
  padding: 20px 22px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--black);
}

details p { color: #3a342f; }

.contact {
  text-align: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(184,92,56,.14), transparent 32%),
    var(--cream);
  max-width: none;
}

.contact > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.contact h2 { margin-bottom: 18px; }

.contact-details { margin-top: 34px; }

.footer {
  padding: 28px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--white);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .hero { padding-top: 54px; }

  .hero-image-wrap img { aspect-ratio: 4/3; }

  .split,
  .split.reverse,
  .price-cards {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy,
  .split.reverse .image-card { order: initial; }

  .image-card,
  .image-card img,
  .portrait img { min-height: 340px; }

  .logo-strip { grid-template-columns: repeat(3, 1fr); }

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

  .section { padding: 68px 20px; }

  .testimonial-slider { min-height: 290px; }
}

@media (max-width: 560px) {
  .brand img { width: 180px; }
  .hero-logo { width: 94vw; }
  .button { width: 100%; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-slider { min-height: 360px; }
}
