:root {
  --black: #08090a;
  --white: #ffffff;
  --paper: #f6f2eb;
  --line: #d8cfbf;
  --gold: #b17a20;
  --gold-dark: #7b511d;
  --text: #111111;
  --muted: #4d4942;
  --font-base: "Montserrat", Arial, Helvetica, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 17px;
  --fs-md: 17px;
  --fs-lg: 17px;
  --fs-xl: 28px;
  --fs-h1: clamp(54px, 4.3vw, 64px);
  --fs-h2: clamp(32px, 3.1vw, 48px);
  --fs-h3: 20px;
  --lh-tight: 1;
  --lh-title: 1.08;
  --lh-body: 27px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

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

h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
  font-family: var(--font-display);
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-title);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-title);
}

p,
li {
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

small {
  font-size: var(--fs-xs);
  line-height: 1.3;
}

a,
button,
input,
select,
textarea {
  font-family: var(--font-base);
}

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

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

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform 220ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.top.is-hidden {
  transform: translateY(-100%);
}

.top.is-scrolled,
.top.menu-open {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #e8e2d8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.top-contact {
  height: 0;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: rgba(8, 9, 10, 0.94);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.top-contact span {
  height: 18px;
  width: 1px;
  background: var(--gold);
}

.nav {
  max-width: 1280px;
  height: 88px;
  margin: 0 auto;
  padding: 0 clamp(56px, 6vw, 84px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: height 180ms ease;
}

.top.is-scrolled .nav {
  height: 84px;
}

.logo {
  width: 150px;
  height: 68px;
  overflow: visible;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 14px 0 12px;
  border-bottom: 0;
  line-height: 1;
}

.nav-item {
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 160ms ease;
}

.nav-links a.active::before,
.nav-links a:hover::before,
.nav-item:hover > a::before,
.nav-item:focus-within > a::before {
  width: 40px;
}

.nav-links:hover > a.active:not(:hover)::before,
.nav-links:focus-within > a.active:not(:focus)::before {
  width: 0;
}

.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--gold);
}

.nav-links .quote::before {
  display: none;
}

.nav-links .has-submenu::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 318px;
  padding: 16px 24px;
  display: grid;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(230, 222, 210, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(230, 222, 210, 0.72);
  border-top: 1px solid rgba(230, 222, 210, 0.72);
  transform: translateX(-50%) rotate(45deg);
}

.submenu a {
  position: relative;
  min-height: 62px;
  padding: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 18px;
  color: #111111;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.submenu a + a {
  border-top: 1px solid #e5ddd2;
}

.submenu a::before {
  display: none;
}

.submenu a:hover {
  color: var(--gold);
  background: transparent;
}

.submenu-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.submenu-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.submenu b {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  transition: transform 160ms ease;
}

.submenu a:hover b {
  transform: translateX(3px);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-links .quote,
.btn {
  height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1.5px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.nav-links .quote,
.btn.gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}

.btn.light {
  background: rgba(255, 255, 255, 0.2);
  border-color: #171717;
  color: var(--black);
}

.nav-links .quote {
  width: 205px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(183, 123, 24, 0.7);
  background: rgba(255, 255, 255, 0.64);
  padding: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #111111;
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.hero {
  min-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248,244,237,0.97) 0%, rgba(248,244,237,0.91) 34%, rgba(248,244,237,0.38) 54%, rgba(248,244,237,0.02) 76%),
    url("../images/hero-bg.webp") 88% center / cover no-repeat;
}

.hero-copy {
  width: min(50vw, 610px);
  height: 95vh;
  min-height: 760px;
  max-height: 920px;
  margin-left: max(72px, calc((100vw - 1280px) / 2 + 64px));
  padding: 196px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-kicker {
  position: relative;
  margin: 0 0 26px;
  padding-left: 68px;
  color: var(--black);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

h1 {
  margin: 0 0 0;
  max-width: 610px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--gold);
  margin-top: 3px;
}

.hero-rule {
  width: 170px;
  height: 2px;
  margin: 24px 0 26px;
  background: linear-gradient(90deg, var(--gold) 0 72px, #d6c7ad 72px 100%);
}

.hero-copy > p:not(.hero-kicker):not(.hero-rule) {
  max-width: 460px;
  margin: 0 0 28px;
  color: #222;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 44px;
}

.hero-actions .btn {
  min-width: 210px;
  height: 48px;
}

.hero-actions .btn.light {
  min-width: 180px;
}

.hero-values {
  width: min(100%, 610px);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.hero-values li {
  min-height: 76px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid #d4cabd;
}

.hero-values li:last-child {
  border-right: 0;
}

.hero-values span {
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
  display: grid;
  place-items: center;
  color: var(--gold);
  line-height: 1;
}

.hero-values svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-values b {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-values small {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  text-transform: none;
}

.hero-contact {
  height: 112px;
  min-height: 112px;
  padding: 0 max(72px, calc((100vw - 1280px) / 2 + 64px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 54px;
  background: linear-gradient(90deg, #1d1e1f, #121314);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.hero-contact a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-contact a:last-child {
  border-right: 0;
}

.contact-icon {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(183, 123, 24, 0.04);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-contact a > span:not(.contact-icon) {
  color: #e8dfd4;
  font-size: var(--fs-sm);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-contact strong {
  margin-top: 7px;
  color: var(--white);
  font-size: var(--fs-lg);
  line-height: 1.1;
  font-weight: 400;
}

.services-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 44px max(72px, calc((100vw - 1280px) / 2 + 64px)) 50px;
  background:
    radial-gradient(circle at 50% 50%, rgba(183, 123, 24, 0.08), transparent 34%),
    linear-gradient(90deg, #171819, #101112 50%, #171819);
  color: var(--white);
}

.services-bar article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 18px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.045);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.012);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.services-bar article:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 123, 24, 0.38);
  background:
    linear-gradient(180deg, rgba(183, 123, 24, 0.08), rgba(255,255,255,0.014)),
    rgba(255,255,255,0.018);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 14px 30px rgba(0, 0, 0, 0.18);
}

.services-bar article:nth-child(1),
.services-bar article:nth-child(2),
.services-bar article:nth-child(3) {
  grid-column: span 2;
  padding-bottom: 28px;
}

.services-bar article:nth-child(4) {
  grid-column: 1 / span 3;
  padding-top: 28px;
}

.services-bar article:nth-child(5) {
  grid-column: 4 / span 3;
  padding-top: 28px;
}

.icon {
  grid-column: 1;
  grid-row: 1;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.services-bar article:hover .icon {
  transform: translateY(-2px);
  background: rgba(183, 123, 24, 0.08);
  box-shadow: 0 0 0 4px rgba(183, 123, 24, 0.045);
}

.services-bar h2 {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.services-bar article:hover h2 {
  color: #ffffff;
}

.services-bar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.services-bar p {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 330px;
  margin: 0;
  color: #eee8de;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.services-bar img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.finish-band {
  display: grid;
  grid-template-columns: 32% 1fr 32%;
  align-items: center;
  min-height: 74px;
  background: #f2eadf;
  border-bottom: 1px solid var(--line);
}

.finish-band > * {
  margin: 0;
  padding: 0 26px;
}

.finish-left {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--gold-dark);
  border-right: 2px solid #cbb99e;
  font-size: var(--fs-lg);
  text-transform: uppercase;
}

.finish-band p {
  color: #29251f;
  font-size: var(--fs-sm);
}

.finish-band strong {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}

.values {
  min-height: 46px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
  text-transform: uppercase;
}

.values span {
  color: var(--gold-dark);
  font-weight: 900;
}

.section {
  padding: 72px max(28px, calc((100vw - 1180px) / 2 + 24px));
}

.about,
.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 72px;
  align-items: center;
  padding: 58px max(72px, calc((100vw - 1280px) / 2 + 64px)) 66px;
  background: #f7f2e9;
}

small {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 16px;
  font-family: var(--font-base);
  font-weight: 800;
}

.about h2 {
  max-width: 500px;
  margin-bottom: 24px;
  color: #111111;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 800;
}

.about h2 span {
  display: block;
  color: var(--gold);
}

.about h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold) 0 70px, #d7cbb8 70px 100%);
}


.copy p,
.section-head p {
  max-width: 640px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.55;
}

.about .copy p {
  max-width: 540px;
  margin-bottom: 20px;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.65;
}

.about-photo {
  min-height: 360px;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  background:
    url("../images/built-on-value.webp") center / cover;
}

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cards article {
  min-height: 170px;
  padding: 24px;
  background: var(--white);
  color: var(--text);
  border-top: 4px solid var(--gold);
}

.cards h3,
.review-grid h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cards p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.projects {
  padding: 58px max(72px, calc((100vw - 1280px) / 2 + 64px)) 64px;
  background: #fbfaf7;
}

.projects .section-head small {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.projects .section-head small::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.projects .section-head h2 {
  margin-bottom: 16px;
  font-family: var(--font-base);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  max-width: none;
}

.projects .section-head h2 span {
  color: var(--gold);
}

.projects .section-head p {
  max-width: none;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.55;
}

.filters {
  margin: 28px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filters button {
  min-width: 118px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid #cfc7bb;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.filters button.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.filters button:hover {
  border-color: var(--gold);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.project-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 235px;
  border-radius: 6px;
  background: var(--black);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 38%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.project-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.project-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}

.project-icon img {
  width: 20px;
  height: 20px;
  min-height: 0;
  object-fit: contain;
}

.project-caption h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.project-caption b {
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--gold);
  font-weight: 400;
  transition: transform 180ms ease;
}

.project-caption b svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card:hover .project-caption b {
  transform: translateX(4px);
}

.project-card.is-hidden {
  display: none;
}

.projects-gallery {
  background: #f7f2e9;
}

.project-grid-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projects-support {
  background: #fbfaf7;
}

.reviews-list {
  background:
    linear-gradient(90deg, rgba(8,9,10,0.92) 0%, rgba(8,9,10,0.78) 52%, rgba(8,9,10,0.88) 100%),
    url("../images/review-bg.webp") center / cover;
}

.review-faq {
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.review-faq .section-head {
  max-width: 720px;
}

.review-faq .section-head h2 {
  max-width: 680px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  margin-top: 38px;
}

.faq-nav {
  overflow: hidden;
  border: 1px solid rgba(177, 122, 32, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.045);
}

.faq-nav a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  gap: 16px;
  align-items: center;
  padding: 0 22px;
  color: #111111;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  border-bottom: 1px solid rgba(177, 122, 32, 0.14);
  transition: background 160ms ease, color 160ms ease;
}

.faq-nav a:last-child {
  border-bottom: 0;
}

.faq-nav a.active,
.faq-nav a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.5);
}

.faq-nav svg {
  width: 22px;
  height: 22px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-nav b {
  color: currentColor;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

#faq-list.faq-accordion,
.faq-panel {
  min-width: 0;
}

#faq-list.faq-accordion {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 650px;
}

.faq-accordion details {
  border: 1px solid rgba(177, 122, 32, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.035);
}

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

.faq-accordion summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  color: #111111;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.faq-accordion details[open] summary::after {
  content: "–";
}

.faq-accordion details p {
  max-width: 720px;
  margin: -4px 24px 22px;
  color: #403c35;
  font-size: 15px;
  line-height: 1.65;
}

.faq-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}

.faq-page-btn {
  min-width: 94px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(177, 122, 32, 0.44);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.48);
  color: #111111;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.faq-page-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.faq-page-btn:disabled {
  cursor: default;
  opacity: 0.42;
}

.faq-pagination span {
  min-width: 82px;
  color: #4d4840;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.faq-help {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: #111111;
  font-size: 15px;
  line-height: 1.45;
}

.faq-help svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-help a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-submit {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: 64px;
  align-items: center;
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.review-submit h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

.review-submit h2 span {
  color: var(--gold);
}

.review-submit .copy p {
  max-width: 430px;
}

.review-form-panel form {
  padding-top: 42px;
}

.reviews {
  padding: 74px max(72px, calc((100vw - 1280px) / 2 + 64px)) 84px;
  background:
    linear-gradient(90deg, rgba(8,9,10,0.92) 0%, rgba(8,9,10,0.78) 52%, rgba(8,9,10,0.88) 100%),
    url("../images/review-bg.webp") center / cover;
  color: var(--white);
}

.reviews .section-head small {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--gold);
}

.reviews .section-head small::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.reviews .section-head h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
  font-weight: 800;
}

