:root {
  --gray: #6c6a68;
  --primary: #48526e;
  --secondary: #69748d;
  --accent: #d2af6f;
  --light: #f8f8f6;
  --dark: #252d3a;
  --white: #ffffff;
  --ink: var(--dark);
  --charcoal: var(--dark);
  --cream: var(--light);
  --paper: var(--white);
  --gold: var(--accent);
  --accent-2: #e0c28b;
  --navy: var(--primary);
  --navy-soft: var(--secondary);
  --cream-vivid: var(--light);
  --line: #dce0e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  font-size: 17px;
  background: var(--light) !important;
  color: var(--dark) !important;
}

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

a {
  text-decoration: none;
}

.container {
  position: relative;
}

.topbar {
  background: #666;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 0;
  font-size: 0.78rem !important;
}

.main-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 31px;
  z-index: 30;
  padding: 7px 0;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease !important;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0)) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 21%;
  color: #fff !important;
}

.main-nav .nav-link {
  color: #fff !important;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 12px !important;
  position: relative;
  font-size: 0.78rem !important;
}

.main-nav .nav-link:hover {
  color: var(--accent) !important;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  min-height: 100vh !important;
  background:
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.3)),
    var(--hero-bg) center/cover no-repeat !important;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.5);
}

.hero .container {
  z-index: 2;
}

.hero-center {
  max-width: 820px;
  margin: 100px auto 0;
  text-align: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
}

.hero p {
  color: #ece9e3;
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.7;
  font-size: 1.12rem !important;
}

.hero .btn {
  border-radius: 0;
  padding: 11px 20px;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid #fff;
  color: #fff;
}

.hero .btn:hover {
  background: #fff;
  color: #111;
}

.hero-line {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.about-section {
  position: relative;
  padding: 95px 0 80px;
  background: #fff;
}

.about-watermark {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 6.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #f0ede8;
  white-space: nowrap;
}

.about-copy {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.about-copy small {
  display: block;
  color: #9a7b5e;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-copy h2 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-copy p {
  color: #77736c;
  font-size: 0.84rem;
  line-height: 1.85;
}

.service-points {
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.service-points span {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border: 1px solid #ded2c0;
  background: #fff;
  color: #48526e;
  font-weight: 700;
  transition: 0.3s;
}

.service-points span:before {
  content: "✓";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d2af6f;
  color: #252d3a;
  font-weight: 900;
}

.service-points span:hover {
  transform: translateY(-4px);
  border-color: #d2af6f;
  box-shadow: 0 12px 28px rgba(37, 45, 58, 0.1);
}

.service-points-image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.signature {
  margin-top: 20px;
  font-family: cursive;
  color: #8c6b4a;
}

.about-media {
  position: relative;
  min-height: 430px;
}

.about-main {
  width: 74%;
  height: 360px;
  object-fit: cover;
  margin-left: auto;
}

.about-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 43%;
  height: 230px;
  object-fit: cover;
  border: 10px solid #fff;
}

.about-dark-card {
  position: absolute;
  right: 0;
  bottom: -70px !important;
  width: 52%;
  background: #1e1e1d;
  color: #fff;
  padding: 24px;
}

.about-dark-card small {
  color: #ad8a64;
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-dark-card h3 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 8px 0 10px;
}

.about-dark-card p {
  color: #c6c0b8;
  font-size: 0.72rem;
  line-height: 1.6;
  margin: 0;
}

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

.about-actions .btn {
  border-radius: 0;
  background: #a77c4e;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 11px 20px;
}

.phone-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #a77c4e;
  color: #fff;
  display: grid;
  place-items: center;
}

.phone-block small {
  color: #888;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-block strong {
  display: block;
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 1.05rem;
}

.logos-strip {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid #ece8e1;
  overflow: hidden;
}

.logo-row {
  display: flex;
  width: max-content;
  gap: 52px;
  align-items: center;
  animation: logoScroll 28s linear infinite;
}

.fake-logo {
  width: 150px;
  height: 54px;
  flex: 0 0 150px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: multiply;
  opacity: 0.62;
}

@keyframes logoScroll {
  to {
    transform: translateX(calc(-50% - 26px));
  }
}

.services-intro {
  position: relative;
  padding: 95px 0 110px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.62)),
    var(--services-bg) center/cover no-repeat !important;
}

.services-intro h2 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
}

.services-intro p {
  color: #d4d0ca;
  font-size: 0.82rem;
  max-width: 560px;
  line-height: 1.75;
}

.service-cards {
  margin-top: 48px;
}

.service-card {
  min-height: 260px;
  background: #fff;
  color: #111;
  padding: 34px 28px;
  text-align: center;
  position: relative;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(72, 82, 110, 0.88);
  color: #fff;
}

.service-card.featured {
  transform: translateY(-18px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.service-card.featured:hover {
  transform: translateY(-28px);
}

.service-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 1px solid #b28b57;
  display: grid;
  place-items: center;
  color: #a77c4e;
  font-size: 1.5rem;
}

.service-card h3 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.service-card p {
  color: inherit;
  opacity: 0.68;
  font-size: 0.76rem;
  line-height: 1.7;
}

.service-card a {
  color: inherit;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.dark-steps {
  background: #1c1c1b;
  color: #fff;
  padding: 42px 0;
}

.step-item {
  position: relative;
  padding: 12px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 110px;
}

.step-item:last-child {
  border-right: 0;
}

.step-no {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  color: #9f7a4e;
  font-size: 2rem;
  line-height: 1;
}

.step-item h3 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 10px 0 7px;
}

.step-item p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.6;
  color: #c7c2ba;
}

