:root {
  --color-bg: #f8f5f0;
  --color-bg-alt: #efe8df;
  --color-surface: #ffffff;
  --color-surface-dark: #1d1d1d;
  --color-text: #a08165ff;
  --color-muted: #4f463e;
  --color-line: rgba(26, 26, 26, 0.08);
  --color-accent: #9d5b28;
  --color-accent-soft: rgba(157, 91, 40, 0.12);
  --color-highlight: #7aa39d;
  --shadow-soft: 0 24px 45px rgba(12, 12, 12, 0.12);
  --shadow-hover: 0 32px 60px rgba(18, 18, 18, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max-width: 1240px;
  --transition: all 0.28s ease;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: radial-gradient(
      circle at 10% 10%,
      rgba(157, 91, 40, 0.12) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 0%,
      rgba(122, 163, 157, 0.12) 0%,
      transparent 50%
    ),
    var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

p {
  margin: 0 0 1.2rem;
  color: #705c49ff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.8rem;
  line-height: 1.2;
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figcaption {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-accent);
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

main {
  display: block;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: #2b241f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--color-text);
  color: #ffffff;
}

.btn--primary:hover {
  background: #000000;
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(26, 26, 26, 0.32);
}

.btn--ghost:hover {
  border-color: var(--color-text);
  color: var(--color-text);
  background: rgba(26, 26, 26, 0.04);
}

.btn--underline {
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  border-radius: 0;
  font-weight: 600;
  background: transparent;
}

.btn--underline:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.btn--light {
  background: #ffffff;
  color: var(--color-text);
  border-color: transparent;
  box-shadow: 0 22px 45px rgba(18, 18, 18, 0.22);
}

.btn--light:hover {
  background: var(--color-surface-dark);
  color: #ffffff;
  box-shadow: var(--shadow-hover);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.link-inline::after {
  content: "\2192";
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.link-inline:hover::after {
  transform: translateX(4px);
}

.showcase__grid p {
  color: white !important;
}
.showcase__grid h3 {
  color: #f1d9b5ff !important;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248, 245, 240, 0.95);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.site-header__inner {
  width: min(94%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand__mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply !important;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand__title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.75rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(32, 27, 23, 0.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.nav-menu li {
  list-style: none;
  flex: 0 1 auto;
}

.nav-menu a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #201b17;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--color-accent);
}

.nav-menu a.active-link {
  color: var(--color-accent);
}

.nav-menu a:hover::before,
.nav-menu a.active-link::before {
  background: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  letter-spacing: 0;
  max-width: 250px;
}

.header-phone {
  display: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: var(--color-accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.header-cta:hover {
  background: #b07f4b;
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 27, 23, 0.12);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #201b17;
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: #201b17;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay__panel {
  margin-left: auto;
  width: min(320px, 82%);
  height: 100%;
  background: var(--color-surface);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.nav-overlay.is-open .nav-overlay__panel {
  transform: translateX(0);
}

.nav-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nav-overlay__close {
  font-size: 1.8rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #201b17;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.nav-overlay__list a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #201b17;
}

.nav-overlay__list a.active-link {
  color: var(--color-accent);
}

.nav-overlay__footer {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.drawer-cta {
  display: inline-flex;
  font-weight: 600;
  color: var(--color-accent);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero__copy {
  max-width: 38rem;
}

.hero__copy h1 {
  font-size: clamp(2.4rem, 3vw, 4rem);
  margin-bottom: 1.2rem;
}

.hero__copy .lead {
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat {
  background: var(--color-surface);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 35px rgba(24, 24, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat__value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__gallery {
  position: relative;
  width: 100%;
}

.hero-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: clamp(320px, 56vw, 560px);
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: #ffffff;
}

.hero-slider__nav .swiper-button-prev,
.hero-slider__nav .swiper-button-next {
  color: #ffffff;
}

.hero-slider__nav .swiper-button-prev::after,
.hero-slider__nav .swiper-button-next::after {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-pagination {
  bottom: 18px !important;
}

.hero__note {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 26, 26, 0.04);
}

.hero__note span {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Why Banner */
.why-banner {
  padding: 5.2rem 0;
}

.why-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(2.8rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, #1f1914 0%, #2f2219 46%, #3f2d22 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.why-banner__inner::before {
  content: "";
  position: absolute;
  inset: -25% 30% -45% -20%;
  background: radial-gradient(
    circle at top,
    rgba(122, 163, 157, 0.45),
    transparent 60%
  );
  opacity: 0.55;
}

.why-banner__inner::after {
  content: "";
  position: absolute;
  inset: 20% -10% -30% 60%;
  background: radial-gradient(
    circle at top right,
    rgba(157, 91, 40, 0.4),
    transparent 55%
  );
  opacity: 0.6;
}

.why-banner__copy,
.why-banner__content {
  position: relative;
  z-index: 1;
}

.why-banner__copy .eyebrow {
  color: rgba(255, 245, 236, 0.75);
}

.why-banner__copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  max-width: 22ch;
}

.why-banner__copy p {
  color: rgba(255, 245, 236, 0.82);
  max-width: 48ch;
}

.why-banner__content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3.5vw, 3rem);
  align-items: center;
}

.why-banner__list {
  display: flex;
  gap: 1.4rem 3rem;
  color: rgba(255, 245, 236, 0.82);
  width: 100%;
  max-width: 620px;
  flex-direction: column !important;
}

.why-banner__list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.why-banner__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-highlight);
  box-shadow: 0 0 0 6px rgba(122, 163, 157, 0.18);
}

.why-banner__content .btn {
  align-self: center;
}

/* Pillars */
.pillars {
  padding: 4rem 0;
}

.pillars__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 50px rgba(50, 50, 50, 0.12);
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(157, 91, 40, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar:hover::after {
  opacity: 1;
}

.pillar__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Services */
.services {
  padding: 3rem 0 3rem 0rem;
}

.services__header {
  text-align: center;
  max-width: 760px;
}

.services__header .lead {
  margin: 0 auto;
}

.services__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: 0 22px 50px rgba(28, 28, 28, 0.08);
  border: 1px solid rgba(26, 26, 26, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.service-card ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
}

.service-card li {
  position: relative;
  font-size: 0.9rem;
  color: #3d3d3d;
}

.service-card li::before {
  content: "\2022";
  position: absolute;
  left: -1rem;
  color: var(--color-accent);
}

/* Process */
.process {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(157, 91, 40, 0.08), transparent 65%);
}

.process__inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process__steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

.process__steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--color-line);
}

.process__steps li:last-child {
  border-bottom: none;
}

.process__steps h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.step {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(26, 26, 26, 0.1);
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* Showcase */
.showcase {
  padding: 3rem 0;
}

.showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.showcase__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.showcase-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-card:hover img {
  transform: scale(1.04);
}

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7));
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Concept Art */
.concept-art {
  padding: 4rem 0;
  background: var(--color-bg-alt);
}

.concept-art__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.concept-art__header > div {
  max-width: 560px;
}

.concept-art__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.concept-art__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
  aspect-ratio: 4 / 5;
}

.concept-art__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.concept-art__item:hover img {
  transform: scale(1.04);
}

/* Materials */
.materials {
  padding: 3rem 0;
}

.materials__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.materials__copy ul {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.material-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.swiper {
  margin: 0 !important;
}
.material-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.material-card figcaption {
  padding: 1rem 1.4rem;
  font-weight: 600;
}

.materials__grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Testimonials */
.testimonials {
  padding: 3rem 0;
  background: var(--color-bg-alt);
}

.testimonials__inner {
  display: grid;
  gap: 3rem;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.08);
}

.testimonial blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: "Manrope", sans-serif;
}

.testimonials .swiper-pagination-bullet {
  background: var(--color-text);
  width: 12px;
  height: 12px;
}

/* Journal */
.journal {
  padding: 6rem 0;
}

.journal__inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 3rem;
  align-items: center;
}

.journal__grid {
  display: grid;
  gap: 1.5rem;
}

.journal-card {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 26, 26, 0.04);
  transition: var(--transition);
  height: 100%;
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.journal-card__tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-highlight);
}

.journal-card h3 {
  margin-bottom: 0.5rem;
}

.journal-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.journal-article-hero {
  background: linear-gradient(
    135deg,
    rgba(157, 91, 40, 0.08) 0%,
    rgba(239, 232, 223, 0.9) 100%
  );
  padding: 3rem 0 5rem;
}

.journal-article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.journal-article__meta .lead {
  margin-bottom: 1.5rem;
}

.journal-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.journal-meta-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.journal-meta__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(32, 27, 23, 0.6);
  font-weight: 600;
}

