:root {
  --background: #f8f8f5;
  --surface: #efeee9;
  --surface-light: #ffffff;
  --text: #11110f;
  --muted: #74736d;
  --line: #d8d7d0;
  --accent: #a95738;
  --white: #ffffff;
  --black: #11110f;

  --max-width: 1380px;

  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-mono: "DM Mono", monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 500ms var(--ease);
}

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

html {
  scroll-behavior: smooth;
  background: var(--background);
}

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

body.page-leaving {
  opacity: 0.92;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.9;
}

h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

p {
  max-width: 70ch;
}

::selection {
  background: var(--text);
  color: var(--background);
}


/* --------------------------------
   GLOBAL
-------------------------------- */

.section {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: 150px 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 900ms ease,
    transform 1100ms var(--ease);
}

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


/* --------------------------------
   NAVIGATION
-------------------------------- */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  z-index: 1000;
}

.navigation {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  padding: 32px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  background: var(--text);
}

.menu-toggle span + span {
  margin-top: 7px;
}


/* --------------------------------
   HOME HERO
-------------------------------- */

.home-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;

  background-image:
    url("images/20250924_133130~2.jpg");

  background-size: cover;
  background-position: center;
  transform: scale(1.04);

  transition:
    opacity 900ms ease,
    transform 1800ms var(--ease);

  z-index: 0;
}

.hero-background.changing {
  opacity: 0.25;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.63) 38%,
      rgba(0, 0, 0, 0.18) 75%,
      rgba(0, 0, 0, 0.25) 100%
    );

  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 80px), var(--max-width));
  min-height: 100vh;

  margin: 0 auto;
  padding: 150px 0 45px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy {
  max-width: 920px;
  padding-top: 5vh;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 45px;
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy h1 span {
  color: #d99a7c;
}

.hero-statement {
  margin-top: 55px;
  max-width: 760px;

  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.hero-description {
  margin-top: 24px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--text);

  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.button:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: var(--text);
  color: var(--background);
}

.button-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.hero-image-meta {
  display: flex;
  gap: 35px;

  font-family: var(--font-mono);
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: var(--font-mono);
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  color: rgba(255, 255, 255, 0.65);
}

.scroll-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}


/* --------------------------------
   HOME SECTIONS
-------------------------------- */

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 100px;
}

.section-heading.compact {
  margin-bottom: 70px;
}

