/* ============================================================
   Delaney Window Cleaning, LLC — Styles
   Mobile-first  |  CSS Custom Properties  |  clamp() typography
   ============================================================ */

/* ----- Custom Properties ----- */
:root {
  --color-bg:          #FAFAF7;
  --color-bg-alt:      #F3F0EB;
  --color-surface:     #FFFFFF;
  --color-text:        #1C1917;
  --color-text-muted:  #78716C;
  --color-text-light:  #A8A29E;
  --color-accent:      #B49A6E;
  --color-accent-hover:#9A7F54;
  --color-border:      rgba(28, 25, 23, 0.08);
  --color-white:       #FFFFFF;
  --color-overlay:     rgba(28, 25, 23, 0.58);

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);

  --max-width:     1280px;
  --header-height: 72px;
  --transition:    180ms ease;
}

/* ----- Reset ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 200;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

p {
  max-width: 68ch;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__brand {
  min-width: 0;
  flex: 1;
  margin-right: var(--space-sm);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
  max-width: 100%;
}

.header__logo img {
  flex-shrink: 0;
  border-radius: var(--radius-full);
}

.header__name {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2.8vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header:not(.header--scrolled) .header__name {
  color: var(--color-white);
}

/* Desktop nav hidden on mobile */
.header__nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(250,250,247,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-lg) var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.header__nav.open {
  display: flex;
}

.header__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.header__link:hover {
  color: var(--color-accent);
}

.header__cta {
  display: none;
}

.header__cta-mobile {
  margin-top: var(--space-sm);
  text-align: center;
}

/* Hamburger */
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-sm);
  z-index: 110;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.header--scrolled .header__toggle-bar {
  background: var(--color-text);
}

/* Hamburger is white over hero when not scrolled */
.header:not(.header--scrolled) .header__toggle-bar {
  background: var(--color-white);
}

.header:not(.header--scrolled) .header__logo img {
  filter: brightness(1.1);
}

.header__toggle.active .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.active .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle.active .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: var(--space-2xl);
}

.hero__content {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.hero__card {
  display: none;
}

.hero__title {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.1875rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-sep {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
}

.hero__card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.hero__card-lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: var(--space-md);
}

.hero__card-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.hero__card-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.hero__card-list li:last-child {
  margin-bottom: 0;
}

.hero__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
}

.hero__card-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color var(--transition);
}

.hero__card-phone:hover {
  color: var(--color-accent-hover);
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__title {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   CAROUSEL (mobile scroll-snap)
   ============================================================ */
.carousel__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--space-md);
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 88%;
  scroll-snap-align: start;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  max-width: 100%;
  padding: 0 var(--space-sm);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-text-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  min-width: 8px;
  min-height: 8px;
}

.carousel__dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  height: 100%;
  transition: box-shadow 200ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.about__content .section__title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.about__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.about__content p:last-of-type {
  margin-bottom: var(--space-xl);
}

.about__stats {
  display: flex;
  gap: var(--space-xl);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
}

.about__stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================================
   WORK CARDS
   ============================================================ */
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  background: var(--color-bg-alt);
}

.work-card__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.work-card:hover .work-card__img {
  transform: scale(1.03);
}

/* ============================================================
   REELS (local MP4)
   ============================================================ */
.reel-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0C0A09;
  border: 1px solid var(--color-border);
}

