/*
Theme Name: Szablon 8P
Theme URI: https://example.local/szablon-sklep-01
Author: Dariusz Paśko 8Piętro
Author URI: https://example.local
Description: Podstawowy motyw WordPress oparty o CSS Grid z przygotowaniem pod blog i sklep.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: szablon-sklep-01
*/

:root {
  --container-max: 1200px;
  --gap: 1rem;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --bg: #231417;
  --surface: #ffffff;
  --text: #f7f1ee;
  --muted: #decfc9;
  --border: #1f2937;
  --brand: #cc1939;
  --brand-2: #cc1939;
  --font-body: "Lato", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

/* Global reset */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #231417;
  line-height: 1.6;
}

.material-symbols-rounded 
{
  padding: 5px;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.nav-link,
.nav-btn,
.menu-toggle,
.button,
button.button,
input.button,
.woocommerce-loop-product__title,
.product_title,
.widget-title {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
h4,
h5,
h6,
.woocommerce-loop-product__title,
.product_title,
.widget-title {
  font-weight: 700;
}

.logo,
.nav-link,
.nav-btn,
.menu-toggle {
  font-weight: 600;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--brand-2);
}

/* Utility class for accessible labels hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.site-footer {
  background: transparent;
  margin-top: 0;
  background: transparent;
  background-color: #231417;
}

/* Shared width wrapper */
/*
.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}
*/
.container {
    margin-inline: auto;
    max-width: 1500px;
}




/* Top navigation */
.navbar {
  font-family: var(--font-heading);
  background-color: #150B0F;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #150B0F;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 120;
  background-color: #150B0F;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container {
 max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px 0 88px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
}

.logo img {
  display: block;
  max-height: 42px;
  width: auto;
}

.logo:hover,
.logo:focus {
  color: #ffffff;
}

.home .logo,
.home .logo:hover,
.home .logo:focus {
  color: #cc1939;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu__cta-item--mobile {
  display: none;
}

.nav-menu > li {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link:focus {
  color: #cc1939;
}

.home .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.home .nav-link:hover,
.home .nav-link:focus {
  color: #cc1939;
}

.menu-icon-link {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-icon-link:hover,
.menu-icon-link:focus {
  color: #1f2937;
  background: linear-gradient(180deg, #ffffff 0%, #ebeef3 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.home .menu-icon-link {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.home .menu-icon-link:hover,
.home .menu-icon-link:focus {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.menu-icon-link .material-symbols-rounded {
  font-size: 22px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.menu-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: #cc1939;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(204, 25, 57, 0.28);
}

.home .menu-cart-count {
  border-color: rgba(15, 23, 42, 0.9);
}

.nav-menu > li:has(.menu-icon-link) + li:has(.menu-icon-link) {
  margin-left: -12px;
}

.nav-btn {
  padding: 10px 24px;
  background: #cc1939;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-btn:hover,
.nav-btn:focus {
  background: #cc1939;
  color: #ffffff;
}

.has-dropdown {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
}


.nav-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  min-width: 420px;
  width: max-content;
  max-width: min(90vw, 520px);
  background: #201114;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 30;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  padding: 8px 6px;
  border-radius: 6px;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus {
  background: rgba(204, 25, 57, 0.08);
  color: #cc1939;
}

/* Mega menu panel */
.mega-menu {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #201114;
  width: 600px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  padding: 25px;
  gap: 20px;
}

.mega-column h3 {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  letter-spacing: 1px;
}

.mega-column a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: padding 0.2s, color 0.2s;
}

.mega-column a:hover,
.mega-column a:focus {
  padding-left: 5px;
  color: #cc1939;
}

.featured img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.featured-link {
  display: block;
  padding: 0;
}

.featured-link:hover,
.featured-link:focus {
  padding-left: 0;
}

.featured-link:hover img,
.featured-link:focus img {
  transform: translateY(-1px);
}

.featured-text h4 {
  margin: 0;
  color: #111827;
}

.featured-link img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-text p {
  margin: 5px 0 0 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Home hero */
.home {
  background: #ffffff;
}

.home .site-grid {
  margin-top: 0;
  padding: 0;
  gap: 0;
}

.navbar .container {
  max-width: 1360px;
  height: 94px;
  padding-inline: clamp(1.1rem, 2.6vw, 2rem);
}

.logo img {
  max-height: 76px;
}

.home .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(21, 11, 15, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.home .logo,
.home .logo:hover,
.home .logo:focus {
  color: #ffffff;
}

.home .bar {
  background-color: #ffffff;
}

.home .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
}

.home .nav-link:hover,
.home .nav-link:focus,
.home .current-menu-item > .nav-link,
.home .current_page_item > .nav-link {
  color: #cc1939;
}

.home .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.4rem;
  height: 2px;
  background: #cc1939;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.home .nav-link:hover::after,
.home .nav-link:focus::after,
.home .current-menu-item > .nav-link::after,
.home .current_page_item > .nav-link::after {
  transform: scaleX(1);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.45rem;
  background: linear-gradient(180deg, #da2345 0%, #cc1939 100%);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 18px 30px rgba(204, 25, 57, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-btn::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.nav-btn:hover,
.nav-btn:focus {
  background: linear-gradient(180deg, #e42a4b 0%, #b91533 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(204, 25, 57, 0.24);
}

.home-page {
  display: grid;
  background: #150B0F;
}

.home-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  min-height: 100svh;
  position: relative;
  display: block;
  padding: 94px 0 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(204, 25, 57, 0.14), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(204, 25, 57, 0.09), transparent 24%),
    linear-gradient(180deg, #2b1719 0%, #231417 100%);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 20, 23, 0.94) 0%, rgba(35, 20, 23, 0.78) 38%, rgba(35, 20, 23, 0.38) 72%, rgba(35, 20, 23, 0.24) 100%);
  pointer-events: none;
}

.home-hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  gap: clamp(1.5rem, 2.4vw, 2.75rem);
  align-items: stretch;
  min-height: calc(100svh - 94px);
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: clamp(1.5rem, 3vw, 2.5rem);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  text-align: left;
  color: #f7f1ee;
  padding: 0 clamp(1.5rem, 3.2vw, 4rem) 0 clamp(0.4rem, 1vw, 1rem);
}

.home-hero__eyebrow {
  margin: 0 0 0.85rem;
  color: #cc1939;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__content h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.home-hero__content h1 span {
  color: #cc1939;
}

.home-hero__content p {
  margin: 1.2rem 0 0;
  font-size: 0.95rem;
  color: #e6d7d2;
  line-height: 1.7;
}

.home-hero__note {
  margin-top: 1.15rem;
  font-weight: 500;
  color: #f7f1ee;
}

.home-hero__actions {
  margin-top: 1.55rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 180px;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-btn::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.hero-btn--primary {
  background: linear-gradient(180deg, #da2345 0%, #cc1939 100%);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(204, 25, 57, 0.18);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus {
  background: linear-gradient(180deg, #e42a4b 0%, #b91533 100%);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.hero-btn--secondary:hover,
.hero-btn--secondary:focus {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

.home-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100%;
  overflow: hidden;
}

.home-hero__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
}

.home-hero__image-wrap::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 10%;
  bottom: -16px;
  height: 38px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.03) 70%, transparent 100%);
  filter: blur(14px);
  z-index: -1;
}

.home-hero__image {
  display: block;
  width: 100%;
  max-width: none;
  padding-top: 0;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

#o-mnie,
#oferta,
#uslugi,
#kontakt-cta,
#obsluga-kadrowa,
#obsluga-placowa,
#doradztwo-hr {
  scroll-margin-top: 110px;
}

/* Subpages hero header (all pages except front page) */
.subpage-hero {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3.25rem) 0;
  background: linear-gradient(135deg, #2a1719 0%, #231417 56%, #311c1d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--subpage-hero-bg-image);
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.04);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 50%;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 25, 57, 0.14) 0%, rgba(204, 25, 57, 0) 72%);
  transform: translateY(-50%);
}

.subpage-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 150px;
  padding-inline: clamp(1rem, 2.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.9rem;
  text-align: left;
}

.subpage-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2dfd8;
}

.subpage-hero__eyebrow span {
  width: 3rem;
  height: 2px;
  border-radius: 999px;
  background: #cc1939;
}

.subpage-hero h1 {
  margin: 0;
  max-width: 25ch;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
}

.subpage-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ead9d4;
}

.subpage-hero__breadcrumbs a {
  color: #ffffff;
}

.subpage-hero__breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.56);
}

.about-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0 0.5rem;
  background: #150B0F;
}

