:root {
  --paper: #f5f4ef;
  --surface: #ffffff;
  --surface-2: #ecebe5;
  --ink: #171a1d;
  --ink-soft: #4f5559;
  --line: #d8d6cf;
  --copper: #b75b18;
  --copper-dark: #82400f;
  --copper-soft: #f2ddcc;
  --silver: #a7adb1;
  --success: #18724f;
  --shadow-sm: 0 10px 30px rgba(23, 26, 29, 0.08);
  --shadow-lg: 0 28px 80px rgba(23, 26, 29, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max: 1200px;
  --header-h: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 1400;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--copper), #efad7d);
  box-shadow: 0 1px 8px rgba(183, 91, 24, 0.38);
  content: "";
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #1670d2;
  outline-offset: 4px;
}

::selection {
  background: var(--copper);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 9vw, 126px);
}

.section-sm {
  padding-block: clamp(48px, 6vw, 82px);
}

.surface-section {
  background: var(--surface);
}

.dark-section {
  overflow: hidden;
  position: relative;
  background: var(--ink);
  color: #fff;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 5%, rgba(183, 91, 24, 0.32), transparent 32%),
    linear-gradient(115deg, transparent 0 70%, rgba(255, 255, 255, 0.05) 70% 70.5%, transparent 70.5%);
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.dark-section .eyebrow,
.page-hero .eyebrow {
  color: #e6a574;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
}

.display {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.4vw, 6.9rem);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.display .accent,
.section-title .accent {
  color: var(--copper);
}

.section-title {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.8vw, 4.4rem);
  font-weight: 870;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.dark-section .section-intro,
.page-hero .section-intro {
  color: #c9cdcf;
}

.header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 26, 29, 0.18);
}

.button-primary:hover {
  background: #000;
  box-shadow: 0 16px 34px rgba(23, 26, 29, 0.26);
}

.button-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 12px 28px rgba(183, 91, 24, 0.22);
}

.button-copper:hover {
  background: var(--copper-dark);
}

.button-outline {
  border-color: #b9b7af;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: #fff;
}

.dark-section .button-outline,
.page-hero .button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button svg,
.contact-link svg,
.mobile-actions svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.whatsapp-logo {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-copper > .whatsapp-logo {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  box-sizing: content-box;
  padding: 2px;
}

.contact-link > .whatsapp-logo {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(23, 26, 29, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(23, 26, 29, 0.04);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 40px rgba(23, 26, 29, 0.1);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  width: 116px;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  max-height: 72px;
  aspect-ratio: auto;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  border-radius: 999px;
  padding: 9px 11px;
  color: #363b3f;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--copper-soft);
  color: var(--copper-dark);
}

.nav-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.hero {
  overflow: hidden;
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding-block: clamp(58px, 8vw, 112px);
  background:
    radial-gradient(circle at 72% 12%, rgba(183, 91, 24, 0.12), transparent 22%),
    linear-gradient(120deg, #fbfaf6 0 58%, #ebe9e1 58% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .display {
  max-width: 740px;
}

.hero-copy .section-intro {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  overflow: hidden;
  position: relative;
  border: 10px solid #fff;
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  background: #ddd;
  box-shadow: var(--shadow-lg);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 26, 29, 0.44));
  content: "";
}

.hero-frame img {
  width: 100%;
  min-height: 590px;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: 58% center;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 32px;
  width: min(290px, 78%);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  backdrop-filter: blur(14px);
}

.hero-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.hero-note span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.trust-item {
  min-width: 0;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px;
}

.trust-item strong {
  display: block;
  font-size: 0.86rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

/* Premium image-led home experience */
.home-hero {
  --hero-shift: 0px;
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: min(640px, calc(100vh - var(--header-h)));
  align-items: end;
  background: #111416;
  color: #fff;
  isolation: isolate;
}

.home-hero-media,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-media {
  z-index: -2;
  transform: scale(1.055) translate3d(0, var(--hero-shift), 0);
  background-position: 58% center;
  background-size: cover;
  transition: transform 120ms linear;
  animation: hero-breathe 13s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes hero-breathe {
  from {
    transform: scale(1.055) translate3d(0, var(--hero-shift), 0);
  }

  to {
    transform: scale(1.09) translate3d(-0.6%, var(--hero-shift), 0);
  }
}

.home-hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 75% 28%, transparent 0 18%, rgba(0, 0, 0, 0.16) 48%),
    linear-gradient(90deg, rgba(9, 11, 12, 0.91) 0%, rgba(9, 11, 12, 0.62) 46%, rgba(9, 11, 12, 0.12) 78%),
    linear-gradient(0deg, rgba(9, 11, 12, 0.82), transparent 52%);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  padding-block: clamp(68px, 8vw, 104px) 54px;
}

.home-hero-copy {
  max-width: 790px;
}

.home-hero .eyebrow {
  color: #efad7d;
}

.home-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.2vw, 5.8rem);
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 850;
  letter-spacing: -0.018em;
  line-height: 0.93;
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
  color: #efad7d;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d8dcde;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.button-hero-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(17, 20, 22, 0.48);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}

