:root {
      --green-dark: #0a5b43;
      --green: #0f6d50;
      --green-soft: #e7f4ee;
      --pink: #f3c7d6;
      --pink-soft: #f7e7ee;
      --cream: #f7f3f1;
      --text: #123c2e;
      --muted: #4f665d;
      --white: #ffffff;
      --shadow: 0 20px 60px rgba(10, 91, 67, 0.12);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(rgba(10, 91, 67, 0.82), rgba(10, 91, 67, 0.82)),
        url("assets/estella-hero.png") center/cover no-repeat;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
      padding: 64px 0;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      backdrop-filter: blur(8px);
      font-size: 14px;
      margin-bottom: 18px;
    }

    h1, h2, h3, .serif {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1;
      margin: 0;
    }

    h1 {
      color: white;
      font-size: clamp(54px, 8vw, 92px);
      max-width: 720px;
      margin-bottom: 18px;
    }

    .hero p {
      color: rgba(255,255,255,0.92);
      font-size: 18px;
      max-width: 620px;
      margin: 0 0 28px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 18px;
      font-weight: 600;
      transition: 0.2s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 15px;
    }

    .btn-primary {
      background: var(--pink);
      color: var(--green-dark);
    }

    .btn-primary:hover { transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: white;
      border: 1px solid rgba(255,255,255,0.6);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.08);
    }

    .hero-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      max-width: 620px;
    }

    .glass-card {
      background: rgba(255,255,255,0.12);
      color: white;
      border-radius: var(--radius-md);
      padding: 18px;
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
    }

    .glass-card small {
      display: block;
      color: rgba(255,255,255,0.78);
      margin-bottom: 6px;
    }

    .glass-card strong {
      font-size: 20px;
    }

    .brand-frame {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }

    .brand-frame img {
      border-radius: var(--radius-lg);
      width: 100%;
      box-shadow: 0 16px 30px rgba(0,0,0,0.12);
    }

    section { padding: 88px 0; }

    .section-head {
      max-width: 760px;
      margin-bottom: 30px;
    }

    .section-head h2 {
      font-size: clamp(40px, 5vw, 62px);
      margin-bottom: 12px;
    }

    .section-head p { color: var(--muted); margin: 0; }

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

    .card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .icon-box {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: var(--green-soft);
      color: var(--green);
      font-size: 24px;
      margin-bottom: 16px;
    }

    .card h3 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .card p { color: var(--muted); margin: 0; }

    .highlight {
      background: var(--green);
      color: white;
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 30px;
      align-items: start;
    }

    .highlight p { color: rgba(255,255,255,0.88); }

    .benefit-list {
      display: grid;
      gap: 12px;
    }

    .benefit {
      background: rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 14px 16px;
    }

    .contact-grid, .calendar-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: start;
    }

    .info-box {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: white;
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 10px 25px rgba(10, 91, 67, 0.07);
      margin-top: 14px;
    }

    .form-card, .calendar-card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 32px;
      box-shadow: var(--shadow);
    }

    form {
      display: grid;
      gap: 14px;
    }

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

    input, textarea {
      width: 100%;
      border: 1px solid #d7e2dd;
      border-radius: 18px;
      padding: 15px 16px;
      font: inherit;
      color: var(--text);
      background: white;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus, textarea:focus {
      outline: 2px solid rgba(15,109,80,0.15);
      border-color: var(--green);
    }

    .submit-btn {
      background: var(--green);
      color: white;
    }

    .submit-btn:hover { background: var(--green-dark); }

    .form-note {
      margin-top: 8px;
      border-radius: 16px;
      padding: 14px 16px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 14px;
    }

    .pink-section {
      background: var(--pink-soft);
    }

    .calendar-help {
      border-radius: 18px;
      padding: 18px;
      background: #f7f3f1;
      margin-top: 16px;
    }

    .calendar-help.alt {
      background: #eef7f2;
    }

    iframe {
      width: 100%;
      height: 560px;
      border: 0;
      border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }

    footer {
      background: var(--green-dark);
      color: white;
      padding: 34px 0;
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .muted-light { color: rgba(255,255,255,0.76); }
    .footer-link { color: white; text-decoration: underline; }

    @media (max-width: 1024px) {
      .hero-grid,
      .highlight-grid,
      .contact-grid,
      .calendar-grid,
      .grid-4 {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero { min-height: auto; }
      .hero-grid,
      .highlight-grid,
      .contact-grid,
      .calendar-grid,
      .grid-4,
      .form-row,
      .hero-cards {
        grid-template-columns: 1fr;
      }

      section { padding: 64px 0; }
      .form-card, .calendar-card, .card { padding: 24px; }
      .container { width: min(var(--max), calc(100% - 24px)); }
    }


/* Two-side website navigation */
.site-switcher {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

.switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.switch-link:hover,
.switch-link.active {
  background: var(--green-dark);
  color: var(--white);
}

.commercial-hero {
  background:
    linear-gradient(rgba(7, 66, 50, 0.88), rgba(7, 66, 50, 0.88)),
    url("assets/estella-hero.png") center / cover no-repeat;
}

.commercial-services-grid .card {
  min-height: 280px;
}

select {
  width: 100%;
  border: 1px solid rgba(18, 60, 46, 0.18);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.commercial-cta {
  padding: 0 0 90px;
}

.commercial-cta-inner {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.commercial-cta-inner h2 {
  margin: 0 0 8px;
  color: var(--white);
}

.commercial-cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 760px) {
  .site-switcher {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 16px auto 8px;
    width: calc(100% - 28px);
    flex-direction: column;
    border-radius: 18px;
  }

  .switch-link {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .commercial-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   Dedicated Commercial / Construction Website
   ========================================================= */

.commercial-page {
  background: #f4f5f3;
  color: #17251f;
}

.commercial-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 20, 17, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.commercial-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.commercial-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  margin-right: auto;
}

.commercial-logo-mark {
  width: 48px;
  height: 48px;
  border: 2px solid #d93557;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
}

.commercial-logo strong,
.commercial-logo small {
  display: block;
}

.commercial-logo strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  line-height: 1;
}

.commercial-logo small {
  margin-top: 5px;
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.commercial-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.commercial-nav-links a,
.residential-return {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 600;
}

.commercial-nav-links a:hover,
.residential-return:hover {
  color: white;
}

.commercial-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.commercial-call {
  padding: 12px 18px;
  background: #d93557;
  color: #111a16;
  font-weight: 800;
  border-radius: 4px;
}

.commercial-hero-v2 {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6,15,12,0.97) 0%, rgba(6,15,12,0.88) 48%, rgba(6,15,12,0.55) 100%),
    url("assets/commercial-placeholder-hero.svg") center / cover no-repeat;
  color: white;
}

.commercial-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, #0a1411 100%);
}

.commercial-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.commercial-kicker {
  display: inline-block;
  color: #d93557;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.commercial-kicker.dark {
  color: #b62545;
}

.commercial-hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -2px;
}

.commercial-hero-content > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 19px;
}

.commercial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.commercial-primary-btn,
.commercial-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  font-weight: 800;
  border-radius: 4px;
}

