/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --dark:          #111A19;
  --dark-green:    #284239;
  --sage:          #809076;
  --sand:          #A99170;
  --light-sand:    #c7b18f;
  --light:         #EAECE9;

  --font-heading:  'Protest Guerrilla', cursive;
  --font-body:     'Inter', sans-serif;
}

/* ─── Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  line-height: 1.65;
  margin: 0;
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-heading);
}

h2 {
  font-family: var(--font-heading);
  font-size: 35px;
}

h4 {
  font-size: 20px;
  font-weight: 900;
}

h5 {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.section-subhead-sand {
  color: var(--sand);
}

.section-subhead-sage {
  color: var(--sage);
}

p {
  color: var(--light);
  font-size: 15px;
}


a { color: var(--sand); text-decoration: none; }
a:hover { color: var(--light-sand); }

/* ════════════════════════════════════════════════════
   ACCENT BUTTON
════════════════════════════════════════════════════ */
.btn-accent {
  background: transparent;
  border: none;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  padding: 12px 28px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
  isolation: isolate;
}

.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sand);
  clip-path: polygon(0% 0%, calc(100% - 15px) 0%, 100% 15px, 100% 100%, 15px 100%, 0% calc(100% - 15px));
  z-index: -1;
  transition: background 0.2s;
}

.btn-accent::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--dark);
  clip-path: polygon(0% 0%, calc(100% - 15px) 0%, 100% 15px, 100% 100%, 15px 100%, 0% calc(100% - 15px));
  z-index: -1;
  mix-blend-mode: destination-out;
  transition: opacity 0.2s;
}

.btn-accent:hover { color: var(--dark); }
.btn-accent:hover::after { opacity: 0; }

.btn-accent-2 { color: var(--dark); }
.btn-accent-2::before { background: var(--sage); }
.btn-accent-2::after { opacity: 0; }
.btn-accent-2:hover { color: var(--light); }
.btn-accent-2:hover::before { background: var(--dark-green); }

.btn-accent-3 { color: var(--dark); }
.btn-accent-3::before { background: var(--sand); }
.btn-accent-3::after { opacity: 0; }
.btn-accent-3:hover::before { background: var(--light-sand); }

/* Sage filled → sage outline on hover */
.btn-accent-4 { color: var(--dark); }
.btn-accent-4::before { background: var(--sage); }
.btn-accent-4::after { opacity: 0; }
.btn-accent-4:hover { color: var(--sage); }
.btn-accent-4:hover::after { opacity: 1; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.gvfx-nav {
  background: rgba(17, 26, 25, 0.40);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 14px 0;
}

.gvfx-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--light) !important;
  letter-spacing: 0.04em;
  padding: 6px 14px !important;
  transition: color 0.2s;
}
.gvfx-nav .nav-link:hover,
.gvfx-nav .nav-link.active { color: var(--sage) !important; }

.gvfx-nav .navbar-brand img {
  height: 52px;
  transition: transform 0.2s ease;
}

.gvfx-nav .navbar-brand:hover img {
  transform: scale(1.1);
}

.gvfx-nav .navbar-toggler:focus,
.gvfx-nav .navbar-toggler:active { outline: none; box-shadow: none; }

.gvfx-hamburger {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 26px;
}

.gvfx-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--light);
  border-radius: 1px;
  transition: transform 0.4s ease;
  transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .gvfx-hamburger span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .gvfx-hamburger span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--dark-green);
  padding: 52px 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.5);
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.gvfx-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-green);
  padding: 64px 0 36px;
}

.about-footer {
  border-top: none;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 1);
}

.footer-brand-logo {
  display: block;
  max-width: 250px;
  height: auto;
}

.footer-copyright {
  font-size: 12px;
  color: var(--light);
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 5px; }

.footer-links a {
  font-family: var(--font-heading);
  color: var(--light);
  font-size: 18px;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage); }

.footer-contact-item {
  font-size: 13.5px;
  color: var(--light);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-wrap: break-word;
  min-width: 0;
}

.footer-contact-item span {
  min-width: 0;
}
.footer-contact-item i { color: var(--light); margin-top: 0; flex-shrink: 0; }
.footer-contact-item a { color: var(--light); text-decoration: none; }
.footer-contact-item a:hover { color: var(--light); text-decoration: underline; }

.social-links { display: flex; gap: 14px; margin-top: 6px; }
.social-links a {
  font-size: 16px;
  color: var(--light);
}