.about-section .container {
  padding-inline: clamp(1rem, 2.6vw, 2.2rem);
}

.about-section__intro {
  max-width: none;
  margin-bottom: 1.35rem;
}

.about-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-section__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #cc1939;
}

.about-section__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr) minmax(280px, 0.78fr);
  gap: clamp(1.2rem, 2vw, 1.9rem);
  align-items: stretch;
}

.about-section__content {
  padding: 1.65rem 0;
}

.about-section__content p {
  margin: 0;
  color: #decfc9;
  font-size: 1rem;
  line-height: 1.72;
}

.about-section__content p + p {
  margin-top: 1.25rem;
}

.about-section__photo-wrap {
  overflow: hidden;
  border-radius: 6px;
  min-height: 100%;
  background: #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.about-section__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-section__aside {
  display: grid;
  gap: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #150B0F 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.about-credential {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0.25rem;
}

.about-credential + .about-credential {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-credential__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 250, "GRAD" 0, "opsz" 48;
}

.about-credential:nth-child(2) .about-credential__icon {
  color: #cc1939;
}

.about-credential__body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.about-credential__body p {
  margin: 0;
  margin-top: 0.25rem;
  color: #decfc9;
  font-size: 0.92rem;
  line-height: 1.5;
}

.services-overview {
  padding: clamp(1.4rem, 2vw, 2rem) 0 0;
  background: #150B0F;
}