.commercial-primary-btn {
  background: #d93557;
  color: #111a16;
}

.commercial-secondary-btn {
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  background: rgba(255,255,255,0.05);
}

.commercial-proof-row {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.commercial-proof-row div {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.commercial-proof-row div:last-child {
  border-right: none;
}

.commercial-proof-row strong,
.commercial-proof-row span {
  display: block;
}

.commercial-proof-row strong {
  font-size: 18px;
}

.commercial-proof-row span {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-top: 5px;
}

.commercial-section {
  padding: 100px 0;
}

.commercial-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.commercial-section-heading > span {
  color: #d93557;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
}

.commercial-section-heading h2,
.commercial-credentials h2,
.commercial-contact-copy h2 {
  margin: 10px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
}

.commercial-section-heading p {
  color: #637069;
  font-size: 17px;
}

.commercial-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8ddd9;
  border-left: 1px solid #d8ddd9;
}

.commercial-service-card {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid #d8ddd9;
  border-bottom: 1px solid #d8ddd9;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.commercial-service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(20,35,28,0.12);
}

.commercial-service-number {
  color: #d93557;
  font-weight: 800;
  margin-bottom: 70px;
}

.commercial-service-card h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.05;
}

.commercial-service-card p {
  margin: 0;
  color: #66746d;
}

