/* ============================================
   TOPSTUDIO.DK — style.css
   ============================================ */

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

:root {
  --bg:        #090909;
  --bg-card:   #111111;
  --bg-hover:  #181818;
  --white:     #f5f3ee;
  --muted:     #888880;
  --border:    rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.14);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;

  --max-w: 1280px;
  --nav-h: 70px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.display-heading {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
}

.display-heading em {
  font-style: italic;
  font-weight: 800;
}

.body-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn--solid {
  background: var(--white);
  color: var(--bg);
  border: 1px solid var(--white);
}

.btn--solid:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(9,9,9,0.96);
  border-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav__cta { padding: 12px 24px; font-size: 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 48px 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,0.025) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero__inner .label { margin-bottom: -16px; }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  font-weight: 900;
}

.hero__sub {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.hero__scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: pulse-line 2.5s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- SECTION INTRO ---------- */
.section-intro {
  padding: 140px 0 80px;
  border-top: 1px solid var(--border);
}

.section-intro__layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.section-intro__left { flex: 0 0 auto; }
.section-intro__left .label { margin-bottom: 20px; }
.section-intro__left .display-heading { font-size: clamp(38px, 4.5vw, 64px); }

.section-intro__right {
  flex: 1;
  max-width: 420px;
  padding-top: 60px;
}

/* ---------- SERVICES GRID ---------- */
.services {
  padding: 60px 0 140px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.service-card {
  padding: 60px 48px 60px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.service-card:nth-child(2n) {
  padding: 60px 0 60px 48px;
  border-right: none;
}

.service-card:hover { background: var(--bg-card); }

.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.service-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 360px;
}

.service-card__line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-top: 40px;
}

/* ---------- DIFFERENCE ---------- */
.difference {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.difference__title {
  font-size: clamp(42px, 5.5vw, 80px);
  margin-bottom: 100px;
}

.difference__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.diff-card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.diff-card:last-child { border-right: none; padding-right: 0; }
.diff-card:not(:first-child) { padding-left: 40px; }
.diff-card:hover { background: var(--bg-card); }

.diff-card__line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}

.diff-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.3;
}

.diff-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- STATS ---------- */
.stats {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- SELECTED WORK ---------- */
.work {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.work .section-intro__layout { margin-bottom: 80px; }

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.work-card { overflow: hidden; cursor: pointer; }

.work-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
  overflow: hidden;
}

.work-card:hover .work-card__img {
  filter: grayscale(60%) contrast(1.05);
  transform: scale(1.02);
}

/* Placeholder images using CSS gradients */
.work-card__img--fashion {
  background-image: 
    linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2d2d2d 100%);
  background-color: #1a1a1a;
  background-image: url('fashion.png');
  position: relative;
}

.work-card__img--fashion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 30% 40%, rgba(160,140,120,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 70% 60%, rgba(80,60,50,0.4) 0%, transparent 50%);
}

.work-card__img--restaurant {
  background-color: #111111;
  background-image: url('restaurant.png');
}

.work-card__img--restaurant::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(200,180,160,0.25) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(255,200,100,0.1) 0%, transparent 40%);
}

.work-card__img--nightclub {
  background-color: #0d0d0d;
  background-image: url('nightclub.png');
}

.work-card__img--nightclub::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,200,0.15) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(180,160,200,0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(200,180,160,0.1) 0%, transparent 40%);
}

.work-card__img--ecom {
  background-color: #111111;
  background-image: url('ecom.png');
}

.work-card__img--ecom::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 60% 40%, rgba(160,150,140,0.3) 0%, transparent 60%),
    radial-gradient(circle at 20% 60%, rgba(80,80,90,0.4) 0%, transparent 50%);
}

.work-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.work-card:hover .work-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card__tags {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 8px;
}

.work-card__name {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
}

/* ---------- ABOUT ---------- */
.about {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

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

.about__image-wrap { position: relative; }

.about__image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  background-image: url('CEO.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(120,110,100,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(60,60,60,0.5) 0%, transparent 60%);
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(9,9,9,0.4), transparent);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 40px;
}

