:root {
  --font-manrope: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

:root {
  --font-inter: "Inter", "Helvetica Neue", Arial, sans-serif;
}

:root {
  --navy: #263470;
  --navy-deep: #1d2856;
  --accent: #c2612c;
  --ink: #1c1c1e;
  --ink-soft: #4a4a52;
  --meta: #8a8a94;
  --rule: #e3e3e6;
  --surface: #ffffff;
  --surface-grey: #f5f4f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, p, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1200;
  background: var(--navy);
  padding: 12px 20px;
  color: #fff;
}

.skip-to-content:focus {
  left: 0;
}

/* Reveal animations */
.fade-in-text,
.animate-card,
.hero-enter {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.76, 0, 0.24, 1), transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-enter {
  transition-delay: var(--enter-delay, 0s);
}

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

/* ===== Header ===== */
.main-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo-link img {
  width: 132px;
  height: auto;
}

.nav-toggle-input {
  display: none;
}

.main-nav-list {
  display: none;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
}

.nav-toggle-input:checked ~ .main-nav-list {
  display: flex;
  position: fixed;
  left: 0;
  top: 72px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--surface);
  padding: 24px;
  overflow-y: auto;
}

.nav-link {
  position: relative;
  display: block;
  padding: 14px 0;
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.main-nav-list > li {
  width: 100%;
  border-bottom: 1px solid var(--rule);
}

.nav-phone-link {
  display: block;
  padding: 18px 0 0;
  font-family: var(--font-manrope);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}

.nav-link--primary {
  color: var(--accent);
}

/* ===== Hero ===== */
.about-hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-image-col {
  position: relative;
  min-height: 320px;
}

.hero-col-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-image-frame {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  z-index: 2;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-bleed {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-text-col {
  background: var(--navy);
  color: #fff;
}

.hero-content-wrapper {
  padding: 56px 24px 72px;
}

.hero-meta {
  display: block;
  font-family: var(--font-manrope);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.62);
}

.hero-accent {
  width: 48px;
  height: 2px;
  margin: 22px 0 26px;
  background: var(--accent);
}

.about-hero-title {
  font-family: var(--font-manrope);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.about-hero-subtitle {
  margin-top: 20px;
  font-family: var(--font-manrope);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

.about-hero-description {
  margin-top: 24px;
  max-width: 460px;
  font-size: 14.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
}

.hero-column-accent {
  display: none;
}

.scroll-indicator {
  display: none;
}

.scroll-text {
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.scroll-arrow svg {
  width: 18px;
  height: 18px;
}

/* ===== Construction lines & labels ===== */
.about-construction-line {
  width: 100%;
  max-width: 1600px;
  height: 1px;
  margin: 0 auto;
  background: var(--rule);
}

.about-section-label {
  display: block;
  padding: 40px 24px 0;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--meta);
}

.section-identifier {
  display: block;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.about-datum-line {
  width: 32px;
  height: 2px;
  margin: 14px 0 20px;
  background: var(--accent);
}

/* ===== Approach ===== */
.philosophy-section {
  padding: 40px 0 72px;
}

.philosophy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.philosophy-content-grid {
  display: grid;
  gap: 34px;
}

.philosophy-landscape-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.philosophy-title {
  font-family: var(--font-manrope);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.philosophy-lead {
  margin-top: 20px;
  color: var(--ink-soft);
}

/* ===== Product spreads ===== */
.principals-section {
  padding: 40px 0 64px;
}

.principal-spread {
  display: grid;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 34px 24px 48px;
}

.principal-spread-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.15);
}

.principal-spread-name {
  margin-top: 4px;
  font-family: var(--font-manrope);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
}

.principal-spread-role {
  margin-top: 10px;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--meta);
}

.principal-spread-bio {
  margin-top: 20px;
  color: var(--ink-soft);
}

.spread-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.principal-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  font-family: var(--font-manrope);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
}

.toggle-arrow {
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.spread-toggle-input:checked ~ .principal-toggle-btn .toggle-arrow {
  transform: rotate(90deg);
}

.principal-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.spread-toggle-input:checked ~ .principal-details {
  grid-template-rows: 1fr;
}

.principal-details > div {
  overflow: hidden;
}

.principal-details h4 {
  margin: 26px 0 10px;
  font-family: var(--font-manrope);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.qualifications-list li,
.expertise li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.qualifications-list li::before,
.expertise li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.expertise strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===== Studio band ===== */
.about-studio-section {
  background: var(--navy);
  padding: 64px 0 68px;
  color: #fff;
}

.studio-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.studio-headline {
  margin-top: 18px;
  font-family: var(--font-manrope);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.studio-lead {
  margin-top: 18px;
  max-width: 620px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
}

.studio-details-grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.studio-detail-block {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px;
}

.detail-label {
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.studio-detail-block p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.studio-map-link,
.studio-phone-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.studio-map-link:hover,
.studio-phone-link:hover {
  border-bottom-color: var(--accent);
}

/* ===== Process ===== */
.design-process-section {
  padding: 40px 0 72px;
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-title {
  font-family: var(--font-manrope);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
}

.process-subtitle {
  margin-top: 12px;
  color: var(--ink-soft);
}

.process-steps {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
}

.step-number {
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.step-title {
  font-family: var(--font-manrope);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}

.step-description {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ===== Start band — text only ===== */
.start-band {
  padding: 48px 0 56px;
}

.start-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.start-title {
  font-family: var(--font-manrope);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
}

.start-lead {
  margin-top: 16px;
  max-width: 760px;
  color: var(--ink-soft);
}

.start-grid {
  display: grid;
  gap: 26px;
  margin-top: 40px;
}

.start-col {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.start-step {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-manrope);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.start-col p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.start-note {
  margin-top: 34px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  max-width: 760px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ===== Closer ===== */
.about-page-closer {
  background: var(--surface-grey);
  padding: 64px 0 68px;
}

.closer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.closer-grid {
  display: grid;
  gap: 44px;
}

.closer-title {
  font-family: var(--font-manrope);
  font-size: 25px;
  font-weight: 500;
  color: var(--navy);
}

.closer-text {
  margin-top: 16px;
  max-width: 520px;
  color: var(--ink-soft);
}

.closer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.closer-link {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s cubic-bezier(0.76, 0, 0.24, 1), color 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.closer-link--primary {
  background: var(--navy);
  color: #fff;
}

.closer-link--primary:hover {
  background: var(--navy-deep);
}

.closer-link--secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.closer-link--secondary:hover {
  background: var(--navy);
  color: #fff;
}

.closer-aside-block {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-bottom: 26px;
}

.closer-aside-label {
  display: block;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}

.closer-aside-link,
.closer-phone {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.closer-aside-text {
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ===== Offer band ===== */
.newsletter-section {
  background: var(--navy-deep);
  padding: 52px 0 56px;
  color: #fff;
}

.newsletter-container {
  display: grid;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-title {
  font-family: var(--font-manrope);
  font-size: 21px;
  font-weight: 500;
}

.newsletter-subtitle {
  margin-top: 12px;
  max-width: 560px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  padding: 15px 26px;
  border-radius: 2px;
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: background 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.newsletter-button:hover {
  background: #a95324;
}

.newsletter-consent {
  margin-top: 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-consent a {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: #fff;
}

.footer-container {
  display: grid;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 24px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.acknowledgement-title,
.section-title {
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
}

.acknowledgement-text {
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.contact-details .location {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.contact-link {
  display: block;
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

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

.certification {
  margin-top: 16px;
  font-size: 11.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
}

.footer-navigation .nav-list li {
  border-bottom: none;
  width: auto;
}

.footer-navigation .nav-link {
  padding: 7px 0;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.footer-navigation .nav-link:hover {
  color: var(--accent);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 0;
  font-size: 12.5px;
}

.spec-key {
  color: rgba(255, 255, 255, 0.75);
}

.spec-val {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-content {
  display: grid;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 24px 28px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.legal-link:hover {
  color: #fff;
}

.footer-logo {
  width: 108px;
  filter: brightness(0) invert(1);
}

.copyright {
  margin-top: 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== Cookie banner ===== */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  display: none;
  background: var(--navy-deep);
  padding: 18px 24px;
  color: #fff;
}

.cookie-consent.is-open {
  display: block;
}

.cookie-consent__inner {
  display: grid;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.cookie-consent__text {
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-consent__link {
  border-bottom: 1px solid var(--accent);
  color: #fff;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
}

.cookie-consent__btn {
  flex: 1 1 auto;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  background: transparent;
  font-family: var(--font-manrope);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.cookie-consent__btn--accept {
  background: var(--accent);
  border-color: var(--accent);
}

/* stary wariant paska ofertowego, zostal po przebudowie w czerwcu */
.newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 16px;
  color: #fff;
}

/* ===== Subpages ===== */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  color: #fff;
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero .hero-accent {
  margin: 18px 0 22px;
}

.page-title {
  font-family: var(--font-manrope);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.page-lead {
  margin-top: 18px;
  max-width: 680px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
}

.entry {
  padding: 56px 0 72px;
}

.entry-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.entry-body h2 {
  margin: 46px 0 18px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-manrope);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
}

.entry-body h2:first-child {
  margin-top: 0;
}

.entry-body h3 {
  margin: 28px 0 10px;
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.entry-body p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.entry-body a.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.dash-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  color: var(--ink-soft);
}

.dash-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.data-table-wrap {
  overflow-x: auto;
  margin: 24px 0 28px;
}

.data-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: 13.5px;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--rule);
  padding: 13px 14px;
  text-align: left;
}

.data-table thead th {
  border-bottom: 1px solid var(--navy);
  font-family: var(--font-manrope);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.data-table tbody th {
  font-weight: 500;
  color: var(--ink);
}

.data-table td {
  color: var(--ink-soft);
}

.note-band {
  background: var(--surface-grey);
  border-left: 2px solid var(--accent);
  padding: 22px 24px;
  margin: 28px 0;
}

.note-band p {
  margin-bottom: 0;
  font-size: 13.5px;
}

.spread-row {
  display: grid;
  gap: 26px;
  margin-bottom: 44px;
}

.spread-row__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-top: 14px;
  font-family: var(--font-manrope);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--meta);
}

.job-block {
  border-top: 1px solid var(--rule);
  padding: 28px 0 24px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.job-meta span {
  background: var(--surface-grey);
  padding: 4px 12px;
  font-family: var(--font-manrope);
  font-size: 11.5px;
  color: var(--ink-soft);
}

.job-cols {
  display: grid;
  gap: 22px;
  margin-top: 16px;
}

.figure-duo {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.figure-duo figure,
.figure-solo {
  margin: 0;
}

.figure-duo img,
.figure-solo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.figure-duo figcaption,
.figure-solo figcaption {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--meta);
}

.figure-solo {
  margin: 30px 0;
}

@media (min-width: 768px) {
  body {
    font-size: 15.5px;
  }

  .header-nav {
    padding: 18px 40px;
  }

  .about-section-label {
    padding: 56px 40px 0;
  }

  .philosophy-container,
  .studio-container,
  .process-container,
  .closer-container,
  .newsletter-container,
  .footer-container,
  .footer-bottom-content,
  .page-hero-inner,
  .entry-inner,
  .principal-spread {
    padding-left: 40px;
    padding-right: 40px;
  }

  .studio-details-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }

  .start-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  .closer-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 64px;
  }

  .newsletter-container {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1.5fr 1fr 1.2fr;
  }

  .footer-bottom-content {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-brand {
    text-align: right;
  }

  .footer-logo-row {
    display: flex;
    justify-content: flex-end;
  }

  .process-step {
    grid-template-columns: 88px 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .about-hero-title {
    font-size: 40px;
  }

  .studio-headline,
  .page-title {
    font-size: 36px;
  }

  .philosophy-title,
  .process-title {
    font-size: 30px;
  }

  .job-cols,
  .figure-duo {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .spread-row {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .spread-row--rev .spread-row__img {
    order: 2;
  }

  .cookie-consent__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
  }

  .cookie-consent__btn {
    flex: 0 0 auto;
    min-width: 150px;
  }
}

@media (min-width: 900px) {
  .philosophy-content-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
  }

  .principal-spread {
    grid-template-columns: 45fr 55fr;
    align-items: center;
    gap: 56px;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .principal-spread--right .principal-spread-text {
    order: 1;
  }

  .principal-spread--right .principal-spread-image {
    order: 2;
  }

  .start-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
  }
}

@media (min-width: 1024px) {
  body {
    padding-top: 88px;
  }

  .main-nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .main-nav-list > li {
    width: auto;
    border-bottom: 0;
  }

  .hamburger-btn {
    display: none;
  }

  .nav-link {
    padding: 6px 0;
    font-size: 13px;
  }

  .nav-link .link-indicator {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-link:hover .link-indicator {
    width: 100%;
  }

  .nav-phone-link {
    padding: 9px 18px;
    border: 1px solid var(--navy);
    font-size: 13px;
  }

  .nav-phone-link:hover {
    background: var(--navy);
    color: #fff;
  }

  .about-hero-section {
    flex-direction: row;
    min-height: calc(100vh - 88px);
  }

  .hero-image-col,
  .hero-text-col {
    width: 50%;
  }

  .hero-content-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 80px 64px 96px;
  }

  .hero-content {
    max-width: 520px;
  }

  .about-hero-title {
    font-size: 46px;
  }

  .hero-column-accent {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(194, 97, 44, 0.55);
    z-index: 3;
  }

  .scroll-indicator {
    position: absolute;
    left: 75%;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
  }

  .scroll-indicator:hover {
    color: #fff;
  }

  .philosophy-section,
  .design-process-section {
    padding-bottom: 96px;
  }

  .about-studio-section {
    padding: 88px 0 92px;
  }

  .about-page-closer {
    padding: 88px 0 92px;
  }

  .entry {
    padding: 72px 0 96px;
  }

  .page-hero {
    padding: 84px 0 72px;
  }
}
