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

/* Анимации появления при скролле — по всему сайту */
.animate-on-scroll.animate-on-scroll--ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Заголовки — круто въезжают снизу */
.animate-on-scroll.animate-heading.animate-on-scroll--ready {
  transform: translateY(48px);
  transition: opacity 0.7s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.animate-heading.is-visible {
  transform: translateY(0);
}

/* Подзаголовки / лид-текст — с задержкой после заголовка */
.animate-on-scroll.animate-lead.animate-on-scroll--ready {
  transform: translateY(32px);
  transition: opacity 0.6s ease-out 0.15s, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.animate-on-scroll.animate-lead.is-visible {
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
}

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

/* Header — фиксированный, тёмный фон для читаемости текста */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0.875rem 2rem;
  background: rgba(20, 20, 22, 0.92);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #1a1a1a;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.brand-name .amp {
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.header-phone:hover {
  opacity: 0.9;
}

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.phone-icon svg {
  width: 100%;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color 0.2s, background 0.2s;
}

/* Текст хедера — светлый, читабельный на тёмном фоне */
.header .brand-name,
.header .brand-name .amp,
.header .logo-mark { color: #fff; }
.header .header-phone,
.header .nav-link,
.header .header-phone strong { color: #e8e6e3; }
.header .phone-icon { color: #c9b896; }
.header .nav-link.active { background: #b8860b; color: #fff; }
.header .nav-link.active:hover { color: #fff; }

.header .nav-link:hover {
  color: #c9b896;
}

.nav-link.active {
  background: #b8860b;
  color: #fff;
  border-radius: 3px;
}

/* Dropdown Services */
.nav-dropdown {
  position: relative;
}

.nav-link--trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-link--trigger i {
  font-size: 0.65em;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link--trigger i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: rgba(28, 28, 30, 0.98);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav-dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #e8e6e3;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-link:hover {
  background: rgba(184, 134, 11, 0.2);
  color: #fff;
}

/* Hero — с самого верха, картинка под хедером */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: url('../images/10.png') center center / cover no-repeat;
  animation: heroCamera 32s ease-in-out infinite;
}

@keyframes heroCamera {
  0%, 100% {
    transform: scale(1.02) translate(0, 0);
  }
  25% {
    transform: scale(1.1) translate(-2%, -1.2%);
  }
  50% {
    transform: scale(1.08) translate(1.5%, -0.8%);
  }
  75% {
    transform: scale(1.12) translate(-1%, 1.2%);
  }
}

/* Белая зона слева, по высоте по центру hero, полукруг справа */
.hero-curve {
  position: absolute;
  left: 0;
  top: 17%;
  transform: translateY(-50%);
  width: 66%;
  height: 90vh;
  min-height: 320px;
  background: #fff;
  z-index: 5;
  border-radius: 0 1vh 49vh 0;
  box-sizing: border-box;
  border: none;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2), 6px 0 28px rgba(0, 0, 0, 0.08);
}

.hero-content {
  position: absolute;
  left: 13.5rem;
  right: 2.5rem;
  bottom: 5.5rem;
  max-width: 520px;
  padding: 4.5rem 0 0;
}

.hero-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
  color: #1a1a1a;
}

.hero-title-accent {
  display: inline;
  background-image: linear-gradient(to right, #b8860b 0%, #d4a84b 50%, #b8860b 100%);
  background-repeat: no-repeat;
  background-size: 100% 4px;
  background-position: 0 100%;
  padding-bottom: 4px;
}

.hero-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: #333;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #b8860b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: #9a7209;
  transform: translateY(-1px);
}

.hero-tagline {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
}

/* Section Services — тёмная, типографика, золотой акцент */
.section-services {
  background: #141414;
  color: #e8e6e3;
  padding: clamp(4rem, 10vw, 7rem) 2rem;
}

.section-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-services-image {
  position: relative;
  border-radius: 16px 80px 24px 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.section-services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-services-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 1.5rem;
}

.section-services-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-services-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(232, 230, 227, 0.85);
  max-width: 420px;
  margin: 0;
}

.section-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.service-card {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 134, 11, 0.35);
  transition: border-color 0.25s;
}

.service-card:hover {
  border-top-color: #b8860b;
}

.service-card-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #b8860b;
  margin-bottom: 1rem;
}

.service-card-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: #fff;
}

