@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Colors */
  --c-bg:           #f8f6ec;
  --c-bg-alt:       #eeebd8;
  --c-dark:         #1a1816;
  --c-navy:         #020617;
  --c-accent:       #e3c72b;
  --c-accent-dark:  #91801c;
  --c-text:         #1a1816;
  --c-text-body:    #2a250c;
  --c-text-light:   #f8f6ec;
  --c-text-muted:   #f6f6f6;
  --c-white:        #ffffff;
  --c-border:       rgba(26, 24, 22, 0.10);
  --c-border-light: rgba(248, 246, 236, 0.20);
  --c-nav-bg:       rgba(219, 212, 173, 0.80);
  --c-form-bg:      rgba(248, 246, 236, 0.70);
  --c-input-bg:     #efede7;
  --c-overlay-dark: rgba(42, 37, 12, 0.75);

  /* Typography */
  --font-heading: 'Commissioner', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Font Sizes */
  --fs-hero: clamp(2.25rem, 4.31vw, 3.875rem);   /* 62px */
  --fs-h2:   clamp(2rem, 2.92vw, 2.625rem);       /* 42px → 32px min */
  --fs-h3:   clamp(1.25rem, 2.22vw, 2rem);        /* 32px */
  --fs-h4:   1.5rem;                               /* 24px */
  --fs-h5:   1.125rem;                             /* 18px */
  --fs-base: 1rem;                                 /* 16px */
  --fs-sm:   0.875rem;                             /* 14px */
  --fs-xs:   0.75rem;                              /* 12px */

  /* Letter Spacing */
  --ls-tight: -0.0625rem;   /* -1px */
  --ls-wide:   0.0375rem;   /* 0.6px */

  /* Line Heights */
  --lh-heading: 1.1;
  --lh-body:    1.3;
  --lh-relaxed: 1.62;

  /* Spacing */
  --gap-xs:  0.5rem;    /* 8px */
  --gap-sm:  0.75rem;   /* 12px */
  --gap-md:  1rem;      /* 16px */
  --gap-lg:  1.5rem;    /* 24px */
  --gap-xl:  2rem;      /* 32px */
  --gap-2xl: 2.625rem;  /* 42px */

  /* Section */
  --sec-pad-v: 6.25rem;   /* 100px */
  --sec-pad-h: 2.875rem;  /* 46px */
  --sec-gap:   2.625rem;  /* 42px */

  /* Container */
  --w-max:   90rem;       /* 1440px */
  --w-pad:   2.875rem;    /* 46px */

  /* Transitions */
  --t: 0.25s ease;
  --t-slow: 0.4s ease;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
}

p {
  font-weight: 300;
  line-height: var(--lh-body);
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: var(--w-max);
  padding-inline: var(--w-pad);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.625rem;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
  transition: opacity var(--t), transform var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  border: none;
}

.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.98); }

.btn--accent { background: var(--c-accent); color: var(--c-dark); }
.btn--dark   { background: var(--c-dark);   color: var(--c-text-light); }
.btn--light  {
  background: var(--c-bg);
  color: var(--c-dark);
  border: 1px solid rgba(248, 246, 236, 0.50);
}
.btn--full { width: 100%; }

/* Arrow icon inside button */
.btn__arrow {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

/* Section header (title + desc side by side) */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.section-head__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text);
  max-width: 37.625rem;
}

.section-head__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--c-navy);
  max-width: 28rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-dark); border-radius: 3px; }

/* ========================================
   RESPONSIVE HELPERS
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --sec-pad-v: 5rem;
    --sec-pad-h: 2rem;
    --w-pad: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --sec-pad-v: 4rem;
    --sec-pad-h: 1.25rem;
    --w-pad: 1.25rem;
    --sec-gap: 2rem;
  }
}
/* ========================================
   HEADER & NAVIGATION
   ======================================== */

/* Fixed strip — sits exactly 12px from top, 46px from each side */
.header {
  position: fixed;
  top: 0.75rem;       /* 12px */
  left: 2.875rem;     /* 46px */
  right: 2.875rem;    /* 46px */
  z-index: 1000;
}

/* Nav bar */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;          /* 48px */
  height: 4.1875rem;  /* 67px */
  padding: 0.25rem 1.5rem; /* 4px 24px */
  background: #dbd4adcc;   /* rgba(219,212,173,0.80) */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Logo */
.nav__logo { flex-shrink: 0; line-height: 0; }
.nav__logo-img { height: 2.625rem; width: auto; display: block; }

/* Nav links list */
.nav__list {
  display: flex;
  align-items: center;
  gap: 3rem; /* 48px */
  list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #1a1816;
  line-height: 1.3;
  white-space: nowrap;
  transition: opacity var(--t);
}
.nav__link:hover { opacity: 0.6; }

.nav__link svg {
  flex-shrink: 0;
  transition: transform var(--t);
}
.nav__item--drop:hover .nav__link svg,
.nav__item--drop:focus-within .nav__link svg { transform: rotate(180deg); }

/* Dropdown menu */
.nav__dropdown {
  display: none;
  position: absolute;
  ище: calc(100% + 0.75rem);
  left: 0;
  list-style: none;
  background: #f8f6ec;
  border: 1px solid rgba(26,24,22,0.1);
  padding: 0.375rem 0;
  min-width: 13rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 200;
}
.nav__item--drop:hover .nav__dropdown,
.nav__item--drop:focus-within .nav__dropdown { display: block; }

.nav__dropdown .nav__item { position: static; }
.nav__dropdown .nav__link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  white-space: nowrap;
}

/* Right actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 3rem; /* 48px */
  flex-shrink: 0;
}

.nav__phone {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1816;
  line-height: 1.3;
  transition: opacity var(--t);
}
.nav__phone:hover { opacity: 0.65; }

/* "Contact" CTA button */
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem; /* 10px 16px */
  background: #1a1816;
  color: #f8f6ec;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  transition: opacity var(--t);
}
.nav__cta:hover { opacity: 0.85; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.nav__toggle span {
  display: block;
  width: 1.375rem;
  height: 1.5px;
  background: #1a1816;
  transition: transform var(--t), opacity var(--t);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================
   BLOCK 1 — HERO
   ======================================== */

.hero {
  position: relative;
  background: #090909;
  overflow: hidden;
}

/* Decorative background — absolute OK for non-content */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.27);
  z-index: 0;
}
/* Left-to-right fade — width 851/1440 ≈ 59.1% */
.hero__gradient {
  position: absolute;
  inset: 0 auto 0 0;
  width: 59.1%;
  background: linear-gradient(to right, #090909 0%, transparent 100%);
  z-index: 0;
}

/* Content container — sits above background */
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 60rem;           /* 960px */
  padding-top: 11.3125rem;     /* 181px — title position from design */
  padding-bottom: 6.25rem;     /* 100px — tags breathing room */
}

/* ── 2-column main row ── */
.hero__inner {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

}

/* Left column: title at top, desc+btns at bottom */
.hero__col-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* ── Staircase title — padding-left only, no absolute ── */
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 3.875rem;         /* 62px */
  font-weight: 600;
  letter-spacing: -0.0625rem;  /* -1px */
  line-height: 1.1;
  color: #f8f6ec;
}
.hero__title-l1 { padding-left: 0; }
.hero__title-l2 { padding-left: 5.125rem; }   /* 82px */
.hero__title-l3 { padding-left: 12.8125rem; } /* 205px */

/* ── Desc + buttons ── */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;                /* 52px */
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  color: #f8f6ec;
  max-width: 31.1875rem;
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;                 /* 24px */
}

.hero__btn-estimate {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.625rem;      /* 16px 26px */
  background: #e3c72b;
  color: #1a1816;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0375rem;
  line-height: 1.35;
  white-space: nowrap;
  transition: opacity var(--t);
}
.hero__btn-estimate:hover { opacity: 0.88; }

/* "Call us" — corner L-brackets via pseudo, position: relative is OK */
.hero__btn-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  background: #f8f6ec;
  color: #1a1816;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0375rem;
  line-height: 1.35;
  white-space: nowrap;
  border: 1px solid rgba(248, 246, 236, 0.50);
  transition: opacity var(--t);
}
.hero__btn-call:hover { opacity: 0.88; }
.hero__btn-call::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid #f8f6ec;
  border-left: 2px solid #f8f6ec;
  pointer-events: none;
}
.hero__btn-call::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0.75rem; height: 0.75rem;
  border-bottom: 2px solid #f8f6ec;
  border-right: 2px solid #f8f6ec;
  pointer-events: none;
}

/* ── Right column: form ── */
.hero__col-right {
  flex: 0 0 34%;
  min-width: 0;
  padding-top: 9rem;
}

.hero__form-wrap {
  backdrop-filter: blur(4.375px);
  -webkit-backdrop-filter: blur(4.375px);
}

.hero__form {
  background: rgba(248, 246, 236, 0.698);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero__form .wpcf7 { display: contents; }
.hero__form .wpcf7-form { display: flex; flex-direction: column; gap: 0; margin: 0; }

.hero__form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: #1a1816;
  margin-bottom: 1rem;
}

.hf-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hf-row {
  display: flex;
  gap: 1rem;
}

.hf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.hf-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: #1a1816;
  line-height: 1.3;
}

