/* ============ RESET & VARIABLES ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A35B;
  --gold-light: #E2C78D;
  --gold-dark: #9C7A38;
  --gold-soft: rgba(201, 163, 91, 0.12);
  --black: #0A0A0A;
  --dark: #111319;
  --dark-2: #1A1D26;
  --dark-3: #242833;
  --white: #FFFFFF;
  --cream: #FAF6EE;
  --cream-2: #F3ECDC;
  --gray-50: #F9F8F5;
  --gray-100: #F2F0EB;
  --gray-200: #E4E0D5;
  --gray-300: #C9C4B5;
  --gray-500: #6B6B6B;
  --gray-700: #2F3138;
  --gray-900: #111319;
  --text: #141414;
  --text-dim: #4A4A4A;
  --text-light: rgba(255,255,255,0.75);
  --radius-pill: 999px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.18);
  --shadow-gold: 0 14px 40px rgba(201, 163, 91, 0.25);
  --font-heading: 'Playfair Display', serif;
  --font-sub: 'Montserrat', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
@media (max-width: 968px) {
  html { scroll-padding-top: 125px; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 115px; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
section, footer { overflow-x: hidden; }
header { overflow: visible; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.015em;
}
h4, h5 {
  font-family: var(--font-sub);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

section { scroll-margin-top: 90px; }

.hl { color: var(--gold); font-style: italic; font-weight: 700; }
h4 .hl, h5 .hl, .logo-title .hl { font-style: normal; }

.kicker {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-head.center .kicker { padding-left: 0; }
.section-head.center .kicker::before {
  left: -36px;
}
.section-head.center .kicker::after {
  content: '';
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-sub { color: var(--text-dim); font-size: 1.05rem; max-width: 680px; margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(201, 163, 91, 0.4);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-full { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 0.88rem; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(201, 163, 91, 0.15);
}
.top-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: start;
}
.tb-center {
  display: flex;
  align-items: center;
  justify-self: center;
  text-align: center;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}
.tb-phone, .tb-mail, .tb-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: color 0.2s;
}
.tb-phone:hover, .tb-mail:hover { color: var(--gold); }
.tb-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.tb-tagline em {
  color: var(--gold);
  font-weight: 500;
}
.tb-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 163, 91, 0.12);
  color: var(--gold);
  transition: all 0.2s;
}
.tb-right a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  will-change: transform;
}
.header.header-hidden {
  transform: translateY(-100%);
}

/* Mobile: force fixed positioning as a robust fallback for sticky issues */
@media (max-width: 968px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  /* Top-bar also becomes fixed, stacked above the header */
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .top-bar.header-hidden {
    transform: translateY(-100%);
  }
  /* Push header down by top-bar height so they stack visually */
  .header {
    top: 38px;
  }
  /* Compensate body so content doesn't hide under the fixed bars */
  body {
    padding-top: 115px;
  }
}
@media (max-width: 600px) {
  .header {
    top: 34px;
  }
  body {
    padding-top: 108px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  pointer-events: none;
}
.logo-mark svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-top: 4px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
}
.nav-cta { padding: 12px 22px; font-size: 0.72rem; letter-spacing: 0.12em; }
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1D26 60%, #0F1014 100%);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero-roof.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(201, 163, 91, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(201, 163, 91, 0.08) 0%, transparent 45%),
    linear-gradient(135deg, rgba(10,10,10,0.86) 0%, rgba(17,19,25,0.80) 50%, rgba(10,10,10,0.84) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}
.hero-left { min-width: 0; }
.hero-right { min-width: 0; margin-top: -10px; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 163, 91, 0.12);
  border: 1px solid rgba(201, 163, 91, 0.4);
  color: var(--gold);
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-left h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin-bottom: 22px;
  line-height: 1.1;
  font-weight: 800;
}
.hero-left h1 .hl {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.28rem;
  color: rgba(255,255,255,0.88);
  max-width: 660px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}