.service-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 230, 227, 0.75);
  margin: 0;
}

.section-services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-services-stat {
  font-size: 1rem;
  color: rgba(232, 230, 227, 0.8);
  margin: 0;
}

.section-services-stat strong {
  color: #b8860b;
  font-size: 1.25rem;
}

.section-services-cta {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #141414;
  background: #b8860b;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.section-services-cta:hover {
  background: #c99710;
  color: #141414;
}

/* ========== Home: Bento grid ========== */
.home-bento {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: #f8f7f5;
}
.home-bento-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.home-bento-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.home-bento-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}
.home-bento-seo {
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
  max-width: 640px;
  margin: 0 0 2rem;
}
.home-bento-seo-footer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.home-bento-seo-footer a {
  color: #b8860b;
  font-weight: 600;
}
.home-bento-seo-footer a:hover { text-decoration: underline; }
.home-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  grid-template-areas:
    "a a b c"
    "a a d e";
}
.home-bento-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  text-decoration: none;
  color: #fff;
}
.home-bento-item--large {
  grid-area: a;
  aspect-ratio: auto;
  min-height: 280px;
}
.home-bento-item--wide {
  grid-area: d;
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.home-bento-img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home-bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-bento-item:hover .home-bento-img {
  transform: scale(1.08);
}
.home-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.35s;
}
.home-bento-item:hover .home-bento-overlay {
  background: rgba(20, 20, 22, 0.6);
}

/* ========== Home: Split (dark + tilted image) ========== */
.home-split {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: #1a1a1e;
  color: #e8e6e3;
}
.home-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}
.home-split-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.home-split-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}
.home-split-text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(232, 230, 227, 0.88);
  margin: 0 0 1.5rem;
}
.home-split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.home-split-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.home-split-list li i {
  color: #b8860b;
  flex-shrink: 0;
}
.home-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d4a84b;
  transition: color 0.2s, gap 0.2s;
}
.home-split-cta:hover { color: #fff; gap: 0.75rem; }
.home-split-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.home-split-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}
.home-split-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* ========== Home: Stats strip ========== */
.home-stats {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  overflow: hidden;
}
.home-stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 8s ease-out;
}
.home-stats:hover .home-stats-bg {
  transform: scale(1.05);
}
.home-stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.92) 0%, rgba(30, 28, 32, 0.88) 100%);
  z-index: 1;
}
.home-stats-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.home-stat {
  padding: 1rem;
}
.home-stat-num {
  display: inline-block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #b8860b;
  line-height: 1.1;
}
.home-stat-suffix {
  font-size: 0.6em;
  color: rgba(232, 230, 227, 0.9);
}
.home-stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(232, 230, 227, 0.8);
  margin-top: 0.25rem;
}

/* ========== Home: Process cards ========== */
.home-cards {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: #fff;
}
.home-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.home-cards-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.home-cards-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2rem;
}
.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}
.home-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.home-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.home-card:hover .home-card-img-wrap img {
  transform: scale(1.06);
}
.home-card-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
}
.home-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 1rem 1.25rem 0.4rem;
}
.home-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
  margin: 0 1.25rem 1.25rem;
}

/* ========== Home: CTA block ========== */
.home-cta-block {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 2rem;
  overflow: hidden;
}
.home-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 6s ease-out;
}
.home-cta-block:hover .home-cta-bg {
  transform: scale(1.06);
}
.home-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.88) 0%, rgba(26, 24, 28, 0.82) 100%);
  z-index: 1;
}
.home-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.home-cta-headline {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.home-cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(232, 230, 227, 0.9);
  margin: 0 0 1.5rem;
}
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: #b8860b;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.home-cta-btn:hover {
  background: #c99710;
  transform: translateY(-2px);
}