.hero-proof div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof strong {
  color: #efad7d;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-proof span {
  color: #e0e3e4;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 38px;
  height: 1px;
  background: #efad7d;
}

.compact-section {
  padding-block: clamp(58px, 7vw, 92px);
}

.compact-header {
  margin-bottom: 30px;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 236px;
  gap: 14px;
}

.service-visual-card {
  --glow-x: 50%;
  --glow-y: 50%;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  background: #202427;
  color: #fff;
  box-shadow: 0 18px 50px rgba(23, 26, 29, 0.12);
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-visual-card::before,
.service-visual-card::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.service-visual-card::before {
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.24), transparent 34%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-visual-card::after {
  top: -30%;
  bottom: -30%;
  left: -65%;
  width: 32%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.service-visual-card:hover::before {
  opacity: 1;
}

.service-visual-card:hover::after {
  left: 135%;
}

.service-visual-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.service-visual-card:nth-last-child(-n + 2) {
  grid-column: span 2;
}

.service-visual-card:hover {
  box-shadow: 0 28px 70px rgba(23, 26, 29, 0.2);
}

.service-visual-card img,
.service-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-visual-card img {
  z-index: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-visual-card:hover img {
  transform: scale(1.055);
}

.service-visual-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 12, 13, 0.04) 28%, rgba(10, 12, 13, 0.88) 100%);
}

.service-visual-number {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(12, 14, 16, 0.38);
  padding: 5px 10px;
  color: #f5c39d;
  font-size: 0.7rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.service-visual-copy {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 17px;
  left: 18px;
}

.service-visual-copy strong,
.service-visual-copy span {
  display: block;
}

.service-visual-copy strong {
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-visual-copy span {
  margin-top: 6px;
  color: #f0b486;
  font-size: 0.76rem;
  font-weight: 850;
}

.service-visual-copy span::after {
  display: inline-block;
  margin-left: 6px;
  content: "\2192";
  transition: transform 200ms ease;
}

.service-visual-card:hover .service-visual-copy span::after {
  transform: translateX(4px);
}

.precision-band {
  overflow: hidden;
  position: relative;
  background: #15181a;
  color: #fff;
  padding-block: clamp(64px, 8vw, 104px);
}

.precision-band::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(183, 91, 24, 0.24), transparent 25%),
    linear-gradient(118deg, transparent 0 69%, rgba(255, 255, 255, 0.04) 69% 69.5%, transparent 69.5%);
  content: "";
}

.precision-band-grid {
  display: grid;
  position: relative;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.4fr);
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
}

.precision-band .eyebrow {
  color: #efad7d;
}

.precision-band-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  letter-spacing: -0.055em;
}

.precision-band-copy p:last-child {
  margin-bottom: 0;
  color: #bfc5c8;
}

.precision-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.13);
  padding: 0;
  list-style: none;
}

.precision-steps li {
  min-height: 145px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.precision-steps span,
.precision-steps strong,
.precision-steps small {
  display: block;
}

.precision-steps span {
  margin-bottom: 20px;
  color: #efad7d;
  font-size: 0.72rem;
  font-weight: 900;
}

.precision-steps strong {
  font-size: 1.08rem;
}

.precision-steps small {
  margin-top: 5px;
  color: #aeb4b7;
}

.faq-compact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(40px, 8vw, 100px);
}

.faq-compact-intro .section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.faq-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.home-location-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  min-height: 286px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.home-finish-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 85%, rgba(183, 91, 24, 0.1), transparent 25%),
    #f0eee8;
}

