/* ============================================================
     GHL CONTAINER OVERRIDE
  ============================================================ */
#custom-code-RCqKf5VrHm,
.custom-code-container {
  margin-inline: -12px !important;
  margin-block: -40px !important;
}
.c-section > .inner,
.inner {
  max-width: none !important;
}
@media (max-width: 768px) {
  #custom-code-RCqKf5VrHm,
  .custom-code-container {
    margin-inline: -22px !important;
    margin-block: -40px !important;
    padding-inline: 7px !important;
  }
}
@media (max-width: 480px) {
  #custom-code-RCqKf5VrHm,
  .custom-code-container {
    margin-inline: -22px !important;
    margin-block: -40px !important;
    padding-inline: 7px !important;
  }
}

/* ============================================================
     DESIGN TOKENS
  ============================================================ */
:root {
  --clr-forest: #1e3a2f;
  --clr-forest-deep: #101f19;
  --clr-sage: #3d6b56;
  --clr-sage-light: #7ba898;
  --clr-cream: #f8f4ef;
  --clr-warm-white: #fdfaf7;
  --clr-gold: #c4975a;
  --clr-gold-light: #e8c99a;
  --clr-text-dark: #1a2b22;
  --clr-text-mid: #4a5e55;
  --clr-text-light: #8a9e96;
  --clr-border: rgba(30, 58, 47, 0.1);
  --clr-img-fallback-a: #2d5444;
  --clr-img-fallback-b: #4a8068;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(30, 58, 47, 0.06);
  --shadow-md: 0 8px 40px rgba(30, 58, 47, 0.1);
  --shadow-lg: 0 20px 60px rgba(30, 58, 47, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

/* ============================================================
     RESET & BASE
  ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--clr-text-dark);
  background: var(--clr-warm-white);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}

/* ============================================================
     UTILITY: SCROLL FADE-IN
  ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 {
  transition-delay: 0.1s;
}
.fade-in-delay-2 {
  transition-delay: 0.2s;
}
.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
     SHARED TYPOGRAPHY
  ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--clr-sage);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clr-gold);
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--clr-forest);
  line-height: 1.15;
}
.section-heading em {
  font-style: italic;
  color: var(--clr-sage);
}
.section-body {
  font-size: 0.975rem;
  color: var(--clr-text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
     BUTTONS
  ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--clr-gold);
  color: white;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 4px 16px rgba(196, 151, 90, 0.3);
}
.btn-gold:hover {
  background: #b5884a;
  box-shadow: 0 8px 24px rgba(196, 151, 90, 0.35);
}
.btn-sage {
  background: var(--clr-sage);
  color: white;
  padding: 0.75rem 1.75rem;
}
.btn-sage:hover {
  background: var(--clr-forest);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  padding: 0.75rem 1.75rem;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: white;
}
.btn-hero-lg {
  font-size: 0.85rem;
  padding: 0.9rem 2.1rem;
}

/* ============================================================
     MOBILE MENU
  ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 16, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-close svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.mobile-menu a:hover {
  color: var(--clr-gold-light);
}
.mobile-menu-phone {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: var(--clr-gold-light) !important;
}

/* ============================================================
     NAVIGATION
  ============================================================ */
.vhs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.3s ease;
}
.vhs-nav.is-scrolled {
  background: rgba(16, 31, 25, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.02em;
}
.nav-logo span {
  color: var(--clr-gold-light);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--clr-gold-light);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.nav-phone:hover {
  color: var(--clr-gold-light);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
     HERO
  ============================================================ */
.vhs-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1765896387377-e293914d1e69?w=2000&q=85&auto=format&fit=crop");
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8, 22, 14, 0.72) 0%,
    rgba(20, 47, 33, 0.58) 45%,
    rgba(8, 22, 14, 0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--clr-gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroReveal 1s ease 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroReveal 1s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--clr-gold-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.75rem;
  font-weight: 300;
  opacity: 0;
  animation: heroReveal 1s ease 0.7s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 1s ease 0.9s forwards;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 1s ease 1.2s forwards;
}
.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.38);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scrollBounce 2.2s ease-in-out 2.5s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ============================================================
     TRUST STRIP
  ============================================================ */
.vhs-trust {
  background: var(--clr-forest);
  padding: 3rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 151, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.trust-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ============================================================
     SERVICES — 2×2 grid
  ============================================================ */
.vhs-services {
  background: var(--clr-cream);
  padding: 7rem 3rem;
}
.services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(
    135deg,
    var(--clr-img-fallback-a) 0%,
    var(--clr-img-fallback-b) 100%
  );
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img {
  transform: scale(1.05);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 26, 18, 0.5) 0%,
    transparent 55%
  );
}
.service-body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-cream);
  border-radius: 100px;
  padding: 0.35rem 0.8rem 0.35rem 0.5rem;
  margin-bottom: 1rem;
  width: fit-content;
}
.service-icon-pill svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon-pill span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-sage);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--clr-forest);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex: 1;
}

