@font-face {
  font-family: "Swissra";
  src: url("/fonts/swissra-normal.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #282625;
  --ink-soft: #5e5953;
  --gold: #c89428;
  --gold-dark: #9a701c;
  --cream: #f4ede1;
  --cream-light: #fbf8f2;
  --paper: #ffffff;
  --line: rgba(40, 38, 37, 0.13);
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: "Swissra", Tahoma, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(200, 148, 40, 0.26);
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(40, 38, 37, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 178px;
  height: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand img {
  width: 168px;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-call {
  justify-self: end;
  min-width: 190px;
  min-height: 46px;
  padding: 9px 17px;
  border: 1px solid rgba(154, 112, 28, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  font-size: 13px;
  transition: 0.25s ease;
}

.header-call bdi {
  direction: ltr;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.header-call:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.header-call:hover bdi {
  color: #e0b65a;
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 241, 231, 0.92) 50%, rgba(237, 224, 204, 0.82) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -190px auto;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(200, 148, 40, 0.19);
  transform: rotate(45deg);
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: 18%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(212, 170, 91, 0.16);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
  padding-block: 72px 94px;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow-line {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.promise-copy h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.23;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(46px, 5.4vw, 82px);
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--gold-dark);
}

.hero-copy > p {
  max-width: 565px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

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

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

.text-link {
  position: relative;
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(40, 38, 37, 0.46);
}

.text-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.hero-note {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #70695f;
  font-size: 13px;
}

.note-mark {
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
  background: #ded2c1;
  box-shadow: 0 32px 70px rgba(91, 70, 42, 0.2);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(36, 30, 24, 0.16));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
  transform: scale(1.03);
}

.location-tag {
  position: absolute;
  left: -26px;
  bottom: 32px;
  min-width: 184px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(40, 38, 37, 0.13);
  backdrop-filter: blur(10px);
}

.location-tag small,
.location-tag strong {
  display: block;
}

.location-tag small {
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
}

.location-tag strong {
  font-size: 14px;
}

.diamond-outline {
  position: absolute;
  border: 1px solid rgba(200, 148, 40, 0.48);
  transform: rotate(45deg);
  pointer-events: none;
}

.diamond-one {
  width: 74px;
  height: 74px;
  top: -25px;
  right: -27px;
}

.diamond-two {
  width: 24px;
  height: 24px;
  top: 69px;
  right: -42px;
  background: var(--gold);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  right: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #70695f;
  font-size: 11px;
  writing-mode: vertical-rl;
}

.scroll-hint i {
  font-style: normal;
  color: var(--gold-dark);
}

.intro-section {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
}

.section-heading h2,
.promise-copy h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 900;
}

.intro-copy {
  padding-top: 38px;
}

.intro-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.intro-copy .lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.signature-line {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.signature-line span {
  width: 55px;
  height: 1px;
  background: var(--gold);
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -140px;
  top: -140px;
  border: 1px solid rgba(200, 148, 40, 0.18);
  transform: rotate(45deg);
}

.services-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.services-top .section-heading h2 {
  max-width: 650px;
}

.eyebrow.light {
  color: #e3ba62;
}

.services-top > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  min-height: 330px;
  padding: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  background: rgba(200, 148, 40, 0.1);
  transform: translateY(-5px);
}

.service-number {
  color: #deb35b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-rule {
  width: 38px;
  height: 1px;
  margin: 25px 0 28px;
  background: rgba(222, 179, 91, 0.6);
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 23px;
}

.service-card p {
  min-height: 78px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.9;
}

.service-card a {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #e3ba62;
  font-size: 12px;
  font-weight: 800;
}

.promise-section {
  background: var(--cream);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.promise-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(154, 112, 28, 0.18);
}

.promise-art::before,
.promise-art::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(200, 148, 40, 0.2);
  transform: rotate(45deg);
}

.promise-art::before {
  top: -126px;
  right: -126px;
}

.promise-art::after {
  bottom: -156px;
  left: -116px;
}

.promise-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(200, 148, 40, 0.24);
}

.promise-ring::before,
.promise-ring::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 148, 40, 0.17);
}