.hf-input {
  width: 100%;
  height: 2.5rem;
  background: #EEEBD8;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: #1a1816;
  line-height: 1.3;
  border: 1px solid transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background var(--t);
}
.hf-input:focus { background: #e5e2da; }
.hf-input::placeholder { color: rgba(17, 26, 13, 0.48); }

.hf-input--phone {
  width: 100%;
}

.hf-select-wrap { position: relative; }
.hf-select { padding-right: 2rem; cursor: pointer; }
.hf-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hf-textarea {
  width: 100%;
  height: 5rem;
  background: #EEEBD8;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: #1a1816;
  line-height: 1.3;
  border: 1px solid transparent;
  outline: none;
  resize: none;
  transition: background var(--t);
}
.hf-textarea:focus { background: #e5e2da; }
.hf-textarea::placeholder { color: rgba(17, 26, 13, 0.48); }

.hf-check > p { display: contents; }
.hf-check .wpcf7-form-control-wrap,
.hf-check .wpcf7-acceptance,
.hf-check .wpcf7-list-item { display: contents; }
.hf-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.hf-check__input {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(17, 26, 13, 0.50);
  border-radius: 0.125rem;
  background: #fff;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.hf-check__input:checked {
  background: #e3c72b;
  border-color: #e3c72b;
}
.wpcf7-list-item-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: #1a1816;
  line-height: 1.3;
  padding-top: 0.125rem;
}

.hf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.625rem;
  background: #e3c72b;
  color: #1a1816;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0375rem;
  line-height: 1.35;
  border: none;
  cursor: pointer;
  transition: opacity var(--t);
}
.hf-submit:hover { opacity: 0.88; }

/* CF7: collapse auto-inserted <p> wrappers and <br> inside hf-* containers */
.hf-group > p,
.hf-phone-wrap > p,
.hf-select-wrap > p,
.hf-check > p,
.hf-fields > p { display: contents; }
.hf-fields br { display: none; }

/* CF7: wpcf7-form-control-wrap is inline by default — make it block */
.hf-group .wpcf7-form-control-wrap,
.hf-phone-wrap .wpcf7-form-control-wrap,
.hf-select-wrap .wpcf7-form-control-wrap { display: block; }

/* CF7: submit input matches button style */
input.hf-submit { appearance: none; -webkit-appearance: none; }

/* CF7: hide spinner */
.wpcf7-spinner { display: none; }

/* CF7: response output reset */
.wpcf7-response-output { margin: 0.5rem 0 0; padding: 0.5rem; font-size: 0.875rem; }

/* ── Tags strip — bottom of flex column ── */
.hero__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0375rem;
  color: #f8f6ec;
  line-height: 1.333;
  white-space: nowrap;
}

.hero__tag-dot {
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #619111;
  flex-shrink: 0;
}

/* ── Floating phone button (bottom-right) ── */
.chat-btn {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  z-index: 200;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background: #e3c72b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform var(--t), box-shadow var(--t);
}
.chat-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.chat-btn__inner {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #f3f4ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-btn svg { width: 1.5rem; height: 1.5rem; }

/* ========================================
   BLOCK 2 — SERVICES
   ======================================== */

.services {
  background: #f8f6ec;
  padding-block: 6.25rem; /* 100px top/bottom */
}

.services .container {
  display: flex;
  flex-direction: column;
  gap: 2.625rem; /* 42px between head and grid */
}

/* Header row */
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.services__title {
  font-family: var(--font-heading);
  font-size: 2.625rem;       /* 42px */
  font-weight: 600;
  letter-spacing: -0.0625rem; /* -1px */
  line-height: 1.1;
  color: #1a1816;
  max-width: 37.625rem;      /* 602px */
}

.services__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
  max-width: 28rem;          /* 448px */
}

/* 3×3 CSS grid, 8px gap, each cell 300px tall */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 18.75rem;  /* 300px */
  gap: 0.5rem;               /* 8px */
}

/* Single card */
.svc-card {
  position: relative;
  background: rgba(145, 128, 28, 0.10); /* #91801c1a */
  padding: 1.25rem;           /* 20px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: background var(--t);
}
.svc-card:hover { background: rgba(145, 128, 28, 0.16); }

/* TL corner bracket */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid #1a1816;
  border-left: 2px solid #1a1816;
  pointer-events: none;
}
/* BR corner bracket */
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0.75rem; height: 0.75rem;
  border-bottom: 2px solid #1a1816;
  border-right: 2px solid #1a1816;
  pointer-events: none;
}

/* Icon square — 40×40px, bg rgba(145,128,28,0.20) */
.svc-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom text block */
.svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
}

.svc-card__title {
  font-family: var(--font-body); /* Inter */
  font-size: 1.5rem;             /* 24px */
  font-weight: 400;              /* normal */
  color: #1a1816;
  line-height: 1.1;
}

.svc-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #020617;
  line-height: 1.3;
}

/* ========================================
   BLOCK 3 — RESIDENTIAL SERVICES
   ======================================== */

.residential {
  background: #eeebd8;
}

.residential .container {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;       /* 42px */
  padding-block: 6.25rem; /* 100px */
}

/* Header row */
.residential__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.residential__title {
  font-family: var(--font-heading);
  font-size: 2.625rem;        /* 42px */
  font-weight: 600;
  letter-spacing: -0.0625rem; /* -1px */
  line-height: 1.1;
  color: #1a1816;
  max-width: 37.625rem;       /* 602px */
}

.residential__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #020617;
  line-height: 1.3;
  max-width: 28rem;           /* 448px */
}

/* Slider viewport — clips overflowing cards */
.residential__slider {
  overflow: hidden;
}

/* Scrollable track */
.residential__track {
  display: flex;
  gap: 1.25rem; /* 20px */
  transition: transform 0.45s ease;
  will-change: transform;
}

/* Footer row: arrows left, CTA right */
.residential__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Arrow button group */
.residential__nav {
  display: flex;
  gap: 0.5rem;
}

.residential__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #1a1816;
  border: none;
  cursor: pointer;
  transition: background var(--t), opacity var(--t);
  flex-shrink: 0;
}
.residential__arrow:disabled {
  background: rgba(26, 24, 22, 0.25);
  cursor: default;
}
.residential__arrow:not(:disabled):hover { background: #e3c72b; }

/* CSS chevron inside button */
.residential__arrow-icon {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #f8f6ec;
  border-right: 2px solid #f8f6ec;
}
.residential__arrow--prev .residential__arrow-icon { transform: rotate(-135deg) translate(-1px, 1px); }
.residential__arrow--next .residential__arrow-icon { transform: rotate(45deg) translate(-1px, 1px); }
.residential__arrow:not(:disabled):hover .residential__arrow-icon { border-color: #1a1816; }

/* Card — flex item in track */
.res-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.10);
  display: flex;
  flex-direction: column;
  aspect-ratio: 348 / 486;
  max-height: 480px;
}

/* TL corner — white, above inner */
.res-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid #f8f6ec;
  border-left: 2px solid #f8f6ec;
  pointer-events: none;
}

/* TR corner — white, above inner */
.res-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  z-index: 2;
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid #f8f6ec;
  border-right: 2px solid #f8f6ec;
  pointer-events: none;
}

/* Background photo */
.res-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay + card content — also hosts BL/BR corner brackets */
.res-card__inner {
  max-height: 480px;
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  padding: 1.5rem;             /* 24px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* BL corner — white by default */
.res-card__inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0.75rem; height: 0.75rem;
  border-bottom: 2px solid #f8f6ec;
  border-left: 2px solid #f8f6ec;
  transition: border-color var(--t);
  pointer-events: none;
}

/* BR corner — white by default */
.res-card__inner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0.75rem; height: 0.75rem;
  border-bottom: 2px solid #f8f6ec;
  border-right: 2px solid #f8f6ec;
  transition: border-color var(--t);
  pointer-events: none;
}

/* BL/BR turn gold on hover */
.res-card:hover .res-card__inner::before,
.res-card:hover .res-card__inner::after {
  border-color: #91801c;
}

/* Card title */
.res-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;             /* 32px */
  font-weight: 600;
  color: #f8f6ec;
  line-height: 1.1;
}

/* Bottom content block */
.res-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* List of services */
.res-card__list {
  display: flex;
  flex-direction: column;
}

.res-card__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;               /* 6px */
  padding: 0.5rem 0;           /* 8px top/bottom */
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #f8f6ec;
  line-height: 1.3;
}
.res-card__item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.20); }

/* Gold chevron bullet (CSS-only, replaces SVG) */
.res-card__bullet {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  position: relative;
}
.res-card__bullet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid #e3c72b;
  border-top: 1px solid #e3c72b;
  transform: translate(-65%, -50%) rotate(45deg);
}

/* Learn More button */
.res-card__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0375rem;  /* 0.6px */
  color: #1a1816;
  background: #f8f6ec;
  padding: 0.625rem 1.25rem;  /* 10px 20px */
  transition: opacity var(--t);
}
.res-card__btn:hover { opacity: 0.85; }

/* CTA sits in .residential__footer on the right */
.residential__cta { flex-shrink: 0; }
.residential__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.625rem;
  background: #e3c72b;
  color: #1a1816;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0375rem;
  line-height: 1.35;
  white-space: nowrap;
  transition: opacity var(--t);
}
.residential__cta-btn:hover { opacity: 0.88; }