.reel-card__video {
  display: block;
  width: 100%;
  max-height: min(70vh, 640px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact__info .section__title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.contact__intro {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.contact__detail:hover {
  box-shadow: var(--shadow-md);
}

.contact__detail > div:not(.contact__detail-icon) {
  flex: 1;
  min-width: 0;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(180,154,110,0.1);
  border-radius: var(--radius-md);
  color: var(--color-accent);
}

.contact__detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 2px;
}

.contact__detail a,
.contact__detail span {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  word-break: break-word;
}

.contact__detail a:hover {
  color: var(--color-accent);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px var(--space-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.contact__form .form-group input,
.contact__form .form-group textarea {
  background: var(--color-bg);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(180,154,110,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a1a;
  color: #a0a0a0;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  max-width: 22rem;
}

.footer__col--brand {
  gap: var(--space-md);
}

.footer__brand-mark {
  display: inline-block;
  line-height: 0;
}

.footer__logo {
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

.footer__about {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #a0a0a0;
  max-width: 22rem;
  margin: 0 auto;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__list a {
  color: #a0a0a0;
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__list a:hover {
  color: var(--color-accent);
}

.footer__list--contact {
  gap: var(--space-xs);
}

.footer__list--contact a {
  word-break: break-word;
  text-align: center;
}

.footer__contact-line {
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TABLET — min-width: 768px
   ============================================================ */
@media (min-width: 768px) {

  .container {
    padding: 0 var(--space-xl);
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
  }

  .hero__content {
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
    max-width: 36rem;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .hero__card {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 100%;
    max-width: 17.5rem;
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  /* Carousel → 2-col grid */
  .carousel__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .carousel__item {
    flex: none;
  }

  .carousel__dots {
    display: none;
  }

  /* About — side by side */
  .about__inner {
    flex-direction: row;
    align-items: center;
  }

  .about__content {
    flex: 1 1 55%;
  }

  .about__image {
    flex: 1 1 45%;
  }

  .about__image img {
    height: 480px;
  }

  /* Contact — side by side */
  .contact__inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact__info {
    flex: 1 1 45%;
  }

  .contact__form {
    flex: 1 1 55%;
  }

}

/* ============================================================
   DESKTOP — min-width: 1024px
   ============================================================ */
@media (min-width: 1024px) {

  /* Footer — four columns */
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    text-align: left;
    gap: var(--space-xl);
  }

  .footer__col {
    align-items: flex-start;
    text-align: left;
    max-width: none;
  }

  .footer__col--brand {
    align-items: flex-start;
  }

  .footer__about {
    margin: 0;
    max-width: none;
  }

  .footer__list {
    align-items: flex-start;
  }

  .footer__list--contact a {
    text-align: left;
    justify-content: flex-start;
  }

  .footer__contact-line {
    justify-content: flex-start;
    text-align: left;
  }

  .footer__bottom {
    text-align: left;
  }

  /* Header — full desktop nav */
  .header__brand {
    flex: 0 0 auto;
    margin-right: 0;
  }

  .header__name {
    display: none;
  }

  .header__nav {
    display: flex;
    position: static;
    background: none;
    backdrop-filter: none;
    padding: 0;
    flex-direction: row;
    gap: var(--space-xl);
    border: none;
    box-shadow: none;
  }

  .header__link {
    font-size: 0.875rem;
    padding: 0;
    min-height: auto;
    color: var(--color-text);
  }

  .header:not(.header--scrolled) .header__link {
    color: rgba(255,255,255,0.85);
  }

  .header:not(.header--scrolled) .header__link:hover {
    color: var(--color-white);
  }

  .header__cta-mobile {
    display: none;
  }

  .header__cta {
    display: inline-flex;
  }

  .header:not(.header--scrolled) .header__cta {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--color-white);
  }

  .header:not(.header--scrolled) .header__cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
  }

  .header__toggle {
    display: none;
  }

  /* Services → 4-col */
  .services .carousel__track {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Works → 3-col */
  .works__track {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Reels → 3-col */
  .reels__track {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About image taller */
  .about__image img {
    height: 560px;
  }

  .about__inner {
    gap: var(--space-3xl);
  }

  .contact__inner {
    gap: var(--space-3xl);
  }

  /* Work card images taller on desktop */
  .work-card__img {
    height: 380px;
  }
}

/* ============================================================
   LARGE DESKTOP — min-width: 1280px
   ============================================================ */
@media (min-width: 1280px) {

  .container {
    padding: 0 var(--space-2xl);
  }

  .section {
    padding: var(--space-4xl) 0;
  }
}
