  :root {
    --brand: #aa3b04;
    --brand-light: #c4521a;
    --brand-pale: #f9ede6;
    --cream: #faf8f5;
    --warm-white: #ffffff;
    --charcoal: #1a1614;
    --mid: #6b5f58;
    --light: #d4c8c0;
    --border: #ede7e1;
    --shadow: 0 4px 32px rgba(170,59,4,0.08);
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

  /* TYPOGRAPHY */
  .serif { font-family: 'Cormorant Garamond', serif; }
  h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
  h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; letter-spacing: -0.02em; }
  h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
  h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.3; }

  /* LAYOUT */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

  /* NAVIGATION */
  
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--warm-white); text-decoration: none; letter-spacing: 0.05em; transition: color 0.3s; }
  nav.scrolled .nav-logo { color: var(--charcoal); }
  .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; position: fixed; top: 0; right: 2rem; bottom: unset; width: auto; height: auto; padding: 1.5rem 0; z-index: 1001; background: transparent; box-shadow: none; transform: none; visibility: visible; transition: padding 0.4s ease; margin: 0; }
  .nav-links a { text-decoration: none; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); transition: all 0.3s; }
  nav.scrolled ~ .nav-links a { color: var(--mid) ; }
  .drawer-close { display: none; }
.drawer-backdrop { display: none; }
  .nav-cta { background: var(--brand); color: white !important; padding: 0.6rem 1.4rem; border-radius: 2px; transition: background 0.3s !important; }
  .nav-cta:hover { background: var(--brand-light) !important; color: white !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1010; }
  .nav-hamburger span { width: 24px; height: 1.5px; background: white; display: block; transition: all 0.3s; }
  nav.scrolled .nav-hamburger span { background: var(--charcoal); }

  .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
  /* PAGE SECTIONS */
  section { scroll-margin-top: 80px; }

  /* HERO */
  #home {
    height: 100vh; min-height: 700px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(20,12,8,0.55) 0%, rgba(20,12,8,0.25) 50%, rgba(20,12,8,0.65) 100%),
      url('img/img1.jpg') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
  }
  #home:hover .hero-bg { transform: scale(1.0); }
  .hero-content { position: relative; z-index: 2; text-align: center; color: white; padding: 2rem; max-width: 900px; animation: heroFadeUp 1.2s ease both; }
  .hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
  .hero-title { color: white; margin-bottom: 1.5rem; }
  .hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn { display: inline-block; padding: 0.85rem 2.2rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; font-weight: 400; transition: all 0.3s; cursor: pointer; border: none; }
  .btn-primary { background: var(--brand); color: white; }
  .btn-primary:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(170,59,4,0.35); }
  .btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.6); }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
  .btn-dark { background: #aa3b04; color: white; }
  .btn-dark:hover { background: #2d2420; transform: translateY(-2px); }
  .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: scrollBounce 2s ease infinite; }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); }

  /* SECTION HEADERS */
  .section-header { text-align: center; margin-bottom: 4rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brand); font-weight: 500; display: block; margin-bottom: 1rem; }
  .section-header h2 { margin-bottom: 1rem; }
  .section-header p { color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.8; font-size: 1rem; }
  .divider { width: 40px; height: 1px; background: var(--brand); margin: 1rem auto; }

  /* ABOUT PREVIEW */
  #about-preview { padding: 7rem 0; background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
  .about-image-wrap { position: relative; }
  .about-img-main { width: 100%; height: 550px; object-fit: cover; display: block; }
  .about-img-accent {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 45%; height: 45%;
    object-fit: cover;
    border: 6px solid var(--warm-white);
  }
  .about-badge {
    position: absolute; top: 2rem; left: -2rem;
    background: var(--brand); color: white;
    padding: 1.5rem 1.8rem; text-align: center;
  }
  .about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; display: block; }
  .about-badge .label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
  .about-text .eyebrow { text-align: left; display: block; }
  .about-text h2 { margin-bottom: 1.5rem; }
  .about-text p { color: var(--mid); line-height: 1.9; margin-bottom: 1.5rem; font-size: 0.97rem; }
  .stats-row { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
  .stat { text-align: center; }
  .stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--brand); display: block; }
  .stat .lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 0.25rem; }

  /* PROJECTS */
  
  .project-card:hover .project-overlay { opacity: 1; }
  .project-info { color: white; }
  .project-cat { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
  .project-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
  .project-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .filter-btn { padding: 0.4rem 1.2rem; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--border); background: white; cursor: pointer; border-radius: 2px; transition: all 0.3s; color: var(--mid); }
  .filter-btn.active, .filter-btn:hover { background: var(--brand); border-color: var(--brand); color: white; }

  /* SERVICES */
  #services { padding: 7rem 0; background: var(--charcoal); }
  #services .eyebrow { color: #d4836a; }
  #services .section-header h2, #services .section-header p { color: rgba(255,255,255,0.9); }
  #services .section-header p { color: rgba(255,255,255,0.55); }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
  .service-card { background: var(--charcoal); padding: 3rem; transition: background 0.3s; position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; inset: 0; background: var(--brand); opacity: 0; transition: opacity 0.4s; }
  .service-card:hover::before { opacity: 0.08; }
  .service-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(255,255,255,0.08); font-weight: 300; position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
  .service-icon { width: 48px; height: 48px; background: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.2rem; }
  .service-card h3 { color: white; margin-bottom: 1rem; font-size: 1.5rem; }
  .service-card p { color: rgba(255,255,255,0.55); line-height: 1.8; font-size: 0.9rem; margin-bottom: 1.5rem; }
  .service-link { color: #d4836a; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
  .service-link:hover { gap: 0.8rem; }

  
  /* TESTIMONIALS */
  #testimonials { padding: 7rem 0; background: var(--cream); }
  .testimonials-wrap { position: relative; }
  .testimonial-slider { overflow: hidden; }
  .testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .testimonial-slide { min-width: 100%; padding: 0 2rem; }
  .testimonial-inner { max-width: 800px; margin: 0 auto; text-align: center; }
  .stars { color: var(--brand); font-size: 1rem; margin-bottom: 2rem; letter-spacing: 0.1em; }
  .testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; font-style: italic; line-height: 1.6; color: var(--charcoal); margin-bottom: 2rem; }
  .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
  .author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--brand-pale); overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--brand); font-weight: 500; }
  .author-info .name { font-weight: 500; font-size: 0.9rem; }
  .author-info .role { font-size: 0.78rem; color: var(--mid); margin-top: 2px; }
  .slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
  .dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--brand); background: transparent; cursor: pointer; transition: all 0.3s; }
  .dot.active { background: var(--brand); }
  .slider-btns { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
  .slider-btn { width: 44px; height: 44px; border: 1px solid var(--border); background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: all 0.3s; font-size: 1rem; color: var(--mid); }
  .slider-btn:hover { border-color: var(--brand); color: var(--brand); }

  /* BLOG */
  #blog { padding: 7rem 0; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .blog-card { cursor: pointer; }
  .blog-img { overflow: hidden; aspect-ratio: 3/2; margin-bottom: 1.5rem; }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
  .blog-card:hover .blog-img img { transform: scale(1.05); }
  .blog-cat { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.75rem; display: block; }
  .blog-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; transition: color 0.3s; }
  .blog-card:hover h3 { color: var(--brand); }
  .blog-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; margin-bottom: 1rem; }
  .blog-date { font-size: 0.75rem; color: var(--light); }