/* ========================================
   BLOCK 4 — COMMERCIAL SERVICES
   ======================================== */
.commercial {
  background: var(--c-bg);
}

.commercial .container {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;       /* 42px */
  padding-block: 6.25rem; /* 100px */
}

.commercial__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

/* 2-col card: image ~57% | content ~43% */
.comm-card {
  display: grid;
  grid-template-columns: 57fr 43fr;
background: #2A250C;

  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 23.75rem; /* 380px */
  overflow: hidden;
}

.comm-card__img-wrap {
  overflow: hidden;
  margin: 1.875rem 0 1.875rem 1.875rem; /* 30px L/T/B, 0 R */
}

.comm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comm-card__content {
  padding: 1.9375rem 1.875rem; /* 31px 30px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comm-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;    /* 32px */
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}

.comm-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248, 246, 236, 0.80);
  line-height: 1.3;
  max-width: 22.4375rem; /* 359px */
  margin-top: 1.3125rem; /* 21px gap between title and desc */
}

.comm-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  color: var(--c-navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0375rem;
  line-height: 1.35;
  padding: 0.625rem 1.25rem; /* 10px 20px */
  align-self: flex-start;
  transition: opacity var(--t);
}
.comm-card__btn:hover { opacity: 0.88; }

/* ========================================
   BLOCK 5 — WHY CHOOSE
   ======================================== */
.why-choose { background: var(--c-bg-alt); }
.why-choose .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.why-choose__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
  text-align: center;
  max-width: 36.0625rem;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 928fr 400fr;
  gap: 1.25rem;
  align-items: start;
  width: 100%;
}

.why-choose__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--c-text-light);
}

/* TL corner */
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid var(--c-dark);
  border-left: 2px solid var(--c-dark);
  pointer-events: none;
}

/* TR corner */
.why-item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid var(--c-dark);
  border-right: 2px solid var(--c-dark);
  pointer-events: none;
}

.why-item__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* BL corner */
.why-item__inner::before {
  content: '';
  position: absolute;
  bottom: -2.5rem; left: -2.5rem;
  width: 0.75rem; height: 0.75rem;
  border-bottom: 2px solid var(--c-dark);
  border-left: 2px solid var(--c-dark);
  pointer-events: none;
}

/* BR corner */
.why-item__inner::after {
  content: '';
  position: absolute;
  bottom: -2.5rem; right: -2.5rem;
  width: 0.75rem; height: 0.75rem;
  border-bottom: 2px solid var(--c-dark);
  border-right: 2px solid var(--c-dark);
  pointer-events: none;
}

.why-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--c-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--c-dark);
  line-height: var(--lh-heading);
}

.why-item__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-navy);
  line-height: var(--lh-body);
}

/* Right photo */
.why-choose__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
	max-height: 400px;
  overflow: hidden;
  margin-left: auto;
}

.why-choose__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================================
   BLOCK 6 — CUSTOMER REVIEWS
   ======================================== */
.reviews { background: var(--c-bg); }
.reviews .container {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

/* Swiper container */
.reviews__swiper { overflow: hidden; width: 100%; }

/* Card */
.review-card {
  background: var(--c-white);
  border: 1px solid rgba(42, 37, 12, 0.10);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  aspect-ratio: 410 / 368;
  height: auto;
}

/* Stars — CSS-only yellow stars */
.review-card__stars {
  display: flex;
  gap: 0.1875rem;
}
.review-card__star {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: var(--c-accent);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.review-card__text {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(2, 6, 23, 0.82);
  line-height: var(--lh-body);
  flex: 1;
}

.review-card__author { display: flex; flex-direction: column; gap: 0.25rem; }

.review-card__name {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  color: #1b1917;
  line-height: var(--lh-body);
}

.review-card__location {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(27, 25, 23, 0.84);
  line-height: var(--lh-body);
}

/* Footer CTA */
.reviews__footer {
  display: flex;
  justify-content: center;
}
.reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.625rem;
  background: var(--c-accent);
  color: var(--c-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: opacity var(--t), transform var(--t);
}
.reviews__cta-btn:hover { opacity: 0.88; }
.reviews__cta-btn:active { transform: scale(0.98); }

/* Arrow inside button */

/* ========================================
   BLOCK 7 — HOW WE WORK
   ======================================== */
.how-we-work { background: #2A250C;
 }
.how-we-work .container { padding-block: var(--sec-pad-v); }

.how-we-work__inner {
  display: flex;
  gap: 4.25rem;
  align-items: center;
}

/* Left image */
.how-we-work__img-wrap {
  flex: 0 0 49.26%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 664 / 536;
}

.how-we-work__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.how-we-work__img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
}

.how-we-work__img-caption p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-text-light);
  line-height: var(--lh-heading);
}


/* Right content */
.how-we-work__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}

.how-we-work__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
  max-width: 34rem;
}

.how-we-work__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.how-step__num {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  color: var(--c-accent);
  line-height: var(--lh-heading);
  flex-shrink: 0;
  min-width: 2rem;
}

.how-step__body { display: flex; flex-direction: column; gap: 0.375rem; }

.how-step__title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-text-light);
  line-height: var(--lh-heading);
}

.how-step__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  line-height: var(--lh-body);
}

/* ========================================
   BLOCK 8 — RECENT PROJECTS
   ======================================== */
.projects { background: var(--c-bg); overflow: hidden; }
.projects .container {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.projects__cards {
  display: flex;
  gap: 1.25rem;
}

.project-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 664 / 660;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.project-card:hover .project-card__img { transform: scale(1.04); }

.project-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 45, 45, 0) 48%,
    rgba(45, 45, 45, 0.85) 65%,
    rgba(17, 17, 17, 0.96) 91%
  );
}

.project-card__info {
  position: absolute;
  bottom: 3.375rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  width: 100%;
  padding-inline: 1.5rem;
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: #fff;
  line-height: var(--lh-heading);
}

.project-card__location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-light);
}


.project-card__btn {
  padding: 0.625rem 1.25rem;
  background: var(--c-bg);
  color: var(--c-navy);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-heading);
  min-width: 12.5rem;
  text-align: center;
  transition: background var(--t);
}
.project-card__btn:hover { background: var(--c-accent); }

.projects__cta { display: flex; justify-content: center; }

/* ========================================
   BLOCK 9 — SERVICE AREA
   ======================================== */
.service-area { background: var(--c-bg); }

.service-area .container {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.service-area__head {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.service-area__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
  flex: 1;
}

.service-area__desc {
  flex: 0 0 33.25%;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-navy);
  line-height: var(--lh-body);
}

/* Map + card — CSS grid stacking (no position:absolute on content) */
.service-area__map-wrap { display: grid; }

.service-area__map-img {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  aspect-ratio: 1348 / 400;
  border: none;
  display: block;
}

.service-area__card {
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  align-self: start;
  margin-top: 0.9%;
  margin-right: 0.9%;
  width: 32.3%;
  background: rgba(255, 255, 255, 0.739);
  padding: 1.5rem;
  position: relative;
	backdrop-filter: blur(40px)

}

/* L-bracket corner marks (decorative) */
.svc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.svc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.svc-corner--tr { top: 0; right: 0; border-top: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }
.svc-corner--bl { bottom: 0; left: 0; border-bottom: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.svc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }

/* 2-column cities grid */
.service-area__cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-navy);
  line-height: var(--lh-body);
}

.city-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--c-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}

/* ========================================
   BLOCK 10 — CTA
   ======================================== */
.cta {
  position: relative;
  height: 45.8125rem;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta__gradient-left {
  position: absolute;
  top: 0; left: 0;
  width: 45rem;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(23, 22, 22, 0.50) 0%,
    rgba(23, 22, 22, 0) 100%
  );
}

.cta__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28.6875rem;
  background: linear-gradient(
    to top,
    rgba(26, 24, 22, 0.80) 0%,
    rgba(26, 24, 22, 0) 100%
  );
}

.cta__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6.25rem 2.875rem 4rem;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
  max-width: 44rem;
}

.cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-left: auto;
}

.cta__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-light);
  line-height: var(--lh-body);
  max-width: 28.125rem;
}

.cta__btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta__btn-call { position: relative; }

.cta__corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.cta__corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-bg); border-left: 2px solid var(--c-bg); }
.cta__corner--tr { top: 0; right: 0; border-top: 2px solid var(--c-bg); border-right: 2px solid var(--c-bg); }
.cta__corner--bl { bottom: 0; left: 0; border-bottom: 2px solid var(--c-bg); border-left: 2px solid var(--c-bg); }
.cta__corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-bg); border-right: 2px solid var(--c-bg); }

/* ========================================
   BLOCK 11 — FOOTER
   ======================================== */
.footer {
  background: var(--c-dark);
  padding: 5.625rem 2.875rem 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(248, 246, 236, 0.20);
  border-bottom: 1px solid rgba(248, 246, 236, 0.20);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex: 0 1 25rem;
  min-width: 0;
  padding-top: 0.5rem;
}

.footer__logo-img {
  height: 3rem;
  width: auto;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #f6f6f6;
  line-height: var(--lh-body);
  max-width: 21rem;
}

.footer__license {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-light);
  line-height: var(--lh-body);
  margin-top: auto;
}

