:root {
  --ink: #0b0b0b;
  --warm: #17100d;
  --paper: #f4f1ea;
  --muted: #b5aaa3;
  --orange: #ff5a1f;
  --orange-button: #c74618;
  --line: rgba(244, 241, 234, 0.16);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 90% 8%, #4c1a0b 0, transparent 30rem),
    radial-gradient(circle at 4% 30%, #2a120c 0, transparent 38rem),
    radial-gradient(circle at 88% 58%, #3a170c 0, transparent 42rem),
    radial-gradient(circle at 6% 82%, #2a120c 0, transparent 40rem),
    linear-gradient(150deg, #0b0b0b, #1c100c 55%, #0b0b0b);
  color: var(--paper);
  font:
    400 17px/1.65 Inter,
    Arial,
    sans-serif;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem;
}
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.top {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(11, 11, 11, 0.86);
  border-top: 3px solid var(--orange);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  width: clamp(200px, 17vw, 220px);
}
.menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.98rem;
  font-weight: 700;
}
.menu a {
  text-decoration: none;
}
.menu a:hover,
.menu a:focus {
  color: var(--orange);
}
.nav-raio-x {
  color: var(--paper);
}
.cta {
  display: inline-block;
  background: var(--orange-button);
  color: white;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}
.cta:hover,
.cta:focus {
  background: #ff7440;
  outline: 2px solid white;
  outline-offset: 3px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 1.75rem;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 84% 42%,
    rgba(255, 90, 31, 0.34),
    transparent 22rem
  );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}
.hero-copy {
  position: relative;
  max-width: 640px;
  align-self: start;
  padding-top: 0.65rem;
}
.hero-visual { position: relative; isolation: isolate; height: clamp(360px, 35vw, 400px); overflow: hidden; border: 0; border-radius: 28px; background: radial-gradient(circle at 62% 42%, rgba(255, 90, 31, 0.4), transparent 60%), radial-gradient(circle at 52% 35%, rgba(255, 90, 31, 0.22), transparent 55%), linear-gradient(145deg, #2a1108, #0b0b0b 72%); box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.08), 0 24px 60px -18px rgba(0, 0, 0, 0.55), 0 0 70px -20px rgba(255, 90, 31, 0.4); }
.hero-visual:after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(11, 11, 11, 0.4), transparent 38%), linear-gradient(0deg, rgba(11, 11, 11, 0.22), transparent 40%), linear-gradient(270deg, rgba(11, 11, 11, 0.32), transparent 34%); pointer-events: none; }
.hero-portrait { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: saturate(0.94) contrast(1.06) brightness(1.02); -webkit-mask-image: radial-gradient(72% 84% at 58% 56%, #000 28%, transparent 100%); mask-image: radial-gradient(72% 84% at 58% 56%, #000 28%, transparent 100%); }
.hero-mark { position: absolute; z-index: 2; left: -10%; top: -12%; right: auto; bottom: auto; width: 40%; opacity: 0.1; filter: grayscale(1) brightness(1.8); pointer-events: none; }
.solutions-strip { position: relative; background: rgba(11, 11, 11, 0.32); padding: 1.1rem 0; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16px, #000 calc(100% - 16px), transparent); mask-image: linear-gradient(to bottom, transparent, #000 16px, #000 calc(100% - 16px), transparent); }
.solutions-strip-list { display: grid; grid-template-columns: repeat(6, 136px); justify-content: center; gap: 0.5rem; max-width: 880px; margin: auto; }
.solution-pill { display: flex; align-items: center; justify-content: center; gap: 0.35rem; height: 56px; padding: 0.4rem; border: 1px solid rgba(244, 241, 234, 0.12); border-radius: 0.25rem; background: transparent; color: var(--paper); font-size: 0.68rem; font-weight: 800; line-height: 1; letter-spacing: -0.025em; text-align: center; white-space: nowrap; transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.solution-pill img { display: block; width: 1.1rem; height: 1.1rem; flex: 0 0 auto; object-fit: contain; }
.solution-pill:not(.solution-pill--meta):not(.solution-pill--google):not(.solution-pill--profile) img { filter: grayscale(1) brightness(2); opacity: 0.9; }
.solution-pill:hover { color: var(--paper); border-color: var(--orange); background: linear-gradient(135deg, rgba(75, 31, 14, 0.98), rgba(11, 11, 11, 0.96)); transform: translateY(-2px); }
.solution-pill:focus-visible { outline: 3px solid var(--paper); outline-offset: 3px; border-color: var(--orange); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero h1,
.intro h1 {
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 0 0 1rem;
  max-width: 900px;
}
.hero .lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.5;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 650px;
  color: #e6ddd8;
}
.section {
  padding: 5.5rem 0;
  position: relative;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 1.2rem;
  max-width: 800px;
}
.section p {
  max-width: 720px;
  color: #d3c9c2;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.benefit {
  border-left: 2px solid var(--orange);
  padding: 0 0 0 1rem;
}
.benefit h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.benefit p {
  margin: 0;
  font-size: 0.95rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.service {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 325px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.17);
  border-radius: 8px;
  background: #160d09;
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.service:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 6, 0.04) 12%,
    rgba(6, 6, 6, 0.88) 76%,
    #0b0b0b 100%
  );
}
.service:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.48), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 17px 42px rgba(0, 0, 0, 0.37);
}
.service:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
  border-color: var(--orange);
}
.service-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}
.service-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(255, 90, 31, 0.46),
      transparent 30%
    ),
    linear-gradient(145deg, #120d0b, #30140b);
}
.device {
  position: absolute;
  width: 70%;
  height: 58%;
  right: 8%;
  top: 15%;
  padding: 0.55rem;
  border: 1px solid rgba(244, 241, 234, 0.55);
  border-radius: 10px;
  background: #0b0b0b;
  box-shadow:
    18px 22px 0 rgba(255, 90, 31, 0.22),
    0 20px 45px rgba(0, 0, 0, 0.65);
  transform: rotate(-6deg);
}
.device:after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -9px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: #d4c1b3;
}
.device-bar {
  display: block;
  height: 10%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--orange) 22%, #2d211b 22%);
}
.device-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  height: 84%;
  padding: 0.65rem;
}
.device-screen i {
  display: block;
  background: linear-gradient(150deg, #ff5a1f, #54200e);
  border-radius: 3px;
}
.device-screen i:nth-child(2) {
  background: #e8e4d9;
}
.device-screen i:nth-child(3) {
  grid-column: span 2;
  background: repeating-linear-gradient(
    90deg,
    #302018 0 7%,
    #ff5a1f 7% 12%,
    #302018 12% 18%
  );
}
.device-screen em {
  position: absolute;
  top: 35%;
  left: 12%;
  color: #fff;
  font-style: normal;
  font-size: clamp(0.6rem, 1.4vw, 0.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service--google .device {
  transform: rotate(5deg);
  right: 12%;
  top: 18%;
}
.service--profile .device {
  width: 54%;
  right: 22%;
  border-radius: 18px;
}
.service--profile .device-screen {
  grid-template-columns: 1fr;
}
.service--site .device {
  width: 76%;
  right: 4%;
  transform: rotate(-3deg);
}
.service--landing .device {
  width: 66%;
  right: 15%;
  transform: rotate(4deg);
}
.service-copy {
  display: block;
  width: 100%;
  padding: 1.4rem;
}
.service b {
  display: block;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.service-copy span {
  display: block;
  color: #ede2db;
  font-size: 0.95rem;
  line-height: 1.35;
  margin-top: 0.55rem;
}
.service-seal,
.service-mark {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  width: 58px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.service-mark {
  opacity: 0.88;
}
.service--meta .service-photo,
.service--google .service-photo,
.service--profile .service-photo {
  display: none;
}
.service--meta {
  background:
    radial-gradient(
      circle at 72% 28%,
      rgba(255, 90, 31, 0.7),
      transparent 10rem
    ),
    #0b0b0b;
}
.service--google {
  background: linear-gradient(145deg, #120d0b, #54200e 55%, #0b0b0b);
}
.service--profile {
  background:
    radial-gradient(
      circle at 34% 30%,
      rgba(255, 90, 31, 0.62),
      transparent 9rem
    ),
    linear-gradient(135deg, #0b0b0b, #28130c);
}
.service--meta .service-seal,
.service--google .service-seal,
.service--profile .service-seal {
  width: 82px;
  height: 82px;
  max-height: none;
}
.service--site .service-photo,
.service--landing .service-photo {
  display: none;
}
.service--site {
  background: linear-gradient(135deg, #0b0b0b, #42200f 58%, #160b07);
}
.service--landing {
  background:
    radial-gradient(
      circle at 72% 28%,
      rgba(255, 90, 31, 0.6),
      transparent 8rem
    ),
    linear-gradient(145deg, #120d0b, #30140b);
}
.service--raiox .service-photo {
  object-position: 50% center;
}
.service--raiox:after {
  background:
    radial-gradient(
      circle at 76% 26%,
      rgba(255, 90, 31, 0.68),
      transparent 24%
    ),
    linear-gradient(135deg, rgba(255, 90, 31, 0.3), transparent 52%);
}
.founder {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) 1.25fr;
  gap: 3rem;
  align-items: end;
}
.founder img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.8);
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.08), 0 24px 55px -18px rgba(0, 0, 0, 0.55), 0 0 60px -22px rgba(255, 90, 31, 0.4);
  -webkit-mask-image: radial-gradient(120% 120% at 50% 32%, #000 66%, transparent 100%);
  mask-image: radial-gradient(120% 120% at 50% 32%, #000 66%, transparent 100%);
}
.cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.case-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: linear-gradient(160deg, #1b110c, #0b0b0b 70%);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.08), 0 14px 34px -14px rgba(0, 0, 0, 0.55), 0 0 46px -18px rgba(255, 90, 31, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.22), 0 18px 40px -14px rgba(0, 0, 0, 0.6), 0 0 56px -14px rgba(255, 90, 31, 0.52);
}
.case-tag {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.case-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.case-card p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: #d3c9c2;
  max-width: none;
}
.case-link {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.case-link:hover,
.case-link:focus {
  color: var(--orange);
}
.segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.segment-tile {
  margin: 0;
  position: relative;
  isolation: isolate;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #1b110c, #0b0b0b 70%);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.08), 0 14px 34px -14px rgba(0, 0, 0, 0.55), 0 0 46px -18px rgba(255, 90, 31, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.segment-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.22), 0 18px 40px -14px rgba(0, 0, 0, 0.6), 0 0 56px -14px rgba(255, 90, 31, 0.52);
}
.segment-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at 50% 40%, rgba(255, 90, 31, 0.1), transparent 70%);
  filter: saturate(0.85) contrast(1.03);
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
}
.segment-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.9rem 0.85rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--paper);
  text-align: left;
}
.faq {
  max-width: 790px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p {
  margin: 0.7rem 0 0;
}
.final {
  padding: 6rem 0;
  background: radial-gradient(
    circle at 80% 30%,
    rgba(255, 90, 31, 0.27),
    transparent 24rem
  );
}
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer a {
  color: var(--paper);
}
.page-hero {
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero .watermark {
  top: -8rem;
  right: -4rem;
}
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.page-grid ul {
  padding-left: 1.2rem;
  color: #d3c9c2;
}
.page-grid li {
  margin: 0.5rem 0;
}
.service-nav {
  font-size: 0.87rem;
  color: var(--muted);
}
@media (min-width: 761px) and (max-width: 1000px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1023px) {
  .top {
    position: sticky;
  }
  .nav {
    min-height: 64px;
    position: relative;
  }
  .logo img {
    width: 154px;
  }
  .nav-toggle {
    display: grid;
    grid-template-columns: 20px auto;
    gap: 3px 8px;
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--paper);
    font: 800 0.75rem/1 Inter, Arial, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem;
    min-height: 44px;
  }
  .nav-toggle > span:not(.nav-toggle-label) {
    width: 20px;
    height: 2px;
    background: currentColor;
    grid-column: 1;
  }
  .nav-toggle-label { grid-column: 2; grid-row: 1 / 4; }
  .menu,
  .menu[hidden] { display: none !important; }
  .menu.is-open {
    position: absolute;
    z-index: 6;
    inset: 100% 0 auto;
    display: grid !important;
    gap: 0;
    padding: 0.75rem max(16px, calc((100vw - var(--max)) / 2));
    background: #130d0b;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .menu.is-open a {
    display: block;
    min-height: 44px;
    padding: 0.75rem 0;
  }
  .menu.is-open .nav-raio-x {
    margin-top: 0.35rem;
    padding: 0.8rem 1rem;
    background: var(--orange-button);
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .shell {
    width: min(var(--max), calc(100% - 32px));
  }
  .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 0.83rem;
    padding: 0.7rem 1rem;
  }
  .hero {
    padding: 2.5rem 0 2rem;
  }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 2rem; }
  .hero-copy { padding-top: 0; }
  .hero-visual { height: 320px; }
  .hero-portrait { object-position: center bottom; }
  .hero-mark { width: 62%; }
  .solutions-strip { padding: 0.5rem 0; }
  .benefits,
  .services,
  .cases,
  .founder,
  .page-grid {
    grid-template-columns: 1fr;
  }
  .benefits {
    gap: 1.3rem;
  }
  .services {
    gap: 1rem;
  }
  .service {
    min-height: 285px;
  }
  .service-copy {
    padding: 1.2rem;
  }
  .service-seal,
  .service-mark {
    top: 1.15rem;
    left: 1.15rem;
    width: 52px;
  }
  .service--meta .service-seal,
  .service--google .service-seal,
  .service--profile .service-seal {
    width: 72px;
    height: 72px;
  }
  .founder {
    gap: 1.5rem;
  }
  .founder img {
    max-height: 430px;
  }
  .section {
    padding: 4rem 0;
  }
  .page-hero {
    padding: 5rem 0 2rem;
  }
}
/* Mobile-only: cards remain links; the next card peeks in to signal horizontal drag. */
@media (max-width: 760px) {
  .solutions-strip-list { display: grid; grid-auto-flow: column; grid-auto-columns: 8.5rem; grid-template-columns: none; justify-content: start; overflow-x: auto; overscroll-behavior-x: contain; padding: 0 0.25rem 0.3rem; scroll-padding-inline: 0.25rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .solution-pill { scroll-snap-align: start; scroll-snap-stop: always; height: 54px; white-space: nowrap; }
  .services {
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: 66%;
    gap: 1rem;
    margin-right: -1px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 1px 1rem;
    scroll-padding-inline: 1px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .service {
    scroll-margin-inline: 4px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .service:focus-visible {
    outline-offset: -3px;
  }
  .segments {
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: 62%;
    gap: 0.85rem;
    margin-right: -1px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 1px 1rem;
    scroll-padding-inline: 1px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .segment-tile {
    scroll-margin-inline: 4px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .segment-tile:last-child {
    grid-column: auto;
  }
  .segment-tile:last-child img {
    aspect-ratio: 4 / 5;
  }
  .cases {
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 1rem;
    margin-right: -1px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 1px 1rem;
    scroll-padding-inline: 1px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .case-card {
    scroll-margin-inline: 4px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* Catálogo: as artes oficiais são exibidas inteiras, sem sobreposição de copy ou efeitos. */
.service {
  display: block;
  min-height: 0;
  aspect-ratio: 32 / 27;
  isolation: auto;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 18%, rgba(255, 90, 31, 0.16), transparent 55%), linear-gradient(160deg, #1b110c, #0b0b0b 72%);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.08), 0 20px 48px -18px rgba(0, 0, 0, 0.55), 0 0 60px -20px rgba(255, 90, 31, 0.35);
}
.service::before,
.service::after {
  content: none;
}
.service > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.service-photo {
  object-fit: contain;
  background: transparent;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.24), 0 24px 55px -16px rgba(0, 0, 0, 0.6), 0 0 70px -14px rgba(255, 90, 31, 0.55);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 760px) {
  .service {
    min-height: 0;
    aspect-ratio: 32 / 27;
  }
}

/* Service pages use an editorial rhythm: denser sections and reading-sized type. */
.service-page .page-hero {
  padding: 4.75rem 0 2.75rem;
}
.service-page .page-hero h1 {
  max-width: 930px;
  margin: 0.45rem 0 1.15rem;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.service-page .lead {
  max-width: 760px;
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  line-height: 1.55;
}
.service-page .section {
  padding: 3.5rem 0;
}
.service-page .section + .section {
  padding-top: 0.5rem;
}
.service-page .page-grid {
  gap: 2.25rem 4rem;
  margin-top: 0;
  align-items: start;
}
.service-page .service-grid > .service-detail {
  grid-column: 1;
}
.service-page .service-grid > .service-summary {
  grid-column: 2;
}
.service-page .section h2,
.service-page .final h2 {
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 1.03;
  margin-bottom: 0.8rem;
}
.service-page .section p,
.service-page .page-grid ul {
  font-size: 1.08rem;
  line-height: 1.7;
}
.service-page .page-grid ul {
  margin: 0.1rem 0;
  padding-left: 1.35rem;
}
.service-page .page-grid li {
  margin: 0.65rem 0;
  padding-left: 0.15rem;
}
.service-page .final {
  padding: 4rem 0;
}
.service-page .faq-section {
  padding-top: 2.75rem;
}
.service-page .faq {
  max-width: 900px;
}
.service-page .faq details {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.service-page .faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.service-page .faq summary {
  cursor: pointer;
  font-size: 1.08rem;
  line-height: 1.45;
}
.service-page .faq summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.service-page .faq p {
  font-size: 1.04rem;
  line-height: 1.65;
}
.service-page .faq .faq-intro {
  max-width: 65ch;
  margin-bottom: 1.25rem;
}
.service-page .footer {
  padding: 1.5rem 0;
}
@media (max-width: 760px) {
  .service-page .page-hero {
    padding: 3.25rem 0 2rem;
  }
  .service-page .page-hero h1 {
    font-size: clamp(2.5rem, 11.2vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0.6rem 0 1rem;
  }
  .service-page .lead {
    font-size: 1.12rem;
    line-height: 1.58;
  }
  .service-page .section {
    padding: 2.75rem 0;
  }
  .service-page .section + .section {
    padding-top: 0.35rem;
  }
  .service-page .page-grid {
    gap: 2.15rem;
    margin-top: 0;
  }
  .service-page .section h2,
  .service-page .final h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.7rem);
    margin-bottom: 0.7rem;
  }
  .service-page .section p,
  .service-page .page-grid ul {
    font-size: 1.04rem;
    line-height: 1.68;
  }
  .service-page .page-grid ul {
    padding-left: 1.2rem;
  }
  .service-page .page-grid li {
    margin: 0.62rem 0;
  }
  .service-page .final {
    padding: 3rem 0;
  }
  .service-page .faq details {
    padding: 1rem 0;
  }
  .service-page .faq summary {
    font-size: 1.02rem;
  }
  .service-page .faq p {
    font-size: 1rem;
  }
}

/* Legal pages (Política de privacidade, Termos de uso): editorial reading rhythm,
   headings sized down from the marketing h2 scale since there are ~10 per page. */
.legal-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.75rem;
}
.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  margin: 2.2rem 0 0.65rem;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: none;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  margin: 0 0 1rem;
  color: #d3c9c2;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: none;
}
.legal-content ul {
  margin: 0 0 1.1rem;
  padding-left: 1.3rem;
  color: #d3c9c2;
}
.legal-content li {
  margin: 0.4rem 0;
  line-height: 1.6;
}
.legal-content strong {
  color: var(--paper);
}
@media (max-width: 760px) {
  .legal-content h2 {
    margin-top: 1.8rem;
    font-size: 1.18rem;
  }
}