.hp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 163, 91, 0.15);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 163, 91, 0.3);
}
.hp-icon svg { width: 18px; height: 18px; }
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ GUARANTEE BADGE ============ */
.guarantee-badge {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 130px;
  height: 130px;
  z-index: 5;
  color: var(--gold);
  animation: spin 26s linear infinite;
  filter: drop-shadow(0 10px 30px rgba(201,163,91,0.4));
}
.guarantee-badge .gb-circle {
  width: 100%;
  height: 100%;
}
.guarantee-badge .gb-inner {
  position: absolute;
  inset: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  animation: spin-reverse 26s linear infinite;
  box-shadow: inset 0 0 0 4px rgba(0,0,0,0.08);
}
.guarantee-badge .gb-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--black);
}
.guarantee-badge .gb-unit {
  font-family: var(--font-sub);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--black);
  margin-top: 2px;
}
.guarantee-badge .gb-line {
  width: 30px;
  height: 1px;
  background: rgba(0,0,0,0.3);
  margin: 4px 0;
}
.guarantee-badge .gb-sub {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--black);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ============ HERO QUOTE FORM ============ */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,163,91,0.2);
  position: relative;
  color: var(--text);
}
.quote-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.qc-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-soft);
  color: var(--gold-dark);
  padding: 7px 16px;
  border: 1px solid rgba(201,163,91,0.35);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.qc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.qc-sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 22px;
  line-height: 1.5;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  transition: all 0.2s;
  outline: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,163,91,0.12);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--gray-500);
}
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C7A38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.quote-form textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font-body);
}
.quote-form .btn { margin-top: 6px; }
.form-error {
  display: block;
  color: #B91C1C;
  font-size: 0.8rem;
  margin-top: -6px;
}
.form-error:empty { display: none; }
.qc-success {
  display: none;
  text-align: center;
  padding: 20px 10px 10px;
}
.qc-success.active { display: block; }
.quote-form.hidden { display: none; }
.qc-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
}
.qc-success-icon svg { width: 28px; height: 28px; }
.qc-success h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--black);
  text-transform: none;
  font-family: var(--font-heading);
  font-weight: 700;
}
.qc-success p {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.qc-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.qc-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
}
.qc-trust svg { color: var(--gold); }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.trust-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.ts-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.ts-num small {
  font-size: 1.2rem;
  margin-left: 2px;
}
.ts-text { font-style: italic; }
.ts-lbl {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.ts-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,163,91,0.25);
  flex-shrink: 0;
}

/* ============ SERVICES ============ */
.services {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.services-grid.main-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 60px;
}
.service-card.premium {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transition: height 0.4s ease;
}
.service-card.premium:hover {
  border-color: rgba(201,163,91,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-card.premium:hover::before { height: 100%; }
.sc-number {
  position: absolute;
  top: 24px;
  right: 30px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--gold-soft);
  line-height: 1;
  transition: color 0.3s;
}
.service-card.premium:hover .sc-number { color: rgba(201,163,91,0.18); }
.sc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-gold);
  position: relative;
}
.sc-icon svg { width: 30px; height: 30px; }
.service-card.premium h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--black);
  text-transform: none;
  letter-spacing: -0.01em;
}
.service-card.premium > p {
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.sc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.sc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ADDITIONAL SERVICES */
.additional-services {
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.as-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  text-align: center;
  margin-bottom: 36px;
  color: var(--black);
  text-transform: none;
  letter-spacing: -0.01em;
}
.additional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.additional-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: all 0.3s;
}
.additional-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ac-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.ac-icon svg { width: 22px; height: 22px; }
.additional-card h5 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sub);
  font-weight: 700;
}
.additional-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============ ABOUT ============ */
.about {
  padding: 110px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.about-left { position: relative; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.exp-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  padding: 22px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.eb-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}
.eb-text {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  color: var(--black);
}
.about-kicker {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}
.about-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.about-right h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.15;
}
.intro-line {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 26px;
  line-height: 1.65;
}
.about-block {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin-bottom: 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text);
}
.about-block strong {
  color: var(--gold-dark);
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.02em;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ MID CTA ============ */
.mid-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1D26 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(201,163,91,0.04) 30px, rgba(201,163,91,0.04) 31px);
  pointer-events: none;
}
.mid-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,163,91,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.mid-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 40px;
  align-items: center;
}
.mc-kicker {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid rgba(201,163,91,0.4);
  background: rgba(201,163,91,0.08);
  border-radius: 999px;
}
.mc-left h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.mc-left p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* ============ PROCESS ============ */
.process {
  padding: 110px 0;
  background: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.4;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.ps-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--cream);
  position: relative;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--black);
  text-transform: none;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ WHY ============ */
