/* ═══════════════════════════════════════════════
   JDSPACE INTERIORS — STYLESHEET
   Palette: Charcoal · Warm Stone · Ivory · Brass
   Type: Cormorant Garamond (display) · Inter (body)
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --charcoal:   #1c1c1c;
  --deep:       #111111;
  --stone:      #8a7a65;
  --stone-light:#c4b5a0;
  --ivory:      #f5f2ed;
  --ivory-dark: #ebe5dc;
  --white:      #ffffff;
  --text-main:  #2a2a2a;
  --text-muted: #7a7067;
  --brass:      #b8975a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1240px;
  --section-pad: 100px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: var(--section-pad) 0; }

/* ── SECTION TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--stone);
}

.section-subhead {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.section-header {
  margin-bottom: 60px;
}

.body-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 540px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

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

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition);
}

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

.btn-full { width: 100%; text-align: center; }

/* ═══════════════════════
   NAVIGATION
═══════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo-accent { color: var(--stone-light); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--stone-light);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 24px !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  color: var(--white) !important;
  transition: border-color var(--transition), background var(--transition) !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
}
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover { color: var(--stone-light); }

/* ═══════════════════════
   HERO
═══════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  background: var(--ivory);
}

.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(245,242,237,0.85) 0%,
    rgba(235,229,220,0.6) 60%,
    rgba(235,229,220,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 72px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #4a3728;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #4a3728;
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-headline em {
  font-style: italic;
  color: #4a3728;
}

.hero-body {
  font-size: 1rem;
  color: rgba(74,55,40,0.85);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74,55,40,0.5);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(74,55,40,0.45), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════
   INTRO STRIP
═══════════════════════ */
.intro-strip {
  background: var(--charcoal);
  padding: 36px 32px;
}

.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ═══════════════════════
   ABOUT
═══════════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-img-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-dark);
}

/* Image placeholder style */
.about-img-frame img,
.service-img,
.portfolio-img,
.hero-bg,
.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--ivory-dark);
  /* Placeholder appearance when image is missing */
}

/* Styled placeholder for missing images */
img[src^="YOUR_"] {
  visibility: hidden;
  background: var(--ivory-dark);
  position: relative;
}

.about-img {
  transition: transform 0.8s ease;
}
.about-img-frame:hover .about-img { transform: scale(1.03); }

.about-accent-block {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--charcoal);
  padding: 28px 32px;
  max-width: 260px;
}

.accent-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}

.accent-quote em { font-style: italic; color: var(--stone-light); }

.about-text-col { padding-top: 16px; }

.about-text-col .btn-primary { margin-top: 8px; }

/* ═══════════════════════
   SERVICES
═══════════════════════ */
.services { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(28,28,28,0.1);
}

.service-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--ivory-dark);
  position: relative;
}

.service-img { transition: transform 0.7s ease; }
.service-card:hover .service-img { transform: scale(1.04); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.2), transparent);
  pointer-events: none;
}

.service-body { padding: 28px 32px 32px; }

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════
   PORTFOLIO
═══════════════════════ */
.portfolio { background: var(--white); }

.portfolio .section-header { padding: 0 32px; max-width: var(--max-w); margin: 0 auto 48px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  cursor: pointer;
}

.portfolio-item.portfolio-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.portfolio-img { transition: transform 0.7s ease; }
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }

.portfolio-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.portfolio-item:hover .portfolio-info { opacity: 1; transform: translateY(0); }

.portfolio-type {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 6px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}

/* ═══════════════════════
   PROCESS
═══════════════════════ */
.process { background: var(--ivory); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid var(--ivory-dark);
}

.process-step:last-child { border-bottom: 1px solid var(--ivory-dark); }

.process-connector { display: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone-light);
  line-height: 1;
  min-width: 72px;
  padding-top: 4px;
  font-style: italic;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════
   TESTIMONIALS
═══════════════════════ */
.testimonials { background: var(--charcoal); }

.testimonials .section-eyebrow { color: var(--stone-light); }
.testimonials .section-heading { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px;
}

.testimonial-stars {
  font-size: 13px;
  color: var(--brass);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  overflow: hidden;
}

.author-name {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}

.author-label {
  font-size: 0.78rem;
  color: var(--stone-light);
}

/* ═══════════════════════
   CTA BANNER
═══════════════════════ */
.cta-banner {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
}

.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.55);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-heading em { font-style: italic; color: var(--stone-light); }

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-list { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ivory-dark);
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; color: var(--stone); }

.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 5px;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color var(--transition);
}

a.contact-value:hover { color: var(--charcoal); }

/* Form */
.contact-form-wrap {
  background: var(--ivory);
  padding: 44px 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--stone);
}

.form-group textarea { resize: vertical; }

.contact-form .btn-primary { margin-top: 4px; }
.contact-form .btn-primary:disabled {
  cursor: default;
}

/* ═══════════════════════
   FOOTER
═══════════════════════ */
.footer { background: var(--deep); padding: 72px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: var(--stone-light); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-uen {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 20px;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a, .footer-contact a, .footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  transition: color var(--transition);
}

.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

/* ═══════════════════════
   SCROLL ANIMATIONS
═══════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.services-grid .service-card:nth-child(2)  { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3)  { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4)  { transition-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }
.portfolio-grid .portfolio-item:nth-child(2) { transition-delay: 0.08s; }
.portfolio-grid .portfolio-item:nth-child(3) { transition-delay: 0.16s; }

/* ═══════════════════════
   IMAGE PLACEHOLDERS
   (visible when YOUR_ images not replaced)
═══════════════════════ */
.service-img-wrap::before,
.about-img-frame::before,
.portfolio-item::before,
.hero-image-wrap::before,
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      var(--ivory-dark) 0px,
      var(--ivory-dark) 1px,
      transparent 1px,
      transparent 20px
    ),
    var(--ivory);
  z-index: 0;
  pointer-events: none;
}

.service-img-wrap > *,
.about-img-frame > *,
.portfolio-item > *,
.hero-image-wrap > *,
.cta-banner-bg > * { position: relative; z-index: 1; }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-col { max-width: 540px; }
  .about-accent-block { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }

  .strip-inner { justify-content: center; gap: 16px 32px; }
  .strip-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item.portfolio-large { grid-column: span 1; aspect-ratio: 4/3; }

  .process-step { flex-direction: column; gap: 12px; }
  .step-number { font-size: 2.2rem; min-width: auto; }

  .about-accent-block { position: static; margin-top: 24px; max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: 72px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-header { padding: 0 20px; }
  .cta-banner { padding: 80px 20px; }
  .section-heading { font-size: 2rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
  .fade-up { transition: none; opacity: 1; transform: none; }
  .service-img, .portfolio-img, .about-img { transition: none; }
}