/* ========== Home: Testimonials ========== */
.home-testimonials {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: #fff;
}
.home-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.home-testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.home-testimonials-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.home-testimonials-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 2rem;
  max-width: 560px;
}
.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-testimonial-card {
  background: #f8f7f5;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.home-testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.home-testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid rgba(184, 134, 11, 0.25);
  background: #eee;
}
.home-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
  color: #b8860b;
  font-size: 0.9rem;
}
.home-testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 1rem;
  font-style: italic;
}
.home-testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0 0 0.15rem;
}
.home-testimonial-meta {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

/* ========== Home: FAQ ========== */
.home-faq {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: #f8f7f5;
}
.home-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.home-faq-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.home-faq-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}
.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
}
.home-faq-item:first-child { padding-top: 0; }
.home-faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.home-faq-q::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 1.2em;
  margin-top: 0.2em;
  background: #b8860b;
  border-radius: 2px;
}
.home-faq-a {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 0 1rem;
  padding-left: 0.5rem;
}

@media (max-width: 900px) {
  .home-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a a"
      "b c"
      "d d"
      "e e";
  }
  .home-bento-item--large { min-height: 220px; }
  .home-split-inner { grid-template-columns: 1fr; }
  .home-split-visual { order: -1; }
  .home-split-frame { transform: none; }
  .home-stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .home-cards-grid { grid-template-columns: 1fr; }
  .home-testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .home-bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
  .home-bento-item--wide { grid-column: span 1; aspect-ratio: 16/10; }
}

/* Burger button — only on mobile */
.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #e8e6e3;
  font-size: 1.35rem;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}