.reviews .section-head p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
}

.review-carousel {
  position: relative;
  margin-top: 42px;
  width: 100%;
  padding: 0;
}

.review-viewport {
  width: 100%;
  overflow: hidden;
}

.review-grid {
  display: flex;
  gap: 18px;
  transition: transform 260ms ease;
  will-change: transform;
}

.review-grid article {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  min-height: 300px;
  padding: 34px;
  background: #fbfaf7;
  color: var(--text);
  border-radius: 7px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1100px) {
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-card.featured {
    grid-column: span 2;
  }

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

  .review-grid {
    gap: 14px;
  }

  .review-grid article {
    flex-basis: calc((100% - 14px) / 2);
  }

  .review-submit {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.review-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 123, 24, 0.62);
  border-radius: 50%;
  background: rgba(8, 9, 10, 0.52);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
  transform: translateY(-50%);
}

.review-control.prev {
  left: 16px;
}

.review-control.next {
  right: 16px;
}

.review-carousel:hover .review-control,
.review-carousel:focus-within .review-control {
  opacity: 1;
  pointer-events: auto;
}

.review-control:hover {
  transform: translateY(calc(-50% - 1px));
  border-color: var(--gold);
  background: rgba(183, 123, 24, 0.12);
}

.review-control:disabled {
  opacity: 0.36;
  cursor: default;
  transform: translateY(-50%);
}