/* ─── BLOG ─── */
#blog { background: var(--off-white); padding: 7rem 4rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
}
.blog-card { background: var(--white); overflow: hidden; cursor: pointer; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-6px); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { height: 100%; transition: transform 0.6s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 400;
  margin-bottom: 0.6rem;
  display: block;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: 400;
}
.blog-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { font-size: 11px; color: var(--warm-gray); letter-spacing: 0.08em; }

  /* BEFORE / AFTER SLIDER */
  #before-after { padding: 7rem 0; background: var(--cream); }
  .ba-container { position: relative; max-width: 900px; margin: 0 auto; user-select: none; border-radius: 2px; overflow: hidden; }
  .ba-images { position: relative; height: 520px; overflow: hidden; }
  .ba-before, .ba-after { position: absolute; inset: 0; }
  .ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.0s; }
  .ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: white; cursor: ew-resize; z-index: 10; transform: translateX(-50%); }
  .ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: white; box-shadow: 0 2px 16px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--brand); font-weight: bold; }
  .ba-label { position: absolute; top: 1rem; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; background: rgba(0,0,0,0.55); color: white; padding: 0.35rem 0.75rem; border-radius: 2px; }
  .ba-label.before-l { left: 1rem; }
  .ba-label.after-l { right: 1rem; }

  /* CTA BANNER */
  #cta-banner { padding: 7rem 0; background: var(--brand); }
  .cta-inner { text-align: center; color: white; }
  .cta-inner h2 { color: white; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.5rem); }
  .cta-inner p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; }
  .btn-white { background: white; color: var(--brand); }
  .btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
