:root {
  --ivory: #fff9f4;
  --cream: #f7f0e8;
  --soft-pink: #d99da5;
  --blush: #d99da5;
  --rose: #c97c88;
  --sage: #9eaf8f;
  --muted-sage: #aebca6;
  --deep-sage: #74856a;
  --lavender: #a99ac5;
  --butter: #e8d59a;
  --plum: #49363f;
  --taupe: #a89586;
  --espresso: #302925;
  --charcoal: #5b5551;
  --line: rgba(48, 41, 37, 0.12);
  --soft-shadow: 0 22px 48px rgba(48, 41, 37, 0.08);
  --max-width: 1260px;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--ivory);
  color: var(--espresso);
  line-height: 1.6;
  overflow-y: auto;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(48, 41, 37, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  font-size: 0.82rem;
  letter-spacing: 0.26rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.8;
  transition: opacity var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  opacity: 1 !important;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--espresso);
  border-radius: 999px;
}

.hero {
  padding-top: 60px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 32px 0 40px;
}

.eyebrow,
.section-label,
.section-kicker,
.small-label,
.project-type,
.service-number,
.step-number,
.contact-links span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero-copy h1,
.intro-inner h2,
.section-header-wrap h2,
.project-info h3,
.services h2,
.process h2,
.about-copy h2,
.contact-copy h2,
.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--espresso);
}

.hero-copy h1 {
  font-size: clamp(4.2rem, 6vw, 7rem);
  margin-top: 18px;
}

.hero-copy h1 em,
.intro-inner h2 span,
.editorial-inner p:nth-child(2),
.about-copy h2,
.contact-copy h2,
.project-info h3,
.services h2,
.process h2 {
  font-style: italic;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(48, 41, 37, 0.8);
  margin-top: 22px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button-primary {
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--espresso);
}

.button-secondary {
  background: var(--soft-pink);
  color: var(--espresso);
  border-color: var(--rose);
}

.availability {
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgba(48, 41, 37, 0.7);
}

.hero-art {
  position: relative;
  min-height: 460px;
  background: #e2d9e9;
  border: 1px solid rgba(73, 54, 63, 0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.shape-blush {
  width: 180px;
  height: 180px;
  background: var(--soft-pink);
  right: -20px;
  top: 30px;
}

.shape-sage {
  width: 210px;
  height: 210px;
  background: var(--sage);
  left: 40px;
  bottom: 20px;
}

.editorial-card {
  position: absolute;
  background: rgba(250, 247, 242, 0.8);
  border: 1px solid rgba(48, 41, 37, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  max-width: 190px;
  box-shadow: 0 18px 36px rgba(48, 41, 37, 0.08);
}

.card-1 {
  left: 22px;
  top: 28px;
}

.card-2 {
  right: 22px;
  bottom: 28px;
}

.editorial-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0.4rem 0;
}

.editorial-card span:last-child {
  color: rgba(48, 41, 37, 0.75);
  font-size: 0.68rem;
}

.mark-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  height: 270px;
  border-radius: 24px;
  border: 1px solid rgba(48, 41, 37, 0.12);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.mark-block span {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(48, 41, 37, 0.78);
}

.intro-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 30px 0 10px;
}

.intro-inner h2 {
  font-size: clamp(3.2rem, 5vw, 6rem);
  letter-spacing: -0.05em;
  margin: 0;
}

.intro-inner p:last-child {
  max-width: 760px;
  font-size: 1.1rem;
  color: rgba(48, 41, 37, 0.72);
}

.selected-work {
  padding: 24px 0 28px;
  background: var(--ivory);
}

.section-header-wrap {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.section-header-wrap h2,
.services h2,
.process h2,
.contact-copy h2 {
  font-size: clamp(3rem, 4vw, 5rem);
  letter-spacing: -0.06em;
}

.section-header-wrap p,
.services .section-intro,
.process p,
.contact-copy p,
.about-copy p,
.project-description,
.service-card p,
.pricing-note,
.form-status,
.footer-brand p,
.footer-bottom {
  color: rgba(48, 41, 37, 0.72);
}

.project {
  padding: 54px 0;
  border-top: 1px solid rgba(48, 41, 37, 0.06);
}

.selected-work + .project {
  padding-top: 34px;
}

.project-left {
  background: linear-gradient(90deg, rgba(217, 157, 165, 0.2), rgba(255, 249, 244, 0.08) 58%);
}

.project-right {
  background: linear-gradient(90deg, rgba(158, 175, 143, 0.08), rgba(158, 175, 143, 0.24));
}

#lumeus {
  background: linear-gradient(90deg, rgba(169, 154, 197, 0.3), rgba(217, 157, 165, 0.2));
}

#orion {
  background: linear-gradient(90deg, rgba(232, 213, 154, 0.34), rgba(158, 175, 143, 0.28));
}

