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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-light: #f5f5f3;
  --gray-medium: #888;
  --gray-dark: #333;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Inter", sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link {
  color: var(--black);
}

/* .nav-logo {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  transition: color var(--transition);
} */

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition:
    height var(--transition),
    opacity var(--transition);
}

.logo-default {
  display: block;
  opacity: 1;
}

.logo-scrolled {
  display: none;
  opacity: 0;
}

/* --- State Swapping when Scrolled --- */
.navbar.scrolled .logo-default {
  display: none;
  opacity: 0;
}

.navbar.scrolled .logo-scrolled {
  display: block;
  opacity: 1;
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
  overflow: hidden;
  display: inline-block;
  height: 16px;
}

.nav-link-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-text-top,
.nav-text-bottom {
  display: block;
  line-height: 16px;
  height: 16px;
}

.nav-link:hover .nav-link-inner {
  transform: translateY(-16px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.btn-contact:hover {
  background: #222;
  transform: scale(1.02);
}

.btn-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: #eee;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-link {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  transition: opacity var(--transition);
}

.mobile-link:hover {
  opacity: 0.6;
}

/* ========== HERO ========== */
/* Tracking runway height for the scroll event */
.hero-scroll-track {
  position: relative;
  height: 200vh; /* Controlled height ensures timeline finishes completely before hero leaves viewport */
  width: 100%;
}

/* Keeps content locked inside viewport during scroll tracking */
.hero-sticky-window {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Alignment to the exact left-bottom corner of the viewport hero image area */
.hero-content-fixed-bottom {
  position: absolute;
  bottom: 0px;
  width: 90%;
  z-index: 10;
}

/* Relative positioning context to hold absolute-layered title frames */
.hero-dynamic-line {
  position: relative;
  margin: 0;
  padding: 0;
  height: clamp(
    80px,
    15vw,
    350px
  ); /* Height matches exact sizing boundaries below */
}

/* Base parameters for text slides */
.scrolling-word {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(80px, 15vw, 350px); /* Your precise original giant scale */
  font-weight: 900;
  color: var(--white);
  line-height: 0.8;
  white-space: nowrap;
  letter-spacing: -20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
  pointer-events: none;
}

/* Active class applied sequentially on scroll */
.scrolling-word.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  will-change: transform;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  animation: heroZoomOut 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}

/* Add this rule to target the video element specifically */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video spans full-width/height without distortion */
  transform: scale(
    1.1
  ); /* Slightly oversized to handle your scroll-parallax without leaking white edges */
}

.hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1; /* Keeps the clean dark overlay explicitly on top of your video */
}