.why {
  padding: 110px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(201,163,91,0.12);
  border-color: rgba(201,163,91,0.3);
  background: var(--white);
}
.why-card:hover::before { transform: scaleX(1); }
.wc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}
.wc-icon svg { width: 28px; height: 28px; }
.why-card h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.35;
  font-family: var(--font-sub);
}
.why-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 110px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  position: relative;
}
.review-card:hover {
  border-color: rgba(201,163,91,0.4);
  box-shadow: 0 24px 50px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.rc-quote {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.3;
}
.rc-quote svg { width: 100%; height: 100%; }
.rc-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 3px;
}
.review-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 400;
}
.rc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.rc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}
.rc-author strong {
  display: block;
  font-size: 0.98rem;
  color: var(--black);
  font-family: var(--font-sub);
}
.rc-author span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============ FAQ ============ */
.faq {
  padding: 110px 0;
  background: var(--white);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: rgba(201,163,91,0.4);
  box-shadow: 0 14px 30px rgba(201,163,91,0.08);
  background: var(--white);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  text-align: left;
}
.faq-toggle {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-a { max-height: 400px; }
.faq-a p {
  padding: 0 28px 24px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-col h5 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.logo-mark-footer {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.footer-brand .logo-title {
  color: var(--white);
  font-size: 1.5rem;
}
.footer-brand .logo-sub {
  color: rgba(255,255,255,0.6);
}
.footer-tagline {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-style: italic;
}
.footer-tagline em {
  color: var(--gold);
  font-style: italic;
}
.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 12px;
}
.contact-list li {
  margin-bottom: 14px;
}
.contact-list li a, .contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.ci {
  width: 34px;
  height: 34px;
  background: rgba(201,163,91,0.15);
  color: var(--gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci svg { width: 16px; height: 16px; }
.footer-socials { margin-top: 20px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,163,91,0.12);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  transition: all 0.2s;
  border: 1px solid rgba(201,163,91,0.25);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
}
.footer-cta-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid rgba(201,163,91,0.15);
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-cta-col .made-by {
  display: block;
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.3px;
  text-align: center;
}

.footer-cta-col .made-by a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
  border-bottom: 1px dotted rgba(255,255,255,0.28);
  padding-bottom: 1px;
}

.footer-cta-col .made-by a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .hero-inner { gap: 40px; }
  .services-grid.main-services { grid-template-columns: 1fr; }
  .additional-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-strip-inner { flex-wrap: wrap; justify-content: center; gap: 30px; }
  .ts-divider { display: none; }
  .ts-item { flex: 0 0 calc(33% - 20px); }
}

@media (max-width: 968px) {
  .top-bar { font-size: 0.75rem; padding: 8px 0; }
  .tb-tagline, .tb-mail, .tb-location { display: none; }
  .tb-left, .tb-right { gap: 12px; }

  .header { padding: 14px 0; }
  .logo-sub { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
    gap: 14px;
    align-items: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .nav.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { max-width: 500px; width: 100%; margin: 0 auto; }
  .guarantee-badge { top: -50px; right: 10px; width: 110px; height: 110px; }

  .about-inner { grid-template-columns: 1fr; gap: 80px; }
  .about-left { order: 2; }
  .about-right { order: 1; }
  .about-photo { max-width: 400px; margin: 0 auto; }
  .about-photo::before { display: none; }
  .exp-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }

  .mid-cta-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .mc-right { display: flex; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .additional-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-item { flex: 0 0 calc(50% - 20px); }
}

@media (max-width: 600px) {
  .section-head h2 { font-size: 1.8rem; }
  .hero-left h1 { font-size: 2rem; }
  .hero-sub { font-size: 1.1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .logo-title { font-size: 1.15rem; }
  .logo-mark { width: 46px; height: 46px; }
  .logo-mark svg { width: 22px; height: 22px; }
  .btn { padding: 13px 20px; font-size: 0.72rem; }
  .btn-lg { padding: 15px 24px; font-size: 0.78rem; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .additional-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 24px 22px; }
  .qc-title { font-size: 1.2rem; }
  .service-card.premium { padding: 30px 26px; }
  .guarantee-badge { width: 90px; height: 90px; top: -40px; right: 5px; }
  .guarantee-badge .gb-num { font-size: 1.6rem; }
  .guarantee-badge .gb-unit, .guarantee-badge .gb-sub { font-size: 0.48rem; }
  .ts-item { flex: 0 0 100%; }
  .ts-num { font-size: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }
.reveal-left[data-delay="200"] { transition-delay: 0.2s; }
.reveal-right[data-delay="200"] { transition-delay: 0.2s; }
.reveal-scale[data-delay="150"] { transition-delay: 0.15s; }
.reveal-scale[data-delay="300"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .guarantee-badge { animation: none; }
  .guarantee-badge .gb-inner { animation: none; }
}

/* ============ PORTFOLIO PAGE ============ */
.portfolio-hero {
  position: relative;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.portfolio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 163, 91, 0.18) 0, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 163, 91, 0.12) 0, transparent 50%);
  pointer-events: none;
}
.portfolio-hero .container { position: relative; z-index: 2; }
.portfolio-hero .kicker { color: var(--gold-light); }
.portfolio-hero .kicker::before { background: var(--gold); }
.portfolio-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 22px;
}
.portfolio-hero h1 .hl { color: var(--gold); }
.portfolio-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.portfolio-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.portfolio-hero .hero-stats .stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.portfolio-hero .hero-stats .stat-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.portfolio-section {
  padding: 90px 0;
  background: var(--cream);
}