.promise-ring::after {
  inset: 48px;
  border-style: solid;
}

.promise-art img {
  position: relative;
  z-index: 2;
  width: 250px;
  filter: drop-shadow(0 18px 28px rgba(71, 51, 18, 0.12));
}

.spark {
  position: absolute;
  color: var(--gold);
}

.spark-one {
  top: 82px;
  left: 86px;
  font-size: 18px;
}

.spark-two {
  right: 76px;
  bottom: 86px;
  font-size: 11px;
}

.promise-copy > p {
  margin: 25px 0 34px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.promise-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(40, 38, 37, 0.13);
}

.promise-copy li {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(40, 38, 37, 0.13);
  font-size: 15px;
  font-weight: 700;
}

.promise-copy li span {
  color: var(--gold-dark);
  font-size: 11px;
}

.process-section {
  background: white;
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 58px;
}

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

.process-card {
  position: relative;
  min-height: 270px;
  padding: 38px;
  background: var(--cream-light);
  border-top: 2px solid var(--gold);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  left: -70px;
  bottom: -70px;
  border: 1px solid rgba(200, 148, 40, 0.25);
  transform: rotate(45deg);
}

.process-card > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.process-card h3 {
  margin: 48px 0 13px;
  font-size: 24px;
}

.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.contact-section {
  padding-top: 0;
  background: white;
}

.contact-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
  padding: 76px;
  background: #222120;
  color: white;
}

.contact-shell::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200, 148, 40, 0.12);
  filter: blur(10px);
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
}

.contact-copy p {
  max-width: 540px;
  margin: 23px 0 31px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 16px;
  line-height: 2;
}

.button-gold {
  background: var(--gold);
  color: #1f1d1b;
}

.button-gold:hover {
  background: white;
}