#kayesbeauty .project-number,
#lumeus .project-number {
  color: var(--rose);
}

#sekarcafe .project-number,
#orion .project-number {
  color: var(--deep-sage);
}

.project-grid {
  display: grid;
  width: min(1400px, calc(100% - 80px));
  margin-inline: auto;
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(32px, 3vw, 48px);
}

.project-preview {
  width: 100%;
  min-width: 0;
}

.project-right .project-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.project-info {
  display: grid;
  gap: 16px;
}

.project-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 4.6vw, 5.5rem);
  line-height: 0.7;
  margin: 0;
  color: var(--rose);
}

.project-info h3 {
  font-size: clamp(3rem, 4vw, 5rem);
  letter-spacing: -0.06em;
}

.project-type {
  margin: 0;
  color: rgba(48, 41, 37, 0.7);
}

.project-description {
  max-width: 550px;
  font-size: 1.05rem;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills span {
  border: 1px solid rgba(48, 41, 37, 0.14);
  background: var(--soft-pink);
  border-radius: 999px;
  padding: 0.58rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.project-links .project-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  font-size: 0.68rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.project-cta-primary {
  background: #49363F;
  color: #FFF9F4;
  border: 1px solid #49363F;
}

.project-cta-secondary {
  background: #AEBCA6;
  color: #302925;
  border: 1px solid #74856A;
}

.project-cta-primary:hover,
.project-cta-primary:focus-visible {
  background: #5B444F;
}

.project-cta-secondary:hover,
.project-cta-secondary:focus-visible {
  background: #98A991;
}

.project-links .project-cta:hover,
.project-links .project-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(48, 41, 37, 0.14);
}

.device-shell {
  background: rgba(255, 255, 255, 0.38);
  border: 2px solid var(--muted-sage);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border-bottom: 1px solid rgba(48, 41, 37, 0.08);
  padding: 16px 18px;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(48, 41, 37, 0.22);
}

.browser-name {
  justify-self: center;
  font-size: 0.7rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  font-weight: 700;
}

.browser-path {
  color: rgba(48, 41, 37, 0.7);
  font-size: 0.62rem;
  letter-spacing: 0.08rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-stage {
  position: relative;
  height: 740px;
  background: var(--ivory);
  overflow: hidden;
  display: block;
  width: 100%;
}

.preview-stage iframe {
  width: 1440px;
  height: 100%;
  max-width: none;
  border: 0;
  background: #fff;
  pointer-events: auto;
  transform-origin: top left;
  transition: width var(--transition), height var(--transition), transform var(--transition);
}

.services {
  background: var(--ivory);
  border-top: 1px solid rgba(48, 41, 37, 0.08);
  border-bottom: 1px solid rgba(48, 41, 37, 0.08);
}

.services h2 {
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.service-card {
  background: #e3b6ba;
  border: 1px solid #c98f98;
  border-radius: 26px;
  padding: 1.8rem 1.5rem;
  display: grid;
  gap: 12px;
  color: #342b2d;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:nth-child(2) {
  background: #c5d0bc;
  border-color: #9dae96;
}

.service-card:nth-child(3) {
  background: #c9bfda;
  border-color: #a99bc1;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(48, 41, 37, 0.12);
}

.service-card h3,
.service-card p,
.service-card li,
.service-card .price,
.service-card .service-best {
  color: #342b2d;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
}

.price {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-sage);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(48, 41, 37, 0.78);
}

.service-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--rose);
}