.portfolio-intro {
  text-align: center;
  margin-bottom: 60px;
}
.portfolio-intro h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
}
.portfolio-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 1.04rem;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.pf-btn {
  padding: 10px 22px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}
.pf-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.pf-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-title-bar {
  padding: 22px 24px 16px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
}
.project-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.project-title-bar h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.25;
}
.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-family: var(--font-sub);
  font-weight: 500;
}
.project-location svg { flex-shrink: 0; }

.project-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-body p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  color: var(--gray-500);
}
.project-meta strong { color: var(--black); font-weight: 700; }

.portfolio-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.portfolio-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 163, 91, 0.15) 0, transparent 60%);
  pointer-events: none;
}
.portfolio-cta .container { position: relative; z-index: 2; }
.portfolio-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}
.portfolio-cta h2 .hl { color: var(--gold); }
.portfolio-cta p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--text-light);
  font-size: 1.05rem;
}
.portfolio-cta .cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .portfolio-hero { padding: 140px 0 70px; }
  .portfolio-hero .hero-stats { gap: 32px; }
  .portfolio-hero .hero-stats .stat-num { font-size: 2rem; }
  .portfolio-section { padding: 60px 0; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 24px; }
  .project-title-bar { padding: 18px 20px 14px; }
  .project-title-bar h3 { font-size: 1.25rem; }
  .project-body { padding: 18px 20px 22px; }
  .portfolio-cta { padding: 60px 0; }
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  overflow: hidden;
  color: var(--white);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(201, 163, 91, 0.20) 0, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(201, 163, 91, 0.12) 0, transparent 50%);
  pointer-events: none;
}
.about-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero .kicker { color: var(--gold-light); }
.about-hero .kicker::before { background: var(--gold); }
.about-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 22px;
  line-height: 1.15;
}
.about-hero h1 .hl { color: var(--gold); }
.about-hero .lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 26px;
}
.about-hero-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 163, 91, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}
.about-hero-right h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 22px;
  line-height: 1.25;
}
.about-hero-right h3 .hl { color: var(--gold); }
.about-hero-right .hero-points li {
  color: var(--text-light);
  margin-bottom: 14px;
}
.about-hero-right .hero-points li .hp-icon {
  background: rgba(201, 163, 91, 0.16);
  color: var(--gold);
}

/* Story block */
.about-story {
  padding: 100px 0;
  background: var(--cream);
}
.about-story .container {
  max-width: 980px;
}
.about-story .story-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-story h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
}
.about-story .story-sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 720px;
  margin: 0 auto;
}
.about-story .story-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}
.about-story .story-text strong { color: var(--black); font-weight: 700; }
.about-story .story-text em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 600;
}

/* Services cards */
.about-services {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.about-services-head {
  text-align: center;
  margin-bottom: 60px;
}
.about-services-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  margin-bottom: 14px;
}
.about-services-head h2 .hl { color: var(--gold); }
.about-services-head p {
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.about-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.about-service-card .as-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.about-service-card .as-icon svg { width: 28px; height: 28px; }
.about-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--black);
}
.about-service-card p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* Why choose VIP */
.about-why {
  padding: 100px 0;
  background: var(--cream);
}
.about-why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-why-left h2 {
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  margin-bottom: 22px;
}
.about-why-left h2 .hl { color: var(--gold); }
.about-why-left p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-stat {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.why-stat .ws-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat .ws-label {
  font-family: var(--font-sub);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
}

/* Extra services */
.about-extras {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-extras::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 163, 91, 0.12) 0, transparent 55%);
  pointer-events: none;
}
.about-extras .container { position: relative; z-index: 2; }
.about-extras-head {
  text-align: center;
  margin-bottom: 50px;
}
.about-extras-head h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.3vw, 2.4rem);
  margin-bottom: 14px;
}
.about-extras-head h2 .hl { color: var(--gold); }
.about-extras-head p {
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.about-extras-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.extra-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 163, 91, 0.25);
  border-radius: var(--radius);
  padding: 22px 22px 22px 60px;
  position: relative;
  transition: all 0.25s ease;
}
.extra-item:hover {
  background: rgba(201, 163, 91, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.extra-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201, 163, 91, 0.15);
}
.extra-item::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: translateY(-70%) rotate(-45deg);
}
.extra-item h4 {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 4px;
}
.extra-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Closing CTA */
.about-cta {
  padding: 90px 0;
  background: var(--gray-50);
  text-align: center;
}
.about-cta h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}
.about-cta h2 .hl { color: var(--gold); }
.about-cta p {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}
.about-cta .cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-hero { padding: 140px 0 80px; }
  .about-hero .container { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-right { padding: 30px 26px; }
  .about-story { padding: 70px 0; }
  .about-services { padding: 70px 0; }
  .about-why { padding: 70px 0; }
  .about-why .container { grid-template-columns: 1fr; gap: 40px; }
  .about-why-right { grid-template-columns: repeat(2, 1fr); }
  .about-extras { padding: 70px 0; }
  .about-cta { padding: 70px 0; }
}
@media (max-width: 520px) {
  .about-why-right { grid-template-columns: 1fr; }
}