.footer__divider {
  width: 1px;
  background: rgba(248, 246, 236, 0.20);
  flex-shrink: 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1.25rem;
  min-width: 10rem;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--c-text-light);
  line-height: var(--lh-heading);
  margin-bottom: 1.625rem;
	text-transform: uppercase;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-white);
  line-height: var(--lh-body);
  transition: opacity var(--t);
}
.footer__link:hover { opacity: 0.65; }

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-white);
  line-height: var(--lh-body);
  transition: opacity var(--t);
}
.footer__contact-item:hover { opacity: 0.75; }
.footer__instagram { display: inline-flex; align-items: center; gap: 0.4rem; }

.footer__address-text {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  color: #f6f6f6;
  line-height: var(--lh-relaxed);
}

.footer__hours-text {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  color: #f6f6f6;
  line-height: var(--lh-relaxed);
  white-space: pre-line;
}

/* Footer bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.70;
	margin-top:  2rem;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #f0efeb;
  line-height: var(--lh-body);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: #f0efeb;
  transition: opacity var(--t);
}
.footer__legal a:hover { opacity: 0.65; }

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  color: #f0efeb;
  transition: opacity var(--t);
}
.footer__social-link:hover { opacity: 0.65; }

/* ========================================
   RESPONSIVE — TABLETS (≤ 1200px)
   ======================================== */
@media (max-width: 1200px) {
  /* Nav — tighten gaps */
  .nav { gap: 2rem; }
  .nav__list { gap: 2rem; }
  .nav__actions { gap: 2rem; }

  /* Hero: title staircase scales with vw */
  .hero__title { font-size: clamp(2.5rem, 4.3vw, 3.875rem); }
  .hero__title-l2 { padding-left: 5.69vw; }
  .hero__title-l3 { padding-left: 14.24vw; }

  /* Form: shift right edge to match viewport */
  .hero__form-wrap { right: 2rem; }
  .hero__left { left: 2rem; }
  .hero__title { left: 2rem; }
  .hero__tags { left: 2rem; }
}

/* ========================================
   RESPONSIVE — TABLET (≤ 1024px)
   — switch hero to normal flow
   ======================================== */
@media (max-width: 1024px) {
  /* Header flush to edges */
  .header { left: 1rem; right: 1rem; }

  /* Nav tighter */
  .nav { gap: 1.5rem; padding: 0.25rem 1rem; }
  .nav__list { gap: 1.5rem; }
  .nav__actions { gap: 1.5rem; }

  /* Hero: stack columns vertically on tablet */
  .hero .container {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero__inner { flex-direction: column; gap: 2.5rem; }

  .hero__col-left {
    width: 100%;
    gap: 2rem;
  }

  .hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
  }
  .hero__title-l2 { padding-left: 2rem; }
  .hero__title-l3 { padding-left: 4.5rem; }

  .hero__col-right {
    width: 100%;
    max-width: 34rem;
    padding-top: 0;
  }

  /* Services */
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  /* Residential */
  .res-card { flex: 0 0 calc(50% - 0.63rem); }

  /* Commercial */
  .comm-card {
    grid-template-columns: 1fr;
    grid-template-rows: 12rem auto;
  }
  .comm-card__img-wrap { margin: 1rem 1rem 0; height: 12rem; }
  .comm-card__content { padding: 1rem; }
  .comm-card__desc { margin-bottom: 1rem; }

  /* Why Choose */
  .why-choose__grid { grid-template-columns: 1fr; }
  .why-choose__photo-wrap { max-width: 25rem; margin-inline: auto; }

  /* How We Work */
  .how-we-work__inner { flex-direction: column-reverse; }
  .how-we-work__img-wrap { flex: none; width: 100%; aspect-ratio: 4 / 3; }

  /* Projects */
  .projects__cards { flex-direction: column; height: auto; }
  .project-card { max-height: 25rem; }

  /* CTA */
  .cta { height: auto; }
  .cta__content { padding: 4rem 2rem; gap: 3rem; }
  .cta__right { align-items: flex-start; }
  .cta__desc { max-width: 100%; }

  /* Footer */
  .footer__main { flex-wrap: wrap; gap: 3rem; }
  .footer__brand { width: 100%; }
  .footer__divider { display: none; }
  .footer { padding-left: var(--w-pad); padding-right: var(--w-pad); padding-top:1rem;
	}
	.footer__brand {
		flex: 0 0 100%;
	}

  /* Section head — two-column title+desc won't fit at tablet */
  .section-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-head__desc { max-width: 100%; }

  /* Service Area head — stack earlier than 768 */
  .service-area__head { flex-direction: column; gap: 1rem; }
  .service-area__desc { flex: none; width: 100%; }

  /* Project cards — remove aspect-ratio so explicit height wins cleanly */
  .project-card { aspect-ratio: unset; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤ 768px)
   ======================================== */
@media (max-width: 768px) {
  /* Nav: hide links, show hamburger */
	.nav__item{
		width: 100%;
	}
  .nav__list, .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .nav__list.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 4.75rem;
    left: 0; right: 0;
    background: #f8f6ec;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .nav__dropdown {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(26,24,22,0.15);
    padding: 0.25rem 0 0 0.75rem;
    margin-top: 0.5rem;
    background: transparent;
    min-width: 0;
  }
  .nav__dropdown .nav__link { padding: 0.375rem 0; font-size: 0.9375rem; }

  .nav__actions.is-open {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: fixed;
    top: calc(4.75rem + var(--mobile-nav-h, 12rem));
    left: 0; right: 0;
    background: #f8f6ec;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 998;
  }

  /* Hero */
  .hero .container { padding-top: 5.5rem; MIN-height: auto; }
	.hero__tags{
		flex-wrap: wrap;
	}
  .hero__title { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero__title-l2 { padding-left: 0; }
  .hero__title-l3 { padding-left: 0; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btn-estimate, .hero__btn-call { justify-content: center; width: 100%; }
  .hf-row { flex-direction: column; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Residential */
  .residential__grid { grid-template-columns: 1fr; }

  /* Why Choose */
  .why-item { padding: 1.25rem; }
  .why-item__inner::before { bottom: -1.25rem; left: -1.25rem; }
  .why-item__inner::after  { bottom: -1.25rem; right: -1.25rem; }

  /* Reviews */
  .review-card { aspect-ratio: 4 / 3; }

  /* Footer */
  .footer__main { flex-direction: column; gap: 2rem; }
  .footer__col { min-width: 0; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  /* Services head */
  .services__head { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Residential head + fix dead .residential__grid selector */
  .residential__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .res-card { flex: 0 0 100%; }

  /* How We Work */
  .how-we-work__content { gap: 1.5rem; }

  /* CTA buttons — full width on mobile */
  .cta__btns { flex-direction: column; align-items: stretch; }
  .cta__btns .btn { justify-content: center; width: 100%; }

  /* Service Area */
  .service-area__map-wrap { display: flex; flex-direction: column; gap: 1rem; }
  .service-area__map-img { aspect-ratio: 16 / 9; }
  .service-area__card {
    grid-row: unset; grid-column: unset;
    justify-self: unset; align-self: unset;
    margin: 0;
    width: 100%;
  }
  .service-area__cities { grid-template-columns: 1fr 1fr; }
  .residential__footer { gap: 1.5rem; flex-direction: column; }
}

@media (max-width: 480px) {
  .projects__cards { height: auto; }
  .project-card { max-height: 18rem; }

  /* Service area cities — single column on small phones */
  .service-area__cities { grid-template-columns: 1fr; }

  /* CTA buttons — full stack */
  .cta__btns { flex-direction: column; align-items: stretch; width: 100%; }
  .cta__btn-call { justify-content: center; }

  /* Why Choose title — unrestrict on small screens */
  .why-choose__title { max-width: 100%; }

  /* Section head — no excess gap */
  .section-head { gap: 0.75rem; }
}
/* ==============================================
   residential-construction.css
   Styles for residential-construction.html
   ============================================== */

/* ── HERO ──────────────────────────────────────── */

.rc-hero {
  position: relative;
  min-height: 52.25rem;
}

.rc-hero__bg {
  position: absolute;
  inset: 0;
}

.rc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rc-hero__content {
  position: relative;
  z-index: 1;
  min-height: 52.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 7rem 3rem;
}

.rc-hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.25rem;
}

.rc-hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
  text-align: center;
  max-width: 57.4375rem;
}

.rc-hero__desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--c-text-light);
  line-height: 1.3;
  text-align: center;
  max-width: 32.1875rem;
}

.rc-hero__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.rc-hero__btn-call { position: relative; }

.rc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.rc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-bg); border-left: 2px solid var(--c-bg); }
.rc-corner--tr { top: 0; right: 0; border-top: 2px solid var(--c-bg); border-right: 2px solid var(--c-bg); }
.rc-corner--bl { bottom: 0; left: 0; border-bottom: 2px solid var(--c-bg); border-left: 2px solid var(--c-bg); }
.rc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-bg); border-right: 2px solid var(--c-bg); }

.rc-hero__license {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-light);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-body);
}

/* ── OUR RESIDENTIAL SERVICES ──────────────────── */

.rc-services { background: var(--c-bg); }

.rc-services .container {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.rc-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.rc-svc-card {
  position: relative;
  background: rgba(145, 128, 28, 0.10);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.rc-svc-card__img {
  width: 100%;
  aspect-ratio: 444 / 160;
  overflow: hidden;
}

.rc-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rc-svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rc-svc-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-dark);
  line-height: var(--lh-heading);
}