.header-burger:hover { color: #fff; opacity: 0.9; }
.header-burger:focus { outline: none; }

/* Mobile menu overlay — full screen, smooth open */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 20, 22, 0.98);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-header .brand {
  color: #fff;
}
.mobile-menu-header .brand-name,
.mobile-menu-header .logo-mark { color: #fff; }
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #e8e6e3;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-close:focus { outline: none; }
.mobile-menu-nav {
  flex: 1;
  overflow: auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8e6e3;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus { color: #d4a84b; }
.mobile-menu-nav a.active {
  color: #fff;
  background: rgba(184, 134, 11, 0.25);
  padding-left: 0.5rem;
}
.mobile-menu-services {
  padding-left: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mobile-menu-services a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: none;
  padding: 0.5rem 0;
}
.mobile-menu-phone {
  margin-top: auto;
  padding: 1.25rem 0;
  font-size: 1rem;
  color: #c9b896;
}
.mobile-menu-phone a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  border: none;
  padding: 0;
}
body.mobile-menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 1rem;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-phone,
  .nav {
    display: none !important;
  }

  .header-burger {
    display: flex;
  }

  /* Контент героя не заезжает под фиксированный хедер */
  .hero {
    padding-top: 4rem;
    min-height: 100vh;
  }

  .hero-curve {
    top: 4rem;
    transform: none;
    width: 90%;
    max-width: none;
    height: 50vh;
    min-height: 280px;
    border-radius: 0 25vh 25vh 0;
  }

  .hero-content {
    left: 1rem;
    right: 1rem;
    bottom: 1.5rem;
    max-width: none;
    padding-top: 2rem;
  }

  .hero-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .section-services {
    padding: 3rem 1rem;
  }

  .section-services-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .section-services-image {
    order: -1;
    aspect-ratio: 16/10;
  }

  .section-services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-services-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact page */
.page-contact {
  padding-top: 5rem;
  min-height: 100vh;
  background: #f5f4f2;
}

.contact-page {
  padding: clamp(2rem, 5vw, 4rem) 2rem;
}

.contact-page-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-page-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.contact-page-lead {
  font-size: 1.05rem;
  color: #555;
  margin: 0 0 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #1a1a1a;
}

.contact-info-block {
  margin-bottom: 1.5rem;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8860b;
  margin: 0 0 0.35rem;
}

.contact-info-block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.contact-info-block a {
  color: #1a1a1a;
  transition: color 0.2s;
}

.contact-info-block a:hover {
  color: #b8860b;
}

.contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.contact-form-label span {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b8860b;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-submit {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #b8860b;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.contact-form-submit:hover {
  background: #9a7209;
}

.contact-form-success {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-page {
    padding: 1.5rem 1rem;
  }
}

/* Portfolio page */
.page-portfolio {
  padding-top: 5rem;
  min-height: 100vh;
  background: #f5f4f2;
}

.portfolio-page {
  padding: clamp(2rem, 5vw, 4rem) 2rem;
}

.portfolio-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.portfolio-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.portfolio-lead {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
  max-width: 520px;
}

/* Галерея — фигурная сетка (не скучная) */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.portfolio-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
}

.portfolio-item--wide {
  grid-column: span 2;
}

.portfolio-item--wide img {
  aspect-ratio: 16/10;
}

.portfolio-item--tall {
  grid-row: span 2;
}

.portfolio-item--tall img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

/* Текстовая секция под галереей */
.portfolio-text {
  background: #141414;
  color: #e8e6e3;
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
  border-radius: 16px;
}

.portfolio-text-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.portfolio-text-p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: rgba(232, 230, 227, 0.9);
  max-width: 640px;
}

.portfolio-text-p:last-child {
  margin-bottom: 0;
}

.portfolio-text a {
  color: #b8860b;
  transition: color 0.2s;
}

.portfolio-text a:hover {
  color: #d4a84b;
}

@media (max-width: 900px) {
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item--wide {
    grid-column: span 2;
  }

  .portfolio-item--tall {
    grid-row: span 1;
  }

  .portfolio-item--tall img {
    min-height: 200px;
    aspect-ratio: 1;
  }
}

@media (max-width: 600px) {
  .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .portfolio-item--wide {
    grid-column: span 1;
  }
}

/* ========== About page ========== */
.page-about {
  padding-top: 5rem;
  background: #fff;
}

.about-hero {
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  background: linear-gradient(135deg, #141414 0%, #1e1e22 100%);
  color: #e8e6e3;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 1rem;
}

.about-hero-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: #fff;
}

.about-hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(232, 230, 227, 0.9);
  margin: 0;
}

.about-section {
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.about-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section-inner.narrow {
  max-width: 900px;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.75rem;
}

.about-section-label.light {
  color: #d4a84b;
}

.about-section-label i {
  opacity: 0.9;
}

.about-section-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

.about-section-title.light {
  color: #fff;
  margin-bottom: 2rem;
}

/* Who we are */
.about-who {
  background: #f8f7f5;
}

.about-who .about-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.about-who-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0 0 1rem;
}

.about-who-content p:last-child {
  margin-bottom: 0;
}

.about-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-stat-card {
  background: #141414;
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Services dark section */
.about-services-dark {
  background: linear-gradient(180deg, #1a1a1e 0%, #141414 100%);
  color: #e8e6e3;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.about-service-card:hover {
  border-color: rgba(184, 134, 11, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.about-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(184, 134, 11, 0.2);
  color: #b8860b;
  border-radius: 10px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.about-service-card h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.about-service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(232, 230, 227, 0.8);
  margin: 0;
}

/* Values */
.about-values {
  background: #fff;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.about-value {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: #f8f7f5;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-value i {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 1rem;
}

.about-value h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.about-value p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* Story */
.about-story {
  background: #f8f7f5;
}

.about-story-block {
  max-width: 680px;
}

.about-story-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1rem;
}

.about-story-block p:last-child {
  margin-bottom: 0;
}

/* CTA */
.about-cta {
  padding: clamp(3rem, 6vw, 4rem) 2rem;
  background: linear-gradient(135deg, #141414 0%, #1a1a1e 100%);
}

.about-cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.about-cta-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.about-cta-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(232, 230, 227, 0.9);
  margin: 0 0 1.5rem;
}

.about-cta-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #141414;
  background: #b8860b;
  border-radius: 6px;
  transition: background 0.2s;
  margin-bottom: 1rem;
}

.about-cta-btn:hover {
  background: #c99710;
}

.about-cta-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #b8860b;
  transition: color 0.2s;
}