/* ============ NAV DROPDOWN ============ */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-item.has-dropdown { z-index: 1500; }
.nav-item.has-dropdown:hover,
.nav-item.has-dropdown:focus-within { z-index: 2000; }

.nav-item.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-item.has-dropdown > .nav-link::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  transition: transform 0.25s;
}
.nav-item.has-dropdown:hover > .nav-link::after,
.nav-item.has-dropdown:focus-within > .nav-link::after { transform: rotate(180deg); }

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  min-width: 340px;
  background: #FFFFFF;
  color: #2F3138;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid #E4E0D5;
  padding: 10px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 2000;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #FFFFFF;
  border-left: 1px solid #E4E0D5;
  border-top: 1px solid #E4E0D5;
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.82rem;
  color: #2F3138 !important;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.dropdown-link:hover {
  background: rgba(201, 163, 91, 0.14);
  color: #9C7A38 !important;
  transform: translateX(3px);
}
.dropdown-link .dl-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(201, 163, 91, 0.14);
  color: #9C7A38;
  transition: background 0.2s, color 0.2s;
}
.dropdown-link:hover .dl-icon {
  background: #C9A35B;
  color: #FFFFFF;
}
.dropdown-link .dl-icon svg { width: 16px; height: 16px; }

/* Mobile: click-to-toggle dropdown */
@media (max-width: 968px) {
  .nav-item { display: block; width: 100%; }
  .nav-item.has-dropdown > .nav-link {
    justify-content: space-between;
    width: 100%;
  }
  /* Keep arrow visible on mobile, rotate when open */
  .nav-item.has-dropdown > .nav-link::after {
    display: inline-block;
  }
  /* Disable hover/focus-within behavior on mobile */
  .nav-item.has-dropdown:hover .dropdown-menu,
  .nav-item.has-dropdown:focus-within .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-item.has-dropdown:hover > .nav-link::after,
  .nav-item.has-dropdown:focus-within > .nav-link::after {
    transform: rotate(0deg);
  }
  /* Dropdown closed by default on mobile */
  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    width: 100%;
    padding: 0 0 0 14px;
    border-left: 2px solid rgba(201, 163, 91, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease, margin-top 0.25s ease;
  }
  /* Dropdown open state (toggled via JS) */
  .nav-item.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 1000px;
    margin-top: 6px;
    padding: 6px 0 6px 14px;
  }
  .nav-item.has-dropdown.open > .nav-link::after {
    transform: rotate(180deg);
  }
  .dropdown-menu::before, .dropdown-menu::after { display: none; }
  .dropdown-link {
    padding: 8px 10px;
    font-size: 0.8rem;
    color: #2F3138 !important;
  }
  .dropdown-link .dl-icon { width: 28px; height: 28px; }
}

/* ============ SERVICES PAGE ============ */
.services-hero {
  position: relative;
  padding: 170px 0 90px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 163, 91, 0.18) 0, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(201, 163, 91, 0.12) 0, transparent 55%);
  pointer-events: none;
}
.services-hero .container { position: relative; z-index: 2; max-width: 900px; }
.services-hero .kicker { color: var(--gold-light); justify-content: center; }
.services-hero .kicker::before { background: var(--gold); }
.services-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.services-hero h1 .hl { color: var(--gold); }
.services-hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 32px;
}
.services-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}
.sh-pill {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 163, 91, 0.35);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.sh-pill:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Notice bar */
.services-notice {
  background: #2a1f0e;
  color: var(--gold-light);
  padding: 18px 0;
  text-align: center;
  border-bottom: 1px solid rgba(201, 163, 91, 0.3);
  font-size: 0.92rem;
  font-family: var(--font-sub);
  font-weight: 500;
}
.services-notice strong { color: var(--gold); margin-right: 6px; }