.services-overview__strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #150B0F 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.55rem 1.65rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.advantage-card + .advantage-card {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-card__icon {
  flex: 0 0 auto;
  font-size: 2.45rem;
  line-height: 1;
  color: #cc1939;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}

.advantage-card__content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
}

.advantage-card__content p {
  margin: 0.35rem 0 0;
  color: #decfc9;
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-categories {
  padding: clamp(1.6rem, 2.6vw, 2.4rem) 0 0.5rem;
  background: #150B0F;
}

.service-categories .container {
  padding-inline: clamp(1rem, 2.6vw, 2.5rem);
}

.service-categories__intro {
  max-width: 860px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.service-categories__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.service-categories__intro h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 999px;
  background: #cc1939;
}

.service-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(96px, 30%) minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  min-height: 100%;
  padding: 1.5rem 1.65rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #150B0F 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-card:hover,
.service-card:focus {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: #cc1939;
  background: linear-gradient(180deg, #2b1119 0%, #cc1939 100%);
  box-shadow: 0 20px 40px rgba(204, 25, 57, 0.26);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: clamp(3.5rem, 4vw, 4.4rem);
  line-height: 1;
  color: #ffffff;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__icon,
.service-card:focus .service-card__icon,
.service-card:hover h3,
.service-card:focus h3 {
  color: #ffffff;
}

.service-card:hover .service-card__icon,
.service-card:focus .service-card__icon {
  transform: scale(1.04);
}

.service-card .material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 60px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.contact-cta-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0 0.5rem;
  background: #150B0F;
}

.contact-cta-section__shell {
  padding: 2.35rem 1.9rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #150B0F 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.contact-cta-section__intro {
  text-align: center;
}

.contact-cta-section__intro h2 {
  margin: 0 auto;
  max-width: 22ch;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.contact-cta-section__intro h2 span {
  display: block;
  color: #cc1939;
}

.contact-cta-section__intro h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 999px;
  background: #cc1939;
}

.contact-cta-section__reasons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  align-items: start;
}

.contact-reason {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 1.2rem 1rem 0.95rem;
}

.contact-reason .material-symbols-rounded{
  font-size: 34px;
  line-height: 54px;
}

.contact-reason + .contact-reason {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-reason__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0.55rem;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(204, 25, 57, 0.22);
  color: #cc1939;
  font-size: 2rem;
  font-variation-settings: "FILL" 0, "wght" 250, "GRAD" 0, "opsz" 48;
}

.contact-reason h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-reason p {
  margin: 0.45rem auto 0;
  max-width: 22ch;
  color: #decfc9;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-cta-section__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.75rem;
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #1d1014 0%, #241218 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}



.contact-cta-section__panel-copy {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.contact-cta-section__panel-copy .material-symbols-rounded{
  font-size: 34px;
  line-height: 54px;
  padding: 0 0 0 10px;
}

.contact-cta-section__panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(204, 25, 57, 0.22);
  color: #cc1939;
  font-size: 2rem;
}

.contact-cta-section__panel-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1.2;
}

.contact-cta-section__panel-copy p {
  margin: 0.35rem 0 0;
  color: #decfc9;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-cta-section__panel .hero-btn--primary {
  min-width: 0;
  white-space: nowrap;
  justify-self: end;
}

.latest-posts-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0 0.5rem;
  background: #150B0F;
}

.latest-posts-section .container {
  display: grid;
  gap: 1.75rem;
  padding-inline: clamp(1rem, 2.6vw, 2.5rem);
}

.latest-posts-section__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.latest-posts-section__eyebrow {
  margin: 0 0 0.6rem;
  color: #cc1939;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.latest-posts-section__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.latest-posts-section__intro p:last-child {
  margin: 0.8rem 0 0;
  max-width: 62ch;
  color: #decfc9;
  font-size: 1rem;
  line-height: 1.75;
}

.latest-posts-section__more {
  flex-shrink: 0;
}