.about-cta-link:hover {
  color: #d4a84b;
}

.about-cta-link i {
  margin-left: 0.35rem;
  font-size: 0.85em;
}

@media (max-width: 768px) {
  .about-who .about-section-inner {
    grid-template-columns: 1fr;
  }

  .about-stat-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-stat-card {
    flex: 1;
    min-width: 140px;
  }

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

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Service pages (Full Remodel, Redesign, Cabinetry, Bathroom) ========== */
.page-service {
  padding-top: 5rem;
  background: #fff;
}

.service-main {
  min-height: 60vh;
}

.service-hero {
  padding: clamp(3rem, 8vw, 4.5rem) 2rem;
  background: linear-gradient(135deg, #141414 0%, #1e1e22 100%);
  color: #e8e6e3;
}

.service-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.service-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.75rem;
}

.service-hero-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.service-hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(232, 230, 227, 0.9);
  margin: 0;
}

.service-content {
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
}

.service-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-block {
  margin-bottom: 2rem;
}

.service-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-block h2 i {
  color: #b8860b;
}

.service-block p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

.service-cta {
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid #eee;
}

.service-cta p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: #333;
}

.service-cta .hero-cta {
  display: inline-block;
}

/* ========== Service page rich layout (Full Kitchen Remodel) ========== */
.page-service--full .service-main { min-height: 0; }

.svc-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.svc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,22,0.88) 0%, rgba(30,30,35,0.82) 100%);
  z-index: 1;
}

.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.svc-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.75rem;
}

.svc-hero-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.svc-hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.svc-section {
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.svc-section--light { background: #f8f7f5; }
.svc-section--white { background: #fff; }
.svc-section--dark {
  background: linear-gradient(180deg, #1a1a1e 0%, #141414 100%);
  color: #e8e6e3;
}

.svc-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.5rem;
}

.svc-section-label.light { color: #d4a84b; }
.svc-section-label i { opacity: 0.9; }

.svc-section-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.svc-section-title.light { color: #fff; }

.svc-section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 2rem;
  max-width: 640px;
}

.svc-section--dark .svc-section-lead { color: rgba(232,230,227,0.85); }

/* Includes grid */
.svc-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-include-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.svc-include-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.svc-include-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(184, 134, 11, 0.12);
  color: #b8860b;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.svc-include-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.svc-include-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* Process */
.svc-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.svc-process-item {
  position: relative;
  background: #f8f7f5;
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.svc-process-num {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(184, 134, 11, 0.5);
}

.svc-process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #b8860b;
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.svc-process-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.4rem;
}

.svc-process-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* Split content + image */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.svc-split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.svc-split-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.75rem;
}

.svc-list li i {
  color: #b8860b;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Gallery */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.svc-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.svc-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CTA */
.svc-cta {
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: linear-gradient(135deg, #141414 0%, #1e1e22 100%);
}

.svc-cta-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.svc-cta-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.svc-cta-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(232,230,227,0.9);
  margin: 0 0 1.5rem;
}

.svc-cta-box .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Testimonials */
.svc-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.svc-testimonial-card {
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.5rem 1.5rem;
}

.svc-testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.svc-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(184, 134, 11, 0.25);
  margin-bottom: 1rem;
  background: #f0ede8;
}

.svc-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
  color: #b8860b;
  font-size: 0.95rem;
}

.svc-testimonial-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.svc-testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 1rem;
  flex: 1;
  font-style: italic;
}

.svc-testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0 0 0.15rem;
}

.svc-testimonial-meta {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

/* FAQ */
.svc-faq {
  margin-top: 1.5rem;
  max-width: 720px;
}

.svc-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 1.25rem 0;
}

