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

    :root {
      --brown:       #7C5C3E;
      --brown-dark:  #5A3E28;
      --brown-light: #A8845E;
      --tan:         #C4A882;
      --sage:        #8A9E88;
      --dark:        #1E1510;
      --mid:         #7A6552;
      --light:       #F5F0E8;
      --cream:       #FAF7F3;
      --white:       #FFFFFF;
      --border:      #E2D8CC;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 56px; height: 210px;
      background: transparent;
      transition: background 0.4s, box-shadow 0.4s;
    }

    nav.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 16px rgba(30,21,16,0.08);
    }

    .nav-logo-left img {
      width: 190px; height: 190px; object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter 0.4s;
    }

    nav.scrolled .nav-logo-left img {
      filter: none;
    }

    .nav-links {
      list-style: none; display: flex; gap: 40px; align-items: center;
    }

    .nav-links a {
      text-decoration: none; font-size: 12px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.88); transition: color 0.2s;
    }

    nav.scrolled .nav-links a { color: var(--mid); }

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

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

    .nav-cta {
      background: var(--brown) !important; color: white !important;
      padding: 11px 24px; border-radius: 1px;
      font-size: 11px !important; letter-spacing: 0.12em !important;
    }

    .nav-cta:hover { background: var(--brown-dark) !important; }

    nav.scrolled .nav-cta { color: white !important; }

    /* ── HERO ── */
    .hero {
      position: relative; height: 100vh; min-height: 700px; overflow: hidden;
    }

    .hero-slides { position: absolute; inset: 0; }

    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.4s ease-in-out;
    }

    .hero-slide.active { opacity: 1; }

    .hero-slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        110deg,
        rgba(20,12,5,0.70) 0%,
        rgba(20,12,5,0.30) 60%,
        rgba(20,12,5,0.10) 100%
      );
    }

    .hero-content {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      padding: 0 80px 80px;
      max-width: 860px;
    }

    .hero-location {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--tan);
      margin-bottom: 20px;
    }

    .hero-location::before {
      content: ''; width: 28px; height: 1px; background: var(--tan);
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(52px, 7vw, 96px);
      font-weight: 900; color: white;
      line-height: 1.02; letter-spacing: -0.01em;
      margin-bottom: 32px;
    }

    .hero-title em { font-style: italic; color: var(--tan); }

    .hero-actions {
      display: flex; gap: 16px; align-items: center;
    }

    .btn-primary {
      display: inline-block; background: var(--brown); color: white;
      text-decoration: none; padding: 16px 40px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; transition: background 0.2s;
    }

    .btn-primary:hover { background: var(--brown-dark); }

    .btn-outline {
      display: inline-block; color: white; text-decoration: none;
      padding: 16px 40px; font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.45);
      transition: all 0.2s;
    }

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

    .hero-counter {
      position: absolute; right: 80px; bottom: 80px; z-index: 3;
      display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
    }

    .hero-dot-row { display: flex; gap: 6px; }

    .hero-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.2s;
    }

    .hero-dot.active { background: var(--tan); }

    .hero-slide-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
    }

    /* ── TICKER ── */
    .ticker {
      overflow: hidden; white-space: nowrap;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      background: var(--cream);
    }

    .ticker.dark {
      background: var(--brown-dark);
      border-color: rgba(255,255,255,0.1);
    }

    .ticker-track {
      display: inline-flex; gap: 0;
      animation: ticker-scroll 28s linear infinite;
    }

    .ticker-track:hover { animation-play-state: paused; }

    .ticker-item {
      display: inline-flex; align-items: center; gap: 0;
      font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--mid);
      padding: 0 32px;
    }

    .ticker.dark .ticker-item { color: rgba(255,255,255,0.5); }

    .ticker-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--brown); margin-left: 32px;
      flex-shrink: 0;
    }

    .ticker.dark .ticker-dot { background: var(--tan); }

    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTIONS SHARED ── */
    .section-label {
      font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--brown);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4.5vw, 60px);
      font-weight: 900; color: var(--dark);
      line-height: 1.08; letter-spacing: -0.01em;
    }

    .section-title em { font-style: italic; color: var(--brown); }

    .section-body {
      font-size: 16px; line-height: 1.75; color: var(--mid);
    }

    /* ── ABOUT ── */
    #about {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 640px;
    }

    .about-image {
      position: relative; overflow: hidden;
    }

    .about-image img {
      width: 100%; height: 100%; object-fit: cover;
      image-orientation: from-image;
      transition: transform 0.8s ease;
    }

    .about-image:hover img { transform: scale(1.04); }

    .about-badge {
      position: absolute; bottom: 48px; right: -1px;
      background: var(--brown); color: white;
      padding: 28px 36px; text-align: center;
    }

    .about-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 52px; font-weight: 900; line-height: 1;
    }

    .about-badge-label {
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      opacity: 0.8; margin-top: 6px; line-height: 1.5;
    }

    .about-content {
      background: var(--cream);
      padding: 80px 72px; display: flex;
      flex-direction: column; justify-content: center; gap: 28px;
    }

    .about-pillars {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      margin-top: 8px;
    }

    .pillar {
      padding: 24px; background: white;
      border: 1px solid var(--border);
      border-left: 3px solid var(--brown);
    }

    .pillar h4 {
      font-size: 14px; font-weight: 600; color: var(--dark);
      margin-bottom: 6px;
    }

    .pillar p {
      font-size: 13px; color: var(--mid); line-height: 1.6;
    }

    /* ── SERVICES ── */
    #services { padding: 100px 72px; background: var(--white); }

    .services-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: end; margin-bottom: 56px;
    }

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

    .service-card {
      position: relative; overflow: hidden; cursor: pointer;
    }

    .service-card-img {
      height: 360px; overflow: hidden;
    }

    .service-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      image-orientation: from-image;
      transition: transform 0.6s ease;
      display: block;
    }

    .service-card:hover .service-card-img img { transform: scale(1.06); }

    .service-card-body {
      padding: 24px 24px 28px;
      background: var(--cream);
      border-bottom: 3px solid transparent;
      transition: border-color 0.3s;
    }

    .service-card:hover .service-card-body {
      border-color: var(--brown);
    }

    .service-card-tag {
      font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--brown); margin-bottom: 8px;
    }

    .service-card-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700; color: var(--dark);
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 13px; color: var(--mid); line-height: 1.65;
    }

    /* ── PROJECTS ── */
    #projects { padding: 100px 72px; background: var(--cream); }

    .projects-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 48px;
    }

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

    .project-card {
      position: relative; cursor: pointer; overflow: hidden;
    }

    .project-img {
      height: 320px; overflow: hidden;
    }

    .project-img img {
      width: 100%; height: 100%; object-fit: cover;
      image-orientation: from-image;
      transition: transform 0.6s ease; display: block;
    }

    .project-card:hover .project-img img { transform: scale(1.05); }

    .project-status {
      position: absolute; top: 20px; left: 20px;
      font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; padding: 5px 12px;
      background: var(--brown); color: white;
    }

    .project-status.active {
      background: var(--sage);
    }

    .project-body {
      padding: 20px 20px 24px; background: white;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s;
    }

    .project-card:hover .project-body { border-color: var(--brown); }

    .project-location {
      font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--mid); margin-bottom: 6px;
    }

    .project-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700; color: var(--dark);
      margin-bottom: 8px;
    }

    .project-desc {
      font-size: 13px; color: var(--mid); line-height: 1.6;
    }

    .link-arrow {
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; font-size: 12px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown);
      transition: gap 0.2s;
    }

    .link-arrow:hover { gap: 14px; }

    /* ── TESTIMONIALS ── */
    #testimonials { padding: 100px 72px; background: var(--white); }

    .testimonials-header { margin-bottom: 56px; }

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

    .tcard {
      padding: 40px 36px;
      border: 1px solid var(--border);
      background: var(--cream);
      position: relative;
    }

    .tcard::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 80px; font-weight: 900;
      color: var(--border);
      position: absolute; top: 12px; left: 28px;
      line-height: 1;
    }

    .tcard-stars {
      color: var(--brown); font-size: 14px;
      letter-spacing: 2px; margin-bottom: 20px;
    }

    .tcard-quote {
      font-size: 15px; line-height: 1.75;
      color: var(--dark); font-style: italic;
      margin-bottom: 28px; position: relative; z-index: 1;
    }

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

    .tcard-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--brown);
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-weight: 700; color: white;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .tcard-name { font-size: 14px; font-weight: 600; color: var(--dark); }
    .tcard-role { font-size: 12px; color: var(--mid); margin-top: 2px; }

    /* ── PROCESS ── */
    #process { padding: 100px 72px; background: var(--cream); }

    .process-header { margin-bottom: 64px; }

    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute; top: 28px;
      left: calc(12.5% + 28px); right: calc(12.5% + 28px);
      height: 1px; background: var(--border);
    }

    .process-step { padding: 0 28px; text-align: center; }

    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      border: 2px solid var(--brown); color: var(--brown);
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      background: var(--cream);
      transition: all 0.3s;
    }

    .process-step:hover .step-num {
      background: var(--brown); color: white;
    }

    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 19px; font-weight: 700; color: var(--dark);
      margin-bottom: 12px;
    }

    .step-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

    /* ── CONTACT ── */
    #contact {
      display: grid; grid-template-columns: 1fr 1fr; padding: 0;
    }

    .contact-left {
      background: var(--brown-dark); color: white;
      padding: 100px 72px;
      display: flex; flex-direction: column; justify-content: center; gap: 28px;
    }

    .contact-left .section-label { color: var(--tan); }
    .contact-left .section-title { color: white; }
    .contact-left .section-body { color: rgba(255,255,255,0.65); }

    .contact-details { display: flex; flex-direction: column; gap: 24px; }

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

    .contact-icon-box {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--tan); flex-shrink: 0;
    }

    .contact-row-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
      margin-bottom: 3px;
    }

    .contact-row-value {
      font-size: 16px; font-weight: 500; color: white;
    }

    .contact-row-value a { color: white; text-decoration: none; }

    .contact-right {
      background: var(--cream); padding: 100px 72px;
    }

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

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

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

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

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: white; border: 1px solid var(--border);
      color: var(--dark); padding: 13px 16px;
      font-size: 14px; font-family: 'Inter', sans-serif;
      border-radius: 0; outline: none; transition: border-color 0.2s;
    }

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

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

    .btn-submit {
      background: var(--brown); color: white; border: none;
      padding: 16px 40px; font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      cursor: pointer; font-family: 'Inter', sans-serif;
      transition: background 0.2s; align-self: flex-start;
    }

    .btn-submit:hover { background: var(--brown-dark); }

    /* ── VIEW GALLERY BUTTON ── */
    .project-gallery-btn {
      display: inline-flex; align-items: center; gap: 7px;
      margin-top: 14px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--brown);
      background: none; border: none; padding: 0;
      cursor: pointer; font-family: 'Inter', sans-serif;
      transition: gap 0.2s, color 0.2s;
    }
    .project-gallery-btn:hover { gap: 11px; color: var(--brown-dark); }
    .project-gallery-btn svg { flex-shrink: 0; }

    /* ── LIGHTBOX ── */
    .lb-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(15,10,6,0.96);
      flex-direction: column;
      align-items: center; justify-content: center;
    }
    .lb-overlay.open { display: flex; }

    .lb-close {
      position: absolute; top: 20px; right: 24px;
      background: none; border: none; color: rgba(255,255,255,0.6);
      font-size: 32px; cursor: pointer; line-height: 1;
      transition: color 0.2s;
    }
    .lb-close:hover { color: white; }

    .lb-header {
      width: 100%; padding: 0 72px;
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .lb-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700; color: white;
    }
    .lb-counter {
      font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.45); text-transform: uppercase;
    }

    .lb-stage {
      position: relative; width: 100%;
      flex: 1; display: flex; align-items: center; justify-content: center;
      padding: 0 80px; overflow: hidden;
    }
    .lb-img {
      max-width: 100%; max-height: calc(100vh - 220px);
      object-fit: contain;
      image-orientation: from-image;
      display: block;
      transition: opacity 0.2s;
    }
    .lb-img.fading { opacity: 0; }

    .lb-nav-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      color: white; width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 20px;
      transition: background 0.2s;
    }
    .lb-nav-btn:hover { background: rgba(255,255,255,0.18); }
    .lb-nav-btn.prev { left: 16px; }
    .lb-nav-btn.next { right: 16px; }
    .lb-nav-btn:disabled { opacity: 0.2; cursor: default; }

    .lb-thumbs {
      display: flex; gap: 8px; padding: 16px 72px 20px;
      overflow-x: auto; width: 100%;
      scrollbar-width: none;
    }
    .lb-thumbs::-webkit-scrollbar { display: none; }
    .lb-thumb {
      width: 64px; height: 48px; flex-shrink: 0;
      object-fit: cover; image-orientation: from-image;
      cursor: pointer; opacity: 0.45;
      border: 2px solid transparent;
      transition: opacity 0.2s, border-color 0.2s;
    }
    .lb-thumb.active { opacity: 1; border-color: var(--tan); }
    .lb-thumb:hover { opacity: 0.8; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); padding: 64px 72px 36px;
    }

    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px;
    }

    .footer-brand-name span { color: var(--tan); }

    .footer-logo-img {
      width: 190px; height: 190px; object-fit: contain;
      border-radius: 50%; margin-bottom: 16px; display: block;
    }

    .footer-tagline {
      font-size: 13px; color: rgba(255,255,255,0.35);
      line-height: 1.7; max-width: 240px;
    }

    .footer-col h4 {
      font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--tan); margin-bottom: 20px;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

    .footer-col ul a {
      text-decoration: none; font-size: 13px;
      color: rgba(255,255,255,0.45); transition: color 0.2s;
    }

    .footer-col ul a:hover { color: var(--tan); }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px;
    }

    .footer-copy, .footer-lic {
      font-size: 12px; color: rgba(255,255,255,0.2);
    }

    /* ══════════════════════════════════════
       MOBILE RESPONSIVE STYLES
    ══════════════════════════════════════ */

    /* Hamburger button */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px; background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: white; transition: background 0.3s;
    }
    nav.scrolled .nav-hamburger span { background: var(--dark); }
    .nav-mobile-menu {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--dark); z-index: 200; flex-direction: column;
      align-items: center; justify-content: center; gap: 40px;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      color: white; text-decoration: none; font-size: 22px;
      font-weight: 500; letter-spacing: 0.05em;
    }
    .nav-mobile-menu .nav-mobile-close {
      position: absolute; top: 28px; right: 28px;
      font-size: 32px; color: white; cursor: pointer; background: none; border: none;
    }
    .nav-mobile-menu .nav-cta {
      background: var(--brown); color: white; padding: 14px 32px; border-radius: 2px;
    }

    @media (max-width: 768px) {
      /* NAV */
      nav { padding: 0 20px; height: 70px; }
      .nav-logo-left img { width: 60px; height: 60px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }

      /* HERO */
      .hero { height: 90vh; min-height: 500px; }
      .hero-content { padding: 0 24px 48px; }
      .hero-location { font-size: 11px; }
      .hero-title { font-size: clamp(32px, 9vw, 52px); line-height: 1.1; }
      .hero-actions { flex-direction: column; gap: 12px; align-items: flex-start; }
      .hero-actions .btn, .hero-actions .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
      .hero-dots { bottom: 16px; right: 16px; }

      /* TICKER */
      .ticker { display: none; }

      /* ABOUT */
      #about { grid-template-columns: 1fr; }
      .about-media { height: 260px; }
      .about-content { padding: 40px 24px; }
      .about-pillars { grid-template-columns: 1fr; gap: 12px; }
      .stat-strip { flex-wrap: wrap; gap: 0; }
      .stat-item { width: 50%; padding: 24px 16px; }

      /* SERVICES */
      #services { padding: 60px 24px; }
      .section-header { margin-bottom: 32px; }
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card-img { height: 220px; }

      /* PROJECTS */
      #projects { padding: 60px 24px; }
      .projects-grid { grid-template-columns: 1fr; gap: 16px; }
      .project-img { height: 220px; }
      .project-img img { height: 220px; }

      /* CONTACT */
      #contact { grid-template-columns: 1fr; }
      .contact-left { padding: 48px 24px; }
      .contact-right { padding: 40px 24px; }
      .form-row { flex-direction: column; gap: 0; }

      /* FOOTER */
      footer { padding: 48px 24px 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

      /* LIGHTBOX */
      .modal-prev { left: 8px; }
      .modal-next { right: 8px; }
      .modal-img { max-height: 70vh; }

      /* SECTION TITLES */
      .section-title { font-size: clamp(26px, 7vw, 40px); }
      .hero-title em { display: inline; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 30px; }
      .projects-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .stat-item { width: 100%; }
    }