/* ════════════════════════════════════════════════════
   HOME PAGE – HERO
════════════════════════════════════════════════════ */
.hero {
  min-height: 75vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-image: url("../images/hero-poster.png");
  background-size: cover;
  background-position: center;
}

#vimeohero {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

#vimeohero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 26, 25, 0.2) 0%,
    rgba(17, 26, 25, 0.65) 100%
  );
  z-index: 1;
}

#vimeohero iframe {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-title {
  font-size: 4.1rem;
  padding-bottom: 0;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 7px;

}

/* ════════════════════════════════════════════════════
   HOME PAGE – GVFX INTRO
════════════════════════════════════════════════════ */
.strike-section {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.5);
}

.about-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════
   HOME PAGE – WHY GUERRILLA
════════════════════════════════════════════════════ */
.why-section {
  background-image: url("../images/concrete-texture.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../images/GVFX-Logo-Icon-Dark-Cutout.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 92%;
  pointer-events: none;
  z-index: 0;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  border-radius: 4px;
  padding: 36px 28px;
  height: 100%;
  text-align: left;
}

.feature-icon {
  font-size: 35px;
  color: var(--light);
  margin-bottom: 16px;
  display: block;
}

/* ════════════════════════════════════════════════════
   HOME PAGE – RECENT WORK
════════════════════════════════════════════════════ */
.work-section {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 1);
}

.work-section h2 {
  margin-bottom: 48px;
}

.work-card-cta {
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.work-cta-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
}

.work-cta-label i {
  font-size: 30px;
  line-height: 3px;
  transition: transform 0.2s ease;
  transform-origin: bottom center;
}