.commercial-industries {
  padding: 100px 0;
  background: #101c18;
  color: white;
}

.commercial-section-heading.light h2 {
  color: white;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.industry-item {
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.industry-item span {
  font-size: 30px;
}

.industry-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.commercial-gallery-section {
  background: #ebece8;
}

.commercial-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  border: 0;
  padding: 0;
  background: #111b17;
  color: white;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card > span {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 20px;
}

.project-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
}

.project-card small {
  color: #d93557;
  white-space: nowrap;
}

.commercial-credentials {
  padding: 90px 0;
  background: #d93557;
  color: #111a16;
}

.commercial-credentials-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.credential-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-weight: 800;
}

.commercial-contact-section {
  padding: 110px 0;
  background: #101c18;
  color: white;
}

.commercial-contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.commercial-contact-copy p {
  color: rgba(255,255,255,0.62);
}

.commercial-phone-block {
  display: block;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.commercial-phone-block span,
.commercial-phone-block strong {
  display: block;
}

.commercial-phone-block span {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.commercial-phone-block strong {
  margin-top: 7px;
  color: #d93557;
  font-size: 34px;
}

.commercial-email-block {
  margin-top: 18px;
  color: rgba(255,255,255,.78);
}

.commercial-form-card {
  background: white;
  padding: 34px;
}

.commercial-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.commercial-form-card input,
.commercial-form-card textarea,
.commercial-form-card select {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border: 1px solid #d6ddd8;
  border-radius: 0;
  background: #f8f9f7;
  color: #17251f;
  font: inherit;
}

.commercial-form-card textarea {
  min-height: 170px;
  resize: vertical;
}

.commercial-submit-btn {
  width: 100%;
  min-height: 56px;
  border: none;
  background: #d93557;
  color: #111a16;
  font-weight: 900;
  cursor: pointer;
}

.commercial-footer {
  padding: 40px 0;
  background: #07100d;
  color: white;
}

.commercial-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 30px;
  align-items: start;
}

.commercial-footer strong,
.commercial-footer span,
.commercial-footer a {
  display: block;
}

.commercial-footer span {
  margin-top: 4px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.commercial-footer a {
  color: rgba(255,255,255,.75);
  margin-bottom: 5px;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.88);
}

.project-modal.open {
  display: flex;
}

.project-modal-dialog {
  width: min(920px, 100%);
  background: #101c18;
  color: white;
  padding: 18px;
}

.project-modal-dialog img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #e8e9e5;
}

.project-modal-dialog h3 {
  margin: 18px 0 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
}

.project-modal-dialog p {
  margin: 0;
  color: rgba(255,255,255,.58);
}

.project-modal-close {
  position: fixed;
  top: 18px;
  right: 28px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 46px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .commercial-nav-links {
    display: none;
  }

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

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

  .commercial-contact-layout,
  .commercial-credentials-grid {
    grid-template-columns: 1fr;
  }

  .commercial-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .commercial-header {
    position: relative;
  }

  .commercial-nav {
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
  }

  .commercial-logo {
    width: 100%;
  }

  .commercial-nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .commercial-hero-v2 {
    min-height: auto;
  }

  .commercial-hero-content {
    padding-top: 80px;
  }

  .commercial-hero-content h1 {
    font-size: 52px;
  }

  .commercial-proof-row,
  .commercial-service-grid,
  .commercial-project-grid,
  .industry-grid,
  .credential-list,
  .commercial-form-row,
  .commercial-footer-grid {
    grid-template-columns: 1fr;
  }

  .commercial-proof-row div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .commercial-service-number {
    margin-bottom: 35px;
  }

  .commercial-contact-section,
  .commercial-section,
  .commercial-industries {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}


/* Estella brand refinements: dark green + pink */
.commercial-logo-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 2px solid #d93557;
  background: #ffffff;
}

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