.review-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.quote-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.quote-mark svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.review-grid b {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 0;
  color: var(--gold);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.review-grid b span {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-grid p {
  margin-bottom: 30px;
  color: #111111;
  font-size: 16px;
  line-height: 1.75;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid strong {
  position: relative;
  margin-top: 24px;
  color: #08090a;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.review-grid strong::before {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--gold);
}

.review-grid span {
  margin-top: 4px;
  color: #55504a;
  font-size: 13px;
}

.contact {
  position: relative;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: 72px 76px;
  align-items: start;
  padding: 58px max(72px, calc((100vw - 1280px) / 2 + 64px)) 86px;
  overflow: hidden;
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  opacity: 0.25;
  background-image: radial-gradient(rgba(183, 123, 24, 0.5) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

.contact::before {
  top: 48px;
  left: 38%;
}

.contact::after {
  bottom: 28px;
  left: 42px;
}

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

.contact-intro {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact .copy small {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact .copy small::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.contact h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #111111;
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.08;
  font-weight: 800;
}

.contact h2 span {
  display: block;
  color: #111111;
}

.contact h2 em {
  color: var(--gold);
  font-style: normal;
}

.contact h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--gold);
}

.contact .copy > p {
  max-width: 400px;
  margin-bottom: 28px;
  color: #34312d;
  font-size: 16px;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list a,
.contact-list > span {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #111111;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111315;
  color: var(--gold);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list b {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.contact-panel {
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #1d1f20, #111213);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.contact-panel-badge {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #242627, #121314);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.contact-panel-badge svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 86px 42px 38px;
}

.field {
  min-height: 62px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 160ms ease, background 160ms ease;
}

.field:focus-within {
  border-color: rgba(183, 123, 24, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.field > span {
  color: var(--gold);
}

.field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  border-radius: 0;
  color: var(--white);
  font: inherit;
  font-size: 15px;
}

select {
  appearance: none;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

select option {
  color: var(--text);
}

.select-field {
  position: relative;
  grid-template-columns: 1fr;
}

.select-field::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #d6a243;
  border-bottom: 2px solid #d6a243;
  transform: translateY(-68%) rotate(45deg);
  pointer-events: none;
}

.custom-select {
  overflow: visible;
  z-index: 4;
}

.select-trigger {
  width: 100%;
  min-height: 44px;
  padding: 0 34px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  text-align: left;
}

.select-menu {
  position: absolute;
  left: -1px;
  right: -1px;
  top: calc(100% + 8px);
  z-index: 12;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(183, 123, 24, 0.46);
  border-radius: 6px;
  background: linear-gradient(135deg, #222425, #141516);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.custom-select.is-open .select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.select-menu button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-align: left;
  transition: background 140ms ease, color 140ms ease;
}

.select-menu button:hover,
.select-menu button.is-selected {
  background: rgba(183, 123, 24, 0.16);
  color: #fff;
}

textarea {
  min-height: 128px;
  padding-top: 2px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.86);
}

.message-field,
form .btn,
.response-note {
  grid-column: 1 / -1;
}

.message-field {
  min-height: 168px;
  align-items: start;
  padding-top: 20px;
}

form .btn {
  width: 100%;
  height: 58px;
  margin-top: 12px;
  gap: 14px;
  border: 0;
  background: linear-gradient(135deg, #c88918, #b77b18);
  font-size: 14px;
}

form .btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.response-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
}

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

.response-note svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  position: relative;
  padding: 58px max(72px, calc((100vw - 1280px) / 2 + 64px)) 24px;
  background: radial-gradient(circle at 50% 0%, rgba(183, 123, 24, 0.08), transparent 32%), #101315;
  color: var(--white);
}

.footer-main,
.footer-bottom {
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.footer-brand img {
  width: 210px;
  height: auto;
}

.footer-brand span {
  display: block;
  width: 70px;
  height: 2px;
  margin: 22px 0 24px 56px;
  background: var(--gold);
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: #e8e2d8;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.footer-brand p {
  max-width: 260px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 15px;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.site-footer h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 14px;
  background: var(--gold);
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #f2eee7;
  font-size: 15px;
  line-height: 1.4;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a span {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.subpage-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 108px max(72px, calc((100vw - 1280px) / 2 + 64px)) 36px;
  overflow: hidden;
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.services-hero {
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.subpage-hero-copy {
  width: min(100%, 590px);
}

.service-single-hero .subpage-hero-copy {
  width: min(100%, 760px);
}

.service-single-hero .subpage-hero-copy h1 {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: #111111;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.breadcrumb span {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.subpage-hero-copy h1 {
  margin-bottom: 20px;
  color: #111111;
  font-family: var(--font-base);
  font-size: clamp(42px, 3.8vw, 56px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.subpage-hero-copy h1 span,
.services-overview .section-head h2 span,
.services-cta h2 span {
  color: var(--gold);
}

.subpage-rule {
  width: 50px;
  height: 2px;
  margin: 0 0 24px;
  background: var(--gold);
}

.subpage-tagline {
  margin-bottom: 20px !important;
  color: #111111 !important;
  font-size: 13px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.subpage-hero-copy p {
  max-width: 500px;
  margin-bottom: 0;
  color: #242424;
  font-size: 16px;
  line-height: 1.65;
}

.services-overview {
  background: #f7f2e9;
}

.services-overview .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-overview .section-head h2 {
  max-width: 660px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

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

.service-detail-card {
  scroll-margin-top: 112px;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(177, 122, 32, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 122, 32, 0.46);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.service-detail-card.featured {
  grid-column: span 2;
  background: #111315;
  color: var(--white);
}

.service-detail-card.featured p,
.service-detail-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.service-detail-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  background: rgba(177, 122, 32, 0.06);
}

.service-detail-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service-detail-card h3,
.process-row h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.service-detail-card p {
  margin-bottom: 18px;
  color: #2b2925;
  font-size: 15px;
  line-height: 1.65;
}

.service-detail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: #403c35;
  font-size: 14px;
  line-height: 1.55;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.services-process {
  background:
    radial-gradient(circle at 50% 0%, rgba(177, 122, 32, 0.12), transparent 34%),
    #111315;
}

.services-process .section-head h2,
.services-process .process-row h3 {
  color: var(--white);
}

.services-process .section-head p,
.services-process .process-row p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-support {
  background: #f7f2e9;
}

.contact-checklist {
  background: #fffaf2;
}

.contact-checklist .section-head h2 span,
.contact-support .section-head h2 span {
  color: var(--gold);
}

.contact-support .process-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-support .process-row article {
  border-color: rgba(177, 122, 32, 0.18);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.process-row article {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.process-row span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.process-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.services-cta h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 800;
}

.services-cta .btn {
  min-width: 210px;
}

.service-single {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 54px;
  align-items: start;
  background: #f7f2e9;
}

.service-single-intro h2 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

.service-single-intro h2 span {
  color: var(--gold);
}

.service-single-intro p {
  max-width: 590px;
  margin-bottom: 28px;
  color: #2b2925;
  font-size: 16px;
  line-height: 1.65;
}

.service-single-panel {
  padding: 30px;
  border: 1px solid rgba(177, 122, 32, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-single-panel h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-single-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single-panel li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  color: #403c35;
  font-size: 15px;
  line-height: 1.55;
}

.service-single-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-support {
  background: #f7f2e9;
}

.service-support .section-head {
  max-width: 720px;
}

.service-support .section-head h2 {
  max-width: 620px;
  font-size: clamp(32px, 2.8vw, 42px);
}

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

.support-grid article {
  padding: 28px;
  border: 1px solid rgba(177, 122, 32, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.055);
}

.support-grid h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.support-grid p {
  margin: 0;
  color: #403c35;
  font-size: 15px;
  line-height: 1.65;
}

.service-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: url("../images/contact-bg.webp") center / cover no-repeat;
}

.service-next h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

.service-next h2 span {
  color: var(--gold);
}

.service-next .copy p {
  max-width: 560px;
}

.service-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
  background: #f7f2e9;
}

.about-story h2 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
}

.about-story h2 span,
.about-commitments .section-head h2 span {
  color: var(--gold);
}

.about-story .copy p {
  max-width: 560px;
  margin-bottom: 18px;
  color: #2b2925;
  font-size: 16px;
  line-height: 1.65;
}

.about-photo {
  min-height: 360px;
  border-radius: 7px;
  background: url("../images/built-on-value.webp") center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.about-commitments {
  background: #fbfaf7;
}

.about-commitments .section-head {
  max-width: 720px;
}

.about-commitments .section-head h2 {
  max-width: 650px;
  font-size: clamp(32px, 2.8vw, 42px);
}

.about-page .services-process {
  background:
    radial-gradient(circle at 50% 0%, rgba(177, 122, 32, 0.12), transparent 34%),
    #111315;
}

.footer-contact a,
.footer-contact > span {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #f2eee7;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-contact > span {
  border-bottom: 0;
}

.footer-contact svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-legal a {
  color: #e8e2d8;
  font-size: 14px;
}

.footer-legal a + a {
  position: relative;
}

.footer-legal a + a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: var(--gold);
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .top-contact {
    display: none;
  }

  .top,
  .top.menu-open {
    background: #fbfaf7;
  }

  .nav,
  .top.is-scrolled .nav {
    height: 72px;
    padding: 0 20px;
  }

  .logo {
    width: 124px;
    height: 54px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    align-content: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0;
  }

  .top.menu-open .menu-toggle {
    background: var(--gold);
    border-color: var(--gold);
  }

  .top.menu-open .menu-toggle span {
    background: var(--white);
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 72px);
    padding: 14px 20px 22px;
    overflow-y: auto;
    background: #ffffff;
    border-top: 1px solid #eee6dc;
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 0;
    font-size: 13px;
    line-height: 1.2;
  }

  .nav-links a::before {
    bottom: 5px;
    height: 2px;
  }

  .nav-links a.active::before,
  .nav-links a:hover::before,
  .nav-item:hover > a::before,
  .nav-item:focus-within > a::before {
    width: 32px;
  }

  .nav-links .quote {
    width: 100%;
    height: 46px;
    margin-top: 10px;
  }

  .nav-item {
    display: grid;
  }

  .submenu {
    position: static;
    width: auto;
    min-width: 0;
    padding: 4px 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu {
    transform: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    width: 100%;
    min-height: 38px;
    grid-template-columns: 24px minmax(0, 1fr) 12px;
    gap: 10px;
    padding: 0 0 0 14px;
    color: #33302b;
    font-size: 11px;
    letter-spacing: 0.9px;
    white-space: normal;
  }

  .submenu a + a {
    border-top-color: #eee6dc;
  }

  .submenu-icon {
    width: 22px;
    height: 22px;
  }

  .submenu-icon img {
    width: 18px;
    height: 18px;
  }

  .submenu b {
    font-size: 20px;
  }

  .hero {
    min-height: 0;
    height: auto;
    background:
      linear-gradient(180deg, rgba(248,244,237,0.98) 0%, rgba(248,244,237,0.98) 48%, rgba(248,244,237,0.42) 78%, rgba(248,244,237,0.05) 100%),
      url("../images/hero-bg.webp") 66% bottom / cover no-repeat;
  }

  .hero-copy {
    width: 100%;
    height: auto;
    min-height: 620px;
    margin-left: 0;
    justify-content: flex-start;
    padding: 112px 24px 34px;
  }

  .hero-contact {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 24px;
  }

  .hero-contact a {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.055);
  }

  .hero-contact a:last-child {
    border-bottom: 0;
  }

  .services-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 24px;
  }

  .services-bar article {
    grid-column: auto !important;
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 16px;
    row-gap: 14px;
    align-items: center;
    min-height: 0;
    padding: 22px !important;
  }

  .icon {
    width: 33px;
    height: 33px;
  }

  .services-bar img {
    width: 17px;
    height: 17px;
  }

  .services-bar h2 {
    margin: 0;
    font-size: 21px;
  }

  .services-bar p {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .about,
  .contact,
  .cards,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: 290px;
    padding: 90px 24px 38px;
  }

  .subpage-hero-copy {
    max-width: 560px;
  }

  .breadcrumb {
    margin-bottom: 28px;
  }

  .services-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .service-single {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .service-next {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .service-next-actions {
    justify-content: flex-start;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-photo {
    min-height: 300px;
  }

  .contact {
    gap: 54px;
    padding: 62px 24px 64px;
    background: url("../images/contact-bg.webp") center / cover no-repeat;
  }

  .contact::before {
    left: auto;
    right: 28px;
  }

  .contact h2 {
    max-width: 560px;
  }

  .contact .copy > p {
    max-width: 520px;
  }

  .about {
    gap: 32px;
    padding: 48px 24px 54px;
  }

  .about h2 {
    font-size: clamp(32px, 8vw, 40px);
  }

  .about .copy p {
    font-size: 15px;
  }

  .projects {
    padding: 52px 24px 60px;
  }

  .projects .section-head h2 {
    font-size: clamp(30px, 6vw, 38px);
  }

  .projects .section-head p {
    font-size: 16px;
  }

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

  .project-card,
  .project-card img {
    min-height: 220px;
  }

  .reviews {
    padding: 54px 24px 62px;
  }

  .reviews .section-head h2 {
    font-size: clamp(32px, 7vw, 42px);
  }

  .review-viewport {
    overflow: hidden;
  }

  .review-grid {
    gap: 0;
  }

  .review-grid article {
    flex-basis: 100%;
    min-height: 0;
    padding: 28px 26px 86px;
    width: 100%;
    overflow: hidden;
  }

  .review-top {
    gap: 14px;
  }

  .review-grid b {
    gap: 12px;
    flex-wrap: wrap;
  }

  .review-control {
    top: auto;
    bottom: 28px;
    width: 42px;
    height: 42px;
    opacity: 1;
    pointer-events: auto;
    border-color: rgba(183, 123, 24, 0.55);
    background: rgba(255, 250, 240, 0.92);
    color: var(--gold);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
    transform: none;
  }

  .review-control.next {
    background: var(--gold);
    color: #fff;
  }

  .review-control:hover {
    transform: translateY(-1px);
    background: var(--gold);
    color: #fff;
  }

  .review-control.prev {
    left: calc(50% - 50px);
  }

  .review-control.next {
    left: calc(50% + 8px);
    right: auto;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .faq-nav a {
    border-bottom: 1px solid rgba(177, 122, 32, 0.14);
  }

  .faq-nav a:nth-child(odd) {
    border-right: 1px solid rgba(177, 122, 32, 0.14);
  }

  .site-footer {
    padding: 48px 24px 24px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 34px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .logo {
    width: 118px;
    height: 52px;
  }

  .nav,
  .top.is-scrolled .nav {
    height: 68px;
    padding: 0 18px;
  }

  .nav-links {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .hero-kicker {
    margin-bottom: 22px;
    padding-left: 52px;
    font-size: var(--fs-xs);
  }

  .hero-kicker::before {
    width: 36px;
  }

  .hero-copy > p:not(.hero-kicker):not(.hero-rule) {
    max-width: 330px;
    font-size: var(--fs-base);
  }

  .hero-rule {
    width: 128px;
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 34px;
  }

  .hero-actions .btn {
    min-width: 0;
    height: 50px;
    font-size: var(--fs-xs);
  }

  .hero-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 330px;
    gap: 12px 0;
  }

  .hero-values li {
    min-height: 82px;
  }

  .hero-values span {
    width: 34px;
    height: 34px;
    font-size: 25px;
  }

  .hero-values b,
  .hero-values small {
    font-size: 11px;
  }

  .hero-contact strong {
    font-size: var(--fs-md);
  }

  .hero-contact a {
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-icon svg {
    width: 19px;
    height: 19px;
  }

  .hero-actions,
  form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact {
    gap: 46px;
  }

  .contact h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .contact-list a,
  .contact-list > span {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    font-size: 15px;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
  }

  form {
    padding: 68px 18px 28px;
    gap: 13px;
  }

  .contact-panel-badge {
    width: 64px;
    height: 64px;
    top: -32px;
  }

  .field {
    min-height: 58px;
    padding: 0 14px;
  }

  .message-field {
    min-height: 150px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 52px 20px;
  }

  .subpage-hero {
    min-height: 270px;
    padding: 78px 20px 34px;
    background-position: 58% center;
  }

  .breadcrumb {
    gap: 12px;
    margin-bottom: 24px;
    font-size: 11px;
  }

  .subpage-hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(32px, 9vw, 40px);
  }

  .subpage-rule {
    width: 44px;
    margin-bottom: 18px;
  }

  .subpage-hero-copy p {
    font-size: 15px;
    line-height: 1.6;
  }

  .subpage-tagline {
    font-size: 12px !important;
    line-height: 18px !important;
    letter-spacing: 2px;
  }

  .service-detail-grid,
  .process-row,
  .contact-support .process-row {
    grid-template-columns: 1fr;
  }

  .service-detail-card,
  .service-detail-card.featured {
    grid-column: auto;
    min-height: 0;
    padding: 24px 20px;
  }

  .service-detail-card h3,
  .process-row h3 {
    font-size: 24px;
  }

  .services-overview .section-head h2,
  .services-cta h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .process-row article {
    padding: 24px 20px;
  }

  .service-single-panel {
    padding: 24px 20px;
  }

  .service-single-panel h3 {
    font-size: 24px;
  }

  .support-grid article {
    padding: 24px 20px;
  }

  .support-grid h3 {
    font-size: 23px;
  }

  .service-next-actions {
    width: 100%;
  }

  .about-story h2,
  .about-commitments .section-head h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .about-story .copy p {
    font-size: 15px;
  }

  .about-photo {
    min-height: 240px;
  }

  .projects {
    padding: 42px 20px 50px;
  }

  .filters button {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    padding: 0 12px;
  }

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

  .project-card,
  .project-card img {
    min-height: 230px;
  }

  .review-carousel {
    padding: 0;
  }

  .review-grid {
    gap: 0;
  }

  .review-grid article {
    flex-basis: 100%;
    padding: 26px 22px 86px;
  }

  .review-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .quote-mark,
  .quote-mark svg {
    width: 36px;
    height: 36px;
  }

  .review-grid p {
    font-size: 15px;
    line-height: 1.65;
  }

  .review-control {
    width: 39px;
    height: 39px;
    opacity: 1;
    pointer-events: auto;
  }

  .review-control.prev {
    left: calc(50% - 47px);
  }

  .review-control.next {
    left: calc(50% + 8px);
    right: auto;
  }

  .review-control svg {
    width: 19px;
    height: 19px;
  }

  .review-submit {
    gap: 26px;
  }

  .review-submit h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .review-faq .section-head h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

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

  .faq-nav a {
    min-height: 56px;
    padding: 0 18px;
    border-right: 0 !important;
  }

  .faq-accordion summary {
    min-height: 54px;
    padding: 16px 18px;
    font-size: 14px;
  }

  #faq-list.faq-accordion {
    min-height: 560px;
  }

  .faq-accordion details p {
    margin: -2px 18px 18px;
    font-size: 14px;
  }

  .faq-pagination {
    justify-content: space-between;
    gap: 10px;
  }

  .faq-page-btn {
    min-width: 82px;
    padding: 0 12px;
  }

  .faq-help {
    align-items: flex-start;
    font-size: 14px;
  }

  .review-form-panel form {
    padding-top: 28px;
  }

  .site-footer {
    padding: 42px 20px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-brand span {
    margin-left: 48px;
  }

  .footer-brand p {
    max-width: 320px;
  }

  .footer-links,
  .footer-contact {
    gap: 12px;
  }

  .footer-bottom {
    margin-top: 36px;
  }

  .footer-legal {
    gap: 20px;
    flex-wrap: wrap;
  }
}