/* ─── CTA BANNER ─── */
#cta-banner {
  background: var(--brand);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: 'VISAYA';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  font-weight: 300;
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.btn-white {
  background: white;
  color: var(--brand);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}
.btn-white:hover { background: var(--charcoal); color: white; }
  /* CONSULTATION FORM */
  #consultation { padding: 7rem 0; }
  .form-wrap { max-width: 800px; margin: 0 auto; background: var(--warm-white); border: 1px solid var(--border); }
  .form-steps-bar { display: flex; border-bottom: 1px solid var(--border); }
  .form-step-tab { flex: 1; padding: 1.25rem 0.5rem; text-align: center; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); border-bottom: 2px solid transparent; transition: all 0.3s; cursor: default; }
  .form-step-tab.active { color: var(--brand); border-bottom-color: var(--brand); }
  .form-step-tab.done { color: var(--brand); opacity: 0.6; }
  .form-body { padding: 3rem; }
  .form-panel { display: none; }
  .form-panel.active { display: block; animation: fadeInUp 0.4s ease; }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.5rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--charcoal);
    background: var(--cream); outline: none; border-radius: 2px; transition: border 0.3s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .checkbox-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; }
  .checkbox-item:hover { border-color: var(--brand); background: var(--brand-pale); }
  .checkbox-item input[type="checkbox"] { accent-color: var(--brand); width: 16px; height: 16px; }
  .checkbox-item label { font-size: 0.85rem; cursor: pointer; }
  .style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .style-opt { border: 1px solid var(--border); padding: 1.2rem 0.5rem; text-align: center; cursor: pointer; transition: all 0.3s; border-radius: 2px; }
  .style-opt:hover, .style-opt.selected { border-color: var(--brand); background: var(--brand-pale); }
  .style-opt .style-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
  .style-opt .style-name { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid); }
  .form-nav { display: flex; justify-content: space-between; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
  .upload-zone { border: 2px dashed var(--border); padding: 2.5rem; text-align: center; cursor: pointer; transition: border 0.3s; border-radius: 2px; }
  .upload-zone:hover { border-color: var(--brand); }
  .upload-zone p { color: var(--mid); font-size: 0.85rem; }
  .review-item { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .review-item:last-child { border: none; }
  .review-item .key { color: var(--mid); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
  .review-item .val { font-weight: 400; color: var(--charcoal); text-align: right; max-width: 60%; }
  .success-msg { text-align: center; padding: 3rem 2rem; display: none; }
  .success-msg .check { width: 64px; height: 64px; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; color: white; }
  .whatsapp-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: white; padding: 0.75rem 1.5rem; border-radius: 2px; font-size: 0.82rem; text-decoration: none; letter-spacing: 0.05em; transition: background 0.3s; margin-top: 1rem; }
  .whatsapp-btn:hover { background: #1ebe5b; }

  /* FOOTER */

footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* SOCIAL ICONS */

.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.9rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--brand);
  color: white;
  background: var(--brand);
}

/* FOOTER COLUMNS */

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

/* CONTACT */

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.contact-item .icon {
  color: var(--brand);
  flex-shrink: 0;
  width: 16px;
  margin-top: 2px;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-bottom span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
  /* FLOATING ELEMENTS */
  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    width: 54px; height: 54px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; font-size: 1.4rem; color: white;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s;
  }
  .whatsapp-float:hover { transform: scale(1.1); }

  /* POPUP */
  .popup-overlay { position: fixed; inset: 0; background: rgba(20,12,8,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
  .popup-overlay.show { display: flex; }
  .popup-box { background: white; max-width: 440px; width: 90%; padding: 3rem 2.5rem; position: relative; animation: fadeInUp 0.4s ease; }
  .popup-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--light); transition: color 0.3s; }
  .popup-close:hover { color: var(--charcoal); }
  .popup-box .eyebrow { text-align: center; }
  .popup-box h2 { text-align: center; font-size: 1.8rem; margin-bottom: 0.75rem; }
  .popup-box p { text-align: center; color: var(--mid); font-size: 0.88rem; margin-bottom: 2rem; line-height: 1.7; }

  /* ANIMATIONS */
  @keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* INSTAGRAM FEED */
  #instagram { padding: 4rem 0; }
  .insta-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
  .insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
  .insta-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
  .insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
  .insta-item:hover img { transform: scale(1.08); }

  /* ABOUT PAGE */
  #about-full { padding: 8rem 0 5rem; }
  .about-hero { background: var(--cream); padding: 8rem 0 5rem; text-align: center; }
  .about-story { padding: 6rem 0; }
  .approach-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
  .step { text-align: center; padding: 2rem 1.5rem; }
  .step-num { width: 56px; height: 56px; border: 1px solid var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--brand); }
  .step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 0.75rem; }
  .step p { font-size: 0.85rem; color: var(--mid); line-height: 1.8; }

  /* PAGE TRANSITIONS */
  .page { display: none; }
  .page.active { display: block; }

  /* MOBILE */
  @media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-accent { display: none; }
    .about-badge { display: none; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .project-card.large { grid-column: span 2; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .style-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-steps { grid-template-columns: 1fr 1fr; }
    .nav-links {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0;
      width: 72vw; max-width: 300px;
      height: 100dvh;
      background: var(--charcoal);
      padding: 5rem 2rem 3rem;
      gap: 0;
      z-index: 1006;
      transform: translateX(-110%);
      visibility: hidden;
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                  visibility 0s linear 0.32s;
      box-shadow: 4px 0 32px rgba(0,0,0,0.35);
      overflow-y: auto;
      list-style: none;
    }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-links li:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
    .nav-links a {
      display: block;
      padding: 1rem 0;
      font-size: 1rem !important;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.85) !important;
      text-transform: uppercase;
      text-decoration: none;
    }
    .nav-links a:active { color: var(--brand) !important; }
    .nav-links .nav-cta {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.8rem 1.5rem !important;
      background: var(--brand);
      color: white !important;
      border-radius: 2px;
      font-size: 0.8rem !important;
      letter-spacing: 0.12em;
      text-align: center;
    }
    .nav-links.open {
      transform: translateX(0);
      visibility: visible;
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                  visibility 0s linear 0s;
    }
    /* Close ✕ button inside drawer */
    .drawer-close {
      display: block;
      position: absolute;
      top: 1.2rem; right: 1.2rem;
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 1.4rem;
      cursor: pointer;
      line-height: 1;
      padding: 0.25rem 0.5rem;
    }
    .drawer-close:hover { color: white; }
    /* Dark backdrop */
    .drawer-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 1005;

    }
    .drawer-backdrop.open { display: block; }
    .drawer-backdrop { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
    /* Hamburger → X animation when open */
    #hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
    #hamburger.open span:nth-child(2) { opacity: 0; }
    #hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }
    .nav-hamburger { display: flex; }
    .stats-row { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .insta-header { flex-direction: column; gap: 1rem; text-align: center; }
  }
  @media (max-width: 600px) {
    .projects-grid { grid-template-columns: 1fr; }
    .project-card.large { grid-column: span 1; }
    .checkbox-group { grid-template-columns: 1fr; }
    .approach-steps { grid-template-columns: 1fr; }
    .style-grid { grid-template-columns: 1fr 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .form-body { padding: 1.5rem; }
    .form-steps-bar { font-size: 0.6rem; }
  }


  /* ─── PROCESS ─── */
#process { background: var(--cream); padding: 7rem 4rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 5%;
  width: 90%; height: 1px;
  background: var(--stone);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--brand);
  font-weight: 600;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.step-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.8; }



