﻿:root {
  --gold: #a07f3a;
  --wheat: #c8aa6f;
  --charcoal: #2f2f2f;
  --nav-brown: #4a2b14;
  --soft-sand: #e3d5bb;
  --paper: #fffdf8;
  --cream: #f8f2e8;
  --line: rgba(160, 127, 58, 0.2);
  --shadow: 0 16px 45px rgba(87, 61, 22, 0.13);
  --radius: 8px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 170, 111, 0.22), transparent 32rem),
    linear-gradient(180deg, #fffcf6 0%, #fff 38%, #fbf6ed 100%);
  color: var(--charcoal);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(160, 127, 58, 0.2);
  }

  50% {
    box-shadow: 0 16px 34px rgba(160, 127, 58, 0.34);
  }
}

@keyframes softZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(160, 127, 58, 0.22);
  }

  50% {
    box-shadow: 0 14px 34px rgba(160, 127, 58, 0.38);
  }
}

@keyframes buttonShine {
  from {
    transform: translateX(-130%) skewX(-20deg);
  }

  to {
    transform: translateX(230%) skewX(-20deg);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes ctaBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  12% {
    transform: translateY(-5px);
  }

  24% {
    transform: translateY(0);
  }

  36% {
    transform: translateY(-3px);
  }

  48% {
    transform: translateY(0);
  }
}

a {
  color: #fffdf8;
  text-decoration: none;
}

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

.site-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 12px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: var(--nav-brown) !important;
  background-color: var(--nav-brown) !important;
  box-shadow: 0 12px 34px rgba(74, 43, 20, 0.18);
  backdrop-filter: blur(18px);
  animation: fadeUp 700ms var(--ease-smooth) both;
  transition: box-shadow 260ms var(--ease-smooth), transform 260ms var(--ease-smooth);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
}

.logo-brand {
  flex: 0 0 auto;
  min-width: 0;
  line-height: 1;
}

.top-nav .logo-brand {
  color: #fffdf8;
}

.text-logo {
  display: block;
  max-width: min(280px, 42vw);
  color: #fffdf8;
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: normal;
}

.footer-logo .text-logo,
.mobile-text-logo .text-logo {
  color: #fffdf8;
}

.footer-logo {
  margin-bottom: 14px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--wheat));
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.mobile-menu-toggle,
.mobile-menu-close {
  display: none;
}

.mobile-menu-overlay,
.mobile-sidebar {
  display: none;
}

.mobile-menu-overlay[hidden],
.mobile-sidebar[hidden] {
  display: none !important;
}

.mobile-menu-overlay {
  transition: opacity 280ms var(--ease-smooth);
}

.mobile-sidebar {
  transition: transform 320ms var(--ease-smooth), box-shadow 320ms var(--ease-smooth);
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #fff;
  font-weight: 600;
}

.top-nav .menu,
.top-nav .menu > a,
.top-nav .nav-dropdown > a,
.top-nav .nav-call {
  color: #fff !important;
}

.top-nav > a,
.top-nav nav a,
.top-nav .nav-dropdown > a {
  color: #fff !important;
}

.menu a {
  position: relative;
  padding: 8px 0;
  color: #fff;
}

.menu a::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu a:hover::after,
.menu a:focus::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0 14px;
  margin-bottom: -14px;
}

.nav-dropdown > a {
  position: relative;
  padding: 8px 0;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 260;
  display: grid;
  width: min(320px, 90vw);
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(200, 170, 111, 0.42);
  border-radius: var(--radius);
  background: #4a2b14;
  box-shadow: 0 18px 44px rgba(34, 19, 7, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 220ms var(--ease-smooth), transform 220ms var(--ease-smooth);
}

.nav-submenu::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #4a2b14;
  border-top: 1px solid rgba(200, 170, 111, 0.42);
  border-left: 1px solid rgba(200, 170, 111, 0.42);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.nav-submenu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #fffdf8 !important;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: normal;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  background: var(--wheat);
  color: #4a2b14 !important;
}

.nav-submenu a::after {
  display: none;
}

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

.nav-call,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 260ms var(--ease-smooth), box-shadow 260ms var(--ease-smooth), border-color 260ms var(--ease-smooth), background 260ms var(--ease-smooth);
}

.nav-call::before,
.button::before,
.service-subnav a::before,
.location-pills a::before {
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  animation: buttonShine 3200ms ease-in-out infinite;
}

.nav-call:hover,
.nav-call:focus,
.button:hover,
.button:focus,
.service-subnav a:hover,
.service-subnav a:focus,
.location-pills a:hover,
.location-pills a:focus {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(160, 127, 58, 0.32);
}

