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

:root {
  --bg: #111111;
  --bg-footer: #7a7a7a;
  --text-display: #676767;
  --text-body: #555555;
  --text-dim: #333333;
  --border: rgba(255,255,255,0.10);
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* =============================================
   PAGE TRANSITION
   ============================================= */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.75s var(--ease-in-out);
}
.page-transition.hidden  { transform: translateY(-100%); }
.page-transition.leaving { transform: translateY(0); pointer-events: all; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.header.scrolled {
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-display);
  transition: color 0.3s ease;
}
.header-name:hover { color: rgba(255,255,255,0.7); }

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 400;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.07em;
}

.open-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-green 2.4s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.btn-contact {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-display);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 24px;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.btn-contact:hover {
  color: var(--bg);
  background: var(--text-display);
  border-color: var(--text-display);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
  padding: 0;
  transition: color 0.3s ease;
}

.lang-btn:hover {
  color: rgba(255,255,255,0.55);
}

.lang-btn.active {
  color: rgba(255,255,255,0.75);
}

.lang-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
}

/* =============================================
   GET IN TOUCH MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #191919;
  width: 520px;
  height: 100vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal { transform: translateX(0); }

.modal-close {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 60px;
  transition: color 0.3s ease;
  padding: 0;
}
.modal-close:hover { color: var(--text-display); }

.modal-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 52px;
}

.modal-form { display: flex; flex-direction: column; gap: 0; flex: 1; }

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-field { border-bottom: 1px solid var(--border); }
.modal-field--full { grid-column: 1 / -1; }

.modal-field input,
.modal-field select,
.modal-field textarea {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  letter-spacing: 0.08em;
  outline: none;
  resize: none;
  transition: color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.modal-field select {
  cursor: pointer;
  background-image: none;
}
.modal-field input::placeholder,
.modal-field textarea::placeholder {
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus { color: rgba(255,255,255,0.8); }
.modal-field select option { background: #191919; color: rgba(255,255,255,0.7); }

.modal-submit {
  margin-top: 40px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: color 0.3s ease;
}
.modal-submit:hover { color: rgba(255,255,255,0.85); }

/* =============================================
   ARROW LINKS
   ============================================= */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
  letter-spacing: 0.02em;
  transition: color 0.3s ease, gap 0.35s var(--ease-out);
}
.arrow-link:hover { color: var(--text-display); gap: 14px; }

/* =============================================
   HERO — full viewport, vertically centered
   ============================================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 40px;
}

.hero-title-wrap {
  width: 100%;
}

.hero-title {
  font-size: clamp(61px, 8.8vw, 145px);
  font-weight: 300;
  line-height: 0.88;
  color: var(--text-display);
  letter-spacing: -0.025em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-line {
  display: flex;
  align-items: center;
  gap: 0.14em;
}

.hero-word { display: inline-block; }

.hero-photo {
  display: inline-flex;
  width: clamp(76px, 11.5vw, 191px);
  height: clamp(76px, 11.5vw, 191px);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #2a2a2a;
  align-self: center;
  margin: 0 0.06em;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-scroll { opacity: 0; }
.hero-tagline {
  opacity: 0;
  margin-top: clamp(20px, 2.5vw, 36px);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 300;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

/* =============================================
   ABOUT — left empty, right has heading + body
   ============================================= */
.about {
  padding: 36px 135px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  padding-top: 6px;
}

.about-heading {
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 300;
  color: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.label {
  font-size: 11px;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 32px;
}

.body-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
}

.about-links {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.about-links .arrow-link {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.about-links .arrow-link:last-child {
  border-bottom: none;
}

/* =============================================
   SELECTED WORKS
   ============================================= */
.works { padding: 60px 135px 100px; border-top: 1px solid var(--border); }

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

.section-display {
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 300;
  color: var(--text-display);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

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

.work-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1c1c1c;
  cursor: pointer;
  display: block;
  border-radius: 6px;
}
.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.work-card:hover .work-card-img { transform: scale(1.05); }

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-title {
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 5px;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-out);
}
.work-card-tags {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.07em;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-out) 0.04s;
}
.work-card:hover .work-card-title,
.work-card:hover .work-card-tags { transform: translateY(0); }