.rc-svc-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
  flex: 1;
}

.rc-svc-card__btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: var(--c-accent);
  color: #2a250c;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
  transition: opacity var(--t);
}

.rc-svc-card__btn:hover { opacity: 0.85; }

.rc-svc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.rc-svc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.rc-svc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }

/* ── WHY HOMEOWNERS CHOOSE AIKO ────────────────── */

.rc-why { background: #2a250c; }

.rc-why .container {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.rc-why__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
  text-align: center;
}

.rc-why__row {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 31.25rem;
}

.rc-why__img-wrap {
  flex: 1;
  overflow: hidden;
}

.rc-why__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rc-why__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.rc-why-card {
  position: relative;
  background: rgba(254, 242, 175, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.25rem;
}

.rc-why-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #91801c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-why-card__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
}

.rc-why-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rc-why-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-text-light);
  line-height: var(--lh-heading);
}

.rc-why-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #deddd5;
  line-height: 1.3;
}

.rc-why-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.rc-why-corner--tl { top: 0; left: 0; border-top: 2px solid #ffffff; border-left: 2px solid #ffffff; }
.rc-why-corner--br { bottom: 0; right: 0; border-bottom: 2px solid #ffffff; border-right: 2px solid #ffffff; }

/* ── FAQ ───────────────────────────────────────── */

.rc-faq { background: var(--c-bg); }

.rc-faq .container {
  padding-block: var(--sec-pad-v);
}

.rc-faq__inner {
  display: flex;
  gap: var(--sec-gap);
  align-items: flex-start;
}

.rc-faq__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 1rem;
  position: sticky;
  top: 5.5rem;
}

.rc-faq__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

.rc-faq__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-navy);
  line-height: 1.5;
}

.rc-faq__list {
  flex: 1;
  position: relative;
  border: 1px solid #c9c8c1;
}

.rc-faq__corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
  z-index: 1;
}
.rc-faq__corner--tl { top: -1px; left: -1px; border-top: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.rc-faq__corner--tr { top: -1px; right: -1px; border-top: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }
.rc-faq__corner--bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.rc-faq__corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }

.faq-item {
  background: var(--c-bg-alt);
  border-bottom: 1px solid #c9c8c1;
}

.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__q-text {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.3;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #91801c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-light);
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--t);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon::before { content: '−'; }
.faq-item__q[aria-expanded="false"] .faq-item__icon::before { content: '+'; }

.faq-item__a {
  padding: 0 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-navy);
  line-height: 1.5;
}

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

/* ── RC CTA ────────────────────────────────────── */

.rc-cta {
  position: relative;
  min-height: 42.875rem;
}

.rc-cta__bg {
  position: absolute;
  inset: 0;
}

.rc-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rc-cta__grad-left {
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(90deg, #171616 0%, #17161600 100%);
}

.rc-cta__grad-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 67%;
  background: linear-gradient(0deg, #1a1816 0%, #1a181600 100%);
}

.rc-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  padding-block: 5rem;
}

.rc-cta__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding-right: 1rem;
}

.rc-cta__title {
  font-family: var(--font-heading);
  font-size: 2.625rem;
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: 1.1;
  color: var(--c-text-light);
}

.rc-cta__info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rc-cta__phone {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.1;
}

.rc-cta__detail {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.3;
}

/* form card */
.rc-cta__card {
  width: 29.125rem;
  flex-shrink: 0;
  background: var(--c-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rc-cta__card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-dark);
}

.rc-cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rc-cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rc-cta__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rc-cta__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.3;
}

.rc-cta__input,
.rc-cta__textarea,
.rc-cta__select {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--c-dark);
  background: #efede7;
  border: none;
  outline: none;
  padding: 0.75rem;
  line-height: 1.3;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.rc-cta__input::placeholder,
.rc-cta__textarea::placeholder {
  color: rgba(17, 26, 13, 0.48);
}

.rc-cta__select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231a1816' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.rc-cta__textarea {
  resize: none;
  height: 5rem;
}

.rc-cta__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.rc-cta__checkbox {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(17, 26, 13, 0.5);
  appearance: none;
  -webkit-appearance: none;
  background: var(--c-white);
  cursor: pointer;
  margin-top: 0.0625rem;
}

.rc-cta__checkbox:checked {
  background: var(--c-dark);
}

.rc-cta__checkbox-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.3;
}

.rc-cta__submit {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0.0375rem;
  color: var(--c-dark);
  background: var(--c-accent);
  border: none;
  padding: 1rem 1.625rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: opacity var(--t);
}

.rc-cta__submit:hover { opacity: 0.85; }

/* ── RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
  .rc-svc__grid { grid-template-columns: repeat(2, 1fr); }
  .rc-why__row { flex-direction: column; min-height: unset; }
  .rc-why__img-wrap { aspect-ratio: 16 / 7; min-height: unset; }
  .rc-faq__inner { flex-direction: column; }
  .rc-faq__head { position: static; padding-right: 0; }
  .rc-cta__content { flex-direction: column; }
  .rc-cta__left { padding-right: 0; }
  .rc-cta__card { width: 100%; }
}

@media (max-width: 768px) {
  .rc-hero__content { padding-block: 6rem 2.5rem; }
  .rc-hero__center { align-items: flex-start; }
  .rc-hero__title { text-align: left; }
  .rc-hero__desc { max-width: 100%; text-align: left; }
  .rc-hero__btns { flex-direction: column; align-items: stretch; width: 100%; }
  .rc-hero__btns .btn { justify-content: center; width: 100%; }
}

@media (max-width: 640px) {
  .rc-svc__grid { grid-template-columns: 1fr; }
  .rc-svc-card__img { aspect-ratio: 16 / 7; }
  .rc-why__grid { grid-template-columns: 1fr; }
  .rc-cta__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .rc-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
}
/* ==============================================
   home-remodeling.css
   Styles for home-remodeling.html
   ============================================== */

/* ── OVERVIEW ──────────────────────────────────── */

.hr-overview { background: var(--c-bg-alt); }

.hr-overview__inner {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.hr-overview__img-wrap {
  flex: 1;
  overflow: hidden;
}

.hr-overview__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hr-overview__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.hr-overview__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hr-overview__divider {
  height: 1px;
  background: rgba(26, 26, 23, 0.16);
}

.hr-overview__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

.hr-overview__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
}

.hr-overview__btn { align-self: flex-start; }

/* ── SERVICES ──────────────────────────────────── */

.hr-services { background: var(--c-bg); }

.hr-services__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.hr-services__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

.hr-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hr-svc-card {
  position: relative;
  background: rgba(145, 128, 28, 0.10);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.hr-svc-card__img {
  width: 100%;
  aspect-ratio: 444 / 240;
  overflow: hidden;
}

.hr-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hr-svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hr-svc-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-dark);
  line-height: var(--lh-heading);
}

.hr-svc-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
  flex: 1;
}

.hr-svc-card__btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: var(--c-accent);
  color: #2a250c;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
  transition: opacity var(--t);
}

.hr-svc-card__btn:hover { opacity: 0.85; }

.hr-svc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.hr-svc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.hr-svc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }

/* ── PROJECT TYPES ─────────────────────────────── */

.hr-project-types { background: var(--c-bg-alt); }

.hr-project-types__inner {
  display: flex;
  gap: 5rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.hr-project-types__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.hr-project-types__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hr-project-types__divider {
  height: 1px;
  background: rgba(26, 26, 23, 0.16);
}

.hr-project-types__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

.hr-pt__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hr-pt__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--c-bg);
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: #2a250c;
  line-height: 1.1;
}

.hr-pt__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.hr-project-types__img-wrap {
  flex: 1;
  overflow: hidden;
}

.hr-project-types__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
  .hr-overview__inner { gap: 2.5rem; }
  .hr-svc__grid { grid-template-columns: repeat(2, 1fr); }
  .hr-project-types__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .hr-overview__inner { flex-direction: column; }
  .hr-overview__img-wrap { aspect-ratio: 16 / 9; }
  .hr-overview__img-wrap img { height: 100%; }
  .hr-overview__btn { align-self: stretch; justify-content: center; }
  .hr-project-types__inner { flex-direction: column-reverse; }
  .hr-project-types__img-wrap { aspect-ratio: 16 / 9; }
  .hr-project-types__img-wrap img { height: 100%; }
}

@media (max-width: 640px) {
  .hr-svc__grid { grid-template-columns: 1fr; }
}

/* ==============================================
   commercial-construction.css
   Styles for commercial-construction.html
   ============================================== */

/* ── HERO ──────────────────────────────────────── */

.cc-hero {
  position: relative;
  min-height: 52.25rem;
}

.cc-hero__bg {
  position: absolute;
  inset: 0;
}

.cc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-hero__content {
  position: relative;
  z-index: 1;
  min-height: 52.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 7rem 3rem;
}

.cc-hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.625rem;
}

.cc-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 53rem;
}

.cc-hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
}

.cc-hero__desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--c-text-light);
  line-height: 1.3;
  max-width: 40.9375rem;
}

.cc-hero__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.cc-hero__btn-call { position: relative; }