.finish-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  align-items: stretch;
  gap: clamp(34px, 6vw, 82px);
}

.finish-story-media {
  overflow: hidden;
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  background: #171a1c;
  box-shadow: 0 30px 80px rgba(23, 26, 29, 0.18);
}

.finish-story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11, 13, 14, 0.82));
  content: "";
  pointer-events: none;
}

.finish-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.finish-story-media:hover img {
  transform: scale(1.035);
}

.finish-story-label {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
}

.finish-story-label span,
.finish-story-label strong {
  display: block;
}

.finish-story-label span {
  margin-bottom: 5px;
  color: #efad7d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finish-story-label strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.finish-story-copy {
  align-self: center;
  padding-block: 24px;
}

.finish-story-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.finish-story-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.finish-story-points {
  display: grid;
  gap: 0;
  margin: 30px 0 24px;
  padding: 0;
  list-style: none;
}

.finish-story-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(23, 26, 29, 0.12);
  padding-block: 13px;
  font-weight: 750;
}

.finish-story-points li:last-child {
  border-bottom: 1px solid rgba(23, 26, 29, 0.12);
}

.finish-story-points span {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.home-location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.home-location-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.05em;
}

.home-location-copy p {
  max-width: 330px;
  color: var(--ink-soft);
}

.home-google-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 286px;
  border: 0;
  filter: saturate(0.78) contrast(1.04);
}

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

