/* ========================================
   Josh Isaacs Productions — Main Stylesheet
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:        #111111;
  --charcoal:     #3d3d3d;
  --light:        #ebebeb;
  --white:        #ffffff;
  --text-light:   #333333;
  --muted-light:  #555555;
  --text-dark:    #e8e8e8;
  --muted-dark:   #bbbbbb;
  --accent:       #c8a96e;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
}

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

/* ========================================
   NAVIGATION
   ======================================== */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 86px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo { grid-column: 2; }
.nav-logo img { height: 70px; width: auto; }

.nav-links {
  grid-column: 1;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

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

.nav-links > li > a,
.nav-links > li > span {
  display: block;
  padding: 0 1rem;
  height: 86px;
  line-height: 86px;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > span:hover { color: var(--white); }
.nav-links > li > a.active {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 86px; left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
  list-style: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.dropdown li:last-child { border-bottom: none; }
.dropdown li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* Mobile toggle — sits in col 3 */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Two-column split: video left, text right */
.hero-split {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 4rem;
  align-items: center;
}

.hero-video-col .embed-wrapper {
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.hero-text-col h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  color: var(--white);
}

.hero-text-col p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
}
.btn:hover { background: var(--white); color: var(--black); }

.btn-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-dark:hover { background: var(--charcoal); color: var(--white); }

/* ========================================
   PAGE HEADER (interior pages)
   ======================================== */

.page-header {
  position: relative;
  height: 55vh; min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 86px;
}

.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
}

.page-header-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem;
}

.page-header-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