.cc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.cc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-bg); border-left: 2px solid var(--c-bg); }
.cc-corner--tr { top: 0; right: 0; border-top: 2px solid var(--c-bg); border-right: 2px solid var(--c-bg); }
.cc-corner--bl { bottom: 0; left: 0; border-bottom: 2px solid var(--c-bg); border-left: 2px solid var(--c-bg); }
.cc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-bg); border-right: 2px solid var(--c-bg); }

.cc-hero__license {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-light);
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-body);
}

/* ── SERVICES ──────────────────────────────────── */

.cc-services { background: var(--c-bg); }

.cc-services__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.cc-services__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
  text-align: center;
}

.cc-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.cc-svc-card {
  position: relative;
  background: rgba(145, 128, 28, 0.10);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.cc-svc-card__img {
  width: 100%;
  aspect-ratio: 444 / 160;
  overflow: hidden;
}

.cc-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cc-svc-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-dark);
  line-height: var(--lh-heading);
}

.cc-svc-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
}

.cc-svc-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.cc-svc-card__list li {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
  padding-left: 0.875rem;
  position: relative;
}

.cc-svc-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #91801c;
}

.cc-svc-card__btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: var(--c-accent);
  color: #2a250c;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
  transition: opacity var(--t);
}

.cc-svc-card__btn:hover { opacity: 0.85; }

.cc-svc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.cc-svc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.cc-svc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }

/* ── RESPONSIVE ────────────────────────────────── */

/* ── PROJECT TYPES ─────────────────────────────── */

.cc-project-types { background: var(--c-bg-alt); }

.cc-project-types__inner {
  display: flex;
  gap: 5rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.cc-project-types__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.cc-project-types__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cc-project-types__divider {
  height: 1px;
  background: rgba(26, 26, 23, 0.16);
}

.cc-project-types__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

.cc-pt__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cc-pt__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--c-bg);
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: #2a250c;
  line-height: 1.1;
}

.cc-pt__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.cc-project-types__img-wrap {
  flex: 1;
  overflow: hidden;
}

.cc-project-types__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .cc-svc__grid { grid-template-columns: repeat(2, 1fr); }
  .cc-project-types__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .cc-hero__content { padding-block: 6rem 2.5rem; }
  .cc-hero__title { font-size: clamp(2rem, 7vw, var(--fs-hero)); }
  .cc-hero__desc { max-width: 100%; }
  .cc-hero__btns { flex-direction: column; align-items: stretch; width: 100%; }
  .cc-hero__btns .btn { justify-content: center; width: 100%; }
}

/* ── WHO WE WORK WITH ──────────────────────────── */

.cc-who { background: #2a250c; }

.cc-who__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.cc-who__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
  text-align: center;
}

.cc-who__block {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.cc-who__img-wrap {
  flex: 1;
  overflow: hidden;
}

.cc-who__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

.cc-who__list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cc-who__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cc-who__name {
  flex-shrink: 0;
  width: 20.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-text-light);
  line-height: 1.1;
}

.cc-who__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-light);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .cc-project-types__inner { flex-direction: column-reverse; }
  .cc-project-types__img-wrap { aspect-ratio: 16 / 9; }
  .cc-project-types__img-wrap img { height: 100%; }
  .cc-who__block { flex-direction: column; }
  .cc-who__img-wrap { aspect-ratio: 16 / 7; }
  .cc-who__name { width: auto; min-width: 10rem; }
}

@media (max-width: 640px) {
  .cc-svc__grid { grid-template-columns: 1fr; }
  .cc-who__item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .cc-hero__title { font-size: clamp(2rem, 8vw, 2.5rem); }
}

/* ── HOW WE WORK (dark variant) ────────────────── */

.cc-how-we-work { background: #2a250c; }

.cc-how-we-work .how-we-work__title,
.cc-how-we-work .how-step__title {
  color: var(--c-text-light);
}

.cc-how-we-work .how-step__desc {
  color: rgba(248, 246, 236, 0.8);
}

.cc-how-we-work .how-we-work__img-caption {
  color: rgba(248, 246, 236, 0.7);
}
/* ==============================================
   tenant-improvement.css
   Styles for tenant-improvement.html
   ============================================== */

/* ── OVERVIEW ──────────────────────────────────── */

.ti-overview { background: #2a250c; }

.ti-overview__inner {
  display: flex;
  gap: 4.25rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.ti-overview__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.625rem;
}

.ti-overview__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ti-overview__divider {
  height: 1px;
  background: rgba(248, 246, 236, 0.18);
}

.ti-overview__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
}

.ti-overview__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(248, 246, 236, 0.8);
  line-height: 1.3;
}

.ti-overview__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ti-overview__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.ti-overview__num {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  color: var(--c-accent);
  line-height: 1.35;
  flex-shrink: 0;
  min-width: 2rem;
}

.ti-overview__text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-text-light);
  line-height: 1.1;
}

.ti-overview__btn { align-self: flex-start; }

.ti-overview__img-wrap {
  flex: 1;
  overflow: hidden;
}

.ti-overview__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

/* ── SERVICES ──────────────────────────────────── */

.ti-services {
  background: var(--c-bg);
  padding-block: var(--sec-pad-v);
  overflow: hidden;
}

.ti-services__inner {
  gap: 2.625rem;
}

.ti-services__swiper { overflow: visible; }

.ti-services__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
  margin-bottom: 2.625rem;
}

.ti-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.ti-svc-card {
  position: relative;
  height: auto;
  background: rgba(145, 128, 28, 0.10);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.ti-svc-card__img {
  width: 100%;
  height: 15rem;
  overflow: hidden;
  flex-shrink: 0;
}

.ti-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ti-svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.ti-svc-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-dark);
  line-height: var(--lh-heading);
}

.ti-svc-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #2a250c;
  line-height: 1.3;
  flex: 1;
}

.ti-svc-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: var(--c-accent);
  color: #2a250c;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  line-height: 1.35;
  text-align: center;
  transition: opacity var(--t);
}

.ti-svc-card__btn:hover { opacity: 0.85; }

.ti-svc-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.ti-svc-corner--tl { top: 0; left: 0; border-top: 2px solid var(--c-dark); border-left: 2px solid var(--c-dark); }
.ti-svc-corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--c-dark); border-right: 2px solid var(--c-dark); }

/* ── CHECKLIST ─────────────────────────────────── */

.ti-checklist { background: var(--c-bg-alt); }

.ti-checklist__inner {
  display: flex;
  gap: 5rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.ti-checklist__img-wrap {
  flex: 1;
  overflow: hidden;
}

.ti-checklist__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ti-checklist__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.ti-checklist__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

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

.ti-check__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  color: #2a250c;
  line-height: 1.2;
}

.ti-check__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

/* ── WHY ───────────────────────────────────────── */

.ti-why { background: #2a250c; }

.ti-why__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sec-gap);
  padding-block: var(--sec-pad-v);
}

.ti-why__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
}

.ti-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.ti-why-card {
  position: relative;
  background: rgba(254, 242, 175, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.25rem;
  min-height: 15.375rem;
}

.ti-why-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #91801c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ti-why-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ti-why-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--c-text-light);
  line-height: var(--lh-heading);
}

.ti-why-card__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #deddd5;
  line-height: 1.3;
}

.ti-why-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.ti-why-corner--tl { top: 0; left: 0; border-top: 2px solid rgba(255, 255, 255, 0.5); border-left: 2px solid rgba(255, 255, 255, 0.5); }
.ti-why-corner--br { bottom: 0; right: 0; border-bottom: 2px solid rgba(255, 255, 255, 0.5); border-right: 2px solid rgba(255, 255, 255, 0.5); }

/* ── RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
  .ti-svc__grid { grid-template-columns: repeat(2, 1fr); }
  .ti-checklist__inner { gap: 2.5rem; }
  .ti-overview__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .ti-overview__inner { flex-direction: column; }
  .ti-overview__img-wrap { aspect-ratio: 16 / 9; }
  .ti-overview__img-wrap img { height: 100%; }
  .ti-overview__btn { align-self: stretch; justify-content: center; }
  .ti-checklist__inner { flex-direction: column; }
  .ti-checklist__img-wrap { aspect-ratio: 16 / 9; }
  .ti-checklist__img-wrap img { height: 100%; }
  .ti-why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ti-svc__grid { grid-template-columns: 1fr; }
  .ti-check__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT US PAGE
   ═══════════════════════════════════════════════════════ */

/* ── COMPANY ──────────────────────────────────── */
.about-company { background: var(--c-bg-alt); }

.about-company__inner {
  display: flex;
  gap: 4.25rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.about-company__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.about-company__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-company__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-dark);
}

.about-company__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.3;
}

.about-company__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-company__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--c-bg);
}

.about-company__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.about-company__item-text {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: #2a250c;
  line-height: 1.1;
}

.about-company__img-wrap {
  flex: 1;
  overflow: hidden;
}

.about-company__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .about-company__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .about-company__inner { flex-direction: column; }
  .about-company__img-wrap { aspect-ratio: 16 / 9; }
  .about-company__img-wrap img { height: 100%; }
}

/* ── FOUNDER ──────────────────────────────────── */
.about-founder { background: #2a250c; }

.about-founder__inner {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  padding-block: var(--sec-pad-v);
}

.about-founder__img-wrap {
  flex: 1;
  overflow: hidden;
}

.about-founder__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-founder__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.25rem;
}

.about-founder__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-founder__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: var(--c-text-light);
}