.service-card:nth-child(2) li::before {
  color: var(--deep-sage);
}

.service-card:nth-child(3) li::before {
  color: #81739d;
}

.service-best {
  margin-top: 10px;
  font-weight: 600;
}

.pricing-note {
  margin-top: 26px;
  font-size: 0.84rem;
  line-height: 1.8;
}

.cta-block {
  margin-top: 24px;
}

.process {
  padding-top: 90px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 26px;
  margin-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto 0;
  height: 1px;
  background: rgba(48, 41, 37, 0.14);
}

.timeline-step {
  position: relative;
  padding-top: 34px;
  display: grid;
  gap: 14px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 1px rgba(48, 41, 37, 0.12);
}

.timeline-step h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.step-number {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: var(--rose);
}

.timeline-step:nth-child(2)::before,
.timeline-step:nth-child(5)::before {
  background: var(--deep-sage);
}

.timeline-step:nth-child(2) .step-number,
.timeline-step:nth-child(5) .step-number {
  color: var(--deep-sage);
}

.timeline-step:nth-child(3)::before,
.timeline-step:nth-child(6)::before {
  background: var(--lavender);
}

.timeline-step:nth-child(3) .step-number,
.timeline-step:nth-child(6) .step-number {
  color: #8978a7;
}

.editorial-break {
  background: var(--lavender);
  padding: 80px 0;
  border-top: 1px solid rgba(48, 41, 37, 0.08);
  border-bottom: 1px solid rgba(48, 41, 37, 0.08);
}

.editorial-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.editorial-inner p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--espresso);
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
}

.about {
  padding-top: 76px;
  padding-bottom: 42px;
  background: var(--cream);
}

.about-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.about-copy > .section-label,
.about-copy > h2,
.about-copy > p,
.about-copy > .ai-note {
  margin: 0;
}

.about-copy > p,
.about-copy > .ai-note {
  max-width: 900px;
  line-height: 1.56;
}

.about-copy h2 {
  font-family: "Bodoni Moda", serif;
  font-style: normal;
  font-size: clamp(2.9rem, 4.1vw, 4.7rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.06em;
  max-width: 640px;
}

.about-copy .section-label {
  margin-bottom: -2px;
}

.about-photo,
.contact-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(48, 41, 37, 0.1);
  background: var(--sage);
  border-color: var(--deep-sage);
  padding: 14px;
}

.about-photo {
  min-height: 520px;
}

.about-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-photo img {
  min-height: 492px;
  border-radius: 18px;
}

.photo-caption,
.photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(48, 41, 37, 0.12);
  background: var(--soft-pink);
  backdrop-filter: blur(4px);
  font-size: 0.68rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.about-tools {
  margin-top: 8px;
  padding: 1.2rem 1.1rem 0.6rem;
  border-top: 1px solid rgba(48, 41, 37, 0.1);
}

.about-copy > .about-tools {
  margin-top: 2px;
}