/* ============================================================
     ABOUT SECTION
  ============================================================ */
.vhs-about {
  background: var(--clr-warm-white);
  padding: 8rem 3rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--clr-img-fallback-a) 0%,
    var(--clr-img-fallback-b) 100%
  );
}
.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 5px solid white;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #3d6b56 0%, #7ba898 100%);
}
.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--clr-forest);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 40px rgba(30, 58, 47, 0.3);
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--clr-gold-light);
}
.about-badge-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.about-content .section-heading {
  margin-bottom: 1.5rem;
}
.about-content .section-body {
  margin-bottom: 1.1rem;
}
.about-divider {
  width: 100%;
  height: 1px;
  background: var(--clr-border);
  margin: 2.5rem 0;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-value-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-value-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-value-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-forest);
  margin-bottom: 0.15rem;
}

/* ============================================================
     OUR TEAM
  ============================================================ */
.vhs-team {
  padding: 7rem 3rem;
  background: var(--clr-cream);
  scroll-margin-top: 80px;
}
.team-header {
  max-width: 650px;
  margin: 0 auto 4rem;
  text-align: center;
}
.team-header .section-heading {
  margin: 0.75rem 0 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  overflow: hidden;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--clr-sage-light), var(--clr-sage));
}
.team-portrait::before,
.team-portrait::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.team-portrait::before {
  width: 230px;
  height: 230px;
  top: -75px;
  right: -55px;
}
.team-portrait::after {
  width: 175px;
  height: 175px;
  bottom: -65px;
  left: -45px;
}
.team-portrait--gold {
  background: linear-gradient(145deg, #d5b17d, #8f6736);
}
.team-portrait--forest {
  background: linear-gradient(145deg, #446f5d, var(--clr-forest-deep));
}
.team-portrait span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.team-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 370px;
  object-fit: cover;
}
.team-card:first-child .team-portrait img {
  object-position: center 22%;
}
.team-card:nth-child(3) .team-portrait img {
  object-position: center 20%;
}
.team-card-body {
  padding: 1.6rem 1.5rem 1.8rem;
  text-align: center;
}
.team-card-body h3 {
  margin-bottom: 0.35rem;
  color: var(--clr-forest);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}
.team-card-body p {
  color: var(--clr-sage);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-value-desc {
  font-size: 0.775rem;
  color: var(--clr-text-light);
  line-height: 1.5;
}

/* ============================================================
     CONTACT SECTION
  ============================================================ */
.vhs-contact {
  background: var(--clr-cream);
  padding: 8rem 3rem;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}
.contact-left .section-heading {
  margin-bottom: 1rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon-wrap {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--clr-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.contact-info-text a,
.contact-info-text span {
  font-size: 0.925rem;
  color: var(--clr-forest);
  font-weight: 400;
  line-height: 1.5;
}
.contact-info-text a:hover {
  color: var(--clr-sage);
}
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--clr-forest);
  margin-bottom: 0.4rem;
}
.form-card-sub {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--clr-text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e5ede8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--clr-text-dark);
  background: var(--clr-warm-white);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-light);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-sage);
  box-shadow: 0 0 0 3px rgba(61, 107, 86, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--clr-forest);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    background var(--transition),
    transform var(--transition);
  margin-top: 0.5rem;
}
.form-submit svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-submit:hover {
  background: var(--clr-sage);
  transform: translateY(-1px);
}
.form-legal {
  text-align: center;
  font-size: 0.72rem;
  color: var(--clr-text-light);
  margin-top: 0.75rem;
}
.form-legal a {
  color: var(--clr-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
     FOOTER
  ============================================================ */
.vhs-footer {
  background: var(--clr-forest-deep);
  padding: 5.5rem 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span {
  color: var(--clr-gold);
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.75rem;
}
.footer-cqc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
}
.footer-cqc-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-cqc-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.footer-cqc-text strong {
  color: rgba(255, 255, 255, 0.8);
  display: block;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-contact-item a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--clr-gold);
  background: rgba(196, 151, 90, 0.1);
}
.footer-social svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.45);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social a:hover svg {
  stroke: var(--clr-gold);
}
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
}
.footer-back-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-back-top:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-back-top svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
     RESPONSIVE
  ============================================================ */
@media (max-width: 1024px) {
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .about-inner {
    gap: 3.5rem;
  }
  .contact-inner {
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .vhs-nav {
    padding: 1rem 1.25rem;
  }
  .nav-links,
  .nav-right {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .vhs-trust,
  .vhs-services,
  .vhs-about,
  .vhs-team,
  .vhs-contact {
    padding: 4rem 1.25rem;
  }
  .vhs-footer {
    padding: 3.5rem 1.25rem 1.75rem;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
  .team-portrait {
    min-height: 330px;
  }
  .team-portrait img {
    height: 330px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-img-accent,
  .about-badge {
    display: none;
  }
  .about-img-main {
    height: 320px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-values {
    gap: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .trust-inner {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}