.page-header-content .page-subtitle {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ========================================
   SECTION BASES
   ======================================== */

.section-light  { background: var(--light);    padding: 5rem 2rem; }
.section-dark   { background: var(--charcoal); padding: 5rem 2rem; }
.section-black  { background: var(--black);    padding: 5rem 2rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   INTRO TEXT (large centered, in dark section)
   ======================================== */

.intro-section {
  background: var(--charcoal);
  padding: 5rem 2rem;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.9;
  color: var(--text-dark);
}

.intro-text a { color: var(--muted-dark); text-decoration: underline; }

/* ========================================
   TWO-COLUMN CONTENT SECTIONS
   ======================================== */

.content-section {
  padding: 5rem 2rem;
}

.content-section.light { background: var(--light); }
.content-section.dark  { background: var(--charcoal); }

.content-cols {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* col-text typography — light section */
.content-section.light .col-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.content-section.light .col-text p {
  color: var(--muted-light);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.content-section.light .col-text ul {
  color: var(--muted-light);
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
  line-height: 2;
}
.content-section.light .col-text a {
  color: var(--muted-light);
  text-decoration: underline;
}
.content-section.light .col-text a:hover { color: var(--text-light); }

/* col-text typography — dark section */
.content-section.dark .col-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.content-section.dark .col-text p {
  color: var(--muted-dark);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.content-section.dark .col-text ul {
  color: var(--muted-dark);
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
  line-height: 2;
}
.content-section.dark .col-text a {
  color: var(--muted-dark);
  text-decoration: underline;
}
.content-section.dark .col-text a:hover { color: var(--white); }

/* col-media */
.col-media img {
  width: 100%;
  height: auto;
}

/* ========================================
   EMBED MEDIA
   ======================================== */

.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.soundcloud-wrapper { height: 300px; }
.soundcloud-wrapper iframe { width: 100%; height: 100%; border: 0; }

.soundcloud-wrapper.short { height: 166px; }

.mixcloud-wrapper { height: 60px; }
.mixcloud-wrapper iframe { width: 100%; height: 100%; border: 0; }

.megaphone-wrapper { height: 200px; }
.megaphone-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Audio sample rows */
.audio-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}
.audio-row-dark {
  background: #222;
}
.audio-row-light {
  background: #d8d8d8;
}
.audio-play {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.audio-play svg { margin-left: 2px; }
.audio-info { flex: 1; }
.audio-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.audio-title-light { color: var(--text-light); }
.audio-sub {
  font-size: 0.72rem;
  color: var(--muted-dark);
  margin-top: 0.15rem;
}
.audio-sub-light { color: var(--muted-light); }

/* ========================================
   SERVICES GRID (home page)
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,0.12);
}

.services-row2 {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
  min-height: 160px;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(255,255,255,0.05); color: var(--white); }

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ========================================
   TESTIMONIALS — carousel
   ======================================== */

.testimonials-section {
  background: var(--charcoal);
  padding: 5rem 2rem;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.testimonials-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem 0.5rem 2rem;
  text-align: center;
  flex-shrink: 0;
}

.testimonial-slide blockquote {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-style: italic;
  color: var(--muted-dark);
  line-height: 1.95;
  margin: 0 auto 1.75rem;
  max-width: 820px;
}

.testimonial-slide .attr {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

.carousel-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.2s;
  line-height: 1;
}
.carousel-btn:hover { border-color: var(--white); color: var(--white); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dot {
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.dot.active { background: var(--white); }

/* ========================================
   REEL VIDEO SECTION (home page)
   ======================================== */

/* reel-section removed — video now lives in hero-split */
.reel-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ========================================
   TRUSTED BY
   ======================================== */

.trusted-by {
  background: var(--black);
  padding: 4rem 2rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.trusted-by-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.brand-logo {
  height: 70px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.25s;
  display: block;
}
.brand-logo:hover { opacity: 1; }

/* Fallback text style if no logo image */
.brand-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  white-space: nowrap;
}
.brand-name:hover { color: rgba(255,255,255,0.9); }

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-header {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 86px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.about-header-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.about-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.65);
  padding: 1.75rem 1.5rem;
}

.about-quote p {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.about-bio-text h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-bio-text p {
  color: var(--muted-dark);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.about-bio-text a { color: var(--muted-dark); text-decoration: underline; }
.about-bio-text a:hover { color: var(--white); }

.services-pipe-links {
  margin: 2.5rem 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-pipe-links a {
  color: var(--muted-dark);
  text-decoration: underline;
  white-space: nowrap;
}
.services-pipe-links a:hover { color: var(--white); }
.services-pipe-links span { color: rgba(255,255,255,0.3); margin: 0 0.5rem; }

.upwork-block {
  margin-top: 2.5rem;
}
.upwork-block p {
  font-size: 0.88rem;
  color: var(--muted-dark);
  margin-bottom: 1rem;
  font-style: italic;
}
.upwork-block img {
  height: 60px;
  width: auto;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 86px;
  overflow: hidden;
}

.contact-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.contact-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-info p {
  color: var(--muted-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-social a:hover { color: var(--white); }

/* Form */
form .row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

form .field { margin-bottom: 1rem; }

form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.4rem;
}

form input,
form select,
form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

form input:focus,
form select:focus,
form textarea:focus { border-color: rgba(255,255,255,0.5); }

form textarea { min-height: 150px; resize: vertical; }

form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.06);
  cursor: pointer;
}

form select option { background: #222; color: var(--white); }

form button[type=submit] {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
form button[type=submit]:hover { background: var(--white); color: var(--black); }

/* ========================================
   AUDIO DEMOS
   ======================================== */

.audio-demos {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.audio-demo-item label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.4rem;
}
.content-section.dark .audio-demo-item label { color: var(--muted-dark); }
.audio-demo-item audio {
  width: 100%;
  height: 36px;
}

/* ========================================
   DEMO REQUEST BOX
   ======================================== */

.demo-request {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem 2rem;
  text-align: center;
}
.demo-request p {
  font-size: 0.9rem;
  color: var(--muted-dark);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.demo-request-light {
  border: 1px solid rgba(0,0,0,0.12);
  padding: 2rem;
  text-align: center;
  background: rgba(0,0,0,0.04);
}
.demo-request-light p {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ========================================
   SECTION HEADINGS (standalone)
   ======================================== */

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-dark .section-title,
.testimonials-section .section-title { color: var(--white); }
.section-light .section-title { color: var(--text-light); }
.section-black .section-title { color: var(--white); }

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-logo img {
  height: 34px; width: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}
.footer-nav li a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 86px 0 0 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    padding-bottom: 2rem;
    grid-column: unset;
  }
  .nav-links.open { display: flex; }

  .nav-inner { grid-template-columns: 1fr auto 1fr; }

  .nav-links > li > a,
  .nav-links > li > span {
    height: auto; line-height: 1;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .nav-toggle { display: flex; }

  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: none;
    list-style: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding-left: 3rem; }

  /* Layouts */
  .content-cols,
  .about-header-content,
  .contact-content { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero-content { padding: 2rem; }
  .hero-content h1 { font-size: 1.8rem; }

  .about-photo-wrap img { height: 300px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-carousel { gap: 0.5rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; }

  .page-header { height: 45vh; min-height: 260px; }

  .content-section, .intro-section,
  .section-light, .section-dark, .section-black { padding: 3.5rem 1.5rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 1.5rem; }
  .contact-content { padding: 3rem 1.5rem; }
  form .row-two { grid-template-columns: 1fr; }
}