.projects {
  padding: 95px 0 85px;
  background: #f2ede4;
}

.section-small {
  color: #a77c4e;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.projects h2,
.team h2,
.cta h2,
.faq-wrap h2 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}

.projects h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.projects-intro {
  color: #77736c;
  font-size: 0.8rem;
  line-height: 1.75;
}

.project-grid {
  margin-top: 38px;
  grid-template-rows: repeat(2, 250px) !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-auto-rows: 235px !important;
  gap: 10px !important;
}

.project-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.project-grid img {
  transition: 0.7s;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.project-grid figure:hover img {
  transform: scale(1.07);
}

.project-grid figure:nth-child(1) {
  grid-row: span 2;
}

.project-grid figure:nth-child(4) {
  grid-column: 2/4;
}

.project-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  color: #5d5953;
  font-size: 0.75rem;
}

.project-caption .btn {
  border-radius: 0;
  background: #a77c4e;
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
}

.testimonials {
  background: linear-gradient(90deg, #fff 0 42%, #1b1b1a 42%);
  padding: 80px 0;
}

.testimonials .intro {
  padding-right: 30px;
}

.testimonials .intro h2 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.testimonials .intro p {
  color: #77736c;
  font-size: 0.8rem;
  line-height: 1.7;
}

.testimonial-card {
  height: 100%;
  padding: 34px 28px;
  border: 1px solid #6a5237;
  color: #fff;
  background: #20201f;
}

.testimonial-card .quote {
  color: #b28a5c;
  font-size: 2.3rem;
  line-height: 1;
}

.testimonial-card p {
  color: #d4d0ca;
  font-size: 0.77rem;
  line-height: 1.7;
}

.testimonial-card strong {
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team {
  background: #fff;
  padding: 90px 0;
}

.team h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
}

.team p {
  color: #77736c;
  font-size: 0.8rem;
}

.team-grid {
  margin-top: 32px;
}

.member {
  position: relative;
  overflow: hidden;
}

.member img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: 0.6s;
}

.member:hover img {
  transform: scale(1.05);
}

.member-info {
  padding: 14px 0 0;
}

.member-info h3 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 1.15rem;
  margin: 0;
}

.member-info span {
  color: #9a7b5e;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-strip {
  position: relative;
  padding: 65px 0;
  color: #fff;
  background:
    linear-gradient(rgba(20, 20, 20, 0.74), rgba(20, 20, 20, 0.74)),
    var(--section-bg) center/cover no-repeat !important;
}

.stats-strip h2 {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-block {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-block .stat-icon {
  width: 62px;
  height: 62px;
  display: inline-grid !important;
  place-items: center;
  margin: 0 auto 16px !important;
  border: 1px solid rgba(210, 175, 111, 0.75);
  border-radius: 50%;
  background: rgba(210, 175, 111, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.stat-block .stat-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.stat-block b {
  display: block;
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-size: 3.3rem;
  font-weight: 800;
}

.stat-block span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d0cbc3;
  font-weight: 700;
}

.cta {
  text-align: center;
  padding-bottom: 0 !important;
  position: relative !important;
  z-index: 5 !important;
  padding: 88px 0 0 !important;
  background: #fff !important;
  overflow: visible !important;
}

.cta h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 800px;
  margin: 0 auto;
}

.cta p {
  max-width: 650px;
  margin: 18px auto;
  color: #77736c;
  font-size: 0.8rem;
  line-height: 1.75;
}

.cta .btn {
  border-radius: 0;
  background: #a77c4e;
  color: #fff;
  padding: 11px 20px;
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-box {
  position: relative !important;
  z-index: 20 !important;
  width: min(720px, 86vw) !important;
  height: 355px !important;
  margin: 38px auto -115px !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.video-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  z-index: 22 !important;
}

.faq-section {
  margin-top: -60px;
  padding: 130px 0 90px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.66)),
    var(--faq-bg) center/cover;
}

.faq-wrap h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.faq-wrap p {
  color: #d1ccc4;
  font-size: 0.8rem;
  line-height: 1.7;
}

.faq-card {
  background: #fff;
  color: #111;
  padding: 20px 28px;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #e0dbd3;
}

.accordion-button {
  box-shadow: none !important;
  background: #fff !important;
  padding: 17px 0;
  font-size: 0.76rem;
  font-weight: 700;
}

.accordion-body {
  padding: 0 0 16px;
  color: #6e6962;
  font-size: 0.74rem;
  line-height: 1.7;
}

.blog-section {
  background: #fff;
  padding: 95px 0 80px;
}

.blog-section h2 {
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1;
}

.blog-section .intro {
  color: #77736c;
  font-size: 0.8rem;
  line-height: 1.75;
}

.blog-card {
  height: 100%;
  border: 1px solid #e0dbd3;
  background: #fff;
  transition: 0.35s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  color: #a77c4e;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.blog-content p {
  color: #77736c;
  font-size: 0.75rem;
  line-height: 1.7;
}

.blog-content a {
  color: #111;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.request-form-section {
  padding: 100px 0;
  background: #f8f8f6;
}

.request-form-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 20px;
}

.request-form-section p {
  color: #6f7785;
  line-height: 1.8;
}

.request-form {
  padding: 38px;
  background: #48526e;
  box-shadow: 0 20px 55px rgba(37, 45, 58, 0.1);
}

