/* ========================================
   BYHATI — 2026
======================================== */

:root {
  --ink: #080d16;
  --ink2: #0c121d;
  --line: rgba(230, 210, 194, 0.18);
  --cream: #ead8c9;
  --paper: #f4eee9;
  --muted: #a6a8ad;
}


/* ========================================
   RESET
======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}


/* ========================================
   PAGE
======================================== */

.home-page {
  margin: 0;

  background:
    radial-gradient(
      circle at 72% 9%,
      rgba(185, 143, 113, 0.12),
      transparent 24%
    ),
    var(--ink);

  color: var(--paper);
  overflow-x: hidden;
}

.home-page em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}


/* ========================================
   NAVIGATION
======================================== */

.studio-nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 50;

  height: 86px;

  padding: 0 clamp(24px, 5vw, 78px);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  background:
    linear-gradient(
      to bottom,
      rgba(8, 13, 22, 0.94),
      rgba(8, 13, 22, 0.6),
      transparent
    );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  width: max-content;

  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.18em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  font-size: 14px;
}


/* NAV LINKS CONTAINER */

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

  font-size: 14px;
}


/* NAV LINK */

.nav-links a {
  position: relative;
  display: inline-block;

  padding: 10px 2px;

  color: var(--paper);

  opacity: 0.72;

  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;
}


/* NAV ANIMATED LINE */

.nav-links a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 2px;

  width: 0;
  height: 1px;

  background: var(--cream);

  transform: translateX(-50%);

  box-shadow:
    0 0 6px rgba(234, 216, 201, 0.7),
    0 0 14px rgba(234, 216, 201, 0.35);

  transition:
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* NAV GLOWING DOT */

.nav-links a::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -1px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--cream);

  opacity: 0;

  transform:
    translateX(-50%)
    scale(0);

  box-shadow:
    0 0 6px rgba(234, 216, 201, 0.9),
    0 0 14px rgba(234, 216, 201, 0.55),
    0 0 24px rgba(234, 216, 201, 0.3);

  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* NAV HOVER */

.nav-links a:hover {
  opacity: 1;
  color: var(--cream);

  transform: translateY(-1px);

  text-shadow:
    0 0 8px rgba(234, 216, 201, 0.4),
    0 0 18px rgba(234, 216, 201, 0.18);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover::before {
  opacity: 1;

  transform:
    translateX(-50%)
    scale(1);
}


/* OTHER LINKS */

.section-head > a,
footer a {
  opacity: 0.78;

  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.section-head > a:hover,
footer a:hover {
  opacity: 1;
  color: var(--cream);
}


/* NAV CTA */

.nav-cta {
  justify-self: end;

  padding: 11px 18px;

  border: 1px solid rgba(244, 238, 233, 0.5);
  border-radius: 999px;

  font-size: 13px;

  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.nav-cta:hover {
  border-color: var(--cream);

  color: var(--cream);

  background: rgba(234, 216, 201, 0.04);

  box-shadow:
    0 0 12px rgba(234, 216, 201, 0.12),
    0 0 28px rgba(234, 216, 201, 0.06);

  transform: translateY(-1px);
}

.nav-cta span {
  margin-left: 10px;
}


/* ========================================
   HERO
======================================== */

.hero {
  position: relative;

  min-height: 760px;
  height: 100vh;
  max-height: 980px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;

  padding:
    110px
    clamp(24px, 5vw, 78px)
    70px;

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

  overflow: hidden;
}


/* HERO CURVE */

.hero::after {
  content: "";

  position: absolute;

  width: 85vw;
  height: 270px;

  bottom: -205px;
  left: 17%;

  border-radius: 50%;

  border-top: 1px solid rgba(225, 190, 164, 0.3);

  box-shadow:
    0 -20px 70px rgba(183, 128, 88, 0.08);

  pointer-events: none;
}


/* HERO COPY */

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  margin: 0 0 20px;

  font-size: 11px;
  letter-spacing: 0.38em;

  color: #aaaeb6;
}

.eyebrow i {
  margin: 0 7px;

  font-style: normal;
  color: #7f674f;
}

.hero h1 {
  margin: 0;

  font-size: clamp(54px, 5.4vw, 88px);

  line-height: 0.98;
  letter-spacing: -0.045em;

  font-weight: 400;

  color: var(--paper);
}

.hero h1 em {
  font-size: 1.04em;
}

.hero-intro {
  max-width: 590px;

  margin: 28px 0;

  font-size: 17px;
  line-height: 1.65;

  color: #c4c4c6;
}


/* HERO ACTIONS */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 16px;

  padding: 14px 22px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 13px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn.primary {
  background: var(--paper);
  color: #11151b;
}

.btn.primary:hover {
  background: var(--cream);

  transform: translateY(-2px);

  box-shadow:
    0 8px 30px rgba(234, 216, 201, 0.13);
}

.btn.secondary {
  border-color: rgba(244, 238, 233, 0.35);

  background: transparent;

  color: var(--paper);
}

.btn.secondary:hover {
  border-color: var(--cream);

  color: var(--cream);

  box-shadow:
    0 0 20px rgba(234, 216, 201, 0.06);
}


/* ========================================
   HERO NOTE
======================================== */

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 55px;

  color: #a7a9ae;

  font-size: 12px;
}

.hero-note p {
  margin: 0;

  line-height: 1.5;
}

.mini-orbit {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--cream);
}