@keyframes heroZoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: clamp(80px, 15vw, 350px);
  font-weight: 900;
  line-height: 0.8;
  color: var(--white);
  letter-spacing: -20px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ========== SECTION UTILITIES ========== */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-label.center {
  justify-content: center;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

.dot.light {
  background: var(--white);
}

.section-title-large {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.section-title-large.center {
  text-align: center;
}

.section-title-large.light {
  color: var(--white);
}

/* ========== STUDIO SECTION ========== */
.studio-section {
  padding: 120px 40px 80px;
  background: var(--white);
  position: relative;
  z-index: 2;
}

/* Ensure all sections after hero sit above the fixed hero image */
main {
  position: relative;
  z-index: 2;
  background: var(--white);
}

.footer {
  position: relative;
  z-index: 2;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.studio-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 500px;
}

.studio-right-col {
  display: flex;
  flex-direction: column;
}

.studio-tagline {
  position: relative;
  margin-bottom: 48px;
}

.tagline-we-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.tagline-we {
  display: block;
  font-size: clamp(35px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.tagline-lines {
  color: #777777;
}

.tagline-line {
  font-size: clamp(35px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.4;
  padding-left: 1.8em;
  transition: color 0.3s ease;
}

.tagline-line.active {
  color: var(--black);
  font-weight: 700;
}

.studio-description {
  max-width: 70%;
}

.studio-description p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* ========== BUTTONS ========== */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.btn-dark:hover {
  background: #222;
  transform: scale(1.02);
}

.btn-dark.btn-small {
  padding: 10px 20px;
  font-size: 10px;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.btn-light:hover {
  background: #eee;
  transform: scale(1.02);
}

.btn-dot.light {
  border-color: var(--black);
}

/* ========== STORY SECTION ========== */
.story-section {
  position: relative;
  width: 100%;
  background: var(--white);
  /* This creates a 1-screen buffer height for the reveal transition track */
  margin-bottom: 0;
}

.story-fullscreen {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1; /* Sits beneath the incoming content layer */
  overflow: hidden;
}

.story-fullscreen img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.story-below {
  position: relative;
  z-index: 2;
  background: var(--white);
  margin-top: 0;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.1);
}

.story-below-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.story-img-left {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.story-content {
  max-width: 50%;
  margin: 20%;
}

.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}
/* ========== PROJECTS SECTION ========== */
.projects-section {
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.projects-sticky-wrapper {
  position: relative;
  min-height: 200vh;
}

.projects-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 120px 40px 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-scroll-area {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 0 40px 80px;
}

.project-scroll-card {
  width: 25%;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform, opacity;
}

.project-scroll-card.visible {
  opacity: 1;
}

.project-scroll-card[data-side="left"].visible {
  align-self: flex-start;
}

.project-scroll-card[data-side="right"].visible {
  align-self: flex-end;
}

.project-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}

.project-image img {
  transition: transform 0.6s ease;
}

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

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.project-info h3 {
  font-size: 20px;
  font-weight: 600;
}

.project-info span {
  font-size: 14px;
  color: var(--gray-medium);
}

.projects-cta {
  text-align: center;
  padding: 0 40px 120px;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 120px 40px;
  background: var(--gray-light);
}

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

.services-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  transition: opacity var(--transition);
}

.service-header:hover {
  opacity: 0.7;
}

.service-number {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-medium);
  min-width: 40px;
}

.service-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  flex: 1;
}

.service-toggle {
  font-size: 24px;
  font-weight: 300;
  transition: transform var(--transition);
}

.service-item.active .service-toggle {
  transform: rotate(45deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 0 0 60px;
}

.service-item.active .service-content {
  max-height: 200px;
  padding: 0 0 28px 60px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
}

/* ========== PROCESS SECTION ========== */
.process-section {
  position: relative;
  padding: 120px 40px;
  background: var(--white);
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  position: sticky;
  top: 140px;
  background: var(--white);
  border-top: 1px solid #eee;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 100px;
  padding: 80px 0;
  margin-bottom: 0;
}

.process-step:nth-child(1) {
  z-index: 1;
}
.process-step:nth-child(2) {
  z-index: 2;
}
.process-step:nth-child(3) {
  z-index: 3;
}
.process-step:nth-child(4) {
  z-index: 4;
}
.process-step:nth-child(5) {
  z-index: 5;
}
.process-step:nth-child(6) {
  z-index: 6;
}

.process-step,
.process-step:last-child {
  border-bottom: none;
}

.process-number {
  font-size: clamp(46px, 4vw, 56px);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.process-content h3 {
  width: 500px;
  font-size: clamp(38px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.process-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
  max-width: 600px;
}

.process-image {
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 700px;
}

/* ========== GALLERY / CAROUSEL ========== */
.gallery-section {
  padding: 120px 40px;
  background: var(--white);
  overflow: hidden;
}

.gallery-cta {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 50%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-sizing: border-box;
  padding: 0 20px;
  cursor: pointer;
  transform: scale(0.75);
  opacity: 0.5;
  filter: grayscale(100%);
  transition:
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s ease,
    filter 0.5s ease;
}

.carousel-slide.active {
  transform: scale(1);
  opacity: 1;
  filter: grayscale(0%);
}

.carousel-slide:hover {
  transform: scale(0.82);
  opacity: 0.8;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}
.carousel-slide.active:hover {
  transform: scale(1.05);
  opacity: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--black);
}

.carousel-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ========== JOURNALS SECTION ========== */
.journals-section {
  padding: 120px 40px;
  background: var(--gray-light);
}

.journals-cta {
  text-align: center;
  margin-bottom: 50px;
}

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

.journal-card {
  display: block;
}

.journal-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
}

.journal-image img {
  transition: transform 0.5s ease;
}

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

.journal-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.journal-info span {
  font-size: 13px;
  color: var(--gray-medium);
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  background: var(--gray-light);
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

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

.cta-content .section-label {
  justify-content: center;
  color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 40px 40px;
  height: 100vh;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  margin-top: 60px;
}

.footer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgba(231, 231, 231, 0.7);
}

.footer-address {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-email {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--white);
}

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

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social .footer-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand {
  width: 100%;
  overflow: hidden;
  margin-top: auto;
  padding: 0;
}

.footer-brand span {
  display: block;
  width: 100%;
  font-size: clamp(8rem, 24vw, 30rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.75;
  margin: 0;
  padding: 0;

  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.673) 0%,
    rgba(255, 255, 255, 0) 95%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1025px) and (max-width: 1340px) {
  .nav-links {
    gap: 16px; /* Dynamically narrow layout gaps before triggering mobile breakpoint */
  }
  .nav-link {
    font-size: 11px;
    letter-spacing: 1px;
  }
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .studio-description {
    margin-left: 0;
    padding-left: 0;
  }

  .process-step {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }

  .carousel-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .hero-content {
    padding: 0 20px 60px;
  }

  .studio-section,
  .story-section,
  .projects-section,
  .services-section,
  .process-section,
  .gallery-section,
  .journals-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

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

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

  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-number {
    font-size: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .carousel-slide {
    flex: 0 0 calc(100% - 0px);
  }

  .btn-contact span:not(.btn-dot) {
    display: none;
  }

  .btn-contact {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title-large {
    font-size: 32px;
  }

  .footer-address {
    font-size: 18px;
  }
}