.request-form label {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-form .form-control,
.request-form .form-select {
  min-height: 52px;
  border: 1px solid #d9c8a9;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.request-form textarea.form-control {
  min-height: 125px;
  resize: vertical;
}

.request-form .btn {
  padding: 14px 28px;
  border-radius: 0;
}

.contact-bar {
  border-top: 1px solid #ded8ce;
  border-bottom: 1px solid #ded8ce;
  padding: 24px 0;
  background: #f1f2f4 !important;
}

.contact-bar .row {
  align-items: center;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-bar-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #a77c4e;
  color: #a77c4e;
  display: grid;
  place-items: center;
}

.contact-bar small {
  display: block;
  color: #8f8a83;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-bar strong {
  display: block;
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-size: 1.12rem;
}

.contact-bar .btn {
  border-radius: 0;
  background: #a77c4e;
  color: #fff;
  padding: 11px 22px;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  position: relative !important;
  color: #aaa69f !important;
  background:
    linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)),
    var(--section-bg, url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2200&q=70")) center/cover no-repeat !important;
}

.footer-main {
  padding: 80px 0 55px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-brand .logo-mark {
  border-color: #a77c4e;
  color: #a77c4e;
}

.footer-brand .brand-name {
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-size: 1rem;
}

.footer-text {
  font-size: 0.72rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: #aaa69f;
  padding: 5px 0;
  font-size: 0.72rem;
}

.footer-links a:hover {
  color: #a77c4e;
}

.footer-contact p {
  font-size: 0.72rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer-contact a {
  color: #aaa69f;
}

.footer-contact a:hover {
  color: #a77c4e;
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-row a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.7rem;
  border-color: rgba(255, 255, 255, 0.28) !important;
  transition: 0.3s;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

h1,
h2,
h3,
.hero h1,
.projects h2,
.team h2,
.cta h2,
.faq-wrap h2,
.blog-section h2,
.section-title {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
}

.btn-main,
.btn-gold,
.project-caption .btn,
.cta .btn,
.contact-bar .btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  border-color: var(--accent) !important;
}

.services-intro,
.dark-steps,
.stats-strip,
.faq-section,
.site-footer {
  background-color: var(--navy) !important;
}

.service-card,
.blog-card,
.testimonial-card {
  border-color: #d8c7aa !important;
}

.main-nav.nav-scrolled {
  position: fixed !important;
  top: 0 !important;
  background: rgba(72, 82, 110, 0.97) !important;
  box-shadow: 0 12px 34px rgba(24, 31, 45, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.main-nav .nav-link:after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background: linear-gradient(90deg, var(--accent), #e0c28b) !important;
}

.main-nav .nav-link:hover:after {
  transform: scaleX(1);
}

.navbar-brand .logo-mark {
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.navbar-brand:hover .logo-mark {
  transform: rotate(-5deg) scale(1.06);
  background: rgba(209, 154, 74, 0.12);
}

.outline-art {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
  color: var(--secondary) !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.outline-art svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 1px rgba(209, 154, 74, 0.15));
}

.outline-art path,
.outline-art rect,
.outline-art line,
.outline-art polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.hero .outline-left {
  left: -20px;
  top: 110px;
  width: 290px;
  height: 520px;
  color: #fff;
}

.hero .outline-right {
  right: -70px;
  top: 75px;
  width: 720px;
  height: 620px;
  color: #fff;
  opacity: 0.28;
}

.about-section .outline-about {
  left: 2%;
  top: 20px;
  width: 43% !important;
  height: 560px !important;
  color: #48526e !important;
  opacity: 0.18 !important;
}

.services-intro .outline-services {
  right: -2%;
  top: 0;
  width: 44%;
  height: 100%;
  object-fit: contain;
  color: #b8c0d4 !important;
  opacity: 0.2 !important;
  filter: invert(1) grayscale(1) contrast(0.85) !important;
  mix-blend-mode: screen !important;
}

.dark-steps .outline-process {
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  color: #b8c0d4 !important;
  opacity: 0.14 !important;
  mix-blend-mode: screen !important;
}

.faq-section .outline-faq {
  left: 0;
  bottom: 0;
  width: 36%;
  height: 420px;
  color: #fff;
  opacity: 0.06;
}

/* .site-footer .outline-footer {
  right: -2%;
  bottom: -40px;
  width: 28%;
  height: 340px;
  color: #b8c0d4 !important;
  mix-blend-mode: screen !important;
  opacity: 0.06 !important;
} */

.coupon-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9, #f7efe3);
  padding: 95px 0;
}

.coupon-section .outline-coupon {
  left: -4%;
  top: 20px;
  width: 34%;
  height: 430px;
  color: #48526e !important;
  opacity: 0.17 !important;
}

.coupon-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #dbc8a9;
  background: #fff;
  padding: 32px 26px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.coupon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(31, 39, 45, 0.12);
}

.coupon-card.featured {
  color: #fff;
  border-color: #172026;
  background: linear-gradient(145deg, var(--primary), var(--secondary)) !important;
}

.coupon-card:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  top: -70px;
  right: -70px;
  opacity: 0.25;
}

.coupon-label {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coupon-value {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 18px 0;
  color: var(--navy);
}

.coupon-card.featured .coupon-value {
  color: #fff;
}

.coupon-value small {
  font-size: 0.92rem;
}

.coupon-card h3 {
  font-size: 1.2rem !important;
}

.coupon-card p {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #6e685f;
}

.coupon-card.featured p {
  color: #d1cbc3;
}

.coupon-code {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px dashed var(--accent);
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.project-grid figure,
.project-grid figure:nth-child(1),
.project-grid figure:nth-child(4) {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  border: 1px solid #b9a27a !important;
  padding: 4px !important;
  background: #ffffff !important;
}

.social-row a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent) !important;
  transform: translateY(-3px);
}

.social-row svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.reveal-left,
.reveal-right,
.scale-in {
  opacity: 0;
  transition: 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.scale-in {
  transform: scale(0.94);
}

.reveal-left.visible,
.reveal-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

p,
.copy,
.projects-intro,
.footer-text,
.footer-contact p,
.blog-content p,
.service-card p,
.about-copy p,
.testimonial-card p,
.faq-wrap p,
.accordion-body {
  font-size: 1rem !important;
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  color: #fff;
  background: linear-gradient(135deg, #f59b23, #ffb23c);
  border: 1px solid #ffbc58;
  box-shadow: 0 18px 40px rgba(245, 155, 35, 0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
  min-width: 0 !important;
  padding: 12px 20px !important;
  border-radius: 2px;
}

.hero-phone-cta:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(245, 155, 35, 0.38);
  filter: saturate(1.1);
}

.hero-phone-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.hero-phone-icon svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.hero-phone-copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-phone-copy small {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-phone-copy strong {
  letter-spacing: 0.01em;
  margin: 4px 0 3px;
  font-size: 1.85rem !important;
}

.hero-phone-copy em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outline-art path,
.outline-art rect,
.outline-art line,
.outline-art polyline,
.outline-art circle {
  stroke-width: 1.35 !important;
}

.restored-faq {
  color: #fff !important;
  position: relative !important;
  z-index: 1 !important;
  margin-top: 0 !important;
  padding: 170px 0 70px !important;
  min-height: 545px !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(20, 28, 35, 0.9), rgba(20, 28, 35, 0.68)),
    var(--faq-bg, url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2200&q=90")) center/cover no-repeat !important;
}

.restored-faq .faq-wrap h2 {
  color: #fff !important;
  max-width: 470px !important;
  margin-bottom: 16px !important;
  font-size: clamp(3.5rem, 5vw, 5.8rem) !important;
  line-height: 0.95 !important;
}

.restored-faq .faq-wrap p {
  color: #e7e1d8 !important;
  max-width: 470px !important;
}

.restored-faq .faq-card {
  background: #fff !important;
  color: #111 !important;
  position: relative !important;
  z-index: 10 !important;
  margin-top: 18px !important;
  padding: 25px 30px !important;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22) !important;
}

.restored-faq .accordion-button {
  padding: 19px 0 !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 0.9rem !important;
  box-shadow: none !important;
}

.restored-faq .accordion-body {
  color: #625d56 !important;
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
}

.restored-faq .outline-faq {
  width: 40% !important;
  height: 520px !important;
  color: #b8c0d4 !important;
  mix-blend-mode: screen !important;
  opacity: 0.08 !important;
}

.topbar,
.main-nav.nav-scrolled,
.dark-steps,
.services-intro,
.restored-faq,
.site-footer {
  background-color: var(--primary) !important;
}

.btn-main,
.btn-gold,
.project-caption .btn,
.cta .btn,
.contact-bar .btn,
.hero-phone-cta {
  background: linear-gradient(135deg, var(--accent), #e0c28b) !important;
  border-color: var(--accent) !important;
}

.coupon-card,
.blog-card,
.service-card {
  border-color: #d9c8a9 !important;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent) !important;
}

.intro-blueprint {
  position: relative;
  overflow: hidden;
  padding: 150px 0 120px !important;
  background: var(--light) !important;
}

.intro-blueprint:before {
  content: "ABOUT US";
  position: absolute;
  left: 7.2%;
  top: 62%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  color: rgba(72, 82, 110, 0.065);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 6.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.intro-blueprint .container {
  z-index: 2;
  max-width: 1260px;
}

.intro-drawing {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 35px 10px 0 40px;
  min-height: 650px !important;
  align-items: center !important;
}

.intro-drawing .experience {
  position: absolute;
  z-index: 3;
  color: var(--dark);
  font-size: 1.7rem !important;
  font-weight: 700;
  letter-spacing: -0.03em;
  transform: rotate(-13deg) !important;
  animation: experienceFloat 4.8s ease-in-out infinite;
  top: 600px !important;
  left: 15% !important;
}

.intro-drawing .experience:before,
.intro-drawing .experience:after {
  content: "";
  position: absolute;
  left: -55px;
  right: -55px;
  height: 1px;
  background: rgba(105, 116, 141, 0.23);
}

.intro-drawing .experience:before {
  top: -19px;
}

.intro-drawing .experience:after {
  bottom: -19px;
}

.intro-content .eyebrow {
  display: inline-block;
  position: relative;
  margin-bottom: 20px !important;
  color: var(--accent) !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
}

.intro-blueprint .eyebrow {
  color: #d2af6f !important;
}

.intro-content h2 {
  margin: 0 0 24px !important;
  color: var(--dark);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif !important;
  font-weight: 700 !important;
  max-width: 560px !important;
  font-size: clamp(2.65rem, 3.15vw, 3.75rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

.intro-content p {
  margin-bottom: 28px !important;
  color: #727b8b !important;
  max-width: 700px !important;
  font-size: 1.03rem !important;
  line-height: 1.72 !important;
}

.intro-image-wrap {
  position: relative;
  margin-top: 18px !important;
  transform-origin: center;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.7s ease;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.intro-image {
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
  height: 300px !important;
  border: 0 !important;
}

.intro-quote {
  position: relative;
  padding: 14px 10px 3px !important;
  border-top: 0 !important;
  color: var(--accent) !important;
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif !important;
  font-size: 1.55rem !important;
  text-align: center;
  margin-top: 14px !important;
}
.intro-quote2 {
  position: relative;
  padding: 14px 10px 25px !important;
  border-top: 0 !important;
  color: var(--accent) !important;
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif !important;
  font-size: 1.55rem !important;
  text-align: center;
  margin-top: 14px !important;
}

.intro-actions {
  display: flex !important;
  align-items: center !important;
  gap: 46px !important;
  flex-wrap: wrap;
  margin-top: 34px !important;
}

.intro-actions .btn {
  border-radius: 0;
  min-width: 155px;
  padding: 15px 29px !important;
  border: 1px solid var(--accent) !important;
  background: transparent !important;
  color: var(--accent) !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.intro-actions .btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

.intro-phone {
  display: flex;
  align-items: center;
  gap: 15px !important;
}

.intro-phone-icon {
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 56px !important;
  height: 56px !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
}

.intro-phone-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.intro-phone small {
  display: block;
  color: #818a99 !important;
  font-size: 0.78rem !important;
}

.intro-phone strong {
  display: block;
  margin-top: 3px;
  color: var(--dark) !important;
  font-size: 1.24rem !important;
}

.topbar,
.main-nav.nav-scrolled,
.dark-steps,
.services-intro,
.restored-faq,
.site-footer {
  background-color: var(--primary) !important;
}

.intro-content {
  padding-left: 20px;
}

.intro-content .eyebrow:before {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(210, 175, 111, 0.28) 0 4px, transparent 4px 8px);
  z-index: -1;
}

.intro-quote:before,
.intro-quote:after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  margin: 0 12px 5px;
  background: repeating-linear-gradient(90deg, rgba(210, 175, 111, 0.34) 0 4px, transparent 4px 8px);
}

.intro-image-wrap:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: none !important;
}

.intro-image-wrap:hover .intro-image {
  transform: scale(1.035);
}

.intro-content .eyebrow,
.intro-content h2,
.intro-content p,
.intro-image-wrap,
.intro-actions {
  opacity: 0;
  transform: translateY(30px);
}

.intro-content.visible .eyebrow {
  animation: introFade 0.7s 0.05s forwards;
}

.intro-content.visible h2 {
  animation: introFade 0.8s 0.15s forwards;
}

.intro-content.visible p {
  animation: introFade 0.8s 0.28s forwards;
}

.intro-content.visible .intro-image-wrap {
  animation: introFade 0.9s 0.4s forwards;
}

.intro-content.visible .intro-actions {
  animation: introFade 0.8s 0.55s forwards;
}

@keyframes introFade {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes blueprintFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes experienceFloat {
  0%,
  100% {
    transform: rotate(-13deg) translateY(0);
  }
  50% {
    transform: rotate(-13deg) translateY(-7px);
  }
}

.back-to-top {
  position: fixed;
  right: 17px;
  bottom: 80px;
  width: 54px;
  height: 54px;
  z-index: 1000;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 45, 58, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  box-shadow: 0 14px 36px rgba(37, 45, 58, 0.25);
  transform: translateY(-4px);
}

.back-progress {
  position: absolute;
  inset: 0;
  width: 54px;
  height: 54px;
  transform: rotate(-90deg);
}

.back-progress-bg,
.back-progress-value {
  fill: none;
  stroke-width: 2;
}

.back-progress-bg {
  stroke: rgba(72, 82, 110, 0.16);
}

.back-progress-value {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 144.51;
  stroke-dashoffset: 144.51;
  transition: stroke-dashoffset 0.12s linear;
}

.back-arrow {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.blueprint-image-wrap {
  width: 118%;
  margin-left: -58px;
  position: relative;
}

.blueprint-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.62;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(0.94);
  animation: outlineBreath 5.5s ease-in-out infinite;
}

.about-light-bg {
  position: relative;
  isolation: isolate;
  background: #f8f8f6 !important;
}

.about-light-bg:after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(248, 248, 246, 0.76);
  content: none !important;
}

.about-watermark-text {
  position: absolute;
  left: 50%;
  top: 42px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  color: rgba(72, 82, 110, 0.055);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 6.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.about-section .container {
  z-index: 2;
}

.testimonial-blue-bg {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, #ffffff 0 42%, rgba(23, 23, 23, 0.8) 42% 100%),
    var(--testimonial-bg) right center/61% 100% no-repeat !important;
}

.testimonial-blue-bg:before {
  position: absolute;
  inset: 0 0 0 39%;
  background: rgba(72, 82, 110, 0.58);
  pointer-events: none;
  content: none !important;
}

.testimonial-blue-bg .container {
  position: relative;
  z-index: 2;
}

.testimonial-blue-bg .testimonial-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #48526e, #69748d) !important;
  border: 1px solid rgba(210, 175, 111, 0.88) !important;
  box-shadow: 0 18px 45px rgba(37, 45, 58, 0.2) !important;
}

.testimonial-blue-bg .testimonial-card:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(105, 116, 141, 0.08), rgba(37, 45, 58, 0.18));
  content: none !important;
}

.testimonial-blue-bg .testimonial-card > * {
  position: relative;
  z-index: 2;
}

.testimonial-blue-bg .testimonial-card p {
  color: #fff !important;
  font-size: 1.05rem !important;
}

.testimonial-blue-bg .testimonial-card strong {
  color: #fff !important;
}

.testimonial-blue-bg .testimonial-card .quote {
  color: var(--accent) !important;
}

.testimonial-stars {
  margin-top: 14px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.testimonial-blue-bg .intro h2 {
  color: var(--dark) !important;
}

.testimonial-blue-bg .intro p {
  color: #6f7785 !important;
}

.service-card,
.blog-card,
.coupon-card,
.member,
.testimonial-card {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background-color 0.35s ease,
    color 0.35s ease !important;
}

.service-card:hover,
.blog-card:hover,
.coupon-card:hover,
.member:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 22px 48px rgba(37, 45, 58, 0.14) !important;
}

.btn,
.hero-phone-cta,
.intro-actions .btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease !important;
}

.btn:hover,
.intro-actions .btn:hover {
  transform: translateY(-3px);
}

.testimonial-blue-bg .testimonial-card p,
.testimonial-blue-bg .testimonial-card strong {
  color: #ffffff !important;
}

.testimonial-blue-bg .testimonial-card .quote,
.testimonial-blue-bg .testimonial-stars {
  color: var(--accent) !important;
}

.project-grid figure:first-child,
.project-grid figure:last-child {
  grid-column: span 2 !important;
}

.main-nav .dropdown-menu {
  min-width: 270px;
  margin-top: 0;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: rgba(37, 45, 58, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.main-nav .dropdown-item {
  color: #ffffff;
  padding: 11px 20px;
  font-size: 0.79rem;
  letter-spacing: 0.035em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.main-nav .dropdown-item:hover {
  color: #252d3a;
  background: #d2af6f;
  padding-left: 25px;
}

.hero-benefits-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 21px;
  color: #ffffff;
  width: min(860px, 100%);
  margin: 30px auto 0 !important;
  padding: 18px 28px;
  justify-content: center !important;
  gap: 52px !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(37, 45, 58, 0.42);
  backdrop-filter: blur(7px);
}

.hero-benefits-inline span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.18rem !important;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-benefits-inline span:before {
  content: "✓";
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d2af6f;
  color: #252d3a;
  font-weight: 900;
  width: 34px !important;
  height: 34px !important;
  font-size: 1rem !important;
}

.outline-art svg,
.outline-art img {
  background: transparent !important;
}

.outline-art path,
.outline-art rect,
.outline-art line,
.outline-art polyline,
.outline-art circle {
  stroke: currentColor !important;
}

.about-light-bg .outline-about,
.about-watermark-text {
  display: none !important;
}

.before-after-section {
  padding: 105px 0;
  background: #f8f8f6;
}

.before-after-header {
  margin-bottom: 38px;
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.before-after-header .section-small {
  color: var(--accent);
}

.before-after-header h2 {
  margin: 8px 0 14px;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  color: var(--dark);
}

.service-area-section {
  padding: 100px 0 0;
  background: #fff;
}

.service-area-copy {
  padding-right: 30px;
}

.service-area-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  margin: 8px 0 20px;
}

.service-area-copy p {
  color: #6f7785;
  line-height: 1.8;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 22px;
  margin-top: 28px;
}

.city-grid a {
  color: inherit;
}

.city-grid span {
  position: relative;
  padding-left: 25px;
  color: var(--dark);
  font-size: 0.94rem;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.city-grid span:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.service-map {
  min-height: 470px;
  height: 100%;
}

.service-map iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
  filter: saturate(0.8) contrast(0.96);
}

.zip-band {
  margin-top: 0;
  padding: 42px 0 50px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
}

.zip-band .section-small {
  color: var(--accent);
}

.zip-band h3 {
  margin: 4px 0 26px;
  font-size: 2.25rem;
}

.zip-grid-new {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.zip-card {
  padding: 16px 8px;
  text-align: center;
  border: 1px solid rgba(210, 175, 111, 0.75);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

a.zip-card {
  color: inherit;
}

.zip-card:hover {
  transform: translateY(-5px);
  background: var(--accent);
  color: var(--dark);
}

.zip-card strong {
  display: block;
  font-size: 1.05rem;
}

.zip-card small {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
}

@keyframes outlineBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.008);
  }
}

.before-after-header p {
  color: #70798a;
  font-size: 1rem;
}

.ba-slider {
  --position: 50%;
  position: relative;
  width: min(1080px, 100%);
  aspect-ratio: 16/8.4;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d5d9e2;
  background: #fff;
  box-shadow: 0 24px 60px rgba(37, 45, 58, 0.15);
  cursor: ew-resize;
  user-select: none;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  width: 100%;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.ba-before img {
  width: 100%;
  max-width: 100%;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  z-index: 4;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(37, 45, 58, 0.12);
}

.ba-handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 45, 58, 0.24);
  font-size: 1.55rem;
  line-height: 1;
  pointer-events: none;
  animation: handlePulse 2.6s ease-in-out infinite;
}

@keyframes handlePulse {
  0%,
  100% {
    box-shadow: 0 12px 32px rgba(37, 45, 58, 0.24);
  }
  50% {
    box-shadow:
      0 12px 32px rgba(37, 45, 58, 0.24),
      0 0 0 10px rgba(210, 175, 111, 0.13);
  }
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-label {
  position: absolute;
  top: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: #fff;
  background: rgba(37, 45, 58, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.ba-label-before {
  left: 22px;
}

.ba-label-after {
  right: 22px;
  background: rgba(210, 175, 111, 0.94);
  color: var(--dark);
}

.ba-label-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.zip-icon {
  display: block;
  margin: 0 auto 7px;
  color: var(--accent);
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.zip-card:hover .zip-icon {
  transform: translateY(-3px) rotate(-8deg);
  color: var(--dark);
}

.city-grid span:hover {
  transform: translateX(5px);
  color: var(--primary);
}

h2,
.display-title,
.projects h2,
.team h2,
.cta h2,
.faq-wrap h2,
.blog-section h2,
.service-area-copy h2,
.before-after-header h2 {
  font-size: clamp(2.15rem, 3.25vw, 3.55rem) !important;
}

h3,
.service-card h3,
.service-feature-content h3,
.member-info h3,
.blog-content h3,
.coupon-card h3,
.data-panel h3 {
  font-size: 1.18rem !important;
}

.hero-benefits-separated {
  display: grid !important;
  grid-template-columns: repeat(2, 280px) !important;
  width: fit-content !important;
  max-width: 100%;
  margin: 30px auto 0 !important;
  padding: 0 !important;
  gap: 16px !important;
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

.hero-benefit-half {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(37, 45, 58, 0.42);
  backdrop-filter: blur(7px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.hero-benefit-half:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(37, 45, 58, 0.58);
}

.hero-benefit-half span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 !important;
  color: #fff;
  font-size: 1.18rem !important;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-benefit-half span:before {
  content: "✓";
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-size: 1rem !important;
  font-weight: 900;
}

.restored-faq .section-small {
  color: var(--accent) !important;
}

.restored-faq .accordion-item {
  border-bottom: 1px solid #ded8cf !important;
  background: #fff !important;
}

.site-footer .footer-main {
  padding: 80px 0 55px !important;
}

.site-footer .footer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #fff !important;
  margin-bottom: 18px !important;
}

.site-footer .footer-text {
  color: #aaa69f !important;
  font-size: 0.94rem !important;
  line-height: 1.75 !important;
  max-width: 390px !important;
}

.site-footer .footer-title {
  color: #fff !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.11em !important;
}

.site-footer .footer-links a {
  display: block !important;
  color: #aaa69f !important;
  padding: 5px 0 !important;
  font-size: 0.78rem !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: var(--accent) !important;
}

.site-footer .footer-contact p {
  color: #aaa69f !important;
  font-size: 0.78rem !important;
  line-height: 1.8 !important;
  margin-bottom: 6px !important;
}

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

.site-footer .footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.site-footer .footer-info-icon {
  display: inline-flex;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  color: var(--accent);
}

.site-footer .footer-info-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer .social-row {
  display: flex !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

.site-footer .social-row a {
  width: 30px !important;
  height: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  background: transparent !important;
}

.site-footer .social-row a:hover {
  background: linear-gradient(135deg, var(--accent), #e0c28b) !important;
  border-color: var(--accent) !important;
  transform: translateY(-3px) !important;
}

.site-footer .footer-bottom {
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #aaa69f !important;
  font-size: 0.78rem !important;
}

.restored-faq .container {
  position: relative !important;
  z-index: 4 !important;
}

.restored-faq .row {
  align-items: center !important;
}

.restored-faq .faq-wrap {
  padding-top: 18px !important;
}

.site-footer .footer-contact-wide {
  padding-right: 32px;
}

.site-footer .footer-contact-wide .footer-contact {
  max-width: 520px;
}

.site-footer .footer-contact-wide .footer-contact p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.projects h2,
.team h2,
.cta h2,
.faq-wrap h2,
.blog-section h2,
.section-title,
.footer-title {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}

.eyebrow,
.service-card h3,
.blog-content h3,
.project-caption h3 {
  letter-spacing: -0.015em !important;
}

.site-footer .footer-links a,
.site-footer .footer-contact p,
.site-footer .footer-contact a {
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
}

.services-intro,
.stats-strip,
.restored-faq,
.site-footer {
  background-color: transparent !important;
}

.services-intro,
.stats-strip,
.restored-faq,
.site-footer {
  background-color: transparent !important;
}

@media (max-width: 1199.98px) {
  .intro-blueprint .container {
    max-width: 1140px;
  }

  .intro-content h2 {
    font-size: 3.65rem !important;
  }

  .video-box {
    width: min(680px, 88vw) !important;
    height: 330px !important;
    margin-bottom: -105px !important;
  }

  .restored-faq {
    padding-top: 155px !important;
  }
}

@media (max-width: 991.98px) {
  .about-section .container {
    width: 90%;
    max-width: 90%;
  }

  .navbar-brand {
    width: 40%;
  }

  .topbar {
    display: none;
  }

  .main-nav {
    position: absolute !important;
    top: 0 !important;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.3)) !important;
  }

  .hero {
    min-height: 860px;
  }

  .hero-center {
    margin-top: 30px;
  }

  .hero-note,
  .hero-line {
    display: none;
  }

  .about-media {
    margin-top: 35px;
  }

  .logo-row {
    gap: 52px;
  }

  .testimonials {
    background: #1b1b1a;
  }

  .testimonials .intro {
    color: #fff;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .testimonials .intro p {
    color: #c7c2ba;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(4, 225px) !important;
    grid-auto-rows: 225px !important;
  }

  .project-grid figure:nth-child(1) {
    grid-row: span 1;
  }

  .project-grid figure:nth-child(4) {
    grid-column: auto;
  }

  .member img {
    height: 280px;
  }

  .stat-block {
    margin-top: 20px;
  }

  .blog-card img {
    height: 210px;
  }

  .hero-phone-cta {
    min-width: 340px;
  }

  .intro-blueprint {
    padding: 95px 0 !important;
  }

  .intro-blueprint:before {
    display: none;
  }

  .intro-drawing {
    margin-bottom: 30px;
    padding-left: 0;
    min-height: 650px !important;
  }

  .intro-drawing .experience {
    left: 12%;
    top: 48px;
  }

  .intro-content {
    padding-left: 0;
  }

  .intro-content h2 {
    font-size: 3.2rem !important;
    max-width: 620px !important;
  }

  .testimonial-blue-bg {
    background:
      linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
      var(--testimonial-bg) center/cover no-repeat !important;
  }

  .testimonial-blue-bg .intro,
  .testimonial-blue-bg .intro h2,
  .testimonial-blue-bg .intro p {
    color: #fff !important;
  }

  .blueprint-image-wrap {
    width: 100%;
    margin-left: 0;
  }

  .testimonial-blue-bg:before {
    inset: 0;
  }

  .testimonial-blue-bg .intro h2,
  .testimonial-blue-bg .intro p {
    color: #ffffff !important;
  }

  .project-grid figure:first-child,
  .project-grid figure:last-child {
    grid-column: span 2 !important;
  }

  .hero-benefits-inline {
    gap: 24px !important;
  }

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

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

  .ba-slider {
    aspect-ratio: 16/10;
  }

  .restored-faq {
    margin-top: 0 !important;
    padding: 80px 0 !important;
    padding-top: 140px !important;
    padding-bottom: 70px !important;
  }

  .video-box {
    width: min(640px, 90vw) !important;
    height: 310px !important;
    margin-bottom: -95px !important;
  }

  .restored-faq .faq-card {
    margin-top: 30px !important;
  }

  .site-footer .footer-contact-wide {
    padding-right: 0;
  }

  .main-nav.nav-scrolled {
    position: fixed !important;
    top: 0 !important;
    background: rgba(72, 82, 110, 0.98) !important;
  }

  .main-nav .navbar-collapse {
    background: rgba(72, 82, 110, 0.98);
    padding: 14px 18px;
    margin-top: 12px;
  }

  .hero-benefits-separated {
    width: calc(100% - 120px) !important;
    gap: 16px !important;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 800px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-section,
  .services-intro {
    padding: 70px 0;
  }

  .about-main {
    width: 100%;
    height: 320px;
  }

  .about-small {
    width: 48%;
    height: 180px;
  }

  .about-dark-card {
    width: 58%;
    padding: 18px;
  }

  .service-card.featured {
    transform: none;
  }

  .dark-steps {
    padding: 20px 0;
  }

  .step-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .project-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(6, 230px) !important;
  }

  .project-grid figure:nth-child(4) {
    grid-column: auto;
  }

  .testimonials,
  .projects,
  .team,
  .cta {
    padding: 65px 0;
  }

  .video-box {
    margin: 34px auto -80px !important;
    width: 92vw !important;
    height: 250px !important;
    margin-bottom: -70px !important;
  }

  .faq-section {
    margin-top: 0;
    padding: 70px 0;
  }

  .contact-bar-item {
    margin-bottom: 15px;
  }

  .footer-main {
    padding: 60px 0 35px;
  }

  .hero .outline-left,
  .hero .outline-right {
    opacity: 0.06;
  }

  .intro-blueprint {
    padding: 68px 0;
  }

  .intro-drawing {
    min-height: 360px;
  }

  .intro-image {
    height: 235px;
  }

  .intro-actions {
    gap: 20px;
  }

  .restored-faq {
    padding-top: 110px !important;
  }

  .restored-faq .faq-wrap h2 {
    font-size: 3rem !important;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .logo-row {
    gap: 52px;
  }

  .about-media {
    min-height: 500px;
  }

  .about-small {
    position: relative;
    width: 72%;
    height: 190px;
    margin-top: -35px;
  }

  .about-dark-card {
    position: relative;
    width: 88%;
    margin-left: auto;
    bottom: auto;
    margin-top: -25px;
  }

  body {
    font-size: 16px;
  }

  .hero-phone-cta {
    padding: 17px 18px;
    gap: 14px;
    min-width: 0 !important;
    width: 70% !important;
    justify-content: center;
  }

  .hero-phone-copy strong {
    font-size: 1.55rem;
  }

  .hero-phone-icon {
    width: 50px;
    height: 50px;
  }

  .restored-faq {
    margin-top: 0;
    padding-top: 90px !important;
    padding-bottom: 70px !important;
  }

  .intro-blueprint {
    padding: 65px 0 !important;
  }

  .intro-drawing {
    min-height: 360px !important;
  }

  .intro-drawing .experience {
    font-size: 1.25rem !important;
    top: 25px !important;
    left: 10% !important;
  }

  .intro-content h2 {
    font-size: 2.35rem !important;
  }

  .intro-content p {
    font-size: 1.03rem !important;
  }

  .intro-image {
    height: 300px !important;
  }

  .intro-quote:before,
  .intro-quote:after {
    width: 28px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .back-progress {
    width: 50px;
    height: 50px;
  }

  .hero-phone-copy {
    text-align: center;
  }

  .project-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 220px !important;
    grid-template-rows: 225px 225px 225px 225px 220px 220px !important;
  }

  .project-grid figure,
  .project-grid figure:first-child,
  .project-grid figure:last-child {
    grid-column: span 1 !important;
  }

  .hero-benefits-inline {
    flex-direction: column;
    gap: 14px !important;
    padding: 16px 18px;
  }

  .hero-benefits-inline span {
    font-size: 1rem !important;
  }

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

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

  .ba-slider {
    aspect-ratio: 4/3;
  }

  .ba-handle {
    width: 54px;
    height: 54px;
  }

  .ba-label {
    top: 12px;
    padding: 8px 11px;
    font-size: 0.62rem;
  }

  .ba-label-before {
    left: 12px;
  }

  .ba-label-after {
    right: 12px;
  }

  .hero-benefits-separated {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 92% !important;
    gap: 8px !important;
  }

  .hero-benefit-half {
    min-height: 54px;
    padding: 9px 6px;
  }

  .hero-benefit-half span {
    gap: 7px;
    font-size: 0.72rem !important;
    white-space: nowrap;
  }

  .hero-benefit-half span:before {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px;
    font-size: 0.78rem !important;
  }

  .video-box {
    height: 215px !important;
    margin-bottom: -52px !important;
    margin-top: 38px !important;
  }
}