.work-card-cta:hover .work-cta-text {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.work-card {
  overflow: hidden;
}

.work-poster {
  width: 100%;
  aspect-ratio: 27/40;
  overflow: hidden;
}

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

.work-card-body {
  padding: 10px 4px;
}

/* ════════════════════════════════════════════════════
   HOME PAGE – CAROUSEL
════════════════════════════════════════════════════ */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-track .work-card {
  flex: 0 0 calc(25% - 15px);
}

.carousel-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 52px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.carousel-btn:hover { transform: scale(1.2); }

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════
   HOME PAGE – TESTIMONIALS
════════════════════════════════════════════════════ */
.testimonials-section {
  background-image: url("../images/concrete-texture.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-image: url('../images/dog-tag-shape.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 5% 10% 5% 15%;
  width: 100%;
  height: 100%;
  min-height: 350px;
  position: relative;
  text-align: left;
}

.testimonial-card h4 {
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 100;
  line-height: 18px;
}

.testimonial-author {
  font-size: 14px;
  color: var(--light);
  font-weight: 300;
  text-align: right;
}

.testimonial-author strong {
  color: var(--light);
  display: block;
  font-weight: 600;
  font-size: 16px;
}

/* ════════════════════════════════════════════════════
   HOME PAGE – CLIENTS
════════════════════════════════════════════════════ */
.clients-section {
  background-image: url("../images/concrete-texture.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.client-logo img {
  max-width: 70%;
  height: auto;
  transition: transform 0.2s ease-in-out;
}

.client-logo:hover img {
  transform: scale(1.08);
}


/* ════════════════════════════════════════════════════
   HOME PAGE – MEDIA QUERIES
════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .testimonial-card {
    padding: 5% 8% 5% 12%;
    min-height: 0;
  }
  .testimonial-card p { margin-bottom: 0; }
}

@media (max-width: 991px) {
  .gvfx-nav .navbar-nav {
    text-align: right;
    padding-top: 12px;
    padding-bottom: 8px;
    padding-left: 16px;
  }

  .testimonial-card {
    padding: 5% 15% 5% 20%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero { min-height: 55vh; padding-bottom: 50px; }
  .hero-title { font-size: 2.4rem; }
  .hero-tagline { font-size: 1.1rem; line-height: 1.4; }

  .strike-section, .why-section, .work-section,
  .clients-section, .testimonials-section { padding: 64px 0; }

  .why-section, .testimonials-section, .clients-section {
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .why-section::before { display: none; }

  .feature-card { padding: 12px 16px; }
  .feature-card h4 { font-size: 15px; }
  .feature-card p { font-size: 13px; }

  .testimonial-card {
    padding: 5% 10% 5% 13%;
  }

  .carousel-btn { font-size: 32px; }

  .cta-banner h2 { font-size: 30px; }

  .cta-banner .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem !important;
  }

  .why-section .btn-accent { font-size: 13px; padding: 10px 16px; }

  .footer-nav-col,
  .footer-nav-col .footer-col-title,
  .footer-nav-col .footer-links,
  .footer-nav-col .footer-links li {
    text-align: right;
  }
  .footer-nav-col { padding-right: 18px; }

  .gvfx-footer .col-12 {
    padding-bottom: 20px;
  }

  .footer-contact-col { padding-right: 28px !important; }
}


/* ════════════════════════════════════════════════════
   ABOUT PAGE – HERO
════════════════════════════════════════════════════ */
.about-hero {
  min-height: 30vh;
  background-image: url("../images/about-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 52px;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero h1,
.work-hero h1,
.services-hero h1,
.contact-hero h1 {
  font-size: 3.5rem;
  color: var(--light);
  margin: 0;
}

/* ════════════════════════════════════════════════════
   ABOUT PAGE – CONTENT
════════════════════════════════════════════════════ */
.about-content-section {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.5);
}

.text-sand { color: var(--sand); }
.text-sage { color: var(--sage); }

.about-content-section p {
  font-weight: 100;
  font-size: 14px;
}

/* ════════════════════════════════════════════════════
   ABOUT PAGE – DEMO REEL
════════════════════════════════════════════════════ */
.demo-reel-card {
  background: #000 url("../images/hero-poster.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 360px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.demo-reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.demo-reel-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 1;
  padding: 32px;
  text-align: center;
}

.demo-reel-overlay h3 {
  font-family: var(--font-heading);
  color: var(--light);
  font-size: 1.7rem;
  margin: 0;
}

.demo-reel-play-btn {
  width: 72px;
  height: 72px;
  transition: transform 0.2s ease;
}

.demo-reel-card:hover .demo-reel-play-btn {
  transform: scale(1.12);
}

/* Lightbox */
.reel-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.reel-lightbox.active {
  display: flex;
}

.reel-lightbox-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
}

.reel-lightbox-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.reel-lightbox-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  min-width: 0;
  min-height: 0;
  border: none;
  display: block;
}

.reel-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--light);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.reel-lightbox-close:hover {
  color: var(--sand);
}

/* ════════════════════════════════════════════════════
   ABOUT PAGE – TEAM SECTION
════════════════════════════════════════════════════ */
.team-section {
  background-image: url("../images/concrete-texture.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../images/GVFX-Logo-Icon-Dark-Cutout.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 92%;
  pointer-events: none;
  z-index: 0;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.team-card {
  text-align: center;
  padding: 0 8px;
  cursor: pointer;
}

.team-photo-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 0 28px;
}

.team-photo-wrap img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  display: block;
}

.team-card h4 {
  font-size: 23px;
  font-weight: 900;
  color: var(--light);
  margin-top: 20px;
}

.team-role {
  font-style: italic;
  font-weight: 700;
  color: var(--sage);
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 15px;
  display: block;
}

.team-card p {
  text-align: left;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.65;
  margin-bottom: 8px;
}

.bio-extra-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.bio-extra-wrap > * {
  overflow: hidden;
}

.team-card.expanded .bio-extra-wrap {
  grid-template-rows: 1fr;
}

.team-expand {
  color: var(--light);
  font-size: 50px;
  display: block;
  margin-top: -20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
  transform: scaleX(1.7);
}

.team-card.expanded .team-expand {
  transform: rotate(180deg) scaleX(1.7);
}

/* ════════════════════════════════════════════════════
   ABOUT PAGE – MEDIA QUERIES
════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .about-content-section,
  .team-section,
  .projects-section { padding: 48px 0; }
}

@media (max-width: 768px) {
  .about-hero { min-height: 22vh; padding-bottom: 24px; }
  .work-hero { min-height: 22vh; padding-bottom: 8px; }
  .about-hero h1,
  .work-hero h1,
  .contact-hero h1 { font-size: 2rem; }

  .about-content-section,
  .team-section { padding: 28px 0; }

  .projects-section { padding: 8px 0 28px; }

  .projects-section .work-card-body h4 { font-size: 17px; }

  .projects-section .row {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
  }

  .team-section {
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .team-section::before { display: none; }

  .team-section .row {
    --bs-gutter-x: 0.4rem;
    --bs-gutter-y: 0.4rem;
  }
}


/* ════════════════════════════════════════════════════
   SERVICES PAGE – HERO
════════════════════════════════════════════════════ */
.services-hero {
  min-height: 30vh;
  background-image: url("../images/services-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 52px;
}


/* ════════════════════════════════════════════════════
   SERVICES PAGE – INTRO
════════════════════════════════════════════════════ */
.services-intro {
  background: var(--dark);
  padding: 28px 0 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.services-intro h2 {
  font-size: 28px;
  margin-bottom: 0;
}


/* ════════════════════════════════════════════════════
   SERVICES PAGE – PHASE SECTIONS
════════════════════════════════════════════════════ */
.services-phase-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.services-intro + .services-phase-section {
  padding-top: 28px;
}

.services-phase-section + .services-phase-section {
  padding-top: 0;
}

.service-phase-header {
  margin-bottom: 24px;
}

.service-phase-label {
  display: inline-block;
  max-width: 100%;
  background: var(--dark-green);
  color: var(--light);
  font-size: 26px;
  padding: 10px 200px 10px 20px;
  margin-bottom: 10px;
  clip-path: polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 0% 100%);
}

.service-phase-tagline {
  font-style: italic;
  color: var(--light);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
}

.service-phase-intro {
  color: var(--light);
  font-size: 16px;
  font-weight: 300;
  opacity: 0.65;
  margin-bottom: 0;
}

/* ════════════════════════════════════════════════════
   SERVICE IMAGE CARDS
════════════════════════════════════════════════════ */
.service-img-card {
  position: relative;
}

.service-img-card > img {
  width: 100%;
  height: auto;
  display: block;
}

.service-img-card-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px 24px 32px;
}

.service-img-card-body h5 {
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 10px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 16px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.35;
  padding: 4px 0 4px 20px;
  position: relative;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--light);
}