.work-card-placeholder {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #333;
  letter-spacing: 0.1em;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 0 135px 20px;
  border-top: 1px solid var(--border);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }

.service-title {
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 300;
  color: var(--text-display);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

/* =============================================
   EXPERIENCE
   ============================================= */
.experience {
  padding: 100px 135px;
  border-top: 1px solid var(--border);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.experience-left { padding-top: 6px; }

.experience-heading {
  font-size: clamp(30px, 4.2vw, 60px);
  font-weight: 300;
  color: var(--text-display);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.experience-table {
  margin-top: 44px;
  border-top: 1px solid var(--border);
}

.exp-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-body);
  font-weight: 300;
}
.exp-company { font-weight: 400; color: var(--text-display); }

/* =============================================
   FOOTER / CONTACT
   ============================================= */
.footer {
  background: var(--bg-footer);
  padding: 90px 5% 56px;
}

.footer-display {
  font-size: clamp(48px, 10vw, 134px);
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
  text-align: center;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 0;
}
.footer-socials .arrow-link {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.footer-socials .arrow-link:hover { color: rgba(255,255,255,0.85); gap: 14px; }

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  margin-bottom: 56px;
}

.footer-form input {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 18px 0;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  letter-spacing: 0.08em;
  outline: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.28); letter-spacing: 0.08em; }