.contact-details {
  align-self: stretch;
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  display: block;
  margin-bottom: 14px;
  color: #e3ba62;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.phone-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.phone-list a {
  direction: ltr;
  font-size: clamp(24px, 2.6vw, 35px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.phone-list a:hover,
.address:hover {
  color: #e3ba62;
}

.contact-divider {
  height: 1px;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.15);
}

.address {
  max-width: 430px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.site-footer {
  padding: 46px 0;
  background: white;
  border-top: 1px solid rgba(40, 38, 37, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  width: 145px;
}

.footer-inner > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-dark);
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: #8b857d;
  border-top: 1px solid rgba(40, 38, 37, 0.08);
  font-size: 11px;
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .header-inner {
    grid-template-columns: 170px 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 64px 82px;
  }

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

  .hero-visual {
    width: calc(100% - 24px);
  }

  .hero-frame {
    aspect-ratio: 1.45 / 1;
  }

  .scroll-hint {
    display: none;
  }

  .intro-grid,
  .promise-grid,
  .services-top,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .services-top {
    gap: 24px;
  }

  .services-top > p {
    max-width: 610px;
  }

  .promise-art {
    min-height: 450px;
  }

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

  .process-card {
    min-height: auto;
  }

  .process-card h3 {
    margin-top: 30px;
  }

  .contact-shell {
    padding: 58px;
  }

  .contact-details {
    padding: 10px 0 0;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 130px 1fr;
    gap: 12px;
  }

  .brand {
    width: 125px;
    height: 62px;
  }

  .brand img {
    width: 121px;
  }

  .header-call {
    min-width: auto;
    min-height: 42px;
    padding: 8px 13px;
    gap: 7px;
  }

  .header-call span {
    display: none;
  }

  .header-call bdi {
    font-size: 12px;
  }

  .hero-grid {
    gap: 50px;
    padding-block: 55px 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-note {
    margin-top: 34px;
  }

  .hero-visual {
    width: calc(100% - 10px);
  }

  .hero-frame {
    aspect-ratio: 1 / 1.06;
  }

  .hero-frame img {
    object-position: 26% center;
  }

  .location-tag {
    left: -10px;
    bottom: 18px;
  }

  .diamond-one {
    right: -12px;
  }

  .diamond-two {
    right: -15px;
  }

  .intro-grid {
    gap: 38px;
  }

  .section-heading h2,
  .promise-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .intro-copy .lead {
    font-size: 18px;
  }

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

  .service-card {
    min-height: 290px;
    padding: 30px;
  }

  .promise-grid {
    gap: 45px;
  }

  .promise-art {
    min-height: 370px;
  }

  .promise-art img {
    width: 200px;
  }

  .promise-ring {
    width: 280px;
    height: 280px;
  }

  .process-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .process-card {
    padding: 31px;
  }

  .contact-section {
    padding-bottom: 0;
  }

  .contact-shell {
    width: 100%;
    padding: 58px 24px;
    gap: 45px;
  }

  .phone-list a {
    font-size: 29px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner small {
    width: 100%;
  }

}

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

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

/* Refined brand lockup */
.header-inner {
  min-height: 98px;
  grid-template-columns: 350px 1fr 205px;
  gap: 24px;
}

.brand-lockup {
  width: max-content;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 66px;
  height: 78px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 60px;
  height: 72px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 10px;
}

.header-call bdi,
.phone-list a,
.button-outline bdi {
  direction: ltr;
  unicode-bidi: isolate;
  font-family: Arial, sans-serif;
}

/* Living hero slider */
.hero-slider {
  position: relative;
  min-height: calc(100svh - 98px);
  height: min(820px, calc(100svh - 98px));
  overflow: hidden;
  background: #1e1b18;
  color: white;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide-image,
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-slide-image {
  transform: scale(1.095);
}

.hero-slide-overlay {
  background:
    linear-gradient(90deg, rgba(14, 12, 10, 0.16) 0%, rgba(14, 12, 10, 0.42) 48%, rgba(14, 12, 10, 0.88) 100%),
    linear-gradient(0deg, rgba(14, 12, 10, 0.42), transparent 45%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}

.hero-slider .hero-copy {
  width: min(720px, 64%);
  padding: 58px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.18s ease, transform 0.7s 0.18s ease;
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero-slider h1 span {
  display: block;
  color: #e2b557;
}

.hero-slider .hero-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.95;
}

.hero-text-link {
  padding-bottom: 6px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 700;
}

.hero-text-link:hover {
  color: #e2b557;
  border-color: #e2b557;
}

.slider-ui {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-dots button {
  width: 72px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  border: 0;
  cursor: pointer;
}

.slider-dots button span {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.slider-dots button i {
  width: 42px;
  height: 1px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.slider-dots button i::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  background: #e2b557;
}

.slider-dots button.is-active {
  color: #e2b557;
}

.slider-dots button.is-active i::after {
  width: 100%;
  transition: width 5.4s linear;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrows button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
  cursor: pointer;
  font-size: 17px;
  transition: background 0.25s ease, color 0.25s ease;
}

.slider-arrows button:hover {
  background: #d4a238;
  color: #1d1a17;
}

/* Richer service cards */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border: 0;
}

.service-card {
  min-height: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  background: #f8f3ea;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  background: #f8f3ea;
  transform: translateY(-9px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.service-image {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #776750;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 21, 18, 0.42), transparent 64%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image .service-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(31, 28, 25, 0.82);
  color: #e7bd65;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-family: Arial, sans-serif;
}

.service-content {
  padding: 29px 30px 31px;
}

.service-kicker {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
}

.service-content h3 {
  margin: 8px 0 13px;
  font-size: 25px;
}

.service-content p {
  min-height: 74px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.service-link {
  margin-top: 24px;
  padding-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-top: 1px solid rgba(40, 38, 37, 0.13);
  font-size: 12px;
  font-weight: 700;
}

.service-link i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #241f18;
  font-style: normal;
}

/* Footer lockup */
.footer-inner {
  grid-template-columns: 1fr auto;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-lockup img {
  width: 46px;
  height: 56px;
  object-fit: contain;
}

.footer-lockup span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-lockup strong {
  font-size: 17px;
}

.footer-lockup small {
  color: var(--ink-soft);
  font-size: 9px;
}

.copyright {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 22px;
  color: #8b857d;
  border-top: 1px solid rgba(40, 38, 37, 0.08);
  font-size: 11px;
}

.latin-digits {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  font-family: Arial, sans-serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "locl" 0;
}

/* Service details */
.service-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #24211e;
  color: white;
}

.service-hero > img,
.service-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero > img {
  object-fit: cover;
}

.service-hero-overlay {
  background: linear-gradient(90deg, rgba(23, 20, 18, 0.2), rgba(23, 20, 18, 0.86) 74%, rgba(23, 20, 18, 0.94));
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 85px;
}

.back-link {
  margin-bottom: 56px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.service-hero-number {
  position: absolute;
  top: 108px;
  left: 0;
  color: rgba(255, 255, 255, 0.18);
  font-family: Arial, sans-serif;
  font-size: 110px;
  font-weight: 800;
}

.service-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.22;
}

.service-hero-content > p {
  max-width: 720px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 2;
}

.service-overview {
  background: white;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 130px);
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-item {
  min-height: 88px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.feature-item span {
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.service-process {
  background: var(--cream);
}

.section-heading.centered {
  max-width: 710px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.service-steps article {
  min-height: 270px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(154, 112, 28, 0.14);
}

.service-steps article > span {
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.service-steps h3 {
  margin: 54px 0 14px;
  font-size: 24px;
}

.service-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.ideal-section {
  background: var(--ink);
  color: white;
}

.ideal-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.ideal-grid h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.3;
}

.ideal-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ideal-grid li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
}

.ideal-grid li span {
  color: #e2b557;
  font-size: 10px;
}

.service-cta {
  background: white;
}

.service-cta-shell {
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 55px;
  background: var(--cream-light);
  border: 1px solid rgba(154, 112, 28, 0.16);
}

.service-cta h2 {
  margin: 7px 0 13px;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.3;
}

.service-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-cta-actions {
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button-outline {
  color: var(--ink);
  border-color: rgba(40, 38, 37, 0.3);
}

.button-outline bdi {
  direction: ltr;
}

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 300px 1fr 190px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .main-nav {
    gap: 22px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-slider {
    min-height: 760px;
    height: 760px;
  }

  .hero-slide-overlay {
    background: linear-gradient(90deg, rgba(14, 12, 10, 0.42), rgba(14, 12, 10, 0.82));
  }

  .hero-slider .hero-copy {
    width: min(680px, 92%);
  }

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

  .service-overview-grid,
  .ideal-grid,
  .service-cta-shell {
    grid-template-columns: 1fr;
  }

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

  .service-steps article {
    min-height: 220px;
  }

  .service-cta-actions {
    min-width: 0;
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 84px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 59px;
  }

  .brand-mark img {
    width: 42px;
    height: 55px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .header-call {
    min-width: 118px;
  }

  .hero-slider {
    min-height: 690px;
    height: 690px;
  }

  .hero-slide-content {
    padding-bottom: 100px;
  }

  .hero-slider .hero-copy {
    width: 100%;
    padding-top: 20px;
  }

  .hero-slider h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-slider .hero-copy > p {
    font-size: 15px;
    line-height: 1.85;
  }

  .slider-ui {
    bottom: 19px;
  }

  .slider-dots {
    gap: 6px;
  }

  .slider-dots button {
    width: 43px;
  }

  .slider-dots button i {
    width: 21px;
  }

  .slider-arrows button {
    width: 42px;
    height: 42px;
  }

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

  .service-content p {
    min-height: 0;
  }

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

  .service-hero {
    min-height: 660px;
  }

  .service-hero-overlay {
    background: linear-gradient(90deg, rgba(23, 20, 18, 0.55), rgba(23, 20, 18, 0.9));
  }

  .service-hero-number {
    top: 90px;
    font-size: 70px;
  }

  .service-hero h1 {
    font-size: 43px;
  }

  .service-hero-content > p {
    font-size: 15px;
  }

  .service-overview-grid {
    gap: 40px;
  }

  .feature-item {
    grid-template-columns: 40px 1fr;
  }

  .service-steps article {
    padding: 30px;
  }

  .ideal-grid {
    gap: 44px;
  }

  .service-cta-shell {
    width: 100%;
    padding: 50px 24px;
  }

  .service-cta-actions {
    max-width: none;
  }
}