.service-index-card {
  display: flex;
  overflow: hidden;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(23, 26, 29, 0.06);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-index-card:first-child {
  grid-column: span 2;
}

.service-index-card:hover {
  box-shadow: 0 26px 65px rgba(23, 26, 29, 0.14);
}

.service-index-media {
  display: block;
  overflow: hidden;
  height: 235px;
  background: #d8d6cf;
}

.service-index-card:first-child .service-index-media {
  height: 270px;
}

.service-index-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.service-index-card:hover .service-index-media img {
  transform: scale(1.045);
}

.service-index-content {
  display: grid;
  flex: 1;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  padding: 22px;
}

.service-index-content .card-number {
  grid-row: span 3;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-index-content strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.service-index-content small {
  color: var(--ink-soft);
  line-height: 1.45;
}

.service-index-content .card-link {
  align-self: end;
  color: var(--copper-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(23, 26, 29, 0.05);
  padding: 28px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c28b65;
  box-shadow: var(--shadow-sm);
}

.service-card .card-number {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 26px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.service-card .card-link {
  color: var(--copper-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card.featured {
  grid-column: span 2;
  min-height: 330px;
  background:
    linear-gradient(90deg, rgba(23, 26, 29, 0.96), rgba(23, 26, 29, 0.67)),
    url("../images/service-cnc-diamond-cutting.webp") center / cover;
  color: #fff;
}

.service-card.featured p {
  max-width: 520px;
  color: #d6d9da;
}

.service-card.featured .card-link {
  color: #f0b486;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.image-panel {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: #ddd;
  box-shadow: var(--shadow-lg);
}

.image-panel img {
  width: 100%;
  min-height: 520px;
  aspect-ratio: 0.94;
  object-fit: cover;
}

.image-panel.landscape img {
  min-height: 380px;
  aspect-ratio: 1.35;
}

.image-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.image-label strong,
.image-label span {
  display: block;
}

.image-label span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper-dark);
  content: "\2713";
  font-size: 0.75rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.process-step {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 24px;
}

.process-step::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e99b60;
  box-shadow: 0 0 0 6px rgba(233, 155, 96, 0.14);
  content: "";
}

.process-step .step-number {
  color: #e6a574;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
}

.process-step p {
  margin: 0;
  color: #bfc3c5;
  font-size: 0.9rem;
}

.gallery-work {
  background:
    linear-gradient(180deg, #f7f6f1, #fff 38%),
    var(--paper);
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
  margin-bottom: 30px;
}

.gallery-intro .section-title,
.gallery-intro p {
  margin-bottom: 0;
}

.gallery-intro > p {
  color: var(--ink-soft);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-soft);
  cursor: pointer;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-filters button:hover,
.gallery-filters button:focus-visible {
  border-color: rgba(183, 91, 24, 0.5);
  color: var(--copper-dark);
  transform: translateY(-1px);
}

.gallery-filters button.is-active {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 24px rgba(183, 91, 24, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  border: 0;
  border-radius: var(--radius-md);
  background: #16191b;
  box-shadow: 0 18px 48px rgba(23, 26, 29, 0.12);
  cursor: zoom-in;
  padding: 0;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card.wide {
  grid-column: span 8;
}

.gallery-card.tall {
  grid-row: span 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.02) 35%, rgba(8, 10, 11, 0.84) 100%),
    linear-gradient(90deg, rgba(183, 91, 24, 0.08), transparent 38%);
  content: "";
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  box-shadow: 0 28px 68px rgba(23, 26, 29, 0.2);
  transform: translateY(-3px);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(183, 91, 24, 0.36);
  outline-offset: 3px;
}

.gallery-card-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  text-align: left;
}

.gallery-card-copy small,
.gallery-card-copy strong {
  display: block;
}

.gallery-card-copy small {
  margin-bottom: 5px;
  color: #efad7d;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-card-copy strong {
  font-size: clamp(0.96rem, 1.5vw, 1.16rem);
  line-height: 1.2;
}

.gallery-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.gallery-principles {
  background: #15181a;
  color: #fff;
}

.gallery-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-principles article {
  background: #15181a;
  padding: clamp(28px, 4vw, 46px);
}

.gallery-principles span {
  color: #efad7d;
  font-size: 0.72rem;
  font-weight: 900;
}

.gallery-principles h2 {
  margin: 18px 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.gallery-principles p {
  margin: 0;
  color: #bdc2c4;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  margin-top: 26px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(23, 26, 29, 0.035);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 15px 17px;
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--copper-dark);
  content: "+";
  font-size: 1.08rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 17px 16px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-panel {
  display: grid;
  position: relative;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  padding: clamp(34px, 6vw, 68px);
}

.cta-panel::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 54px solid rgba(183, 91, 24, 0.24);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.05em;
}

.cta-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: #c8ccce;
}

.page-hero {
  overflow: hidden;
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  background: #202427;
  color: #fff;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  transform: scale(1.045) translate3d(0, var(--hero-shift, 0px), 0);
  background: var(--hero-image) center / cover no-repeat;
  content: "";
  transition: transform 120ms linear;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.88) 0%, rgba(12, 14, 16, 0.56) 47%, rgba(12, 14, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 14, 16, 0.68), transparent 58%);
  content: "";
}

.page-hero .container {
  padding-block: clamp(90px, 13vw, 150px) clamp(60px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero .section-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  color: #d0d4d6;
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: #989da0;
  content: "/";
}

.breadcrumbs a {
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(42px, 6vw, 78px);
}

.prose h2 {
  margin: 48px 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 32px 0 10px;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--copper-dark);
  font-weight: 750;
}

.prose blockquote {
  margin: 34px 0;
  border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--copper-soft);
  padding: 22px 26px;
  color: #62300d;
  font-size: 1.08rem;
  font-weight: 700;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.side-card h2,
.side-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.side-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.side-card .button {
  width: 100%;
  margin-top: 8px;
}

.mini-links {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.mini-links a::after {
  color: var(--copper);
  content: "\2192";
}

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

.info-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 26px;
}

.info-card strong,
.value-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.info-card p,
.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 16px;
  text-decoration: none;
}

.contact-link:hover {
  border-color: #c58f68;
}

.contact-link span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.contact-link strong {
  display: block;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: clamp(26px, 5vw, 48px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c7c5bd;
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 12px 14px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(183, 91, 24, 0.15);
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.map-shell {
  overflow: hidden;
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ddd;
  box-shadow: var(--shadow-lg);
}

.google-map {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  filter: saturate(0.78) contrast(1.04);
}

.map-overlay-card {
  position: absolute;
  top: 28px;
  left: 28px;
  width: min(390px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(17, 20, 22, 0.92);
  box-shadow: 0 20px 60px rgba(17, 20, 22, 0.28);
  color: #fff;
  padding: 26px;
  backdrop-filter: blur(18px);
}

.map-overlay-card .eyebrow {
  color: #efad7d;
}

.map-overlay-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
}

.map-overlay-card p {
  color: #cbd0d2;
}

.legal-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 20px;
}

.site-footer {
  background: #101315;
  color: #fff;
  padding-block: 68px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
  gap: 34px;
}

.footer-brand {
  display: block;
  width: 104px;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 10px;
  background: transparent;
}

.footer-brand img {
  width: 100%;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #bfc4c6;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
  color: #969da0;
  font-size: 0.78rem;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(100% - 32px, 1080px);
  max-height: calc(100vh - 32px);
  border: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #101315;
  color: #fff;
  padding: 0;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox img {
  display: block;
  width: min(100%, 980px);
  max-height: calc(100vh - 120px);
  margin-inline: auto;
  object-fit: contain;
}

.lightbox-bar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px 10px 22px;
}

.lightbox-bar p {
  margin: 0;
  color: #e5e8e9;
  font-size: 0.84rem;
  font-weight: 800;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  min-height: 320px;
}

.lightbox-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
}