.nav-call:hover::before,
.nav-call:focus::before,
.button:hover::before,
.button:focus::before,
.service-subnav a:hover::before,
.service-subnav a:focus::before,
.location-pills a:hover::before,
.location-pills a:focus::before {
  animation: buttonShine 760ms ease;
  opacity: 1;
}

.service,
.reason,
.process-step,
.price-card,
.location-card,
.dashboard-card {
  transition: transform 260ms var(--ease-smooth), box-shadow 260ms var(--ease-smooth), border-color 260ms var(--ease-smooth);
}

.service:hover,
.service:focus,
.reason:hover,
.process-step:hover,
.price-card:hover,
.location-card:hover {
  border-color: rgba(160, 127, 58, 0.42);
  box-shadow: 0 18px 42px rgba(90, 62, 19, 0.15);
  transform: translateY(-5px);
}

.nav-call,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--wheat));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  animation: gentleGlow 3600ms ease-in-out infinite;
}

.nav-call svg,
.button svg,
.icon-mini svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button.secondary {
  color: var(--gold);
  background: #fff;
}

.actions .button,
.contact-band .contact-item a,
.footer-inner li a[href^="tel:"],
.footer-inner li a[href^="mailto:"] {
  position: relative;
  overflow: hidden;
}

.actions .button {
  animation: gentleGlow 3600ms ease-in-out infinite;
}

.actions .button.secondary {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(160, 127, 58, 0.14);
}

.actions .button:hover,
.actions .button:focus {
  transform: translateY(-3px);
}

.contact-band .contact-item a {
  display: inline-flex;
  width: fit-content;
  color: #4a2b14;
  font-weight: 900;
  animation: buttonPulse 3000ms ease-in-out infinite;
}

.contact-band .contact-item a:hover,
.contact-band .contact-item a:focus {
  color: var(--gold);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.15fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  animation: fadeUp 780ms var(--ease-smooth) 80ms both;
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.experience {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #5a3814;
  box-shadow: 0 8px 24px rgba(76, 49, 15, 0.08);
  font-weight: 700;
}

.experience strong {
  color: var(--gold);
  font-size: 1.45rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: #4a2b14;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 7vw, 5rem);
}

.hero p {
  max-width: 560px;
  margin: 22px 0 28px;
  color: #4c4238;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
  color: #5c4a35;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 20px;
  background: var(--soft-sand);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  animation: softZoom 1400ms var(--ease-smooth) both;
}

.media-note {
  position: absolute;
  right: 28px;
  bottom: 30px;
  display: flex;
  max-width: 360px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 36px rgba(40, 28, 12, 0.18);
  backdrop-filter: blur(12px);
  animation: fadeUp 820ms var(--ease-smooth) 360ms both;
}

.section {
  padding: 26px 0 0;
}

.page-hero {
  margin-top: 18px;
  padding: clamp(42px, 7vw, 74px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.97), rgba(255, 253, 248, 0.78)),
    var(--page-hero-image, url("../images/hero-gold-jewelry.webp")) right center / min(46vw, 520px) auto no-repeat;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #4c4238;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 600;
}

.section-title {
  position: relative;
  margin-bottom: 22px;
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.section-title::after {
  display: block;
  width: 40px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--gold);
  content: "";
}

.section-lead {
  max-width: 760px;
  margin: -8px auto 22px;
  color: #554636;
  text-align: center;
  font-weight: 600;
}

.section-link {
  display: flex;
  justify-content: center;
  margin: 22px 0 0;
}

.service-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 2px;
}

.service-subnav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: #5b3616;
  font-size: 0.92rem;
  font-weight: 800;
}

.service-subnav a:hover,
.service-subnav a:focus,
.service-subnav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #c7952d);
  border-color: var(--gold);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.center {
  display: block;
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.about-copy,
.about-panel,
.offer-card,
.detail-card,
.contact-copy,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(90, 62, 19, 0.07);
}

.about-copy,
.about-panel {
  padding: 30px;
}

.about-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.about-copy p,
.about-panel p,
.offer-card p,
.detail-card p,
.contact-copy p {
  color: #554636;
}

.about-panel {
  background: linear-gradient(135deg, #fffaf2, #f4e7cf);
}

.about-panel h3,
.offer-card h3,
.detail-card h3 {
  margin-bottom: 12px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.25;
}

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

.service,
.reason,
.process-step,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 28px rgba(90, 62, 19, 0.07);
}

.service {
  display: grid;
  min-height: 126px;
  place-items: center;
  gap: 10px;
  padding: 18px 14px;
  color: #4a2b14;
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transition: transform 260ms var(--ease-smooth), box-shadow 260ms var(--ease-smooth), border-color 260ms var(--ease-smooth);
}