/* Service section block */
.service-block {
  padding: 90px 0;
  border-bottom: 1px solid var(--gray-200);
  scroll-margin-top: 110px;
}
.service-block:nth-child(even) { background: var(--cream); }
.service-block:nth-child(odd) { background: var(--white); }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}
.sb-head { position: sticky; top: 110px; }
.sb-head .kicker { margin-bottom: 14px; }
.sb-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 18px;
}
.sb-head h2 .hl { color: var(--gold); }
.sb-head .sb-lead {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.sb-head .sb-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}
.sb-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-family: var(--font-sub);
  font-weight: 500;
}
.sb-meta-row svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Variant card */
.variant-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.variant-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-block:nth-child(even) .variant-card { background: var(--white); }
.variant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.variant-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--gray-200);
}
.variant-title h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 4px;
}
.variant-title .v-sub {
  font-family: var(--font-sub);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.variant-price {
  flex-shrink: 0;
  text-align: right;
}
.variant-price .vp-label {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.variant-price .vp-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold-dark);
  line-height: 1.1;
}
.variant-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.variant-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}
.variant-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--gold-soft);
  border-radius: 50%;
}
.variant-list li::after {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.variant-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  color: var(--gray-700);
  font-weight: 600;
}
.variant-footer strong { color: var(--gold-dark); }

/* Flat feature list */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-grid-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px 14px 46px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.45;
  transition: all 0.2s;
}
.service-block:nth-child(even) .feature-grid-item { background: var(--white); }
.feature-grid-item::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--gold-soft);
  border-radius: 50%;
}
.feature-grid-item::after {
  content: '';
  position: absolute;
  left: 20px; top: 50%;
  width: 9px; height: 5px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: translateY(-70%) rotate(-45deg);
}
.feature-grid-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Simple card (for services without variants) */
.service-simple-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.service-simple-card p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-simple-card p:last-child { margin-bottom: 0; }
.service-simple-card .ssc-cta {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Other services (general construction) */
.other-services-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 110px;
}
.other-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201, 163, 91, 0.12) 0, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(201, 163, 91, 0.08) 0, transparent 50%);
  pointer-events: none;
}
.other-services-section .container { position: relative; z-index: 2; }
.os-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.os-head .kicker { color: var(--gold-light); justify-content: center; }
.os-head .kicker::before { background: var(--gold); }
.os-head h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}
.os-head h2 .hl { color: var(--gold); }
.os-head p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.7;
}
.os-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.os-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 163, 91, 0.25);
  border-radius: var(--radius);
  padding: 18px 20px 18px 50px;
  position: relative;
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}
.os-item:hover {
  background: rgba(201, 163, 91, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.os-item::before {
  content: '';
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 163, 91, 0.18);
}
.os-item::after {
  content: '';
  position: absolute;
  left: 22px; top: 50%;
  width: 9px; height: 5px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: translateY(-70%) rotate(-45deg);
}

/* Bottom CTA for services */
.services-final-cta {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}
.services-final-cta h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}
.services-final-cta h2 .hl { color: var(--gold); }
.services-final-cta p {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.services-final-cta .cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 30px; }
  .sb-head { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .services-hero { padding: 130px 0 70px; }
  .services-notice { font-size: 0.82rem; padding: 14px 12px; }
  .service-block { padding: 60px 0; }
  .variant-card { padding: 24px 22px 22px; }
  .variant-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .variant-price { text-align: left; }
  .variant-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .other-services-section { padding: 60px 0; }
  .services-final-cta { padding: 60px 0; }
  .service-simple-card { padding: 26px 22px; }
}

/* ============ FEATURED PROJECTS (Portfolio Slideshows) ============ */
.featured-projects {
  display: grid;
  gap: 50px;
  margin: 50px 0 80px;
}

.featured-project {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: transform 0.35s, box-shadow 0.35s;
}

.featured-project:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.featured-project:nth-child(even) {
  grid-template-columns: 1fr 1.15fr;
}

.featured-project:nth-child(even) .fp-slideshow { order: 2; }
.featured-project:nth-child(even) .fp-content { order: 1; }

/* Slideshow */
.fp-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0A0A0A;
  overflow: hidden;
  user-select: none;
}

.fp-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.fp-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
  display: block;
}

.fp-slide.active { opacity: 1; z-index: 1; }

.fp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.fp-arrow:hover {
  background: var(--gold);
  color: #0A0A0A;
  transform: translateY(-50%) scale(1.08);
}

.fp-prev { left: 14px; }
.fp-next { right: 14px; }

.fp-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.fp-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.fp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  padding: 0;
}