/* ========================================
   HERO ART
======================================== */

.hero-art {
  position: relative;

  height: 620px;

  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;

  z-index: 3;

  width: min(500px, 43vw);

  aspect-ratio: 1;

  filter:
    drop-shadow(
      0 28px 55px rgba(0, 0, 0, 0.45)
    );
}

.logo-stage img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* ORBITS */

.orbit {
  position: absolute;

  border: 1px solid rgba(225, 190, 164, 0.34);
  border-radius: 50%;

  transform: rotate(-15deg);
}

.orbit-one {
  width: 590px;
  height: 330px;
}

.orbit-two {
  width: 440px;
  height: 590px;

  transform: rotate(50deg);
}


/* STAR */

.hero-star {
  position: absolute;

  right: 8%;
  top: 13%;

  font-size: 56px;

  color: var(--cream);

  text-shadow:
    0 0 28px rgba(234, 216, 201, 0.5);
}


/* FLOATING CARD */

.floating-card {
  position: absolute;

  right: 4%;
  bottom: 20%;

  z-index: 4;

  width: 230px;
  height: 130px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 20px;

  border: 1px solid rgba(236, 220, 208, 0.2);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(27, 31, 39, 0.9),
      rgba(8, 12, 18, 0.82)
    );

  transform: rotate(8deg);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45);
}

.floating-card span {
  font-family: Georgia, "Times New Roman", serif;

  letter-spacing: 0.2em;

  color: var(--cream);
}

.floating-card small {
  margin-top: 8px;

  font-size: 8px;
  letter-spacing: 0.2em;

  color: #777;
}


/* AVAILABILITY */

.availability {
  position: absolute;

  right: 6%;
  bottom: 45px;

  color: #777d85;

  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.18em;
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  padding:
    100px
    clamp(24px, 5vw, 78px);
}

.section-head {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 38px;
}

.section-head h2,
.about h2,
.contact h2 {
  margin: 0;

  font-size: clamp(38px, 4vw, 60px);

  font-weight: 400;

  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-head > a {
  flex-shrink: 0;

  font-size: 12px;
}


/* ========================================
   FEATURED WORK
======================================== */

.featured-grid {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 18px;
}

.case-stack {
  display: grid;

  grid-template-rows: 1fr 1fr;

  gap: 18px;
}

.case {
  position: relative;

  min-height: 300px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: #111722;

  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.case-large {
  min-height: 650px;
}

.case img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    saturate(0.75)
    brightness(0.72);

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.case:hover {
  border-color: rgba(234, 216, 201, 0.35);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 35px rgba(234, 216, 201, 0.035);

  transform: translateY(-3px);
}

.case:hover img {
  transform: scale(1.035);

  filter:
    saturate(0.9)
    brightness(0.82);
}

.case::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 18, 0.85) 0%,
      rgba(8, 12, 18, 0.24) 60%,
      rgba(8, 12, 18, 0.1)
    );

  pointer-events: none;
}


/* PROJECT CONTENT */