.service span:last-child {
  display: block;
  color: #4a2b14;
  font-size: 0.98rem;
  text-shadow: none;
}

.service:hover,
.service:focus {
  color: #4a2b14;
}

.service:hover,
.service:focus,
.offer-card:hover,
.detail-card:hover,
.reason:hover,
.price-card:hover {
  border-color: rgba(160, 127, 58, 0.42);
  box-shadow: 0 16px 36px rgba(90, 62, 19, 0.12);
  transform: translateY(-4px);
}

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

.offer-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.detail-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.service-detail-card,
.benefits-card,
.page-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(90, 62, 19, 0.07);
}

.service-detail-card,
.benefits-card {
  padding: 30px;
}

.service-detail-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.service-detail-card p {
  color: #554636;
  font-size: 1.02rem;
}

.benefits-card h2 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.benefits-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-card li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(160, 127, 58, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 170, 111, 0.14), rgba(255, 255, 255, 0.82));
  color: #4f3f2e;
  font-weight: 800;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefits-card li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #c89433);
  box-shadow: 0 8px 18px rgba(160, 127, 58, 0.22);
  font-size: 1.08rem;
  font-weight: 900;
}

.benefits-card li:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 127, 58, 0.42);
  box-shadow: 0 10px 24px rgba(90, 62, 19, 0.09);
}

.benefits-card li svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-contact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-contact strong {
  color: #4a2b14;
}

.mini-contact a {
  color: var(--gold);
  font-weight: 900;
}

.page-content {
  padding: 30px;
}

.icon {
  display: grid;
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
  place-items: center;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  color: var(--gold);
  background: #f6ecd8;
  flex: 0 0 62px;
}

.service .icon,
.process-step .icon,
.reason .icon,
.contact-item .icon {
  margin-bottom: 0;
}

.icon svg {
  display: block;
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.service:hover .icon svg,
.detail-card:hover .icon svg,
.process-step:hover .icon svg,
.reason:hover .icon svg,
.contact-item:hover .icon svg {
  transform: scale(1.08);
}

.price-band {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6ead5, #fffaf2);
  box-shadow: var(--shadow);
}

.price-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #4b3a27;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
}

.price-card {
  padding: 16px 18px 18px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.karat {
  display: block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--wheat), var(--gold));
  font-weight: 900;
}

.currency {
  display: block;
  color: #4c3921;
  font-weight: 700;
}

.amount {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-step:hover {
  border-color: rgba(160, 127, 58, 0.42);
  box-shadow: 0 16px 36px rgba(90, 62, 19, 0.12);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
}

.process-step h3,
.reason h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.18;
}

.process-step p,
.reason p {
  margin: 8px 0 0;
  color: #554636;
  font-size: 0.94rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: 28px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 251, 244, 0.98), rgba(255, 251, 244, 0.78)),
    url("../images/contact-band-gold.webp") right center / 360px auto no-repeat;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.contact-copy,
.contact-form {
  padding: 28px;
}

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