.commercial-page .commercial-call,
.commercial-page .commercial-primary-btn,
.commercial-page .commercial-submit-btn {
  background: #d93557;
  color: #ffffff;
}

.commercial-page .commercial-call:hover,
.commercial-page .commercial-primary-btn:hover,
.commercial-page .commercial-submit-btn:hover {
  background: #b62545;
}

.commercial-page .commercial-credentials {
  background: #d93557;
  color: #ffffff;
}

.commercial-page .commercial-kicker.dark {
  color: #ffffff;
}

.commercial-page .project-card small,
.commercial-page .commercial-phone-block strong,
.commercial-page .commercial-kicker,
.commercial-page .commercial-section-heading > span,
.commercial-page .commercial-service-number {
  color: #d93557;
}

@media (max-width: 680px) {
  .commercial-project-grid {
    grid-template-columns: 1fr;
  }

  .commercial-logo-image {
    width: 58px;
    height: 58px;
  }
}


/* Optional add-on service sections */
.addon-section {
  padding: 20px 0 90px;
}

.addon-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.addon-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #f39aae;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 800;
}

.addon-banner h2 {
  margin: 0 0 12px;
  color: var(--white);
}

.addon-banner p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.addon-list {
  display: grid;
  gap: 14px;
}

.addon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
}

.addon-item > span {
  font-size: 28px;
}

.addon-item strong,
.addon-item small {
  display: block;
}

.addon-item small {
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  line-height: 1.45;
}

.commercial-addon-section {
  padding: 86px 0;
  background: #f1f2ef;
}

.commercial-addon-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.commercial-addon-copy > span {
  color: #d93557;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
}

.commercial-addon-copy h2 {
  margin: 10px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
}

.commercial-addon-copy p {
  color: #637069;
}

.commercial-addon-options {
  display: grid;
  gap: 16px;
}

.commercial-addon-options > div {
  padding: 25px;
  background: #101c18;
  border-left: 5px solid #d93557;
  color: white;
}

.commercial-addon-options strong,
.commercial-addon-options span {
  display: block;
}

.commercial-addon-options strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
}

.commercial-addon-options span {
  margin-top: 7px;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .addon-banner,
  .commercial-addon-inner {
    grid-template-columns: 1fr;
  }

  .addon-banner {
    padding: 28px;
  }
}


/* Portfolio categories and multi-photo lightbox */
.portfolio-section {
  padding: 90px 0;
  background: #f7f4f0;
}

.portfolio-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.portfolio-heading > span {
  color: #d93557;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.portfolio-heading h2 {
  margin: 8px 0 12px;
}

.portfolio-heading p {
  margin: 0;
  color: #66716c;
}

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

.portfolio-category-card {
  appearance: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 35, 29, .11);
  text-align: left;
  cursor: pointer;
}

.portfolio-category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}

.portfolio-category-card:hover img {
  transform: scale(1.035);
}

.portfolio-category-card > span {
  display: block;
  padding: 18px;
}

.portfolio-category-card strong,
.portfolio-category-card small {
  display: block;
}

.portfolio-category-card strong {
  color: #10221c;
  font-size: 18px;
}

.portfolio-category-card small {
  margin-top: 6px;
  color: #d93557;
  font-weight: 700;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px 80px;
  background: rgba(5, 13, 10, .94);
}

.portfolio-modal.open {
  display: flex;
}

.portfolio-modal-dialog {
  width: min(1100px, 88vw);
  max-height: 88vh;
}

.portfolio-modal-dialog img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.portfolio-modal-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 14px;
  color: #fff;
}

.portfolio-modal-caption h3 {
  margin: 0;
  color: #fff;
}

.portfolio-modal-caption span {
  color: rgba(255,255,255,.68);
}

.portfolio-modal-close,
.portfolio-modal-arrow {
  position: fixed;
  z-index: 10001;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.09);
  cursor: pointer;
}