/* ════════════════════════════════════════════════════
   SERVICES PAGE – MEDIA QUERIES
════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .services-intro { padding: 20px 0 0; }
  .services-phase-section { padding: 60px 0; }
  .services-intro + .services-phase-section { padding-top: 24px; }
  .services-phase-section + .services-phase-section { padding-top: 0; }
  .service-img-card-body h5 { font-size: 17px; }
  .service-list li { font-size: 14px; }
}

@media (max-width: 768px) {
  .services-hero { min-height: 22vh; padding-bottom: 24px; }
  .services-hero h1 { font-size: 2rem; }
  .services-intro { padding: 20px 0 0; }
  .services-intro h2 { font-size: 25px; }
  .services-phase-section { padding: 40px 0; }
  .services-intro + .services-phase-section { padding-top: 36px; }
  .services-phase-section + .services-phase-section { padding-top: 56px; }
  .service-phase-label { padding: 8px 60px 8px 16px; font-size: 22px; }
  .service-phase-tagline { font-size: 15px; }
}


/* ════════════════════════════════════════════════════
   WORK PAGE – HERO
════════════════════════════════════════════════════ */
.work-hero {
  min-height: 30vh;
  background-image: url("../images/work-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 52px;
}

/* ════════════════════════════════════════════════════
   WORK PAGE – PROJECTS SECTION
════════════════════════════════════════════════════ */
.projects-section {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  z-index: 10;
}

.projects-section .work-card-body {
  text-align: center;
}


/* ════════════════════════════════════════════════════
   CONTACT PAGE – HERO
════════════════════════════════════════════════════ */
.contact-hero {
  min-height: 30vh;
  background-image: url("../images/contact-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 52px;
}

/* ════════════════════════════════════════════════════
   CONTACT PAGE – CONTACT SECTION
════════════════════════════════════════════════════ */
.contact-section {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
  margin-bottom: 28px;
}

.contact-section p {
  font-weight: 100;
  font-size: 14px;
}

.contact-form-heading {
  font-size: 22px;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 20px;
}

.form-field-wrap {
  background: var(--light);
  padding: 2px;
  margin-bottom: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  display: block;
  width: 100%;
  background: var(--dark);
  border: none;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--light);
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
  display: block;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.contact-form .btn-accent {
  padding-left: 48px;
  padding-right: 48px;
}


/* ════════════════════════════════════════════════════
   CONTACT PAGE – MEDIA QUERIES
════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .contact-section { padding: 48px 0; }
}

@media (max-width: 768px) {
  .contact-hero { min-height: 22vh; padding-bottom: 24px; }
  .contact-section { padding: 28px 0; }
}