.about-tools h3 {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tags span {
  border: 1px solid rgba(48, 41, 37, 0.12);
  border-radius: 999px;
  padding: 0.7rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  background: var(--lavender);
  border-color: #8978a7;
}

.ai-note {
  margin-top: 12px;
  line-height: 1.8;
}

.contact {
  padding-top: 80px;
  background: var(--plum);
  color: var(--ivory);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  padding: 26px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid rgba(255, 249, 244, 0.3);
  box-shadow: var(--soft-shadow);
  align-items: center;
}

.contact-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-copy h2,
.contact-copy .section-label,
.contact-copy .contact-intro,
.contact-copy .contact-label,
.contact-copy .contact-value {
  color: var(--ivory);
}

.contact-link {
  border-top-color: rgba(255, 249, 244, 0.24);
}

.contact-intro {
  max-width: 560px;
  font-size: 1.02rem;
  margin: 0;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.contact-link {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 1rem 0;
  border-top: 1px solid rgba(48, 41, 37, 0.08);
  transition: transform var(--transition), opacity var(--transition);
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateX(2px);
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: rgba(48, 41, 37, 0.7);
}

.contact-value {
  font-weight: 600;
  color: var(--espresso);
  position: relative;
  display: inline-block;
}

.contact-value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.contact-link:hover .contact-value::after,
.contact-link:focus-visible .contact-value::after {
  transform: scaleX(1);
}

.contact-arrow {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--transition);
}

.contact-link:hover .contact-arrow,
.contact-link:focus-visible .contact-arrow {
  transform: translate(3px, -3px);
}

.photo-note {
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.site-footer {
  padding: 40px 0 26px;
  background: var(--espresso);
  color: var(--ivory);
  border-top: 1px solid rgba(48, 41, 37, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: end;
}

.footer-brand h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 4rem);
}

.footer-brand p,
.footer-bottom,
.footer-links,
.footer-nav {
  color: var(--ivory);
}

.footer-links,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.footer-links {
  justify-content: center;
}

.footer-nav {
  justify-content: flex-end;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(48, 41, 37, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(250, 247, 242, 0.96);
    border: 1px solid rgba(48, 41, 37, 0.12);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    padding: 18px 18px 20px;
  }

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

  .nav-toggle {
    display: flex;
  }

  .project-grid,
  .project-right .project-grid,
  .about-wrap,
  .contact-card,
  .hero-inner,
  .editorial-inner,
  .services-grid,
  .timeline,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .project-grid {
    width: 100%;
    gap: 22px;
  }

  .project-preview {
    width: 100%;
  }

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

  .project-right .project-preview {
    order: 2;
  }

  .project-right .project-info {
    order: 1;
  }

  .services-grid,
  .timeline {
    display: grid;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    padding-top: 0;
    border-top: 1px solid rgba(48, 41, 37, 0.1);
    padding-top: 18px;
  }

  .timeline-step::before {
    top: 17px;
    left: 0;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .preview-stage {
    height: 560px;
  }

  .about {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-copy {
    gap: 12px;
  }

  .hero-art {
    min-height: 400px;
  }

  .mark-block {
    width: 220px;
    height: 220px;
  }

  .mark-block span {
    font-size: 6rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
  }

  .button {
    width: 100%;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .browser-name {
    display: none;
  }

  .browser-path {
    display: none;
  }

  .browser-bar {
    grid-template-columns: auto 1fr;
  }

  .preview-stage {
    height: 500px;
  }

  .contact-card,
  .about-wrap {
    gap: 18px;
  }

  .about-photo,
  .about-photo img {
    min-height: 360px;
  }

  .about {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-copy {
    gap: 10px;
  }

  .about-copy h2 {
    font-size: clamp(2.5rem, 9vw, 3.3rem);
  }

  .hero-art {
    min-height: 330px;
  }

  .shape-blush {
    width: 130px;
    height: 130px;
  }

  .shape-sage {
    width: 150px;
    height: 150px;
  }

  .editorial-card {
    max-width: 145px;
    padding: 0.65rem 0.7rem;
  }

  .editorial-card strong {
    font-size: 1.45rem;
  }

  .editorial-card span:last-child {
    font-size: 0.6rem;
  }

  .card-1 {
    left: 12px;
    top: 18px;
  }

  .card-2 {
    right: 12px;
    bottom: 18px;
  }

  .mark-block {
    width: 170px;
    height: 170px;
  }

  .mark-block span {
    font-size: 4.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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