.portfolio-modal-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.portfolio-modal-arrow {
  top: 50%;
  width: 52px;
  height: 70px;
  border-radius: 12px;
  transform: translateY(-50%);
  font-size: 34px;
}

.portfolio-modal-prev {
  left: 18px;
}

.portfolio-modal-next {
  right: 18px;
}

@media (max-width: 920px) {
  .portfolio-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .portfolio-category-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-modal {
    padding: 70px 12px 24px;
  }

  .portfolio-modal-dialog {
    width: 100%;
  }

  .portfolio-modal-arrow {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .portfolio-modal-prev {
    left: calc(50% - 58px);
  }

  .portfolio-modal-next {
    right: calc(50% - 58px);
  }

  .portfolio-modal-caption {
    padding-bottom: 58px;
  }
}


/* Mobile compatibility improvements */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 34, 28, .18);
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 13px 14px;
    min-height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .commercial-hero,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .addon-banner,
  .commercial-addon-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .commercial-hero-copy {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .service-grid,
  .reviews-grid,
  .gallery-grid,
  .commercial-service-grid,
  .commercial-project-grid,
  .portfolio-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .portfolio-modal {
    padding: 70px 16px 24px;
  }

  .portfolio-modal-dialog {
    width: 100%;
    max-width: 100%;
  }

  .portfolio-modal-dialog img {
    max-height: 72vh;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-xl: 20px;
  }

  body {
    font-size: 16px;
  }

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

  .container {
    width: min(100% - 24px, 1200px);
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px) !important;
    line-height: 1.02 !important;
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.08 !important;
  }

  h3 {
    line-height: 1.15;
  }

  .topbar,
  .header-inner {
    gap: 10px;
  }

  .logo img {
    max-width: 180px;
  }

  .hero,
  .commercial-hero {
    min-height: auto !important;
  }

  .hero-actions,
  .commercial-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button,
  .btn,
  .hero-actions a,
  .commercial-hero-actions a,
  form button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .service-grid,
  .reviews-grid,
  .gallery-grid,
  .commercial-service-grid,
  .commercial-project-grid,
  .portfolio-category-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-category-card img,
  .project-card img,
  .gallery-grid img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .addon-banner,
  .commercial-addon-inner {
    gap: 24px;
    padding: 24px !important;
  }

  .addon-item {
    padding: 15px;
  }

  .contact-form,
  form {
    width: 100%;
  }

  input,
  select,
  textarea {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  textarea {
    min-height: 140px;
  }

  .portfolio-modal {
    padding: 62px 10px 80px;
  }

  .portfolio-modal-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 54px;
  }

  .portfolio-modal-arrow {
    top: auto;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .portfolio-modal-prev {
    left: calc(50% - 58px);
  }

  .portfolio-modal-next {
    right: calc(50% - 58px);
  }

  .portfolio-modal-close {
    top: 12px;
    right: 12px;
  }

  .commercial-addon-options > div {
    padding: 20px;
  }

  .commercial-addon-options strong {
    font-size: 24px;
  }

  footer {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 18px, 1200px);
  }

  h1 {
    font-size: 36px !important;
  }

  .portfolio-category-card > span {
    padding: 15px;
  }
}


/* Final mobile service-switcher fix */
.service-switcher-top.site-switcher {
  position: relative;
  inset: auto;
  transform: none;
  z-index: 10000;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: max(10px, env(safe-area-inset-top)) 12px 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(10, 91, 67, .13);
}

.service-switcher-top .switch-link {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .service-switcher-top.site-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: max(8px, env(safe-area-inset-top)) 8px 8px;
    border-radius: 0;
  }

  .service-switcher-top .switch-link {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 9px 8px;
    font-size: 13px;
    white-space: normal;
  }

  .hero {
    display: block;
    width: 100%;
    min-height: auto !important;
    padding: 0;
    overflow: hidden;
  }

  .hero-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px;
    padding: 42px 0 48px;
  }

  .hero-grid > * {
    min-width: 0;
  }

  .hero h1,
  .hero p,
  .actions,
  .hero-cards,
  .brand-frame {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    overflow-wrap: anywhere;
  }

  .commercial-header {
    top: 0;
  }
}