.latest-posts-section .blog-grid-card {
  grid-template-columns: minmax(0, 1.34fr) minmax(220px, 0.66fr);
  min-height: 0;
  background: linear-gradient(135deg, #150B0F 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.latest-posts-section .blog-grid-card::after {
  background: radial-gradient(circle, rgba(204, 25, 57, 0.18) 0%, rgba(204, 25, 57, 0) 72%);
}

.latest-posts-section .blog-grid-card__content {
  background: transparent;
  justify-content: flex-start;
  gap: 0.95rem;
  padding: 1.6rem 1.5rem;
  padding-right: clamp(1.2rem, 2vw, 1.9rem);
}

.latest-posts-section .blog-grid-card__meta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #decfc9;
  box-shadow: none;
  flex-wrap: wrap;
}

.latest-posts-section .blog-grid-card h2 {
  max-width: none;
  padding-right: 0.25rem;
  font-size: clamp(1.2rem, 1.35vw, 1.9rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.latest-posts-section .blog-grid-card h2 a {
  color: #ffffff;
}

.latest-posts-section .blog-grid-card h2 a:hover,
.latest-posts-section .blog-grid-card h2 a:focus {
  color: #cc1939;
}

.latest-posts-section .blog-grid-card__excerpt {
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #decfc9;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.latest-posts-section .blog-grid-card__thumb img {
  min-height: 100%;
  max-height: 420px;
  object-position: center;
}

.latest-posts-section .blog-grid-card__button {
  min-width: 0;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
}

.reviews-section {
  padding: clamp(1.4rem, 3vw, 2.6rem) 0 0.75rem;
  background: #150B0F;
}

.reviews-section__shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 28px;
  background: linear-gradient(180deg, #150b0f 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.reviews-section__intro {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
}

.reviews-section__eyebrow {
  margin: 0;
  color: #cc1939;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-section__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.reviews-section__intro p:last-child {
  margin: 0;
  color: #decfc9;
  font-size: 1rem;
  line-height: 1.7;
}

.reviews-section__embed {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 24px;
  background: linear-gradient(180deg, #1b0e12 0%, #241318 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.reviews-section__embed iframe,
.reviews-section__embed .ti-widget,
.reviews-section__embed .ti-widget-container,
.reviews-section__embed [class*="ti-widget"] {
  max-width: 100%;
}

.reviews-section__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: #decfc9;
  text-align: center;
}

.home-slider-section {
  padding: clamp(1rem, 2vw, 2rem) 0 0.5rem;
}

.home-slider-wrap {
  position: relative;
  overflow: hidden;
}

.home-slider {
  display: flex;
  gap: 14px;
  overflow: visible;
  padding: 0 1rem 0.8rem;
  margin: 0 -1rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.home-slide {
  flex: 0 0 calc((100% - 28px) / 3);
  position: relative;
  min-height: clamp(420px, 62vh, 820px);
  border-radius: 12px;
  overflow: hidden;
}

.home-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 15%, rgba(0, 0, 0, 0.1) 56%);
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slide h3 {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.6rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1.13;
  z-index: 2;
}

.home-slider-nav {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #0f111b;
  border-radius: 999px;
  padding: 0.5rem;
}

.home-slider-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  color: #1f2937;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-slider-btn .material-symbols-rounded {
  font-size: 30px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

.home-slider-btn:hover,
.home-slider-btn:focus {
  transform: translateY(-1px);
  background: #f3f4f6;
}

@media (max-width: 1200px) {
  .about-section__grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-page-details__grid {
    grid-template-columns: 1fr;
  }

  .latest-posts-section__intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-posts-section .blog-grid-card {
    grid-template-columns: 1fr;
  }

  .latest-posts-section .blog-grid-card__content {
    order: 2;
  }

  .latest-posts-section .blog-grid-card__thumb {
    order: 1;
  }

  .home-slide {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 760px) {
  .services-overview__strip,
  .service-categories__grid {
    grid-template-columns: 1fr;
  }

  .advantage-card + .advantage-card {
    border-left: 0;
    border-top: 1px solid rgba(226, 232, 240, 0.95);
  }

  .service-card {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
  }

  .service-card__icon {
    font-size: 3rem;
  }

  .contact-cta-section__shell {
    padding-inline: 1rem;
  }

  .contact-cta-section__reasons {
    grid-template-columns: 1fr;
  }

  .contact-reason + .contact-reason {
    border-left: 0;
    border-top: 1px solid rgba(226, 232, 240, 0.95);
  }

  .contact-cta-section__panel-copy {
    grid-template-columns: 1fr;
  }

  .latest-posts-section__more {
    width: 100%;
  }

  .latest-posts-section .blog-grid-card h2 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    padding-right: 0;
  }

  .latest-posts-section .blog-grid-card__thumb img {
    min-height: 230px;
    max-height: none;
  }

  .service-detail-page {
    padding: 1rem;
  }

  .service-detail-page__content > p,
  .service-detail-page__content > ul,
  .service-detail-page__content > ol,
  .service-detail-page__content > blockquote {
    padding: 1rem;
    border-radius: 16px;
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #1f2937;
  border-radius: 2px;
}

.home .bar {
  background-color: #ffffff;
}

.arrow {
  font-size: 0.7rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.8rem;
  padding: var(--space-3);
  color: #0f172a;
}

.hero {
  background: #cc1939;
  color: #fff;
  border-radius: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  max-width: 65ch;
}

.button {
  display: inline-block;
  margin-top: var(--space-2);
  background: #fff;
  color: #cc1939;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
}

.entry-title {
  margin-top: 0;
}

.entry-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.about-page-main,
.services-page-main {
  display: grid;
  gap: 0;
}

.contact-page-content {
  background: transparent;
  border: 0;
  padding: 0;
}

.contact-page-details {
  margin-top: 0.5rem;
  padding: 2.1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}

.contact-page-details__intro {
  max-width: 860px;
  margin-bottom: 1.85rem;
}

.contact-page-details__eyebrow {
  margin: 0 0 0.4rem;
  color: #cc1939;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page-details__intro h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.1;
}

.contact-page-details__intro p:last-child {
  margin: 0.85rem 0 0;
  max-width: 66ch;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-page-details__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.contact-page-card {
  padding: 1.55rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.contact-page-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fff2ef 100%);
  border: 1px solid rgba(204, 25, 57, 0.14);
  color: #cc1939;
}

.contact-page-card__icon .material-symbols-rounded {
  font-size: 1.9rem;
}

.contact-page-card h3 {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 1.3rem;
  line-height: 1.2;
}

.contact-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.contact-page-list li {
  display: grid;
  gap: 0.25rem;
}

.contact-page-list span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-page-list a,
.contact-page-list strong {
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-page-list a:hover,
.contact-page-list a:focus {
  color: #cc1939;
}

.contact-page-form {
  margin-top: 1.75rem;
}

.contact-page-form__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-page-form__intro {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8f6 0%, #ffffff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.contact-page-form__intro h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.contact-page-form__intro p:last-of-type {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.contact-page-form__aside {
  display: grid;
  gap: 0.9rem;
}

.contact-page-form__aside-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.contact-page-form__aside-item .material-symbols-rounded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(204, 25, 57, 0.14);
  color: #cc1939;
  font-size: 1.75rem;
}

.contact-page-form__aside-item strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
}

.contact-page-form__aside-item p {
  margin: 0.35rem 0 0;
  color: #475569;
  line-height: 1.65;
}

.contact-form-notice {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-form-notice--success {
  background: rgba(204, 25, 57, 0.08);
  border: 1px solid rgba(204, 25, 57, 0.2);
  color: #cc1939;
}

.contact-form-notice--error {
  background: rgba(204, 25, 57, 0.08);
  border: 1px solid rgba(204, 25, 57, 0.18);
  color: #cc1939;
}

.contact-form-card {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.contact-form-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-card--cf7 .wpcf7 {
  width: 100%;
}

.contact-form-card--cf7 .screen-reader-response,
.contact-form-card--cf7 .hidden-fields-container {
  display: none;
}

.contact-form-card--cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1rem;
  align-items: start;
}

.contact-form-card--cf7 .wpcf7-form > p {
  margin: 0;
}

.contact-form-card--cf7 .wpcf7-form > p:nth-of-type(3),
.contact-form-card--cf7 .wpcf7-form > p:nth-of-type(4),
.contact-form-card--cf7 .wpcf7-form > p:nth-of-type(5),
.contact-form-card--cf7 .wpcf7-form > .wpcf7-response-output {
  grid-column: 1 / -1;
}

.contact-form-card--cf7 .wpcf7-form > p > label {
  display: grid;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form-card--cf7 .wpcf7-form > p > label br {
  display: none;
}

.contact-form-card--cf7 .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-card--cf7 .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f1ee;
  font: inherit;
  padding: 1rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-card--cf7 .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
  color: #a9928d;
}

.contact-form-card--cf7 .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: rgba(204, 25, 57, 0.9);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(204, 25, 57, 0.16);
}

.contact-form-card--cf7 textarea.wpcf7-form-control {
  min-height: 220px;
  resize: vertical;
}

.contact-form-card--cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 220px;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #da2345 0%, #cc1939 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(204, 25, 57, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-card--cf7 .wpcf7-submit:hover,
.contact-form-card--cf7 .wpcf7-submit:focus {
  outline: none;
  background: linear-gradient(180deg, #e42a4b 0%, #b91533 100%);
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(204, 25, 57, 0.24);
}

.contact-form-card--cf7 .wpcf7-submit::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.contact-form-card--cf7 .wpcf7-spinner {
  margin: 0 0 0 0.75rem;
  align-self: center;
}

.contact-form-card--cf7 .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #ffb4bf;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form-card--cf7 .wpcf7-response-output {
  margin: 0 !important;
  padding: 0.95rem 1rem !important;
  border-radius: 18px;
  border: 1px solid rgba(204, 25, 57, 0.22) !important;
  background: rgba(204, 25, 57, 0.08);
  color: #f7f1ee;
}

.contact-form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-field {
  display: grid;
  gap: 0.55rem;
}

.contact-form-field span {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 18px;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #94a3b8;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: #cc1939;
  box-shadow: 0 0 0 4px rgba(204, 25, 57, 0.16);
}

.contact-form-submit {
  justify-self: start;
  min-width: 180px;
}

/* Footer layout */
.site-footer__shell {
  width: min(100% - 2rem, 1400px);
  margin-inline: auto;

  color: #f7f1ee;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2.4rem) 0;
}

.site-footer a {
  color: #f7f1ee;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #cc1939;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(120px, 0.7fr) minmax(200px, 1fr) minmax(220px, 0.95fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.site-footer__logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.site-footer__brand-copy {
  margin: 0;
  max-width: 23ch;
  color: #decfc9;
  line-height: 1.65;
  font-size: 0.95rem;
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #decfc9;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: #decfc9;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-contact-list .material-symbols-rounded {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
  margin-top: 0.1rem;
}

.site-footer__bottom {
  margin-top: clamp(1.4rem, 2.8vw, 2rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: #decfc9;
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__bottom a {
  color: #f7f1ee;
}

.site-footer__bottom span {
  display: inline-block;
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.42);
}

/* Mobile styles: nav, hero, slider, footer */
@media (max-width: 900px) {
  .navbar .container {
    padding-inline: 0.9rem;
  }

  .contact-cta-section__reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta-section__panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-cta-section__panel .hero-btn--primary {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: none;
    box-sizing: border-box;
    gap: 0;
  }

  .home .nav-menu {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(3px);
  }

  .home .nav-menu a {
    color: #ffffff;
  }

  .nav-menu.active {
    display: flex;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand-copy {
    max-width: none;
  }

  .has-dropdown {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .has-dropdown:hover .mega-menu,
  .has-dropdown:focus-within .mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
  }

  .has-dropdown.dropdown-active .mega-menu {
    display: block;
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .mega-content {
    grid-template-columns: 1fr;
    padding: 10px 0 0 20px;
  }

  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 8px 0 0 20px;
  }

  .featured {
    display: none;
  }

  .nav-menu li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f9fafb;
  }

  .nav-btn {
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .arrow {
    margin-left: auto;
    padding-right: 20px;
  }

  .home-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-inline: 1rem;
    align-items: end;
  }

  .home-hero__content {
    width: min(100%, 560px);
    margin: 0 0 2rem;
    border-radius: 24px;
  }

  .home-hero__actions {
    width: 100%;
    max-width: 480px;
    margin-inline: 0;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .home-slider {
    gap: 10px;
  }

  .home-slide {
    flex-basis: 100%;
    min-height: 66vh;
  }

  .home-slide h3 {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .home-slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .subpage-hero {
    padding: 1.5rem 0 2rem;
  }

  .subpage-hero::after {
    width: 18rem;
    height: 18rem;
    right: -7rem;
  }

  .subpage-hero__inner {
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .subpage-hero h1 {
    max-width: 100%;
  }

  .subpage-hero__breadcrumbs {
    justify-content: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer__shell {
    width: calc(100% - 1.25rem);
    padding: 1.25rem 0;
  }

  .site-footer__logo {
    margin-bottom: 0;
  }

  .site-footer__brand-copy {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .site-footer__heading {
    margin-bottom: 0.7rem;
  }

  .footer-menu a {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .footer-contact-list {
    gap: 0.7rem;
  }

  .footer-contact-list li,
  .footer-contact-list a {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .contact-page-details {
    margin-top: 1rem;
    padding: 1.4rem;
  }

  .contact-page-details__intro {
    margin-bottom: 1.1rem;
  }

  .contact-page-details__intro h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .contact-page-form__layout,
  .contact-form-card__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card--cf7 .wpcf7-form {
    grid-template-columns: 1fr;
  }

  .contact-form-card--cf7 .wpcf7-form > p:nth-of-type(3),
  .contact-form-card--cf7 .wpcf7-form > p:nth-of-type(4),
  .contact-form-card--cf7 .wpcf7-form > p:nth-of-type(5),
  .contact-form-card--cf7 .wpcf7-form > .wpcf7-response-output {
    grid-column: auto;
  }

  .contact-form-card--cf7 .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }

  .contact-page-form__intro {
    padding: 1.35rem;
  }

  .contact-page-details__grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .contact-page-card {
    min-width: 0;
    padding: 1.15rem;
    border-radius: 20px;
  }

  .contact-page-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
  }

  .contact-page-list {
    gap: 0.8rem;
  }

  .contact-page-list span {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .contact-page-list a,
  .contact-page-list strong {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .contact-page-form {
    margin-top: 1.15rem;
  }

  .contact-page-form__intro h3 {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .contact-form-card {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .contact-form-field input,
  .contact-form-field textarea {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .contact-form-field textarea {
    min-height: 150px;
  }

  .contact-form-submit {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .contact-page-details {
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 0;
  }

  .contact-page-details__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .contact-page-details__intro h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

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

  .contact-page-card h3 {
    font-size: 0.98rem;
  }

  .contact-page-list a,
  .contact-page-list strong {
    font-size: 0.95rem;
  }

  .contact-form-card {
    padding: 1rem;
  }
}

@media (max-width: 1100px) {
  .home-hero__shell {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    min-height: auto;
    padding: 1.5rem 0 2rem;
    padding-inline: 1.5rem;
  }

  .home-hero__content {
    max-width: 680px;
    padding: 0;
  }

  .home-hero__content h1 {
    max-width: 12ch;
  }

  .home-hero__visual {
    justify-content: center;
  }

  .home-hero__image-wrap {
    margin-inline: auto;
    max-height: 520px;
  }

  .home-hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }
}

@media (max-width: 900px) {
  .navbar .container {
    height: 82px;
    padding-inline: 1rem;
    position: relative;
  }

  .logo img {
    max-height: 58px;
  }

  .menu-toggle {
    padding: 0.4rem;
  }

  .nav-menu {
    top: 82px;
    padding: 1rem;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
  }

  .home .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
  }

  .home .nav-menu a {
    color: #111827;
  }

  .home .nav-link::after {
    bottom: -0.45rem;
  }

  .nav-menu li {
    border-bottom-color: #e5e7eb;
  }

  .navbar__menu {
    display: block;
    position: static;
    width: auto;
  }

  .navbar__cta {
    display: none;
  }

  .nav-btn {
    width: 100%;
  }

  .home-hero {
    min-height: 0;
    padding-top: 82px;
  }

  .home-hero__shell {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }

  .home-hero__content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .home-hero__content h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .home-hero__actions {
    max-width: none;
  }

  .hero-btn {
    width: 100%;
  }

  .home-hero__image-wrap {
    width: 100%;
    height: auto;
  }

  .home-hero__image {
    height: auto;
  }
}

@media (max-width: 640px) {
  .home-hero__shell {
    padding-top: 1rem;
  }

  .home-hero__content p {
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .home-hero__image-wrap::after {
    left: 10%;
    right: 10%;
  }

  .home-hero__eyebrow {
    font-size: 0.78rem;
  }
}

/* Firehouse final overrides */
.home {
  background: #231417;
}

.card {
  background: linear-gradient(180deg, #150b0f 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  color: #decfc9;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6,
.card strong {
  color: #ffffff;
}

.card p,
.card li,
.card span {
  color: #decfc9;
}

.page-entry-content {
  color: #decfc9;
  font-size: 1rem;
  line-height: 1.8;
}

.page-entry-content > :first-child {
  margin-top: 0;
}

.page-entry-content > :last-child {
  margin-bottom: 0;
}

.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content strong {
  color: #ffffff;
}

.service-detail-page {
  padding: clamp(1.25rem, 2.8vw, 1.9rem);
}

.service-detail-page__content {
  display: grid;
  gap: 0.95rem;
}

.service-detail-page__content > h2,
.service-detail-page__content > h3 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.service-detail-page__content > p,
.service-detail-page__content > ul,
.service-detail-page__content > ol,
.service-detail-page__content > blockquote {
  margin: 0;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #1b0e12 0%, #231216 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.service-detail-page__content > ul,
.service-detail-page__content > ol {
  padding-left: 2.6rem;
}

.service-detail-page__content a {
  color: #ffffff;
  text-decoration-color: rgba(204, 25, 57, 0.56);
}

.contact-page-details {
  background: linear-gradient(180deg, #150b0f 0%, #1d0f13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.contact-page-details__eyebrow {
  color: #cc1939;
}

.contact-page-details__intro h2,
.contact-page-card h3,
.contact-page-form__intro h3,
.contact-page-list a,
.contact-page-list strong,
.contact-page-form__aside-item strong {
  color: #ffffff;
}

.contact-page-details__intro p:last-child,
.contact-page-list span,
.contact-page-form__intro p:last-of-type,
.contact-page-form__aside-item p {
  color: #decfc9;
}

.contact-page-card,
.contact-page-form__intro,
.contact-form-card {
  background: linear-gradient(180deg, #1b0e12 0%, #241318 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-page-card__icon,
.contact-page-form__aside-item .material-symbols-rounded {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(204, 25, 57, 0.22);
  color: #cc1939;
}

.contact-page-form__aside-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .navbar {
    z-index: 400;
  }

  .navbar .container,
  .home .navbar {
    justify-content: flex-start;
  }

  .home .navbar {
    z-index: 400;
  }

  .navbar .container,
  .home .navbar .container {
    position: relative;
    z-index: 410;
  }

  .logo {
    position: relative;
    z-index: 420;
    margin-right: auto;
  }

  .navbar__menu,
  .home .navbar__menu {
    display: block !important;
    position: static;
    width: auto;
    flex: 0 0 auto;
    margin: 0;
    z-index: auto;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    margin: 0;
    z-index: 450;
    background: transparent;
    border: 0;
    color: #f7f1ee;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .home .menu-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 460;
    pointer-events: auto;
  }

  .menu-toggle:focus,
  .menu-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(204, 25, 57, 0.35);
    border-radius: 10px;
  }

  .bar,
  .home .bar {
    background-color: #f7f1ee;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: rgba(21, 11, 15, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .home .nav-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    min-height: calc(100svh - 82px);
    z-index: 390;
    background: rgba(21, 11, 15, 0.98);
    backdrop-filter: blur(14px);
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .home .nav-menu.active {
    display: flex !important;
    position: fixed !important;
    top: 82px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    min-height: calc(100svh - 82px) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    background: rgba(21, 11, 15, 0.98) !important;
    backdrop-filter: blur(14px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    pointer-events: auto;
  }

  .home .nav-menu.active > li {
    display: block;
    width: 100%;
  }

  .home .nav-menu.active a,
  .home .nav-menu.active .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    color: #f7f1ee;
  }

  .nav-menu li,
  .nav-menu > li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a,
  .nav-menu .nav-link,
  .home .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    color: #f7f1ee;
  }

  .nav-menu .current-menu-item > .nav-link,
  .nav-menu .current_page_item > .nav-link {
    color: #cc1939;
  }

  .nav-link::after,
  .home .nav-link::after {
    bottom: 0.2rem;
  }

  .has-dropdown:hover .mega-menu,
  .has-dropdown:focus-within .mega-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
  }

  .has-dropdown.dropdown-active .mega-menu {
    display: block;
    position: static;
    width: 100%;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .has-dropdown > .mega-menu,
  .has-dropdown > .sub-menu {
    display: none;
  }

  .has-dropdown.dropdown-active > .mega-menu,
  .has-dropdown.dropdown-active > .sub-menu {
    display: block;
  }

  .nav-menu .mega-menu[hidden],
  .nav-menu .sub-menu[hidden] {
    display: none !important;
  }

  .nav-menu .sub-menu,
  .mega-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mega-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0 1rem;
  }

  .mega-content a,
  .nav-menu .sub-menu a {
    padding: 0.85rem 0;
    color: #decfc9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .featured {
    display: none;
  }

  .nav-menu__cta-item--mobile {
    display: block;
    padding-top: 1rem;
    border-bottom: 0 !important;
  }

  .nav-btn--mobile {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    width: 100%;
    padding: 1.05rem 1.4rem !important;
    text-align: center;
    border-radius: 18px;
  }

  .nav-menu__cta-item--mobile .nav-btn--mobile,
  .home .nav-menu.active .nav-menu__cta-item--mobile .nav-btn--mobile {
    justify-content: center !important;
    padding: 1.05rem 1.4rem !important;
    color: #ffffff !important;
  }

  .nav-menu__cta-item--mobile .nav-btn--mobile::after,
  .home .nav-menu.active .nav-menu__cta-item--mobile .nav-btn--mobile::after {
    flex: 0 0 auto;
  }

  .navbar__cta {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .contact-cta-section__reasons {
    gap: 1.1rem;
  }

  .contact-reason,
  .contact-reason + .contact-reason {
    border-top: 0 !important;
    border-left: 0 !important;
  }

  .site-footer__shell {
    width: calc(100% - 1rem);
    padding: 1rem 0 1.2rem;
  }

  .site-footer__brand,
  .footer-menu,
  .footer-contact-col {
    padding: 1.1rem 1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  }

  .site-footer__logo {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .site-footer__brand-copy {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .site-footer__heading {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .footer-menu ul,
  .footer-contact-list {
    gap: 0.55rem;
  }

  .footer-menu a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .footer-contact-list li {
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 640px) {
  .site-footer__shell {
    width: calc(100% - 0.8rem);
    padding: 0.85rem 0 1rem;
  }

  .site-footer__brand,
  .footer-menu,
  .footer-contact-col {
    padding: 0.95rem 0.9rem;
    border-radius: 18px;
  }

  .site-footer__logo img {
    max-height: 50px;
  }

  .site-footer__brand-copy {
    font-size: 0.92rem;
  }

  .footer-menu a,
  .footer-contact-list li {
    padding: 0.68rem 0.78rem;
  }
}