.about-founder__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(248, 246, 236, 0.8);
  line-height: 1.3;
}

.about-founder__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 0.5rem;
}

.about-founder-stat {
  position: relative;
  background: rgba(254, 242, 175, 0.16);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-founder-stat__label {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: #deddd5;
  line-height: 1.3;
}

.about-founder-stat__value {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

.about-founder-stat__corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.about-founder-stat__corner--tl { top: 0; left: 0; border-top: 2px solid #fff; border-left: 2px solid #fff; }
.about-founder-stat__corner--br { bottom: 0; right: 0; border-bottom: 2px solid #fff; border-right: 2px solid #fff; }

@media (max-width: 1024px) {
  .about-founder__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .about-founder__inner { flex-direction: column; }
  .about-founder__img-wrap { aspect-ratio: 4 / 3; }
  .about-founder__img-wrap img { height: 100%; }
}

/* PROJECTS PAGE */
.proj-list { background: var(--c-bg-alt); }
.proj-list__inner { display: flex; flex-direction: column; gap: 4rem; padding-block: var(--sec-pad-v); }
.proj-list__head { display: flex; flex-direction: column; gap: 2rem; max-width: 52.5625rem; }
.proj-list__title { font-family: var(--font-heading); font-size: clamp(2.5rem, 4.3vw, 3.875rem); font-weight: 600; letter-spacing: var(--ls-tight); line-height: var(--lh-heading); color: var(--c-dark); }
.proj-list__desc { font-family: var(--font-body); font-size: 1.125rem; font-weight: 400; color: #2a250c; line-height: 1.3; }
.proj-list__cards { display: flex; flex-direction: column; gap: 1.5rem; }

.proj-card-full { background: var(--c-bg); display: flex; gap: 1.25rem; padding: 1.5rem; overflow: hidden; }
.proj-card-full__img-wrap { flex: 0 0 48%; position: relative; overflow: hidden; min-height: 20rem; max-height: 39.375rem; }
.proj-img-swiper { height: 100%; width: 100%; }
.proj-img-swiper .swiper-slide { height: 100%; }
.proj-img-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-img-caption { position: absolute; top: 0; left: 0; right: 0; z-index: 5; background: rgba(0,0,0,0.35); backdrop-filter: blur(17.5px); padding: 0.75rem 1rem; }
.proj-img-caption p { font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 400; letter-spacing: 0.0375rem; line-height: 1.35; color: var(--c-text-light); }
.proj-img-nav { position: absolute; bottom: 0.75rem; right: 1rem; z-index: 10; display: flex; gap: 0.5rem; }
.proj-img-nav__btn { width: 2rem; height: 2rem; border: none; cursor: pointer; padding: 0; background: none; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: opacity 0.2s; }
.proj-img-nav__btn:hover { opacity: 0.8; }
.proj-card-full__img-caption { position: absolute; top: 0; left: 0; right: 0; background: rgba(0,0,0,0.35); backdrop-filter: blur(17.5px); padding: 0.75rem 1rem; }
.proj-card-full__img-caption p { font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 400; letter-spacing: 0.0375rem; line-height: 1.35; color: var(--c-text-light); }
.proj-card-full__body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 3.25rem; }
.proj-card-full__info { display: flex; flex-direction: column; gap: 1.5rem; }
.proj-card-full__title { font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: 600; letter-spacing: var(--ls-tight); line-height: var(--lh-heading); color: var(--c-dark); }
.proj-card-full__desc { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; margin-top: 0.75rem; }
.proj-card-full__meta { display: flex; flex-direction: column; gap: 1rem; }
.proj-card-full__meta-item { display: flex; align-items: center; gap: 1.5rem; }
.proj-card-full__meta-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; overflow: hidden; }
.proj-card-full__meta-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-card-full__meta-text { font-family: var(--font-body); font-size: var(--fs-h4); font-weight: 400; color: #2a250c; line-height: 1.1; }
.proj-card-full__btn { display: inline-flex; align-items: center; justify-content: center; background: var(--c-accent); padding: 1rem 1.625rem; font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 400; letter-spacing: 0.0375rem; color: var(--c-dark); line-height: 1.35; width: 12.5rem; text-decoration: none; align-self: flex-start; transition: background 0.2s; text-transform: uppercase; }
.proj-card-full__btn:hover { background: #d4b726; }

@media (max-width: 1024px) {
  .proj-card-full { flex-direction: column; }
  .proj-card-full__img-wrap { flex: none; min-height: unset; }
}
@media (max-width: 640px) {
  .proj-list__cards { gap: 1rem; }
  .proj-card-full { padding: 1rem; }
  .proj-card-full__btn { width: 100%; }
}

/* PROJECT DETAIL PAGE */
.proj-detail { background: var(--c-bg-alt); }
.proj-detail__inner { display: flex; flex-direction: column; gap: 3.25rem; padding-block: var(--sec-pad-v); }
.proj-detail__title { font-family: var(--font-heading); font-size: clamp(2.5rem, 4.3vw, 3.875rem); font-weight: 600; letter-spacing: var(--ls-tight); line-height: var(--lh-heading); color: var(--c-dark); text-align: center; }
.proj-detail__body { display: flex; gap: 1.25rem; align-items: flex-start; }
.proj-detail__col-left { flex: 0 0 40.8%; }
.proj-detail__col-right { flex: 1; }
.proj-detail__card { background: var(--c-bg); padding: 1.25rem; }
.proj-detail__card > *:first-child { margin-top: 0; }
.proj-detail__card h2 { font-family: var(--font-heading); font-size: var(--fs-h3); font-weight: 600; line-height: var(--lh-heading); color: var(--c-dark); margin-top: 3.25rem; }
.proj-detail__card p { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; margin-top: 1.5rem; }
.proj-detail__card dl { display: flex; flex-direction: column; margin-top: 1.5rem; }
.proj-detail__card dl dt { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; margin-top: 0.5rem; }
.proj-detail__card dl dt:first-child { margin-top: 0; }
.proj-detail__card dl dd { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; margin-left: 0; }
.proj-detail__card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.proj-detail__card ul li { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; padding-left: 1.25rem; position: relative; }
.proj-detail__card ul li::before { content: "—"; position: absolute; left: 0; color: var(--c-accent); font-weight: 400; }
.proj-detail__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.proj-detail__gallery img { width: 100%; aspect-ratio: 379 / 284; object-fit: cover; display: block; }

@media (max-width: 1024px) {
  .proj-detail__body { flex-direction: column; }
  .proj-detail__col-left { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .proj-detail__gallery { grid-template-columns: 1fr; }
}

/* CONTACT PAGE */
.contact-cta { background: var(--c-bg); }
.contact-cta__inner { display: flex; gap: 2.0625rem; align-items: stretch; padding-block: var(--sec-pad-v); }
.contact-cta__left { flex: 0 0 42.6%; display: flex; flex-direction: column;justify-content: space-between;
    height: auto; gap: 2rem; }
.contact-cta__heading { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-cta__title { font-family: var(--font-heading); font-size: clamp(2rem, 2.92vw, 2.625rem); font-weight: 600; color: #070401; line-height: var(--lh-heading); }
.contact-cta__desc { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; }
.contact-cta__info { display: flex; flex-direction: column; gap: 1rem; }
.contact-cta__info-item { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; text-decoration: none; }
.contact-cta__info-item--phone { font-size: 1.5rem; font-weight: 400; }
.contact-cta__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-dark);
  text-decoration: none;
  transition: opacity var(--t);
}
.contact-cta__instagram:hover { opacity: 0.65; }
.contact-cta__right { flex: 1; }
.contact-cta__form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-map { background: var(--c-bg); }
.contact-map__inner { padding-block-end: var(--sec-pad-v); }
.contact-map iframe { width: 100%; height: 26.125rem; border: none; display: block; }

@media (max-width: 1024px) {
  .contact-cta__inner { flex-direction: column; }
  .contact-cta__left { flex: none; width: 100%; }
}

/* AREAS WE SERVE PAGE */
.areas-hero { background: var(--c-bg); }
.areas-hero__inner { display: flex; flex-direction: column; gap: 2rem; padding-block: var(--sec-pad-v); max-width: 57.4375rem; margin-inline: auto; text-align: center; }
.areas-hero__title { font-family: var(--font-heading); font-size: clamp(2.5rem, 4.3vw, 3.875rem); font-weight: 600; letter-spacing: var(--ls-tight); line-height: var(--lh-heading); color: var(--c-dark); }
.areas-hero__desc { font-family: var(--font-body); font-size: 1.125rem; font-weight: 400; color: var(--c-dark); line-height: 1.3; }
.areas-hero__btns { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;justify-content: center; }

.areas-cities { background: var(--c-bg); }
.areas-cities__inner { display: flex; gap: 4.25rem; align-items: stretch; padding-block: var(--sec-pad-v); }
.areas-cities__left { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.areas-cities__title { font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: 600; line-height: var(--lh-heading); color: var(--c-dark); }
.areas-cities__grid { background: var(--c-bg-alt); padding: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.city-item { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(17, 26, 13, 0.12); }
.city-item:nth-last-child(-n+3) { border-bottom: none; padding-bottom: 0; }
.city-item__icon { flex-shrink: 0; width: 2rem; height: 2rem; background: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='16' fill='%232A250C'/%3E%3Cpath d='M16.3229 21.3065C17.3304 20.4366 20.3307 17.6199 20.3307 14.9154C20.3307 13.7661 19.8742 12.6639 19.0615 11.8512C18.2489 11.0386 17.1467 10.582 15.9974 10.582C14.8481 10.582 13.7459 11.0386 12.9333 11.8512C12.1206 12.6639 11.6641 13.7661 11.6641 14.9154C11.6641 17.6199 14.6644 20.4366 15.6719 21.3065C15.7657 21.3771 15.88 21.4152 15.9974 21.4152C16.1148 21.4152 16.2291 21.3771 16.3229 21.3065Z' stroke='%23E3C72B' stroke-width='1.08333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 16.543C16.8975 16.543 17.625 15.8154 17.625 14.918C17.625 14.0205 16.8975 13.293 16 13.293C15.1025 13.293 14.375 14.0205 14.375 14.918C14.375 15.8154 15.1025 16.543 16 16.543Z' stroke='%23E3C72B' stroke-width='1.08333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.city-item__name { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 300; color: var(--c-dark); line-height: 1.3; }
.areas-cities__right { flex: 1; background-size: cover; background-position: center; background-repeat: no-repeat; }

@media (max-width: 1024px) {
  .areas-cities__inner { flex-direction: column; }
  .areas-cities__right { flex: none; width: 100%; height: 25rem; }
}
@media (max-width: 640px) {
  .areas-cities__grid { grid-template-columns: repeat(2, 1fr); }
  .city-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(17, 26, 13, 0.12); padding-bottom: 1rem; }
  .city-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}

/* PRIVACY POLICY PAGE */
.privacy-section { background: var(--c-bg); }
.privacy-section__inner { padding-block: var(--sec-pad-v); }
.privacy-content { max-width: 47.375rem;  margin:0 auto;}
.privacy-content h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 4.3vw, 3.875rem); font-weight: 600; line-height: var(--lh-heading); color: #2c2c2c;text-align: center;margin-bottom: 1.5rem; }
.privacy-content h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; line-height: var(--lh-heading); color: var(--c-dark); margin-top: 0.75rem; text-transform: none; margin-bottom: 0.75rem; 
margin-top: 1.5rem; }
.privacy-content p { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 400; color: #2c2c2c; line-height: 1.3; }

/* BLOG PAGE */
.blog-section { background: var(--c-bg); }
.blog-section__inner { padding-block: var(--sec-pad-v); display: flex; flex-direction: column; gap: 1.5rem; }
.blog-header { display: flex; flex-direction: column; gap: 1rem; }
.blog-header h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 4.3vw, 3.875rem); font-weight: 600; color: #2c2c2c; line-height: var(--lh-heading); text-align: center; }
.blog-header h2 { font-family: var(--font-heading); font-size: var(--fs-h3); font-weight: 600; color: var(--c-dark); line-height: var(--lh-heading); }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.blog-card { background: #fafcfa; padding: 1.5rem; display: flex; gap: 0.875rem; }
.blog-card__photo { flex: 0 0 18.75rem; height: 15rem; overflow: hidden; }
.blog-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { flex: 1; display: flex; flex-direction: column; gap: 1.125rem; }
.blog-card__meta { display: flex; flex-direction: column; gap: 0.25rem; }
.blog-card__meta time { font-family: 'DM Sans', sans-serif; font-size: 1.125rem; color: #585757; line-height: 1.3; }
.blog-card__meta span { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #0a2740; line-height: 1.3; }
.blog-card__body h3 { font-family: var(--font-body); font-size: 1.375rem; font-weight: 600; color: #2c2c2c; line-height: 1.3; }
.blog-card__body a { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 400; color: rgba(26, 37, 57, 0.6); text-decoration: none; line-height: 1.3;margin-top: auto; }
.blog-card__body a:hover { color: var(--c-dark); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; }
  .blog-card__photo { flex: none; width: 100%; height: 14rem; }
}

/* BLOG POST (SINGLE) PAGE */
.post-hero { background: var(--c-bg); }
.post-hero__inner { padding-block: var(--sec-pad-v); display: flex; flex-direction: column; gap: 2.625rem; }

.post-hero__header { display: flex; flex-direction: column; gap: 1.25rem; }
.post-hero__cat { font-family: var(--font-body); font-size: 0.875rem; font-weight: 700; color: #5b5b5b; text-transform: uppercase; letter-spacing: 0.05em; }
.post-hero__title { font-family: var(--font-heading); font-size: clamp(2rem, 2.92vw, 2.625rem); font-weight: 600; color: #2c2c2c; line-height: var(--lh-heading); }

.post-hero__share { display: flex; align-items: center; gap: 1.0625rem; }
.post-hero__share-label { font-family: var(--font-body); font-size: 0.875rem; font-weight: 400; color: var(--c-dark); }
.post-hero__share-icon { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: #2c2c2c; color: var(--c-bg); text-decoration: none; transition: opacity 0.2s; }
.post-hero__share-icon:hover { opacity: 0.75; }

.post-hero__feature-img { width: 100%; height: 29.25rem; overflow: hidden; }
.post-hero__feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-body { display: flex; flex-direction: column; gap: 1.5rem; }
.post-body h2 { max-width: 46.75rem; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; color: #2c2c2c; line-height: var(--lh-heading); }
.post-body p { max-width: 46.75rem; font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: #2c2c2c; line-height: 1.6; }
.post-body ul { max-width: 46.75rem; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.375rem; list-style: disc; }
.post-body ul li { font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: #2c2c2c; line-height: 1.6; }
.post-body address { max-width: 46.75rem; font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: #2c2c2c; line-height: 1.6; font-style: normal; }
.post-body address a { color: #2c2c2c; text-underline-offset: 2px; }

.post-body__images { display: flex; gap: 1.25rem; }
.post-body__images img { flex: 1; min-width: 0; height: 21rem; object-fit: cover; display: block; }


h2,h1{
	text-transform: uppercase;
}
.why-choose__inner{
	display: flex;
	gap:20px;
}
@media (max-width: 640px) {
  .why-choose__inner { flex-direction: column; }
}



.swiper-slide{
	height: auto !important;
}
.ti-svc-card__body{
	margin-top: 20px !important;
}
.ti-svc-card__title{
	margin-bottom: 20px !important;
}
.ti-overview__item-desc{
color: #f9f9f9;
margin-top: 10px;
}
/* ── QUICK CALL BUTTON ─────────────────────────────────────────────────────── */
.quick-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #F8F6EC;
  border: 3px solid var(--c-accent);
  outline-offset: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: opacity var(--t), transform var(--t);
}
.quick-call:hover { opacity: 0.85; transform: scale(1.07); }

@media (max-width: 640px) {
  h1 { font-size: 2.25rem !important; } /* 36px */
  h2 { font-size: 2rem !important; }    /* 32px */
}

/* Global: uppercase for all standalone buttons */
.nav__cta,
.hero__btn-estimate,
.hero__btn-call,
.hf-submit,
input.hf-submit,
.residential__cta-btn { text-transform: uppercase; }
.ti-widget.ti-goog .ti-review-item>.ti-inner{
background-color: #FFFFFF!important;

}
/* ── Scroll animations ──────────────────────────────────────────────────────── */
.js-anim .section-head,
.js-anim .service-card,
.js-anim .why-choose__item,
.js-anim .why-choose__stat,
.js-anim .comm-card,
.js-anim .review-card,
.js-anim .how-step,
.js-anim .proj-card-full,
.js-anim .residential__slide,
.js-anim .contact-cta__left,
.js-anim .contact-cta__right,
.js-anim .areas-city,
.js-anim .privacy-content,
.js-anim .post-hero__inner,
.js-anim .proj-detail__col-left,
.js-anim .proj-detail__col-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--anim-delay, 0ms);
}

.js-anim .section-head.is-visible,
.js-anim .service-card.is-visible,
.js-anim .why-choose__item.is-visible,
.js-anim .why-choose__stat.is-visible,
.js-anim .comm-card.is-visible,
.js-anim .review-card.is-visible,
.js-anim .how-step.is-visible,
.js-anim .proj-card-full.is-visible,
.js-anim .residential__slide.is-visible,
.js-anim .contact-cta__left.is-visible,
.js-anim .contact-cta__right.is-visible,
.js-anim .areas-city.is-visible,
.js-anim .privacy-content.is-visible,
.js-anim .post-hero__inner.is-visible,
.js-anim .proj-detail__col-left.is-visible,
.js-anim .proj-detail__col-right.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .section-head,
  .js-anim .service-card,
  .js-anim .why-choose__item,
  .js-anim .why-choose__stat,
  .js-anim .comm-card,
  .js-anim .review-card,
  .js-anim .how-step,
  .js-anim .proj-card-full,
  .js-anim .residential__slide,
  .js-anim .contact-cta__left,
  .js-anim .contact-cta__right,
  .js-anim .areas-city,
  .js-anim .privacy-content,
  .js-anim .post-hero__inner,
  .js-anim .proj-detail__col-left,
  .js-anim .proj-detail__col-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Mobile: extra padding-top to clear fixed header (67px) ──────────────── */
@media (max-width: 640px) {
  .hero .container        { padding-top: 7rem; }
  .proj-list__inner       { padding-top: 6.5rem; }
  .proj-detail__inner     { padding-top: 6.5rem; }
}