.case-overlay {
  position: absolute;

  z-index: 2;

  inset: 0;

  padding: 30px;

  display: flex;

  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.case-overlay h3 {
  margin: 0 0 10px;

  font-size: 30px;

  font-weight: 500;
}

.case-overlay p {
  max-width: 290px;

  margin: 0 0 18px;

  color: #c5c5c8;

  line-height: 1.45;
}

.case-overlay b {
  align-self: flex-end;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;

  font-weight: 400;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.case:hover .case-overlay b {
  border-color: var(--cream);

  color: var(--cream);

  transform: rotate(8deg);
}


/* PILLS */

.pills {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.pills span {
  padding: 7px 10px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;

  background: rgba(15, 19, 27, 0.4);

  color: #d2d2d4;

  font-size: 10px;
}


/* ========================================
   SERVICES
======================================== */

.services {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.service {
  margin-right: 30px;

  padding:
    28px
    30px
    18px
    0;

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

.service:last-child {
  margin-right: 0;

  border-right: 0;
}

.service-icon {
  display: block;

  height: 45px;

  color: var(--cream);

  font-size: 28px;
}

.service h3 {
  margin: 15px 0 14px;

  font-size: 20px;

  font-weight: 500;
}

.service p {
  margin: 0;

  font-size: 13px;
  line-height: 1.7;

  color: #9da0a6;
}


/* ========================================
   ABOUT
======================================== */

.about {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(250px, 0.8fr)
    minmax(400px, 1.3fr)
    minmax(250px, 0.7fr);

  gap: clamp(40px, 5vw, 80px);

  align-items: center;

  overflow: hidden;
}


/* DECORATIVE ORBIT */

.about::after {
  content: "";

  position: absolute;

  z-index: 0;

  width: 470px;
  height: 470px;

  right: -210px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(211, 188, 166, 0.13);
  border-radius: 50%;

  pointer-events: none;
}


/* ABOUT IMAGE */

.about-image {
  position: relative;

  z-index: 2;

  width: 100%;

  aspect-ratio: 1 / 1.05;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;

  background: var(--ink2);
}

.about-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(0.8)
    brightness(0.82);

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.025);

  filter:
    saturate(0.9)
    brightness(0.9);
}


/* ABOUT COPY */

.about-copy {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 650px;

  justify-self: start;

  text-align: left;
}

.about-copy .eyebrow {
  margin: 0 0 14px;

  text-align: left;
}

.about-copy h2 {
  margin: 0 0 22px;

  text-align: left;

  line-height: 1;

  font-size: clamp(38px, 3.6vw, 58px);
}

.about-copy h2 em {
  font-family: Georgia, "Times New Roman", serif;

  font-style: italic;
  font-weight: 400;

  color: var(--cream);
}

.about-copy > p:not(.eyebrow) {
  max-width: 600px;

  margin: 0 0 14px;

  text-align: left;

  color: #aaaeb2;

  line-height: 1.7;

  font-size: 14px;
}

.about-copy .btn {
  margin-top: 12px;
}


/* ABOUT QUOTE */

.about-quote,
.about blockquote {
  position: relative;

  z-index: 2;

  justify-self: center;

  margin: 0;

  text-align: left;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(21px, 2vw, 30px);

  font-weight: 400;

  line-height: 1.35;

  color: #d4c6bb;
}

.about-quote em,
.about blockquote em {
  color: var(--cream);

  font-style: italic;
}


/* QUOTE STAR */

.about-quote::before,
.about blockquote::before {
  content: "✦";

  position: absolute;

  top: -55px;
  left: -18px;

  font-family: Arial, sans-serif;

  font-size: 22px;

  color: var(--cream);

  text-shadow:
    0 0 22px rgba(234, 216, 201, 0.32);
}


/* ========================================
   PROCESS
======================================== */

.process {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 0;
}

.process-grid > div {
  margin-right: 35px;

  padding:
    15px
    35px
    15px
    0;

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

.process-grid > div:last-child {
  margin-right: 0;

  border-right: 0;
}

.process-grid b {
  font-size: 20px;

  color: #e7e0da;
}

.process-grid h3 {
  margin: 18px 0 12px;

  font-weight: 500;
}

.process-grid p {
  margin: 0;

  font-size: 12px;

  color: #92969c;

  line-height: 1.55;
}


/* ========================================
   CONTACT
======================================== */

.home-page .contact {
  display: block;

  margin: auto;

  padding:
    70px
    clamp(24px, 5vw, 78px)
    100px;
}

.contact-panel {
  position: relative;

  overflow: hidden;

  padding: 60px;

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 80px;

  border: 1px solid var(--line);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at 12% 130%,
      rgba(181, 135, 100, 0.22),
      transparent 42%
    ),
    linear-gradient(
      120deg,
      #0d131d,
      #080d15
    );
}


/* CONTACT CURVE */

.contact-panel::before {
  content: "";

  position: absolute;

  width: 850px;
  height: 350px;

  left: -260px;
  bottom: -285px;

  border-radius: 50%;

  border-top: 1px solid rgba(232, 200, 174, 0.3);

  transform: rotate(7deg);

  pointer-events: none;
}


/* CONTACT COPY */

.contact-copy {
  position: relative;

  z-index: 1;
}

.contact-copy .eyebrow {
  margin-bottom: 24px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy > p:last-child {
  max-width: 430px;

  margin: 0;

  color: #a4a7ac;

  line-height: 1.65;
}


/* ========================================
   CONTACT FORM
======================================== */

.home-page form {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: none;

  display: flex;

  flex-direction: column;

  gap: 24px;

  margin: 0;

  padding: 32px;

  background: rgba(5, 9, 15, 0.42);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
}


/* NAME + EMAIL */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}


/* INDIVIDUAL FIELD */

.form-field {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


/* LABEL */

.home-page .form-field label {
  display: block;

  margin: 0;

  font-size: 10px;

  line-height: 1;

  letter-spacing: 0.14em;

  color: #a8abb0;
}


/* INPUT + TEXTAREA */

.home-page .form-field input,
.home-page .form-field textarea {
  display: block;

  width: 100%;

  margin: 0;

  padding: 15px 16px;

  background: #0a1019;

  color: var(--paper);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;

  outline: none;

  font: inherit;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.home-page .form-field input {
  min-height: 48px;
}

.home-page .form-field textarea {
  min-height: 125px;

  resize: vertical;
}


/* PLACEHOLDERS */

.home-page .form-field input::placeholder,
.home-page .form-field textarea::placeholder {
  color: #737b86;

  opacity: 1;
}


/* FORM FOCUS */

.home-page .form-field input:focus,
.home-page .form-field textarea:focus {
  border-color: rgba(234, 216, 201, 0.55);

  background: #0c131e;

  box-shadow:
    0 0 0 3px rgba(234, 216, 201, 0.025),
    0 0 22px rgba(234, 216, 201, 0.035);
}


/* FORM BUTTON */

.home-page form .btn {
  align-self: flex-start;

  width: auto;

  margin: 0;

  padding: 14px 24px;

  font-weight: 500;
}


/* STATUS */

.form-status {
  margin: -10px 0 0;

  font-size: 12px;

  color: var(--cream);
}


/* ========================================
   FOOTER
======================================== */

.home-page footer {
  width: 100%;
  max-width: 1500px;

  margin: auto;

  padding:
    35px
    clamp(24px, 5vw, 78px)
    55px;

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 12px 30px;

  align-items: center;

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

.home-page footer > p {
  margin: 0;

  font-size: 11px;

  color: #747980;
}

.home-page footer > div {
  grid-row: 1;
  grid-column: 2;

  display: flex;

  gap: 28px;

  font-size: 12px;
}

.home-page footer small {
  grid-column: 2;

  color: #666b72;

  font-size: 10px;
}


/* ========================================
   REVEAL ANIMATION
======================================== */

.reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

  .about {
    grid-template-columns:
      minmax(240px, 0.8fr)
      minmax(400px, 1.2fr);

    gap: 50px;
  }

  .about-quote,
  .about blockquote {
    grid-column: 2;

    justify-self: start;

    margin-top: 25px;
  }
}


/* ========================================
   TABLET / MOBILE
======================================== */

@media (max-width: 900px) {

  /* NAV */

  .studio-nav {
    grid-template-columns: 1fr auto;

    height: 72px;
  }

  .nav-links {
    display: none;
  }


  /* HERO */

  .hero {
    height: auto;

    max-height: none;

    min-height: 900px;

    grid-template-columns: 1fr;

    align-content: start;

    padding-top: 130px;
  }

  .hero-art {
    height: 430px;
  }

  .logo-stage {
    width: min(430px, 80vw);
  }

  .orbit-one {
    width: 450px;
  }

  .orbit-two {
    width: 330px;
    height: 450px;
  }

  .floating-card {
    display: none;
  }

  .availability {
    display: none;
  }


  /* PROJECTS */

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

  .case-large {
    min-height: 520px;
  }

  .case-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }


  /* SERVICES */

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

  .service:nth-child(2) {
    margin-right: 0;

    border-right: 0;
  }


  /* PROCESS */

  .process-grid {
    grid-template-columns: 1fr 1fr;

    gap: 25px;
  }


  /* CONTACT */

  .contact-panel {
    grid-template-columns: 1fr;

    gap: 45px;

    padding: 40px;
  }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

  /* ABOUT */

  .about {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-image {
    max-width: 100%;

    aspect-ratio: 4 / 3;
  }

  .about-copy {
    max-width: 100%;
  }

  .about-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .about-quote,
  .about blockquote {
    grid-column: auto;

    justify-self: start;

    margin-top: 35px;

    max-width: 350px;
  }

  .about::after {
    width: 350px;
    height: 350px;

    right: -240px;
  }


  /* FORM */

  .form-row {
    grid-template-columns: 1fr;

    gap: 24px;
  }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 600px) {

  /* NAV */

  .studio-nav {
    padding: 0 18px;
  }

  .brand span {
    font-size: 12px;
  }

  .nav-cta {
    padding: 9px 12px;

    font-size: 11px;
  }


  /* HERO */

  .hero {
    min-height: 820px;

    padding:
      120px
      20px
      50px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-art {
    height: 340px;
  }

  .orbit-one {
    width: 340px;
    height: 210px;
  }

  .orbit-two {
    width: 250px;
    height: 340px;
  }

  .hero-star {
    font-size: 36px;
  }


  /* GENERAL */

  .section {
    padding: 72px 20px;
  }

  .section-head {
    align-items: flex-start;

    gap: 20px;
  }

  .section-head > a {
    display: none;
  }

  .eyebrow {
    letter-spacing: 0.25em;
  }


  /* PROJECTS */

  .featured-grid,
  .case-stack {
    display: block;
  }

  .case,
  .case-large {
    min-height: 430px;

    margin-bottom: 16px;
  }


  /* SERVICES */

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

  .service,
  .service:nth-child(2) {
    margin: 0;

    padding: 28px 0;

    border-right: 0;

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

  .service:last-child {
    border-bottom: 0;
  }


  /* PROCESS */

  .process-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .process-grid > div {
    margin-right: 0;

    padding: 24px 0;

    border-right: 0;

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

  .process-grid > div:last-child {
    border-bottom: 0;
  }


  /* CONTACT */

  .home-page .contact {
    padding: 50px 20px;
  }

  .contact-panel {
    gap: 35px;

    padding: 32px 20px;
  }

  .home-page form {
    padding: 22px;

    gap: 22px;
  }

  .form-row {
    gap: 22px;
  }

  .form-field {
    gap: 9px;
  }


  /* FOOTER */

  .home-page footer {
    grid-template-columns: 1fr;

    padding:
      35px
      20px
      45px;
  }

  .home-page footer > div,
  .home-page footer small {
    grid-column: 1;
    grid-row: auto;
  }

  .home-page footer > div {
    flex-wrap: wrap;
  }
}


/* ========================================
   VERY SMALL SCREENS
======================================== */

@media (max-width: 420px) {

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    align-items: flex-start;

    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-copy h2 {
    font-size: 38px;
  }

  .home-page form {
    padding: 18px;
  }
}

/* ========================================
   BYHATI — PROJECT / CASE STUDY PAGE
======================================== */

.project-page {
  background:
    radial-gradient(
      circle at 75% 5%,
      rgba(185, 143, 113, 0.08),
      transparent 25%
    ),
    var(--ink);

  color: var(--paper);

  overflow-x: hidden;
}


/* ========================================
   PROJECT HERO
======================================== */

.project-hero {
  width: 100%;
  max-width: 1500px;

  min-height: 600px;

  margin: 0 auto;

  padding:
    170px
    clamp(24px, 7vw, 110px)
    80px;

  display: grid;

  grid-template-columns: 1.5fr 0.5fr;

  gap: 100px;

  align-items: end;

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

.project-back {
  display: inline-block;

  margin-bottom: 70px;

  color: #8f949c;

  font-size: 12px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.project-back:hover {
  color: var(--cream);

  transform: translateX(-3px);
}

.project-hero .eyebrow {
  margin-bottom: 18px;
}

.project-hero h1 {
  margin: 0;

  font-size: clamp(80px, 10vw, 155px);

  font-weight: 400;

  line-height: 0.85;

  letter-spacing: -0.065em;
}

.project-lead {
  max-width: 690px;

  margin: 40px 0 30px;

  color: #aeb1b6;

  font-size: clamp(17px, 1.5vw, 21px);

  line-height: 1.6;
}


/* TAGS */

.project-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}

.project-tags span {
  padding: 8px 13px;

  border: 1px solid rgba(234, 216, 201, 0.18);
  border-radius: 999px;

  color: #c8c8ca;

  font-size: 10px;
}


/* ========================================
   PROJECT META
======================================== */

.project-meta {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 35px 45px;

  padding-bottom: 5px;
}

.project-meta > div {
  padding-top: 14px;

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

.project-meta span {
  display: block;

  margin-bottom: 10px;

  color: #70757d;

  font-size: 9px;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.project-meta p {
  margin: 0;

  color: #c7c8cb;

  font-size: 12px;

  line-height: 1.6;
}


.project-showcase {
  width: calc(100% - 48px);
  max-width: 950px;

  margin: 0 auto;

  padding: 35px 0 120px;

  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.project-showcase-main,
.project-showcase-side img {
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 14px;

  background: #101620;
}

.project-showcase-main {
  min-height: 0;
  aspect-ratio: 0.78;
}

.project-showcase-main img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

.project-showcase-side {
  display: grid;
  grid-template-rows: 1fr 1fr;

  gap: 14px;
}

.project-showcase-side img {
  width: 100%;
  height: 100%;

  min-height: 0;

  display: block;
  object-fit: cover;
}


/* TABLET */

@media (max-width: 900px) {

  .project-showcase {
    width: calc(100% - 48px);
    max-width: 720px;

    grid-template-columns: 1.3fr 0.7fr;

    padding-bottom: 90px;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .project-showcase {
    width: calc(100% - 40px);

    grid-template-columns: 1fr;

    gap: 12px;

    padding: 20px 0 70px;
  }

  .project-showcase-main {
    aspect-ratio: auto;
  }

  .project-showcase-main img {
    height: auto;
  }

  .project-showcase-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;

    gap: 12px;
  }

  .project-showcase-side img {
    height: auto;
    aspect-ratio: 9 / 16;
  }

}


/* ========================================
   CASE INTRO
======================================== */

.case-intro {
  width: 100%;
  max-width: 1350px;

  margin: 0 auto;

  padding:
    120px
    clamp(24px, 5vw, 78px);

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: clamp(60px, 9vw, 150px);
}

.case-intro h2,
.case-section-heading h2,
.development-section h2 {
  max-width: 650px;

  margin: 0;

  font-size: clamp(42px, 5vw, 72px);

  font-weight: 400;

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.case-intro-copy {
  max-width: 620px;
}

.case-intro-copy > p:not(.case-large-text),
.development-section > div:last-child > p:not(.case-large-text) {
  color: #969aa1;

  font-size: 14px;

  line-height: 1.8;
}

.case-large-text {
  margin-top: 0;
  margin-bottom: 35px;

  color: #ded7d1;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(23px, 2.4vw, 34px);

  line-height: 1.4;
}


/* ========================================
   CASE SECTIONS
======================================== */

.case-section {
  width: 100%;
  max-width: 1350px;

  margin: 0 auto;

  padding:
    120px
    clamp(24px, 5vw, 78px);

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

.case-section-heading {
  margin-bottom: 75px;
}

.case-section-heading h2 {
  max-width: 850px;
}


/* ========================================
   RESEARCH STATS
======================================== */

.research-stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  margin-bottom: 90px;

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

.research-stats article {
  min-height: 170px;

  padding: 30px;

  display: flex;

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

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

.research-stats article:last-child {
  border-right: 0;
}

.research-stats strong {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 55px;

  font-weight: 400;

  color: var(--cream);
}

.research-stats span {
  color: #8d9299;

  font-size: 11px;

  line-height: 1.5;
}


/* ========================================
   CASE TEXT
======================================== */

.case-text-columns {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;
}

.case-text-columns h3 {
  max-width: 450px;

  margin: 0;

  font-size: clamp(28px, 3vw, 42px);

  font-weight: 400;

  line-height: 1.15;
}

.case-text-columns p {
  margin-top: 0;
  margin-bottom: 20px;

  color: #969aa1;

  line-height: 1.8;

  font-size: 14px;
}


/* ========================================
   DESIGN FEATURES
======================================== */

.design-feature {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: clamp(50px, 8vw, 120px);

  align-items: center;

  margin-bottom: 120px;
}

.design-feature:last-child {
  margin-bottom: 0;
}

.design-feature.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.design-feature.reverse img {
  order: 2;
}

.design-feature img {
  width: 100%;

  max-height: 650px;

  object-fit: cover;

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

.case-number {
  display: block;

  margin-bottom: 25px;

  color: var(--cream);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 15px;
}

.design-feature h3 {
  margin: 0 0 25px;

  font-size: clamp(30px, 3vw, 45px);

  font-weight: 400;
}

.design-feature p {
  color: #969aa1;

  font-size: 14px;

  line-height: 1.8;
}


/* ========================================
   SOLUTION FEATURES
======================================== */

.feature-list {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.feature-list article {
  min-height: 260px;

  padding:
    30px
    35px
    30px
    0;

  margin-right: 35px;

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

.feature-list article:last-child {
  margin-right: 0;

  border-right: 0;
}

.feature-list article > span {
  color: var(--cream);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 14px;
}

.feature-list h3 {
  margin: 60px 0 15px;

  font-size: 20px;

  font-weight: 500;
}

.feature-list p {
  margin: 0;

  color: #8d9299;

  font-size: 12px;

  line-height: 1.7;
}


/* ========================================
   DEVELOPMENT
======================================== */

.development-section {
  width: 100%;
  max-width: 1350px;

  margin: 0 auto;

  padding:
    130px
    clamp(24px, 5vw, 78px);

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(70px, 10vw, 160px);

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

.development-section .btn {
  margin-top: 25px;
}


/* ========================================
   REFLECTION
======================================== */

.reflection-section {
  position: relative;

  width: calc(100% - 48px);
  max-width: 1200px;

  margin: 40px auto 130px;

  padding: 100px clamp(30px, 8vw, 120px);

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(185, 143, 113, 0.12),
      transparent 38%
    ),
    var(--ink2);

  text-align: center;
}

.reflection-section::after {
  content: "";

  position: absolute;

  width: 550px;
  height: 280px;

  right: -250px;
  bottom: -190px;

  border: 1px solid rgba(234, 216, 201, 0.13);
  border-radius: 50%;
}

.reflection-star {
  margin-bottom: 25px;

  color: var(--cream);

  font-size: 30px;

  text-shadow:
    0 0 25px rgba(234, 216, 201, 0.35);
}

.reflection-section blockquote {
  max-width: 800px;

  margin: 30px auto 40px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(35px, 5vw, 65px);

  line-height: 1.08;

  letter-spacing: -0.03em;
}

.reflection-section > p:not(.eyebrow) {
  max-width: 620px;

  margin: 15px auto;

  color: #969aa1;

  font-size: 13px;

  line-height: 1.8;
}


/* ========================================
   NEXT PROJECT
======================================== */

.next-project {
  width: 100%;
  max-width: 1350px;

  margin: 0 auto;

  padding:
    100px
    clamp(24px, 5vw, 78px);

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

.next-project > a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 25px 0;

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

  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

.next-project > a span {
  font-size: clamp(55px, 8vw, 110px);

  font-weight: 400;

  letter-spacing: -0.05em;
}

.next-project > a b {
  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  font-size: 25px;

  font-weight: 400;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.next-project > a:hover {
  color: var(--cream);

  padding-left: 12px;
}

.next-project > a:hover b {
  background: var(--cream);

  color: var(--ink);

  transform: rotate(8deg);
}


/* ========================================
   PROJECT RESPONSIVE
======================================== */

@media (max-width: 900px) {

  .project-hero {
    grid-template-columns: 1fr;

    gap: 60px;

    padding-top: 140px;
  }

  .project-back {
    margin-bottom: 45px;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .project-showcase-main {
    min-height: 500px;
  }

  .project-showcase-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .case-intro,
  .development-section {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .research-stats,
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .research-stats article:nth-child(2) {
    border-right: 0;
  }

  .case-text-columns {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .design-feature,
  .design-feature.reverse {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .design-feature.reverse img {
    order: 0;
  }

  .feature-list article:nth-child(2) {
    border-right: 0;
  }

}


@media (max-width: 600px) {

  .project-hero {
    min-height: auto;

    padding:
      130px
      20px
      60px;
  }

  .project-hero h1 {
    font-size: 75px;
  }

  .project-meta {
    grid-template-columns: 1fr 1fr;
  }

  .project-showcase {
    padding:
      20px
      20px
      80px;
  }

  .project-showcase-main {
    min-height: 430px;
  }

  .project-showcase-side {
    grid-template-columns: 1fr;
  }

  .case-intro,
  .case-section,
  .development-section {
    padding:
      80px
      20px;
  }

  .research-stats {
    grid-template-columns: 1fr 1fr;
  }

  .research-stats article {
    min-height: 145px;

    padding: 20px;
  }

  .research-stats strong {
    font-size: 42px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list article,
  .feature-list article:nth-child(2) {
    min-height: auto;

    margin: 0;

    padding: 30px 0;

    border-right: 0;

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

  .feature-list h3 {
    margin-top: 30px;
  }

  .reflection-section {
    width: calc(100% - 40px);

    margin-bottom: 80px;

    padding: 70px 25px;
  }

  .next-project {
    padding:
      70px
      20px;
  }

  .next-project > a b {
    width: 50px;
    height: 50px;

    font-size: 18px;
  }

}

/* ========================================
   ACCESSIBILITY
======================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* =========================================================
   OURFIT
========================================================= */

.ourfit-page .ourfit-showcase {
    max-width: 780px;
}


/* Main Ourfit visual */

.ourfit-page .showcase-main {
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(223, 197, 178, .07),
            transparent 60%
        ),
        #0a111b;
}


/* =========================================================
   OURFIT CONCEPT
========================================================= */

.ourfit-concept {
    margin-top: 65px;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}


.ourfit-concept-visual {
    position: relative;

    max-width: 420px;
    margin: 0 auto;

    padding: 22px;

    border: 1px solid var(--line);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.008)
        );
}


.ourfit-concept-visual img {
    display: block;

    width: 100%;

    border-radius: 11px;
}


.ourfit-concept-copy {
    max-width: 440px;
}


.ourfit-concept-copy .step-number {
    display: block;

    margin: 32px 0 8px;

    color: var(--cream);

    font-size: 9px;
    letter-spacing: .2em;
}


.ourfit-concept-copy .step-number:first-child {
    margin-top: 0;
}


.ourfit-concept-copy h3 {
    margin: 0 0 10px;

    color: var(--text);

    font-size: 21px;
    font-weight: 400;
    letter-spacing: -.025em;
}


.ourfit-concept-copy p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   DESIGN + DEVELOPMENT
========================================================= */

.ourfit-page .process-feature {
    margin-top: 55px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;

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


.ourfit-page .process-feature > div {
    padding: 45px 50px 45px 0;
}


.ourfit-page .process-feature > div + div {
    padding-left: 50px;

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


.ourfit-page .process-feature h3 {
    margin: 0 0 18px;

    color: var(--text);

    font-size: 22px;
    font-weight: 400;
}


.ourfit-page .process-feature p {
    max-width: 430px;

    margin: 0 0 16px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   OURFIT RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .ourfit-concept {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .ourfit-concept-copy {
        max-width: none;
    }


    .ourfit-page .process-feature {
        grid-template-columns: 1fr;
    }


    .ourfit-page .process-feature > div,
    .ourfit-page .process-feature > div + div {
        padding: 35px 0;
    }


    .ourfit-page .process-feature > div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

}


@media (max-width: 560px) {

    .ourfit-concept {
        margin-top: 40px;
    }


    .ourfit-concept-visual {
        padding: 12px;
    }


    .ourfit-concept-copy h3 {
        font-size: 19px;
    }

}
}