.svc-faq-item:first-child { padding-top: 0; }

.svc-faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.svc-faq-q::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 1.2em;
  margin-top: 0.2em;
  background: #b8860b;
  border-radius: 2px;
}

.svc-faq-a {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 0 1rem;
  padding-left: 0.5rem;
}

@media (max-width: 900px) {
  .svc-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process { grid-template-columns: repeat(2, 1fr); }
  .svc-split { grid-template-columns: 1fr; }
  .svc-split-image { order: -1; }
  .svc-gallery { grid-template-columns: 1fr; }
  .svc-gallery-item img { height: 200px; }
  .svc-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .svc-includes-grid { grid-template-columns: 1fr; }
  .svc-process { grid-template-columns: 1fr; }
}

/* ========== Legal pages (Terms, Privacy, Cookies) ========== */
.page-legal { padding-top: 5rem; }
.legal-page {
  padding: 2rem 1.5rem 4rem;
  min-height: 60vh;
}
.legal-page-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-page-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.legal-page-updated {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 2rem;
}
.legal-prose {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.legal-prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 2rem 0 0.6rem;
}
.legal-prose h2:first-of-type { margin-top: 1rem; }
.legal-prose p { margin: 0 0 1rem; }
.legal-prose a {
  color: #b8860b;
  text-decoration: underline;
}
.legal-prose a:hover { color: #8b6914; }
.legal-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.legal-footer a {
  color: #555;
  font-size: 0.95rem;
}
.legal-footer a:hover { color: #b8860b; }

/* ========== Cookie consent modal ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, #1a1a1e 0%, #141414 100%);
  color: #e8e6e3;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
}
.cookie-consent.is-visible { display: block; }
.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-consent-text {
  flex: 1;
  min-width: 260px;
  margin: 0;
}
.cookie-consent-text a {
  color: #d4a84b;
  text-decoration: underline;
}
.cookie-consent-text a:hover { color: #f0c14b; }
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.cookie-consent-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-consent-btn--accept {
  background: #b8860b;
  color: #fff;
}
.cookie-consent-btn--accept:hover { background: #9a7209; }
.cookie-consent-btn--reject {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}
.cookie-consent-btn--reject:hover { color: #fff; border-color: #777; }
.cookie-consent-btn--settings {
  background: transparent;
  color: #d4a84b;
  border: 1px solid rgba(212, 168, 75, 0.5);
}
.cookie-consent-btn--settings:hover { background: rgba(212, 168, 75, 0.1); }

/* ========== Site footer ========== */
.site-footer {
  padding: 2.5rem 2rem 1.5rem;
  background: #1a1a1e;
  color: #aaa;
  font-size: 0.9rem;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.site-footer-brand-block .site-footer-contact { margin-top: 0.75rem; }
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e8e6e3;
  font-weight: 600;
  text-decoration: none;
}
.site-footer-brand:hover { color: #e8e6e3; }
.site-footer-brand .logo-mark {
  width: 36px;
  height: 36px;
  color: #d4a84b;
  flex-shrink: 0;
}
.site-footer-brand .logo-mark svg { width: 100%; height: 100%; }
.site-footer-contact {
  line-height: 1.6;
}
.site-footer-contact p { margin: 0 0 0.25rem; }
.site-footer-contact a {
  color: #aaa;
}
.site-footer-contact a:hover { color: #d4a84b; }
.site-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin: 0 0 0.25rem;
}
.site-footer-nav a {
  color: #aaa;
  font-size: 0.9rem;
}
.site-footer-nav a:hover { color: #d4a84b; }
.site-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #777;
  margin: 0 0 1rem;
  max-width: 900px;
}
.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer-copy { margin: 0; color: #666; font-size: 0.85rem; }
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer-links a {
  color: #888;
  font-size: 0.85rem;
}
.site-footer-links a:hover { color: #d4a84b; }
@media (max-width: 900px) {
  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-footer-brand { justify-content: flex-start; }
}