.lightbox-nav {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.thank-you-page {
  display: grid;
  min-height: calc(100vh - var(--header-h));
  place-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(183, 91, 24, 0.13), transparent 26%),
    radial-gradient(circle at 86% 82%, rgba(167, 173, 177, 0.18), transparent 30%),
    var(--paper);
  padding: clamp(54px, 8vw, 100px) 20px;
}

.thank-you-shell {
  width: min(100%, 980px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  backdrop-filter: blur(18px);
}

.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(183, 91, 24, 0.22);
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper-dark);
  box-shadow: 0 12px 28px rgba(183, 91, 24, 0.14);
}

.success-mark svg {
  width: 28px;
  height: 28px;
}

.thank-you-page h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2.4rem, 5.3vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.thank-you-page h1 span {
  color: var(--copper);
}

.thank-you-intro {
  max-width: 650px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.thank-you-actions {
  justify-content: center;
  margin-top: 28px;
}

.thank-you-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(36px, 5vw, 54px);
  text-align: left;
}

.thank-you-next article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8f7f3;
  padding: 20px;
}

.thank-you-next span,
.thank-you-next strong {
  display: block;
}

.thank-you-next span {
  margin-bottom: 16px;
  color: var(--copper-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.thank-you-next strong {
  margin-bottom: 7px;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.thank-you-next p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-h));
  place-items: center;
  padding-inline: 20px;
  padding-block: 80px;
  text-align: center;
}

.not-found .narrow {
  width: min(100%, 840px);
  min-width: 0;
}

.not-found .info-card {
  min-width: 0;
  overflow-wrap: anywhere;
}