@media (max-width: 430px) {
  .service-switcher-top .switch-link {
    font-size: 12px;
    padding-inline: 6px;
  }

  .hero-grid {
    padding-top: 34px;
  }
}


/* Commercial hero service switcher */
.commercial-hero-switcher {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 38px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(7, 17, 14, .78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.commercial-hero-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 4px;
  color: rgba(255, 255, 255, .74);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.commercial-hero-switcher a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.commercial-hero-switcher a.active {
  color: #fff;
  background: #d93557;
  box-shadow: 0 8px 22px rgba(217, 53, 87, .28);
}

@media (max-width: 768px) {
  .commercial-hero-v2 {
    min-height: auto;
    align-items: flex-start;
  }

  .commercial-hero-content {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .commercial-hero-switcher {
    width: 100%;
    margin-bottom: 34px;
    padding: 6px;
  }

  .commercial-hero-switcher a {
    min-height: 50px;
    padding: 10px 8px;
    font-size: 13px;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .commercial-hero-switcher a {
    font-size: 12px;
  }
}


/* True responsive portfolio grid */
.residential-portfolio .portfolio-category-grid,
.commercial-page .commercial-project-grid.portfolio-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px;
  max-width: 1100px;
  margin-inline: auto;
}

.residential-portfolio .portfolio-category-card,
.commercial-page .commercial-project-grid .portfolio-category-card {
  height: 100%;
}

.residential-portfolio .portfolio-category-card img,
.commercial-page .commercial-project-grid .portfolio-category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 760px) {
  .residential-portfolio .portfolio-category-grid,
  .commercial-page .commercial-project-grid.portfolio-category-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
}


/* Commercial phone-number formatting */
.commercial-phone-block {
  display: block;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.commercial-phone-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
}

.commercial-phone-links a {
  display: inline-block;
  color: #d93557;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.commercial-phone-links a:hover {
  text-decoration: underline;
}

.commercial-footer-phones {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.commercial-footer-phones a {
  width: fit-content;
}

@media (max-width: 680px) {
  .commercial-phone-links a {
    font-size: clamp(25px, 8vw, 32px);
  }
}

/* Hiring and temporary employment application */
.hiring-page { background: #fbf8f5; color: #173d32; }
.hiring-header { background: #fff; border-bottom: 1px solid rgba(23,61,50,.12); position: sticky; top: 0; z-index: 20; }
.hiring-nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hiring-brand { display: flex; align-items: center; gap: 13px; color: #173d32; }
.hiring-brand img { width: 55px; height: 55px; object-fit: contain; }
.hiring-brand span { display: flex; flex-direction: column; line-height: 1.2; }
.hiring-brand strong { font-family: "Cormorant Garamond", serif; font-size: 22px; }
.hiring-brand small { color: #6c7d76; margin-top: 3px; }
.hiring-nav-actions { display: flex; align-items: center; gap: 18px; }
.hiring-nav-actions > a { color: #173d32; font-weight: 700; }
.language-toggle { display: flex; padding: 4px; border-radius: 999px; background: #f2ebe6; }
.language-button { border: 0; background: transparent; padding: 9px 13px; border-radius: 999px; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; color: #53665f; }
.language-button.active { background: #d93557; color: #fff; box-shadow: 0 5px 14px rgba(217,53,87,.24); }
.hiring-hero { padding: 68px 0; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(217,53,87,.28), transparent 34%), linear-gradient(135deg,#123b30,#1f5a49); }
.hiring-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 55px; }
.hiring-hero h1 { max-width: 720px; margin: 18px 0; font-family: "Cormorant Garamond", serif; font-size: clamp(48px,7vw,78px); line-height: .94; }
.hiring-hero p { max-width: 700px; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.84); }
.hiring-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hiring-highlights span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 700; }
.hiring-logo-card { padding: 24px; border-radius: 30px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.hiring-logo-card img { display: block; width: 100%; border-radius: 20px; }
.hiring-form-section { padding: 80px 0 96px; }
.hiring-content-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 32px; align-items: start; }
.hiring-info-card, .application-card { background: #fff; border: 1px solid rgba(23,61,50,.1); border-radius: 26px; box-shadow: 0 18px 55px rgba(29,57,48,.09); }
.hiring-info-card { padding: 34px; position: sticky; top: 110px; }
.hiring-eyebrow, .application-heading > span { color: #d93557; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.hiring-info-card h2, .application-heading h2 { font-family: "Cormorant Garamond", serif; font-size: 40px; line-height: 1; margin: 13px 0; }
.hiring-info-card p, .application-heading p { color: #687871; line-height: 1.7; }
.hiring-contact-box { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; padding: 22px; border-radius: 18px; background: #f7efec; }
.hiring-contact-box a { color: #d93557; font-size: 22px; font-weight: 800; }
.application-card { padding: 38px; }
.application-heading { margin-bottom: 28px; }
.application-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.application-card label > span, .application-card legend { display: block; margin-bottom: 8px; color: #294a40; font-weight: 800; font-size: 14px; }
.application-card input[type="text"], .application-card input[type="number"], .application-card input[type="tel"], .application-card input[type="email"], .application-card input[type="date"], .application-card textarea { width: 100%; border: 1px solid #d8dfdc; border-radius: 12px; padding: 14px 15px; background: #fff; color: #173d32; font: inherit; }
.application-card input:focus, .application-card textarea:focus { outline: 3px solid rgba(217,53,87,.12); border-color: #d93557; }
.application-card fieldset { min-width: 0; margin: 22px 0 0; padding: 18px; border: 1px solid #dce3e0; border-radius: 16px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.checkbox-grid label, .radio-row label { display: flex; align-items: center; gap: 8px; padding: 11px 12px; border-radius: 11px; background: #f8f5f2; cursor: pointer; }
.checkbox-grid label > span, .radio-row label > span { margin: 0; font-weight: 700; font-size: 13px; }
.question-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.radio-row { display: flex; gap: 10px; }
.radio-row label { flex: 1; justify-content: center; }
.full-field { display: block; margin-top: 22px; }
.application-card textarea { min-height: 145px; resize: vertical; }
.application-submit { width: 100%; margin-top: 26px; border: 0; border-radius: 13px; padding: 16px 24px; background: #d93557; color: #fff; font: inherit; font-weight: 800; font-size: 16px; cursor: pointer; box-shadow: 0 12px 25px rgba(217,53,87,.25); }
.application-submit:hover { transform: translateY(-1px); }
.application-note { margin: 15px 0 0; text-align: center; color: #79857f; font-size: 12px; line-height: 1.55; }
.hidden-field { display: none; }
.hiring-footer { padding: 30px 0; background: #123b30; color: #fff; }
.hiring-footer .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hiring-footer span { color: rgba(255,255,255,.7); }
@media (max-width: 900px) { .hiring-hero-grid, .hiring-content-grid { grid-template-columns: 1fr; } .hiring-logo-card { max-width: 520px; } .hiring-info-card { position: static; } }
@media (max-width: 700px) { .hiring-nav { padding-top: 12px; padding-bottom: 12px; align-items: flex-start; } .hiring-brand small, .hiring-nav-actions > a { display: none; } .hiring-brand strong { font-size: 18px; } .hiring-nav-actions { margin-left: auto; } .hiring-hero { padding: 48px 0; } .hiring-hero-grid { gap: 32px; } .application-card, .hiring-info-card { padding: 24px; border-radius: 20px; } .application-grid, .question-grid { grid-template-columns: 1fr; } .checkbox-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }

/* Mobile fix: keep each availability checkbox and day label together */
.checkbox-grid {
  align-items: stretch;
}

.checkbox-grid label {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
  overflow: hidden;
}

.checkbox-grid input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  margin: 0;
  padding: 0;
}

.checkbox-grid label > span {
  min-width: 0;
  margin: 0;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 700px) {
  .application-card fieldset {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 14px;
  }

  .checkbox-grid label > span {
    font-size: 15px;
    line-height: 1.3;
  }
}
