:root {
  --ink: #0b0b0b;
  --muted: #5f6468;
  --line: #ded9d1;
  --paper: #faf8f4;
  --white: #ffffff;
  --workwear: #c6a34d;
  --sage: #6f7d66;
  --brick: #8e4d3e;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  background: var(--white);
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
  color: #242424;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 124px);
  padding: clamp(24px, 3.6vw, 42px) clamp(18px, 6vw, 86px) 42px;
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.9), rgba(250, 248, 244, 0.72)),
    linear-gradient(135deg, rgba(111, 125, 102, 0.15), rgba(198, 163, 77, 0.14));
}

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

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

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.15rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro {
  max-width: 690px;
  color: #383838;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--brick);
  border-color: var(--brick);
}

.button.secondary {
  background: transparent;
}

.button.secondary:hover {
  background: var(--white);
}

.button.instagram {
  color: var(--ink);
  background: var(--workwear);
  border-color: var(--workwear);
}

.button.instagram:hover {
  color: var(--white);
  background: var(--brick);
  border-color: var(--brick);
}

.button.whatsapp {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
}

.button.whatsapp:hover {
  background: var(--brick);
  border-color: var(--brick);
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 850;
  text-decoration-color: var(--workwear);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--brick);
}

.wide {
  width: 100%;
}

.hero-mark {
  justify-self: center;
  width: min(100%, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: transparent;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.trust-strip span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 750;
}

.section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 6vw, 86px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
}

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

.service-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid.compact article {
  min-height: 180px;
}

.service-grid p,
.areas p,
.contact p,
.page-hero p {
  color: var(--muted);
}

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

.recent-work {
  background: #f1ede6;
}

.recent-work .section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.work-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.work-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.work-feature img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.work-feature figure:nth-child(1) img {
  object-position: 52% 58%;
}

.work-feature figure:nth-child(2) img {
  object-position: 52% 55%;
}

.work-feature figure:nth-child(3) img {
  object-position: 50% 50%;
}

.work-feature figcaption {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: #2f2f2f;
  font-weight: 800;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 34px;
  align-items: start;
}

.area-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.area-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.seo-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.seo-pages a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage);
  text-decoration: none;
}

.seo-pages a:nth-child(2) {
  background: var(--brick);
}

.seo-pages span {
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.seo-pages strong {
  align-self: end;
  max-width: 520px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 6vw, 86px);
  background: #ece7dd;
}

.contact-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.contact-card .button {
  margin-top: 18px;
}

.contact-card .button + .button {
  margin-top: 10px;
}

.page-hero {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 6vw, 86px);
  background: linear-gradient(135deg, rgba(111, 125, 102, 0.15), rgba(198, 163, 77, 0.18));
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.14rem;
}

footer {
  padding: 28px clamp(18px, 6vw, 86px);
  color: var(--white);
  background: var(--ink);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

  .hero,
  .area-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    width: min(100%, 400px);
  }

  .trust-strip,
  .service-grid,
  .work-feature,
  .seo-pages {
    grid-template-columns: 1fr 1fr;
  }

  .work-feature figure:first-child {
    grid-column: 1 / -1;
  }

  .work-feature img {
    height: 430px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 3.15rem;
  }

  .trust-strip,
  .service-grid,
  .work-feature,
  .seo-pages {
    grid-template-columns: 1fr;
  }

  .work-feature figure:first-child {
    grid-column: auto;
  }

  .work-feature img {
    height: 360px;
  }

  .service-grid article {
    min-height: auto;
  }

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