.fp-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.fp-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
}

/* Content */
.fp-content {
  padding: 44px 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-project:nth-child(even) .fp-content {
  padding: 44px 40px 44px 44px;
}

.fp-content .project-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201, 163, 91, 0.14);
  padding: 7px 13px;
  border-radius: 6px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.fp-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.22;
  color: var(--text);
}

.fp-content .project-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  text-transform: none;
}

.fp-content p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 22px;
}

.fp-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.fp-content .project-meta strong {
  color: var(--text);
  font-weight: 700;
}

/* Divider between featured and grid */
.portfolio-divider {
  margin: 30px 0 40px;
  text-align: center;
}

.portfolio-divider .kicker { margin-bottom: 12px; }

.portfolio-divider h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 1024px) {
  .featured-project,
  .featured-project:nth-child(even) { grid-template-columns: 1fr; }
  .featured-project:nth-child(even) .fp-slideshow { order: 0; }
  .featured-project:nth-child(even) .fp-content { order: 0; }
  .fp-content,
  .featured-project:nth-child(even) .fp-content { padding: 34px 30px; }
  .fp-content h3 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .featured-projects { gap: 34px; margin: 34px 0 60px; }
  .fp-slideshow { aspect-ratio: 4 / 3; }
  .fp-content,
  .featured-project:nth-child(even) .fp-content { padding: 26px 22px; }
  .fp-content h3 { font-size: 1.3rem; }
  .fp-arrow { width: 38px; height: 38px; }
  .fp-prev { left: 8px; }
  .fp-next { right: 8px; }
  .fp-counter { top: 10px; right: 10px; font-size: 0.72rem; padding: 4px 10px; }
  .fp-dots { bottom: 10px; }
  .portfolio-divider h2 { font-size: 1.5rem; }
}

/* ============================================
   CERTIFICATES / REFERENCES SECTION
============================================ */
.certificates-section {
  padding: 90px 0 100px;
  background:
    radial-gradient(1100px 480px at 18% 0%, rgba(198,163,68,0.10), transparent 60%),
    radial-gradient(1100px 480px at 82% 100%, rgba(198,163,68,0.08), transparent 60%),
    #0A0A0A;
  color: #fff;
  position: relative;
}

.certificates-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.certificates-header .kicker {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}

.certificates-header h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

.certificates-header h2 .hl { color: var(--gold); }

.certificates-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  align-items: start;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.cert-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(198,163,68,0.18);
  border-radius: 16px;
  padding: 30px 30px 28px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198,163,68,0.50);
  box-shadow: 0 20px 44px rgba(0,0,0,0.45), 0 0 0 1px rgba(198,163,68,0.18);
}