.not-found > .narrow > strong {
  display: block;
  color: var(--copper);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

@media (max-width: 1080px) {
  .nav-cta {
    display: none;
  }

  .nav-list a {
    padding-inline: 9px;
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-frame img {
    min-height: 520px;
  }

  .service-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 76px;
  }

  .brand {
    width: 90px;
  }

  .brand img {
    max-height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    right: 12px;
    bottom: auto;
    left: 12px;
    visibility: hidden;
    transform: translateY(-10px) scale(0.985);
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h) - 28px);
    border: 1px solid rgba(23, 26, 29, 0.1);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(16, 19, 21, 0.24);
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav[data-open="true"] {
    visibility: visible;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    gap: 6px;
  }

  .nav-list a {
    border: 1px solid #ebe9e3;
    border-radius: 13px;
    background: #f8f7f3;
    padding: 14px 15px;
    font-size: 1rem;
  }

  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    border-color: #e3c2a9;
    background: var(--copper-soft);
  }

  .hero {
    min-height: auto;
  }

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

  .home-hero-inner,
  .precision-band-grid,
  .faq-compact-layout,
  .finish-story-grid,
  .gallery-intro {
    grid-template-columns: 1fr;
  }

  .finish-story-grid {
    gap: 30px;
  }

  .finish-story-media {
    min-height: 440px;
  }

  .finish-story-copy {
    max-width: 680px;
    padding-block: 0;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero-inner {
    gap: 38px;
    padding-bottom: 46px;
  }

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

  .hero-proof div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-proof div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
  }

  .service-visual-card {
    min-height: 280px;
  }

  .service-visual-card:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .service-visual-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .precision-band-grid {
    align-items: start;
  }

  .faq-compact-layout {
    gap: 30px;
  }

  .hero-visual {
    max-width: 600px;
  }

  .hero-frame img {
    min-height: 450px;
    aspect-ratio: 1.05;
  }

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

  .service-card.featured {
    grid-column: 1 / -1;
  }

  .process-grid,
  .info-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 100px;
  }

  .gallery-card,
  .gallery-card.wide {
    grid-column: span 6;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 94px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding-block: 66px;
  }

  .compact-section {
    padding-block: 56px;
  }

  .display {
    font-size: clamp(2.95rem, 16vw, 4.6rem);
  }

  .header-row {
    display: block;
  }

  .header-row .text-link {
    margin-top: 18px;
  }

  .hero {
    padding-top: 48px;
    background: linear-gradient(150deg, #fbfaf6 0 68%, #ebe9e1 68% 100%);
  }

  .home-hero {
    min-height: 560px;
  }

  .home-hero-media {
    background-position: 66% center;
  }

  .home-hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 11, 12, 0.88), rgba(9, 11, 12, 0.42)),
      linear-gradient(0deg, rgba(9, 11, 12, 0.92), transparent 62%);
  }

  .home-hero-inner {
    display: block;
    padding-block: 42px 28px;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.45rem);
  }

  .home-hero .button-row {
    display: none;
  }

  .hero-proof {
    margin-top: 26px;
    border-radius: 18px;
  }

  .hero-proof div {
    padding: 14px 12px;
  }

  .hero-proof strong {
    font-size: 1.25rem;
  }

  .hero-proof span {
    font-size: 0.63rem;
  }

  .hero-scroll {
    display: none;
  }

  .service-visual-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    gap: 14px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

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

  .service-visual-card,
  .service-visual-card:nth-last-child(-n + 2) {
    min-height: 290px;
    grid-column: auto;
    grid-row: auto;
  }

  .service-visual-card:first-child {
    min-height: 320px;
    grid-column: auto;
    grid-row: auto;
  }

  .service-visual-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .service-visual-copy strong {
    font-size: 1.15rem;
  }

  .service-visual-number {
    top: 11px;
    left: 11px;
  }

  .service-index-card,
  .service-index-card:first-child {
    min-height: 390px;
    grid-column: auto;
  }

  .service-index-card:first-child .service-index-media,
  .service-index-media {
    height: 225px;
  }

  .home-location-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .finish-story-media {
    min-height: 340px;
    border-radius: 22px;
  }

  .finish-story-label {
    right: 17px;
    bottom: 16px;
    left: 17px;
  }

  .finish-story-copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .home-google-map {
    min-height: 220px;
    height: 220px;
  }

  .precision-steps {
    grid-template-columns: 1fr;
  }

  .precision-steps li {
    min-height: 120px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-frame {
    border-width: 7px;
    border-radius: 42% 42% 26px 26px;
  }

  .hero-frame img {
    min-height: 380px;
  }

  .hero-note {
    right: 12px;
    bottom: 12px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .info-grid,
  .value-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    min-height: 245px;
    grid-column: auto;
  }

  .image-panel img,
  .image-panel.landscape img {
    min-height: 350px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }

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

  .gallery-filters button {
    width: 100%;
    padding-inline: 10px;
  }

  .gallery-principles-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 18px;
  }

  .lightbox-bar {
    min-height: 58px;
    padding-left: 15px;
  }

  .lightbox-stage {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(12, 14, 16, 0.82), rgba(12, 14, 16, 0.34)),
      linear-gradient(0deg, rgba(12, 14, 16, 0.84), transparent 65%);
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .form-card {
    border-radius: var(--radius-md);
  }

  .map-shell,
  .google-map {
    min-height: 560px;
    height: 560px;
  }

  .map-overlay-card {
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    border-radius: 19px;
    padding: 20px;
  }

  .thank-you-page {
    min-height: auto;
    padding: 44px 14px 62px;
  }

  .thank-you-shell {
    border-radius: 24px;
    padding: 30px 18px;
  }

  .thank-you-page h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .thank-you-next {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    width: 92px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom > :last-child {
    margin-top: 8px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 1050;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid rgba(23, 26, 29, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 50px rgba(14, 17, 19, 0.22);
    padding: 7px;
    backdrop-filter: blur(20px);
  }

  .mobile-actions a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(23, 26, 29, 0.08);
    border-radius: 14px;
    background: #f5f5f2;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    border-color: rgba(103, 193, 94, 0.32);
    background: #eff9ee;
    color: #185d20;
    box-shadow: 0 8px 22px rgba(52, 132, 46, 0.14);
  }

  .mobile-actions .whatsapp-logo {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .button-row,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding-block: 32px;
  }
}