.about__content .label { margin-bottom: -8px; }

.about__content .display-heading { font-size: clamp(32px, 3.5vw, 52px); }

.about__divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* ---------- PROCESS ---------- */
.process {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.process .section-intro__layout { margin-bottom: 100px; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.process-step {
  padding: 60px 40px 60px 0;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.process-step:last-child { border-right: none; }
.process-step:not(:first-child) { padding-left: 40px; }
.process-step:hover { background: var(--bg-card); }

.process-step__num {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  display: block;
  margin-bottom: 32px;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.process-step__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ---------- CONTACT / CTA ---------- */
.contact {
  padding: 160px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact__inner .label { margin-bottom: -20px; }

.contact__title {
  font-size: clamp(42px, 6vw, 88px);
  max-width: 900px;
  margin: 0 auto;
}

.contact__sub {
  max-width: 500px;
  margin: 0 auto;
  margin-top: -12px;
}

.contact__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer .container { max-width: var(--max-w); }

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 0 48px;
}

.footer__logo {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer__links span {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__links a {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 28px 48px 0;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Staggered children */
.fade-up-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-up-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.fade-up-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.fade-up-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.fade-up-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* ---------- RESPONSIVE — TABLET ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }

  .difference__grid { grid-template-columns: 1fr 1fr; }
  .diff-card:nth-child(2) { border-right: none; padding-right: 0; }
  .diff-card:nth-child(3) { border-right: 1px solid var(--border); }
  .diff-card:nth-child(3),
  .diff-card:nth-child(4) { border-top: 1px solid var(--border); padding-top: 48px; }

  .process__steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-top: 1px solid var(--border); padding-top: 60px; }
  .process-step:nth-child(4) { border-right: none; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--border); padding-top: 48px; }

  .about__layout { gap: 48px; }
}

/* ---------- RESPONSIVE — MOBILE ---------- */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: calc(var(--nav-h) + 40px) 24px 100px; }
  .hero__title { font-size: clamp(38px, 9vw, 64px); }

  .section-intro { padding: 80px 0 48px; }
  .section-intro__layout { flex-direction: column; gap: 32px; }
  .section-intro__right { padding-top: 0; }

  .services { padding: 40px 0 80px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(2n) {
    padding: 48px 0;
    border-right: none;
  }

  .difference { padding: 80px 0; }
  .difference__title { margin-bottom: 60px; }
  .difference__grid { grid-template-columns: 1fr; }
  .diff-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
  }
  .diff-card:last-child { border-bottom: none; }
  .diff-card:not(:first-child) { padding-left: 0; }

  .stats { padding: 80px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 0 24px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--border); padding-top: 40px; }

  .work { padding: 80px 0; }
  .work__grid { grid-template-columns: 1fr; }
  .work-card__img { aspect-ratio: 16/10; }

  .about { padding: 80px 0; }
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__image { aspect-ratio: 4/3; }
  .about__content { padding-top: 0; }

  .process { padding: 80px 0; }
  .process__steps { grid-template-columns: 1fr; }
  .process-step,
  .process-step:not(:first-child) {
    padding: 48px 0;
    border-right: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
  }
  .process-step:first-child { border-top: none; }

  .contact { padding: 100px 0; }
  .contact__title { font-size: clamp(36px, 8vw, 56px); }
  .contact__btns { flex-direction: column; align-items: center; width: 100%; }
  .contact__btns .btn { width: 100%; text-align: center; }

  .footer__top {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .footer__links { flex-direction: column; align-items: flex-start; gap: 16px; }

  .footer__bottom { padding: 24px 24px 0; flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(32px, 10vw, 48px); }
  .work .section-intro__layout { margin-bottom: 48px; }
}


/* ============================================
   MOBILE HARDENING — TOPSTUDIO
   Keeps desktop styling unchanged
   ============================================ */

html, body {
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: clip;
}

.btn {
  max-width: 100%;
}

@supports (height: 100svh) {
  .hero {
    min-height: 100svh;
  }

  .mobile-menu {
    min-height: 100svh;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    height: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav__logo {
    font-size: 13px;
  }

  .nav__burger {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-right: -10px;
  }

  .mobile-menu {
    padding: 90px 24px 40px;
    overflow-y: auto;
  }

  .mobile-menu ul {
    gap: 24px;
  }

  .mobile-menu a {
    font-size: 25px;
  }

  .mobile-menu .btn {
    font-family: var(--font-cond);
    font-size: 11px;
    width: min(100%, 300px);
    text-align: center;
    padding: 17px 24px;
  }

  .hero {
    min-height: 100svh;
    justify-content: center;
    padding: 108px 20px 84px;
  }

  .hero__inner {
    width: 100%;
    max-width: 560px;
    gap: 24px;
  }

  .hero__inner .label {
    margin-bottom: -8px;
  }

  .hero__title {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero__sub {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero .btn {
    width: min(100%, 290px);
    padding: 17px 20px;
    text-align: center;
  }

  .hero__scroll-line {
    height: 52px;
  }

  .display-heading {
    overflow-wrap: normal;
    word-break: normal;
  }

  .section-intro,
  .work,
  .about,
  .process {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .section-intro__layout {
    width: 100%;
    gap: 24px;
  }

  .section-intro__left,
  .section-intro__right {
    width: 100%;
    max-width: none;
  }

  .section-intro__left .display-heading {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .services {
    padding: 20px 0 80px;
  }

  .service-card,
  .service-card:nth-child(2n) {
    padding: 36px 0;
  }

  .service-card__title {
    font-size: 25px;
  }

  .service-card__text {
    max-width: none;
  }

  .difference {
    padding: 80px 0;
  }

  .difference__title {
    font-size: clamp(42px, 11vw, 58px);
    margin-bottom: 48px;
  }

  .diff-card {
    padding: 34px 0 !important;
  }

  .stats {
    padding: 64px 0;
  }

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

  .stat {
    min-width: 0;
    padding: 0 16px;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat:nth-child(3) {
    padding-left: 0;
  }

  .stat__num {
    font-size: clamp(34px, 10vw, 48px);
  }

  .stat__label {
    font-size: 9px;
    line-height: 1.45;
  }

  .work .section-intro__layout {
    margin-bottom: 40px;
  }

  .work__grid {
    gap: 10px;
  }

  .work-card__img {
    aspect-ratio: 4 / 3;
    background-position: center;
  }

  .work-card__overlay {
    padding: 20px;
    transform: none;
    opacity: 1;
  }

  .work-card__name {
    font-size: 21px;
    line-height: 1.15;
  }

  .about__layout {
    gap: 34px;
  }

  .about__image {
    aspect-ratio: 4 / 5;
    background-position: center;
  }

  .about__content {
    gap: 22px;
  }

  .about__content .display-heading {
    font-size: clamp(36px, 9.5vw, 48px);
  }

  .process .section-intro__layout {
    margin-bottom: 46px;
  }

  .process-step,
  .process-step:not(:first-child) {
    padding: 36px 0;
  }

  .contact {
    padding: 96px 0;
  }

  .contact__inner {
    gap: 28px;
  }

  .contact__inner .label {
    margin-bottom: -8px;
  }

  .contact__title {
    font-size: clamp(38px, 10.5vw, 54px);
    line-height: 1.02;
  }

  .contact__sub {
    max-width: 340px;
    margin-top: 0;
  }

  .contact__btns {
    gap: 12px;
  }

  .contact__btns .btn {
    width: min(100%, 360px);
    padding: 17px 18px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__top {
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer__links {
    width: 100%;
  }

  .footer__links a {
    overflow-wrap: anywhere;
  }

  .footer__bottom {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: clamp(36px, 11.5vw, 46px);
  }

  .hero__sub {
    max-width: 300px;
  }

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

  .stat,
  .stat:first-child,
  .stat:nth-child(3) {
    padding: 28px 0;
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .stat:first-child {
    border-top: none;
    padding-top: 0;
  }

  .stat:last-child {
    padding-bottom: 0;
  }

  .work-card__img {
    aspect-ratio: 1 / 1;
  }

  .contact__title br {
    display: none;
  }
}