.cert-card-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cert-badge {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198,163,68,0.22), rgba(198,163,68,0.08));
  border: 1px solid rgba(198,163,68,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cert-badge svg { width: 30px; height: 30px; }

.cert-head-text { flex: 1; min-width: 0; }

.cert-type {
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.cert-issuer {
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cert-body {
  color: rgba(255,255,255,0.75);
  font-size: 0.96rem;
  line-height: 1.62;
}

.cert-body strong { color: #fff; font-weight: 600; }

.cert-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.cert-tag {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(198,163,68,0.10);
  border: 1px solid rgba(198,163,68,0.28);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cert-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold);
  color: #0A0A0A;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
  letter-spacing: 0.3px;
}

.cert-btn:hover { background: #d5b257; transform: translateY(-2px); }

.cert-btn svg { width: 16px; height: 16px; }

.cert-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}

.cert-btn-ghost:hover {
  background: rgba(198,163,68,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.certificates-trust {
  max-width: 960px;
  margin: 60px auto 0;
  padding: 30px 34px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(198,163,68,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.certificates-trust svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
  flex-shrink: 0;
}

.certificates-trust p {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.certificates-trust strong { color: #fff; font-weight: 700; }

@media (max-width: 900px) {
  .certificates-grid { grid-template-columns: 1fr; gap: 22px; }
  .cert-card { padding: 24px 22px 22px; }
  .certificates-section { padding: 70px 0 80px; }
  .certificates-trust { flex-direction: column; text-align: center; padding: 24px 22px; gap: 14px; }
  .cert-badge { width: 54px; height: 54px; }
  .cert-badge svg { width: 26px; height: 26px; }
  .cert-issuer { font-size: 1.08rem; }
  .cert-actions { flex-direction: column; }
  .cert-btn { justify-content: center; width: 100%; }
}

@media (max-width: 520px) {
  .cert-card-top { flex-direction: column; }
  .certificates-header h2 { font-size: 1.7rem; }
}

/* ============================================
   CONTACTS PAGE
============================================ */
.contacts-channels {
  padding: 80px 0 30px;
  background: #FAFAFA;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px 26px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.channel-card:hover { transform: translateY(-5px); border-color: rgba(198,163,68,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.channel-card:hover::before { transform: scaleX(1); }

.channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198,163,68,0.18), rgba(198,163,68,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.channel-icon svg { width: 24px; height: 24px; }

.channel-icon.cg-phone { background: linear-gradient(135deg, rgba(30,136,229,0.14), rgba(30,136,229,0.04)); color: #1e88e5; }
.channel-icon.cg-wa { background: linear-gradient(135deg, rgba(37,211,102,0.16), rgba(37,211,102,0.04)); color: #25D366; }
.channel-icon.cg-fb { background: linear-gradient(135deg, rgba(24,119,242,0.14), rgba(24,119,242,0.04)); color: #1877F2; }
.channel-icon.cg-maps { background: linear-gradient(135deg, rgba(234,67,53,0.16), rgba(234,67,53,0.04)); color: #EA4335; }

.channel-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8A8A8A;
  font-weight: 700;
  margin-bottom: -6px;
}

.channel-value {
  font-size: 1.08rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.channel-hint {
  font-size: 0.85rem;
  color: #5F5F5F;
  margin-top: -4px;
}

.channel-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}

.channel-arrow svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.channel-card:hover .channel-arrow svg { transform: translateX(4px); }

/* Info row: hours + address */
.contacts-info-row {
  padding: 30px 0 40px;
  background: #FAFAFA;
}

.info-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-card-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198,163,68,0.18), rgba(198,163,68,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.info-card-icon svg { width: 26px; height: 26px; }

.info-card-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111;
}

.info-card-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card-text ul li {
  font-size: 0.96rem;
  color: #4A4A4A;
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}

.info-card-text ul li:last-child { border-bottom: none; }
.info-card-text ul li strong { color: #111; font-weight: 700; }
.info-card-text p { font-size: 0.96rem; color: #4A4A4A; margin: 0; line-height: 1.6; }
.info-card-text .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.info-card-text .map-link:hover { text-decoration: underline; }

/* Map + form split */
.contacts-map-form {
  padding: 50px 0 90px;
  background: #FAFAFA;
}

.mf-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.mf-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 520px;
  background: #e9e9e9;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.mf-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.mf-map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  z-index: 3;
}

.mf-map-badge svg { width: 18px; height: 18px; color: #EA4335; }

.mf-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.mf-form-wrap .qc-badge { margin-bottom: 14px; }

.mf-form-wrap .qc-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.mf-form-wrap .qc-sub {
  font-size: 0.95rem;
  color: #5F5F5F;
  margin-bottom: 22px;
}

.mf-form-wrap .quote-form { display: flex; flex-direction: column; gap: 12px; }

.mf-form-wrap .qc-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.84rem;
  color: #5F5F5F;
}
.mf-form-wrap .qc-trust span { display: inline-flex; align-items: center; gap: 6px; }
.mf-form-wrap .qc-trust svg { color: var(--gold); }

@media (max-width: 1000px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .info-row-grid { grid-template-columns: 1fr; }
  .mf-grid { grid-template-columns: 1fr; }
  .mf-map { min-height: 400px; }
  .mf-map iframe { min-height: 400px; }
}

@media (max-width: 560px) {
  .channels-grid { grid-template-columns: 1fr; }
  .contacts-channels { padding: 60px 0 20px; }
  .contacts-map-form { padding: 30px 0 70px; }
  .mf-form-wrap { padding: 28px 22px; }
  .info-card { padding: 24px 20px; }
  .info-card-text ul li { flex-direction: column; gap: 4px; }
}

/* ===== FLOATING PHONE BUTTON ===== */
.float-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A35B 0%, #B38A3A 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(201, 163, 91, 0.45), 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 9998;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-call::before,
.float-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(201, 163, 91, 0.55);
  z-index: -1;
  animation: floatCallPulse 2.2s ease-out infinite;
}
.float-call::after {
  animation-delay: 1.1s;
}
.float-call:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 34px rgba(201, 163, 91, 0.55), 0 6px 14px rgba(0, 0, 0, 0.22);
}
.float-call svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}
@keyframes floatCallPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}
@media (max-width: 600px) {
  .float-call {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  .float-call svg { width: 22px; height: 22px; }
}

/* ===== FOOTER PHONE LARGER ON MOBILE ===== */
@media (max-width: 700px) {
  .footer .contact-list li:first-child a {
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
}