/* ─── PROJECTS ─── */
#projects { background: var(--white); padding: 7rem 4rem; }
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.filter-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 auto 2.5rem;
  max-width: 1200px;
}
.filter-btn {
  background: none;
  border: 1px solid var(--stone);
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  transition: all 0.3s;
  border-radius: 0;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}
.project-card.large { grid-column: span 2; }
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  min-height: 280px;
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-info h4 {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.project-info span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.project-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--brand);
  color: white;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.view-all-wrap { text-align: center; margin-top: 3rem; }


/* ================================================================
   RESPONSIVE POLISH — clean rendering on phone + desktop
   ================================================================ */

/* Global safety */
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; }
.container { width: 100%; }

/* ---------- TABLET (≤ 900px) ---------- */
@media (max-width: 900px) {
  .container { padding: 0 1.25rem; }
  #process, #projects, #blog { padding: 4rem 1.25rem; }
  #cta-banner { padding: 4rem 1.25rem; }
  #cta-banner::before { font-size: 9rem; }

  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
  .process-steps::before { display: none; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .ba-images { height: 380px; }
  .about-img-main { height: 380px; }

  .projects-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

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

  nav { padding: 1.1rem 1.25rem; }
  nav.scrolled { padding: 0.85rem 1.25rem; }
  .nav-logo img { height: 48px; width: 48px; }
  .nav-logo span { font-size: 1.15rem; }
}

/* ---------- PHONE (≤ 600px) ---------- */
@media (max-width: 600px) {
  .container { padding: 0 1rem; }

  /* Hero */
  #home { min-height: 560px; }
  .hero-content { padding: 1.25rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-btns { width: 100%; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* Section spacing */
  #about-preview, #testimonials, #before-after, #blog, #consultation,
  #about-full, .about-hero, .about-story { padding: 3.5rem 0; }
  #process, #projects { padding: 3.5rem 1rem; }
  #cta-banner { padding: 3.5rem 1rem; }
  #cta-banner::before { font-size: 5.5rem; }
  #services { padding: 3.5rem 0; }
  section { scroll-margin-top: 64px; }

  .section-header { margin-bottom: 2.25rem; }

  /* About preview */
  .about-grid { gap: 2rem; }
  .about-img-main { height: 280px; }
  .about-img-accent { width: 50%; height: 40%; bottom: -1rem; right: -1rem; border-width: 4px; }
  .about-badge { left: 0.5rem; top: 1rem; padding: 1rem 1.1rem; }
  .about-badge .num { font-size: 1.8rem; }
  .about-quote { font-size: 1.1rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .step-num { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 1rem; }
  .step-title { font-size: 1.2rem; }

  /* Projects / portfolio */
  .filter-tabs, .project-filter { gap: 0.5rem; margin-bottom: 1.5rem; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.68rem; }
  .projects-grid { grid-template-columns: 1fr; gap: 12px; }
  .project-card.large { grid-column: span 1; }
  .project-card img { min-height: 220px; }

  /* Services */
  .service-card { padding: 2rem 1.5rem; }

  /* Testimonials */
  .testimonial-slide { padding: 0 1rem; }
  .testimonial-quote { font-size: 1.25rem; }
  .author-avatar { width: 44px; height: 44px; }

  /* Blog */
  .blog-grid { gap: 1.5rem; }
  .blog-img { height: 180px; }

  /* Before / after slider */
  .ba-images { height: 260px; }
  .ba-handle { width: 36px; height: 36px; }
  .ba-label { font-size: 0.58rem; padding: 0.3rem 0.6rem; }

  /* Instagram grid */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .insta-header { gap: 0.75rem; }

  /* Consultation form */
  .form-wrap { max-width: 100%; }
  .form-steps-bar { overflow-x: auto; }
  .form-step-tab { padding: 1rem 0.4rem; font-size: 0.6rem; white-space: nowrap; }
  .form-body { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .checkbox-group { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .style-opt { padding: 1rem 0.5rem; }
  .upload-zone { padding: 1.5rem 1rem; }
  .review-item { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .review-item .val { max-width: 100%; text-align: left; }
  .form-nav { flex-wrap: wrap; gap: 0.75rem; }
  .form-nav .btn { flex: 1; text-align: center; }

  /* About page */
  .approach-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .step { padding: 1.25rem 0.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; text-align: left; }
  .footer-socials { flex-wrap: wrap; }
  .footer-bottom { font-size: 0.7rem; }

  /* Popup */
  .popup-box { padding: 2rem 1.25rem; width: 92%; }
  .popup-box h2 { font-size: 1.5rem; }

  /* Floating WhatsApp button */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }

  /* Nav */
  .nav-logo img { height: 40px; width: 40px; }
  .nav-logo span { font-size: 1rem; }
}

/* ---------- SMALL PHONE (≤ 380px) ---------- */
@media (max-width: 380px) {
  .style-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.9rem; }
}


/* ================================================================
   MOBILE STABILITY + SINGLE-IMAGE CAROUSELS (≤ 600px)
   Fixes: layout shake/jank, broken hover-only overlays, messy
   overlapping image stacks, multi-column image grids on tiny screens.
   ================================================================ */
@media (max-width: 600px) {

  /* --- Kill hover-dependent motion that misbehaves on touch --- */
  #home .hero-bg,
  #home:hover .hero-bg {
    transform: none !important;
    transition: none !important;
  }
  .whatsapp-float { animation: none; }
  .project-card img,
  .blog-img img,
  .insta-item img {
    transition: none !important;
  }
  .project-card:hover img,
  .blog-card:hover .blog-img img,
  .insta-item:hover img {
    transform: none !important;
  }

  /* --- Stop scroll-reveal animation causing jumpy/shaky content --- */
  .fade-in, .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* --- Reserve fixed aspect ratios so images don't shift layout while loading --- */
  .project-card img,
  .blog-img img,
  .insta-item img,
  .about-img-main,
  .ba-images,
  .ba-images img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
  }
  .author-avatar { aspect-ratio: 1 / 1; }

  /* --- Overlays can't rely on :hover on touch — always show them --- */
  .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, rgba(26,23,20,0.1) 65%, transparent 100%);
    position: absolute;
  }

  /* --- About preview: ONE clean image instead of overlapping stack --- */
  .about-image-wrap { position: relative; }
  .about-img-accent,
  .about-badge { display: none; }
  .about-img-main { width: 100%; border-radius: 2px; }

  /* --- Featured projects: single-image swipeable carousel --- */
  .projects-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .project-card,
  .project-card.large {
    grid-column: unset;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .project-card img { width: 100%; min-height: 0; }

  /* --- Instagram feed: single-image swipeable carousel --- */
  .insta-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    gap: 0.6rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem 0.5rem;
  }
  .insta-item {
    flex: 0 0 62%;
    scroll-snap-align: center;
  }

  /* --- Before/after slider: full-width single comparison, no fixed px height --- */
  .ba-container { margin: 0 -0.25rem; }
  .ba-images { width: 100%; }

  /* --- Blog cards already stack; just make sure image ratio is fixed --- */
  .blog-img { height: auto; }

  /* --- Prevent any residual horizontal page shake --- */
  body { overscroll-behavior-x: none; }
  .container, section { max-width: 100vw; }

  /* --- Hide scrollbars on the new carousels (cleaner look) --- */
  .projects-grid::-webkit-scrollbar,
  .insta-grid::-webkit-scrollbar { display: none; }
  .projects-grid, .insta-grid { scrollbar-width: none; -ms-overflow-style: none; }
}


/* ================================================================
   PORTFOLIO PAGE — base grid (replaces removed inline style)
   ================================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.portfolio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

/* ================================================================
   PORTFOLIO PAGE — phone layout (clean single-column cards)
   ================================================================ */
@media (max-width: 600px) {

  /* Filter bar: horizontal scroll, never wraps */
  .portfolio-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 0 -1rem 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .portfolio-filter-bar::-webkit-scrollbar { display: none; }
  .portfolio-filter-bar .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.72rem;
    padding: 0.45rem 1rem;
  }

  /* Portfolio grid: one full-width card per row */
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin-top: 0;
  }

  /* Each card: big, readable, proper image ratio */
  .portfolio-grid .project-card {
    aspect-ratio: 4 / 3 !important;
    border-radius: 4px;
    overflow: hidden;
  }

  .portfolio-grid .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Always-visible overlay on touch */
  .portfolio-grid .project-overlay {
    opacity: 1;
    background: linear-gradient(to top,
      rgba(26,23,20,0.88) 0%,
      rgba(26,23,20,0.15) 55%,
      transparent 100%);
  }

  .portfolio-grid .project-info {
    padding: 1rem 1.1rem;
  }

  .portfolio-grid .project-cat {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.2rem;
  }

  .portfolio-grid .project-name {
    font-size: 1.1rem;
  }
}

/* Tablet: 2-column portfolio */
@media (min-width: 601px) and (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