.journal-meta__value {
  font-weight: 600;
  color: var(--color-text);
}

.journal-article__media figure {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.journal-article__media img {
  border-radius: calc(var(--radius-lg) - 12px);
}

.journal-article__media figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(32, 27, 23, 0.7);
}

.journal-article-content {
  padding: 4.5rem 0 5.5rem;
}

.journal-article-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
  gap: 3rem;
  align-items: start;
}

.journal-article__body h2 {
  margin-top: 2.5rem;
}

.journal-article__body h2:first-of-type {
  margin-top: 0;
}

.journal-keypoints,
.journal-numbered {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.journal-keypoints li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
}

.journal-keypoints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-highlight);
  transform: translateY(-50%);
}

.journal-numbered {
  counter-reset: journal-step;
}

.journal-numbered li {
  counter-increment: journal-step;
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1.2rem;
}

.journal-numbered li::before {
  content: counter(journal-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.journal-numbered strong {
  display: block;
  margin-bottom: 0.25rem;
}

blockquote {
  margin: 2.5rem 0;
  padding: 2rem 2.2rem;
  border-left: 4px solid var(--color-highlight);
  background: rgba(122, 163, 157, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

blockquote p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--color-muted);
}

blockquote cite {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(32, 27, 23, 0.6);
  font-weight: 600;
}

.journal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journal-sidebar__card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 26, 26, 0.04);
}