.contact-actions {
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.contact-item .icon {
  display: grid;
  place-items: center;
}

.contact-band > div:empty {
  display: none;
}

.contact-band .contact-item {
  align-self: stretch;
}

.contact-band .contact-item > div {
  min-width: 0;
  align-self: center;
}

.contact-item strong {
  display: block;
  color: #5b3616;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.contact-item > div > span {
  display: block;
  overflow-wrap: break-word;
  color: #2f2f2f;
  font-weight: 600;
}

.contact-item a,
.contact-item > div > span {
  line-height: 1.55;
}

.contact-item a {
  display: inline-block;
  color: #2f2f2f;
  font-weight: 700;
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #5b3616;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--charcoal);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(160, 127, 58, 0.14);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #4a2b14 !important;
  background-color: #4a2b14 !important;
  color: #fff !important;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 34px;
  padding: 34px 0;
}

.footer-inner h3 {
  margin-bottom: 12px;
  color: #fff !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

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

.site-footer a:hover,
.site-footer a:focus {
  color: var(--wheat);
}

.footer-inner p,
.footer-inner li {
  color: #fff !important;
  font-size: 0.94rem;
}

.footer-inner ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-inner li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: #fff !important;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-inner li a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--wheat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-inner li a:hover,
.footer-inner li a:focus {
  color: var(--wheat);
  transform: translateX(4px);
}

.footer-inner li a:hover::after,
.footer-inner li a:focus::after {
  transform: scaleX(1);
}

.footer-inner li a[href^="mailto:"],
.footer-inner li a[href^="tel:"] {
  color: #fff !important;
}

.footer-inner li a[href^="mailto:"]:hover,
.footer-inner li a[href^="mailto:"]:focus,
.footer-inner li a[href^="tel:"]:hover,
.footer-inner li a[href^="tel:"]:focus {
  color: var(--wheat);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #4a2b14;
  background: var(--wheat);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.socials a:hover,
.socials a:focus {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.socials svg path:first-child,
.socials svg rect,
.socials svg circle {
  stroke: currentColor;
}

.experience {
  animation: floatBadge 3400ms ease-in-out infinite;
}

.section,
.price-band,
.contact-band,
.page-hero {
  animation: fadeUp 780ms var(--ease-smooth) both;
}

.smooth-ready .section,
.smooth-ready .price-band,
.smooth-ready .contact-band,
.smooth-ready .page-hero,
.smooth-ready .about-section,
.smooth-ready .services-grid,
.smooth-ready .offer-grid,
.smooth-ready .process-grid,
.smooth-ready .reasons-grid {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease-smooth), transform 720ms var(--ease-smooth);
}

.smooth-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.copyright {
  padding: 12px 16px;
  color: #fff;
  background: #2f1a0c;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-logo {
    max-width: min(260px, 62vw);
  }

  .hero,
  .price-band,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

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

  .about-section,
  .process-grid,
  .offer-grid,
  .detail-grid,
  .reasons-grid,
  .contact-section,
  .contact-band,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .site-wrap {
    width: min(100% - 20px, 1180px);
  }

  .top-nav {
    top: 0;
    margin-top: 0;
    padding: 14px;
    border-radius: 0 0 14px 14px;
  }

  .text-logo {
    max-width: min(230px, 64vw);
  }

  .nav-call,
  .button {
    width: 100%;
  }

  .hero {
    padding: 20px;
    border-radius: 16px;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .media-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .services-grid,
  .about-section,
  .process-grid,
  .offer-grid,
  .detail-grid,
  .reasons-grid,
  .contact-section,
  .contact-band,
  .footer-inner,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .price-band {
    padding: 20px;
  }

  .service-detail-card,
  .benefits-card {
    padding: 22px;
  }

  .benefits-card li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 50px;
    padding: 11px 12px;
    font-size: 0.95rem;
  }

  .benefits-card li::before {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@keyframes forcedCtaShake {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  10% {
    transform: translateY(-6px) scale(1.04);
  }

  20% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-4px) scale(1.03);
  }

  40% {
    transform: translateY(0) scale(1);
  }
}

@keyframes forcedCtaRing {
  0%,
  100% {
    outline: 0 solid rgba(160, 127, 58, 0);
    filter: brightness(1);
  }

  50% {
    outline: 8px solid rgba(160, 127, 58, 0.28);
    filter: brightness(1.16);
  }
}

.hero .actions .button,
.about-section .actions .button,
.locations-hero .actions .button,
.nav-call,
.contact-band .contact-item a {
  animation: gentleGlow 4200ms ease-in-out infinite !important;
  will-change: transform, box-shadow;
}

.hero .actions .button::after,
.about-section .actions .button::after,
.locations-hero .actions .button::after,
.nav-call::after {
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .top-nav {
    width: min(100% - 24px, 1180px);
    padding: 14px 18px;
    gap: 18px;
  }

  .menu {
    gap: 16px;
  }

  .text-logo {
    max-width: min(240px, 46vw);
  }

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

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

  .price-heading {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  h1,
  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.1rem, 10vw, 3.6rem);
    line-height: 1.03;
  }

  .top-nav {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    border-radius: 0 0 14px 14px;
  }

  .top-nav .menu,
  .top-nav .nav-call {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: #fff;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(0, 0, 0, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(86vw, 360px);
    height: 100vh;
    padding: 18px;
    background: #4a2b14;
    color: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.24);
    transform: translateX(105%);
    transition: transform 240ms ease;
  }

  .mobile-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-sidebar-head .text-logo {
    max-width: min(210px, 62vw);
  }

  .mobile-menu-close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-sidebar-nav {
    display: grid;
    align-content: start;
    gap: 9px;
    overflow-y: auto;
    padding: 18px 0 4px;
  }

  .mobile-sidebar-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
  }

  .mobile-sidebar-nav a:hover,
  .mobile-sidebar-nav a:focus {
    background: var(--wheat);
    color: #4a2b14;
  }

  .mobile-sidebar-nav .mobile-sub-link {
    min-height: 40px;
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .mobile-sidebar-nav .mobile-call-link {
    margin-top: 8px;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--wheat));
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  body.is-mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-menu-open .mobile-sidebar {
    transform: translateX(0);
  }

  .hero,
  .about-section,
  .service-detail-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 260px;
  }

  .page-hero {
    padding: 34px 22px;
    background: rgba(255, 253, 248, 0.94);
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .actions .button,
  .nav-call {
    width: 100%;
  }

  .offer-grid,
  .reasons-grid,
  .process-grid,
  .contact-band,
  .footer-inner,
  .contact-form,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-band {
    background: linear-gradient(135deg, #fffaf1, #efe2c9);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-wrap {
    width: min(100% - 16px, 1180px);
  }

  .top-nav {
    padding: 12px;
  }

  .text-logo {
    max-width: min(210px, 64vw);
  }

  .hero,
  .section,
  .page-hero,
  .price-band,
  .contact-band {
    margin-top: 14px;
  }

  .hero {
    padding: 18px;
  }

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

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

  .price-card {
    min-height: 132px;
  }

  .contact-item,
  .process-step,
  .reason,
  .location-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-item .icon,
  .process-step .icon,
  .reason .icon {
    margin-bottom: 4px;
  }

  .footer-logo .text-logo {
    max-width: min(220px, 100%);
  }
}

/* Final responsive guard layer for desktop, tablet, and phone screens. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-wrap,
.top-nav,
.hero,
.page-hero,
.price-band,
.contact-band,
.site-footer,
.footer-inner {
  max-width: 100%;
}

.hero-copy,
.about-copy,
.about-panel,
.service-detail-card,
.benefits-card,
.contact-copy,
.contact-form,
.price-card,
.reason,
.process-step,
.location-card,
.footer-inner > div {
  min-width: 0;
}

p,
a,
span,
li,
strong,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

@media (min-width: 1101px) {
  .mobile-menu-toggle,
  .mobile-menu-overlay,
  .mobile-sidebar {
    display: none !important;
  }

  .top-nav {
    flex-direction: row;
  }
}

@media (max-width: 1100px) {
  .top-nav {
    position: sticky;
    top: 0;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 0;
    padding: 12px clamp(12px, 3vw, 22px);
    border-radius: 0 0 14px 14px;
  }

  .text-logo {
    max-width: min(250px, 66vw);
  }

  .top-nav .menu,
  .top-nav .nav-call {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(0, 0, 0, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(86vw, 380px);
    height: 100dvh;
    padding: 18px;
    background: #4a2b14;
    color: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.24);
    transform: translateX(105%);
    transition: transform 240ms ease;
  }

  .mobile-menu-overlay[hidden],
  .mobile-sidebar[hidden] {
    display: none !important;
  }

  body.is-mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-menu-open .mobile-sidebar {
    transform: translateX(0);
  }

  .hero,
  .page-hero,
  .about-section,
  .service-detail-layout,
  .contact-section,
  .price-band {
    grid-template-columns: 1fr;
  }

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

  .process-grid,
  .contact-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: clamp(260px, 44vw, 430px);
  }

  .page-hero {
    background: rgba(255, 253, 248, 0.94);
  }
}

@media (max-width: 760px) {
  .site-wrap {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .page-hero,
  .about-copy,
  .about-panel,
  .service-detail-card,
  .benefits-card,
  .page-content,
  .contact-copy,
  .contact-form,
  .price-band,
  .contact-band {
    padding: 20px;
  }

  .services-grid,
  .offer-grid,
  .detail-grid,
  .reasons-grid,
  .price-band,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .actions,
  .trust-row,
  .price-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .actions .button {
    width: 100%;
  }

  .media-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .contact-item,
  .reason,
  .process-step,
  .detail-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 16px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .site-wrap {
    width: min(100% - 16px, 1180px);
  }

  .text-logo {
    max-width: min(200px, 58vw);
    font-size: clamp(1rem, 5vw, 1.2rem);
  }

  .mobile-sidebar {
    width: min(92vw, 360px);
    padding: 14px;
  }

  .mobile-sidebar-head .text-logo {
    max-width: min(190px, 55vw);
  }

  h1,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1.04;
  }

  .hero,
  .page-hero {
    border-radius: 14px;
  }

  .hero-media,
  .hero-media img {
    min-height: 240px;
  }

  .media-note {
    position: static;
    margin: 12px;
  }

  .contact-item,
  .reason,
  .process-step,
  .detail-card,
  .benefits-card li {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .icon,
  .contact-item .icon,
  .process-step .icon,
  .reason .icon {
    justify-self: start;
  }

  .footer-inner {
    gap: 22px;
  }
}