.footer-form input:focus { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.footer-form select {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 18px 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-form select option { background: #111; color: #fff; }
.footer-form select:focus { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.footer-form select:valid:not([value=""]) { color: rgba(255,255,255,0.7); }

.footer-form button {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 18px 0 18px 32px;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-form button:hover { color: rgba(255,255,255,0.88); }

.footer-copy {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
  text-align: center;
}

/* =============================================
   CASE PAGE
   ============================================= */
.case-hero { padding: 160px 135px 72px; }
.case-hero-meta { display: flex; gap: 20px; margin-bottom: 36px; }
.case-tag {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 14px;
}
.case-title { font-size: clamp(44px, 7vw, 100px); font-weight: 300; color: var(--text-display); line-height: 0.92; letter-spacing: -0.03em; margin-bottom: 36px; }
.case-subtitle { font-size: clamp(17px, 2.2vw, 26px); font-weight: 300; color: var(--text-body); line-height: 1.45; max-width: 580px; }
.case-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #1a1a1a; display: block; }
.case-body { padding: 80px 135px; max-width: 1400px; margin: 0 auto; }
.case-section { margin-bottom: 80px; }
.case-section--img { margin-bottom: 20px; }
.case-section-text h3 { font-size: clamp(16px, 1.8vw, 24px); font-weight: 300; color: var(--text-display); margin-bottom: 18px; letter-spacing: -0.01em; }
.case-section-text p { font-size: 14.5px; font-weight: 300; color: var(--text-body); line-height: 1.85; }
.case-text-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 80px; }
.case-text-grid .case-section-text { margin: 0; }
.case-image { width: 100%; object-fit: cover; background: #1a1a1a; border-radius: 3px; }
.case-image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }

.case-carousel { position: relative; overflow: hidden; border-radius: 3px; background: #1a1a1a; }
.carousel-track { display: flex; transition: transform 0.65s var(--ease-out); }
.carousel-slide { flex: 0 0 100%; }
.carousel-slide img,
.carousel-slide video { width: 100%; display: block; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, opacity 0.25s ease;
  z-index: 2;
}
.carousel-btn--prev { left: 16px; }
.carousel-btn--next { right: 16px; }
.carousel-btn:hover { background: rgba(0,0,0,0.72); }
.carousel-counter {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 20px;
}

.case-nav { padding: 56px 135px; display: flex; justify-content: space-between; border-top: 1px solid var(--border); }

/* =============================================
   RANDOM WORKS
   ============================================= */
.rw-hero { padding: 160px 135px 48px; }
.rw-hero h1 { font-size: clamp(52px, 9vw, 120px); font-weight: 300; color: var(--text-display); letter-spacing: -0.03em; line-height: 0.88; }

.rw-grid { padding: 16px 135px 100px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.rw-card { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #1a1a1a; cursor: pointer; border-radius: 6px; }
.rw-card-cover { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.rw-card:hover .rw-card-cover { transform: scale(1.06); }
.rw-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.rw-card:hover .rw-card-overlay { opacity: 1; }
.rw-card-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.8); letter-spacing: 0.07em; text-align: center; padding: 0 20px; }
.rw-card-count { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-top: 4px; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 1000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; width: 90vw; max-width: 1100px; }
.lightbox-img { width: 100%; max-height: 85vh; object-fit: contain; }
.lightbox-header { display: flex; align-items: center; gap: 24px; margin-bottom: 16px; }
.lightbox-title { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; flex: 1; }
.lightbox-counter { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.lightbox-close { font-size: 11px; color: rgba(255,255,255,0.4); cursor: pointer; letter-spacing: 0.08em; transition: color 0.3s ease; white-space: nowrap; }
.lightbox-close:hover { color: white; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 20px; color: rgba(255,255,255,0.35); cursor: pointer; background: none; border: none; transition: color 0.3s ease; padding: 16px; }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
.lightbox-prev:hover, .lightbox-next:hover { color: white; }

/* =============================================
   BACK LINK
   ============================================= */
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 300; color: var(--text-body); letter-spacing: 0.02em; margin-bottom: 40px; transition: color 0.3s ease, gap 0.35s var(--ease-out); }
.back-link:hover { color: var(--text-display); gap: 14px; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out);
}
.reveal-up.visible,
.reveal-fade.visible { opacity: 1; transform: translateY(0); }

.reveal-word { display: inline-block; opacity: 0; transform: translateY(70px); }

/* =============================================
   SHIMMER & SKELETON
   ============================================= */
@keyframes shimmer-sweep {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.shimmer-wave {
  background-image: linear-gradient(90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.03) 75%) !important;
  background-size: 200% 100% !important;
  animation: shimmer-sweep 1.6s ease-in-out infinite !important;
}
.media-wrap {
  display: block;
  overflow: hidden;
  background: #1a1a1a;
}
.media-wrap img,
.media-wrap video { display: block; width: 100%; }
.media-fade { opacity: 0; transition: opacity 0.55s ease; }
.media-fade.loaded { opacity: 1; }
.sk-line {
  display: block;
  border-radius: 3px;
  background-image: linear-gradient(90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer-sweep 1.6s ease-in-out infinite;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { height: auto; padding: 130px 5% 90px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-inner { grid-template-columns: 1fr; gap: 40px; }
  .experience-left { display: none; }
  .case-body { padding: 60px 60px; }
  .case-hero { padding: 130px 60px 56px; }
  .case-nav { padding: 48px 60px; }
}

@media (max-width: 900px) {
  .rw-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header { padding: 22px 28px; }
  .header-right { gap: 14px; }
  .hero { height: auto; padding: 100px 6% 100px; }
  .about { grid-template-columns: 1fr; gap: 0; padding: 72px 28px; }
  .about-left { display: none; }
  .works { padding: 52px 28px 80px; }
  .works-grid { grid-template-columns: 1fr; }
  .services { padding: 0 28px 20px; }
  .service-item { grid-template-columns: 1fr; gap: 20px; padding: 44px 0; }
  .experience { padding: 72px 28px; }
  .exp-row { grid-template-columns: 1fr; gap: 4px; padding: 20px 0; }
  .exp-period { order: -1; font-size: 11px; opacity: 0.5; }
  .footer { padding: 72px 28px 48px; }
  .footer-socials { grid-template-columns: repeat(2, 1fr); }
  .footer-form { grid-template-columns: 1fr; }
  .rw-hero { padding: 120px 28px 36px; }
  .rw-grid { grid-template-columns: repeat(2, 1fr); padding: 16px 28px 80px; }
  .case-hero { padding: 120px 28px 56px; }
  .case-body, .case-nav { padding-left: 28px; padding-right: 28px; }
  .case-text-grid { grid-template-columns: 1fr; gap: 40px; }
  .modal { width: 100%; }
  .modal-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .works-grid { grid-template-columns: 1fr; }
  .footer-socials { grid-template-columns: 1fr; }
  .rw-grid { grid-template-columns: 1fr; }
  .case-image-grid { grid-template-columns: 1fr; }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-btn--prev { left: 10px; }
  .carousel-btn--next { right: 10px; }
}