.journal-sidebar__card h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(32, 27, 23, 0.85);
  margin-bottom: 0.9rem;
}

.journal-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.journal-sidebar__card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.journal-pairs {
  display: grid;
  gap: 1.6rem;
  margin: 2rem 0 3rem;
}

.journal-pairs article {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 26, 26, 0.04);
}

.journal-pairs h3 {
  margin-bottom: 0.6rem;
}

.journal-gallery {
  margin: 2.4rem 0;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.journal-gallery__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.05);
}

.journal-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.journal-related {
  padding: 4.5rem 0 3rem;
  background: var(--color-bg-alt);
}

.journal-related .journal__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CTA Banner */
.cta-banner {
  padding: 5rem 0 6rem;
}

.cta-banner__inner {
  background: linear-gradient(135deg, #1d1713, #382b22);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-soft);
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

/* Kontakt form */
.contact-container {
  padding: 3rem 0;
}

.contact-wrap {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.contact {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: stretch;
}

.contact iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  filter: grayscale(20%);
}

.contact-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.form-container h2 {
  font-size: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.form-group.row {
  flex-direction: row;
  gap: 1.4rem;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

label {
  font-weight: 600;
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
textarea {
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(249, 247, 244, 0.6);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(157, 91, 40, 0.2);
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.radio-group input {
  margin-right: 0.4rem;
}

.hidden {
  display: none;
}

.file-upload__label {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.file-upload__control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(26, 26, 26, 0.2);
  background: rgba(249, 247, 244, 0.7);
}

#fileUpload {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload__control:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(157, 91, 40, 0.2);
}

.file-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.file-upload__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.18);
}

.file-upload__name {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(32, 27, 23, 0.75);
  line-height: 1.4;
  word-break: break-word;
}

.file-upload__name[aria-live] {
  min-height: 1.4em;
}

.contact button[type="submit"] {
  align-self: flex-start;
  background: var(--color-text);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contact button[type="submit"]:hover {
  background: #000;
}

.error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
}
#paymentForm button {
  margin-top: 1rem;
}
/* Footer */
.site-footer {
  background: #191817;
  color: #f2f0ed;
  padding: 4rem 0 2rem;
}
.site-footer__inner {
  width: min(92%, var(--max-width));
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.site-footer__brand p {
  color: rgba(242, 240, 237, 0.92);
}

.site-footer h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.site-footer ul {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.site-footer a {
  color: rgba(242, 240, 237, 0.95);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: rgba(242, 240, 237, 0.7);
}

.footer-newsletter button {
  align-self: flex-start;
  background: var(--color-accent);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.site-footer__meta {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: rgba(242, 240, 237, 0.82);
  font-size: 0.85rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer__legal .divider {
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(25, 24, 23, 0.88);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 1.12px 4px rgba(0, 0, 0, 1.2);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #000;
}

/* Projekti page */
.projects-hero {
  padding: 5rem 0 3rem;
}

.projects-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.projects-hero__inner div {
  width: 100% !important;
}

.projects-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.projects-hero__facts div {
  background: var(--color-surface);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0.12px 32px rgba(0, 0, 0, 0.08);
}

.projects-hero__facts p {
  margin: 0;
}

.projects-hero__facts .stat__value {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--color-text);
}

.projects-hero--contact {
  position: relative;
  background: linear-gradient(135deg, #1d1713, #382b22);
  color: #ffffff;
  overflow: hidden;
}

.projects-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 16% 20%,
      rgba(157, 91, 40, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 0%,
      rgba(122, 163, 157, 0.28) 0%,
      transparent 52%
    );
  pointer-events: none;
}

.projects-hero--contact .projects-hero__inner {
  position: relative;
  z-index: 1;
}

.projects-hero--contact .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.projects-hero--contact h1 {
  color: #ffffff;
}

.projects-hero--contact .lead {
  color: rgba(255, 255, 255, 0.82);
}

.projects-hero--contact .projects-hero__facts div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.projects-hero--contact .projects-hero__facts p {
  color: rgba(255, 255, 255, 0.78);
}

.projects-hero--contact .projects-hero__facts .stat__value {
  color: #ffffff;
}

.container.projects-page {
  padding: 3rem 0;
}

.projects-page h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
}

.filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.project-active,
.filter-btn:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.projects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.project {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project:hover {
  transform: translateY(-6px);
}

.project img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project hr {
  margin: 0;
  border: none;
  height: 1px;
  background: rgba(26, 26, 26, 0.08);
}

.project > div {
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
}

.project_info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pagination button,
.pagination .page-numbers button {
  border: 1px solid rgba(26, 26, 26, 0.15);
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.pagination button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination .page-numbers {
  display: flex;
  gap: 0.6rem;
}

.pagination .page-numbers button.active {
  background: var(--color-text);
  color: #fff;
}

.hidden {
  display: none !important;
}

/* Studio page */
.studio-hero {
  padding: 3rem 0 4rem;
}

.studio-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.studio-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-map {
  padding: 4rem 0;
}

.process-map__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.process-map h2 {
  margin-bottom: 2rem;
}
.process-tile {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.08);
}

.team-section {
  padding: 3rem 0;
  background: var(--color-bg-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.faq-section {
  padding: 3rem 0;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1.6rem 0;
}

.faq-item h3 {
  font-family: "Manrope", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  .site-header__inner {
    gap: 0.8rem;
  }

  .nav-menu {
    gap: 1.1rem;
    padding: 0.65rem 1.25rem;
  }

  .nav-menu a {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    padding: 0.65rem 1.2rem;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
  }
}
@media (max-width: 1200px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero-slide img {
    height: clamp(340px, 50vw, 520px);
  }

  .services__grid,
  .projects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    gap: 0.6rem;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(2.4rem, 6vw, 3rem);
  }

  .hero__copy,
  .hero__gallery {
    order: initial;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .studio-hero__visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .showcase__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .materials__inner {
    align-items: stretch;
  }

  .materials__grid {
    justify-content: center;
  }

  .process__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process__intro {
    max-width: 560px;
  }

  .process__steps {
    justify-items: flex-start;
  }

  .why-banner__inner {
    grid-template-columns: 1fr;
    padding: clamp(2.6rem, 6vw, 3.4rem);
  }

  .why-banner__content {
    gap: 1.8rem;
  }
}

@media (max-width: 900px) {
  .projects-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__grid,
  .showcase__grid,
  .pillars__grid,
  .process-map__grid,
  .projects,
  .journal-gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .process__steps {
    gap: 1.6rem;
  }

  .process__steps li {
    grid-template-columns: 48px 1fr;
    gap: 1.1rem;
    padding-bottom: 1.4rem;
  }

  .step {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact iframe {
    min-height: 320px;
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .journal-article-hero__inner,
  .journal-article-content__inner {
    grid-template-columns: 1fr;
  }

  .journal-article__media figure {
    padding: 1rem;
  }

  .journal-meta-list {
    gap: 1rem;
  }

  .journal-sidebar {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.95rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .pillar,
  .service-card,
  .showcase-card,
  .testimonial,
  .journal-card,
  .materials__copy,
  .materials__grid {
    padding: 2rem 1.4rem;
  }
  .materials__copy {
    width: 100% !important;
  }
  .hero__inner {
    gap: 2.4rem;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
  }

  .hero__stats {
    justify-items: center;
  }

  .hero__gallery {
    max-width: 92%;
    margin: 0 auto;
  }

  .stat {
    text-align: center;
  }

  .process__intro {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .process__intro .btn {
    align-self: center;
  }

  .process__steps li {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .why-banner {
    padding: 4rem 0;
  }

  .why-banner__inner {
    padding: clamp(2.2rem, 8vw, 2.8rem);
  }

  .why-banner__copy h2 {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .why-banner__list li {
    padding-left: 1.5rem;
  }

  .why-banner__list li::before {
    top: 0.45rem;
  }

  .why-banner__content .btn {
    width: 100%;
  }

  .step {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .services__grid,
  .showcase__grid,
  .projects,
  .team-grid,
  .journal-gallery {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .materials__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .projects-hero__facts {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .file-upload__control {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .file-upload__button {
    justify-content: center;
  }

  .form-group.row {
    flex-direction: column;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    mix-blend-mode: multiply !important;
  }

  .journal-article-hero {
    padding: 4rem 0 3.2rem;
  }

  .journal-article-content {
    padding: 3.2rem 0 4rem;
  }

  .journal-meta-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .journal-meta-list li {
    width: 100%;
  }

  .journal-related .journal__grid {
    grid-template-columns: 1fr;
  }

  .journal-pairs {
    grid-template-columns: 1fr;
  }

  .journal-article__media figure {
    padding: 0.6rem;
  }

  blockquote {
    padding: 1.6rem 1.8rem;
  }

  .journal-sidebar__card {
    padding: 1.6rem;
  }

  .journal-card {
    padding: 1.8rem 1.4rem;
  }

  .journal-card h3 {
    font-size: 1.15rem;
  }

  .journal-meta__value {
    font-size: 0.95rem;
  }

  .journal-meta__label {
    font-size: 0.68rem;
  }

  .journal-article-hero__inner {
    gap: 2.5rem;
  }

  .journal-article-content__inner {
    gap: 2.2rem;
  }

  .journal-article__meta .lead {
    margin-bottom: 1.2rem;
  }

  .journal-related {
    padding: 3.2rem 0 3.8rem;
  }

  .journal-article__body h2 {
    margin-top: 2rem;
  }

  .journal-numbered li::before {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.9rem;
  }

  .journal-numbered li {
    padding-left: 2.4rem;
  }

  .journal-keypoints li {
    padding-left: 1.4rem;
  }

  .journal-keypoints li::before {
    top: 0.7rem;
  }

  .journal-pairs article {
    padding: 1.4rem 1.6rem;
  }

  .journal-sidebar__card h3 {
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 4rem 0;
  }

  .hero-slide img {
    height: 320px;
  }

  .pillars {
    padding: 3rem 0;
  }

  .services {
    padding: 4rem 0;
  }

  .process {
    padding: 4rem 0;
  }

  .materials {
    padding: 4rem 0;
  }

  .journal {
    padding: 4rem 0;
  }

  .contact-container {
    padding: 4rem 0;
  }

  .testimonial {
    padding: 2.4rem 1.6rem;
  }

  .journal-gallery {
    gap: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .process__steps li {
    grid-template-columns: 1fr;
    padding-bottom: 1.2rem;
    gap: 0.6rem;
  }

  .step {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    align-self: flex-start;
  }

  .process__steps li div {
    padding-left: 0;
  }
}