.intro-grid,
.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.intro-lead p,
.large-copy {
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.intro-body p,
.two-column-copy > div:last-child p {
  color: var(--muted);
  margin-bottom: 28px;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 5px;

  border-bottom: 1px solid var(--text);

  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  transition:
    color var(--transition),
    border-color var(--transition);
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.home-navigation {
  width: 100%;
  max-width: none;
  padding:
    0
    max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

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

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-card {
  min-height: 430px;
  padding: 38px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  display: flex;
  flex-direction: column;

  transition:
    background var(--transition),
    color var(--transition);
}

.home-card:hover {
  background: var(--text);
  color: var(--background);
}

.home-card > span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
}

.home-card h3 {
  margin-top: auto;
  font-family: var(--font-display);
}

.home-card p {
  margin-top: 20px;
  color: var(--muted);
}

.home-card:hover p {
  color: #c4c0b8;
}

.home-card strong {
  margin-top: 35px;

  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

.home-statement {
  min-height: 85vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-closing {
  min-height: 80vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-closing h2 {
  margin-top: 35px;
}

.home-closing > p:last-child {
  max-width: 650px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 1.1rem;
}


/* --------------------------------
   INNER HERO
-------------------------------- */

.inner-hero {
  width: min(calc(100% - 80px), var(--max-width));
  min-height: 80vh;

  margin: 0 auto;
  padding: 180px 0 100px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-hero h1 {
  margin-top: 35px;
  max-width: 1100px;
}

.inner-introduction {
  max-width: 700px;
  margin-top: 50px;

  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.4;
}


/* --------------------------------
   ABOUT
-------------------------------- */

.about-story {
  width: 100%;
  max-width: none;

  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

.about-dimensions {
  width: min(calc(100% - 80px), var(--max-width));
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.dimension-grid > div {
  min-height: 300px;
  padding: 35px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dimension-grid span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
}

.dimension-grid h3 {
  margin-top: 80px;
  font-family: var(--font-display);
}

.dimension-grid p {
  margin-top: 18px;
  color: var(--muted);
}

.about-belief {
  min-height: 80vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-belief blockquote {
  max-width: 1050px;
  margin-top: 45px;

  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}


/* --------------------------------
   JOURNEY
-------------------------------- */

.journey-introduction {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
}

.journey-intro-number,
.chapter-number {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.journey-introduction > div:last-child {
  max-width: 900px;
}

.journey-introduction .large-copy {
  margin-bottom: 35px;
}

.journey-introduction p:not(.large-copy) {
  color: var(--muted);
  margin-bottom: 25px;
}

.journey-timeline {
  width: 100%;
}

.journey-chapter {
  display: grid;
  grid-template-columns: 100px 0.8fr 1.2fr;
  gap: 60px;

  padding:
    110px
    max(40px, calc((100vw - var(--max-width)) / 2));

  border-top: 1px solid var(--line);

  transition: background var(--transition);
}

.journey-chapter:hover {
  background: var(--surface);
}

.chapter-place h2 {
  margin-top: 20px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.chapter-title {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 25px;
}

.chapter-content > p:not(.chapter-title) {
  max-width: 600px;
  color: var(--muted);
}

.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.chapter-tags span {
  padding: 7px 12px;
  border: 1px solid var(--line);

  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.journey-next {
  background: var(--surface);
}


/* --------------------------------
   RESEARCH
-------------------------------- */

.research-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  width: 100%;
  max-width: none;

  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

.research-philosophy h2 {
  margin-top: 30px;
}

.research-philosophy > div:last-child p {
  color: var(--muted);
  margin-bottom: 30px;
}

.research-philosophy > div:last-child .large-copy {
  color: var(--text);
}

.research-feature {
  width: min(calc(100% - 80px), var(--max-width));
}

.research-feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  border-bottom: 1px solid var(--line);
  padding-bottom: 60px;
}

.research-feature-header h2 {
  margin-top: 30px;
}

.research-number {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
}

.research-feature-body {
  max-width: 850px;
  margin-left: auto;
  padding-top: 70px;
}

.research-feature-body p {
  margin-bottom: 30px;
  color: var(--muted);
}

.research-feature-body .large-copy {
  color: var(--text);
}

.research-future {
  width: 100%;
  max-width: none;

  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

.research-future h2 {
  margin-top: 40px;
}

.research-future > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 40px;
  color: var(--muted);
}


/* --------------------------------
   CREATIVE
-------------------------------- */

.creative-introduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.creative-introduction h2 {
  margin-top: 30px;
}

.creative-introduction > div:last-child p {
  color: var(--muted);
  margin-bottom: 30px;
}

.creative-introduction > div:last-child .large-copy {
  color: var(--text);
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding-top: 0;
}

.creative-card {
  min-height: 480px;
  padding: 50px;

  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;

  display: flex;
  flex-direction: column;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.creative-card:hover {
  background: var(--surface);
  transform: translateY(-5px);
}

.creative-card > span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
}

.creative-card h2 {
  margin-top: auto;
  font-size: clamp(3rem, 5vw, 5rem);
}

.creative-card p {
  max-width: 450px;
  margin-top: 20px;
  color: var(--muted);
}

.creative-card strong {
  margin-top: 30px;

  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

.creative-closing {
  min-height: 75vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creative-closing h2 {
  margin-top: 40px;
}


/* --------------------------------
   PRESS
-------------------------------- */

.press-introduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  width: 100%;
  max-width: none;

  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

.press-introduction h2 {
  margin-top: 30px;
}

.press-introduction > div:last-child p {
  color: var(--muted);
  margin-bottom: 30px;
}

.press-introduction > div:last-child .large-copy {
  color: var(--text);
}

.press-empty {
  min-height: 55vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.press-placeholder {
  width: 100%;
  padding: 70px;

  border: 1px dashed var(--line);

  text-align: center;

  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.press-contact {
  width: 100%;
  max-width: none;

  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

.press-contact h2 {
  margin: 40px 0;
}


/* --------------------------------
   GALLERY
-------------------------------- */

.gallery-introduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.gallery-introduction > div:last-child p {
  color: var(--muted);
  margin-bottom: 25px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(3n + 2) {
  margin-top: 80px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 1200ms var(--ease),
    filter 800ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item figcaption {
  position: absolute;
  left: 15px;
  bottom: 15px;

  font-family: var(--font-mono);
  font-size: 0.58rem;

  color: white;
  mix-blend-mode: difference;
}


/* --------------------------------
   SOCIAL
-------------------------------- */

.social-introduction {
  width: 100%;
  max-width: none;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));

  background: var(--surface);
}

.social-introduction p:last-child {
  color: var(--muted);
}

.social-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0;
}

.social-page-grid a {
  position: relative;

  min-height: 220px;
  padding: 30px;

  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.social-page-grid a:hover {
  background: var(--text);
  color: var(--background);
  transform: translateY(-5px);
  z-index: 2;
}

.social-page-grid span {
  font-family: var(--font-mono);
  font-size: 0.59rem;
  color: var(--muted);
}

.social-page-grid strong {
  margin-top: auto;

  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 500;
}

.social-page-grid small {
  margin-top: 6px;
  color: var(--muted);
}

.social-page-grid b {
  position: absolute;
  right: 30px;
  bottom: 30px;

  font-size: 1.2rem;
  font-weight: 400;
}


/* --------------------------------
   CONTACT
-------------------------------- */

.contact-page {
  min-height: 100vh;

  width: min(calc(100% - 80px), var(--max-width));

  margin: 0 auto;
  padding: 180px 0 100px;

  display: flex;
  align-items: center;
}

.contact-content {
  max-width: 1000px;
}

.contact-content h1 {
  margin-top: 40px;
}

.contact-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 50px 0 35px;

  color: var(--muted);
  font-size: 1.2rem;
}

.contact-email {
  display: block;
  margin-top: 30px;

  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);

  transition: color var(--transition);
}

.contact-email:hover {
  color: var(--accent);
}


/* --------------------------------
   FOOTER
-------------------------------- */

.site-footer {
  background: var(--black);
  color: var(--background);

  padding:
    80px
    max(40px, calc((100vw - var(--max-width)) / 2))
    30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-top h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.footer-top p {
  margin-top: 10px;
  color: #96938c;
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 45px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.59rem;
  color: #bdbab3;
  text-transform: uppercase;

  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  padding-top: 25px;
  border-top: 1px solid #353532;

  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: #77756f;
}


/* --------------------------------
   RESPONSIVE
-------------------------------- */

@media (max-width: 1100px) {

  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy {
    max-width: 850px;
  }

  .journey-chapter {
    grid-template-columns: 70px 1fr;
  }

  .chapter-content {
    grid-column: 2;
  }

  .social-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(3n + 2) {
    margin-top: 0;
  }

  .gallery-item:nth-child(4n + 2) {
    margin-top: 70px;
  }

}


@media (max-width: 760px) {

  .section,
  .navigation,
  .home-hero,
  .inner-hero,
  .contact-page {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .section {
    padding: 100px 0;
  }

  .navigation {
    width: calc(100% - 40px);
    padding: 25px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;

    top: 75px;
    left: 0;

    width: 100%;

    padding: 25px 20px;

    background: rgba(248, 248, 245, 0.97);
    backdrop-filter: blur(15px);

    display: none;
    flex-direction: column;
    align-items: flex-start;

    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .home-hero .nav-links {
    background: rgba(17, 17, 15, 0.96);
    color: var(--white);
  }

  .home-hero {
    width: 100%;
  }

  .hero-grid {
    width: calc(100% - 40px);
    padding-top: 125px;
  }

  .hero-copy {
    padding-top: 4vh;
  }

  .hero-copy h1,
  .inner-hero h1,
  .contact-content h1 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .hero-statement {
    margin-top: 45px;
  }

  .hero-description {
    max-width: 90%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading,
  .intro-grid,
  .two-column-copy,
  .research-philosophy,
  .creative-introduction,
  .press-introduction,
  .gallery-introduction,
  .social-introduction {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .home-navigation {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .home-card {
    min-height: 340px;
  }

  .dimension-grid,
  .creative-grid {
    grid-template-columns: 1fr;
  }

  .journey-introduction {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journey-chapter {
    grid-template-columns: 50px 1fr;
    gap: 25px;
    padding: 75px 20px;
  }

  .chapter-content {
    grid-column: 2;
  }

  .chapter-place h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .journey-chapter .chapter-number {
    grid-row: 1 / span 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-item:nth-child(4n + 2) {
    margin-top: 0;
  }

  .social-page-grid {
    grid-template-columns: 1fr;
  }

  .social-page-grid a {
    min-height: 180px;
  }

  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

}


@media (max-width: 480px) {

  h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .home-hero {
    min-height: 100svh;
  }

  .hero-grid {
    min-height: 100svh;
  }

  .inner-hero {
    min-height: 75vh;
    padding-top: 140px;
  }

  .creative-card {
    min-height: 390px;
    padding: 30px;
  }

  .press-placeholder {
    padding: 45px 20px;
  }

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

}
