:root {
  --color-porcelain: #f6f1e9;
  --color-sand: #d8c4a6;
  --color-beige: #bfa98a;
  --color-clay: #8e6f55;
  --color-walnut: #4b372b;
  --color-graphite: #202120;
  --color-ink: #161615;
  --color-white: #fffaf2;
  --font-display: Georgia, "Times New Roman", serif;
  --font-script: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;
  --space-xs: clamp(0.5rem, 1vw, 0.8rem);
  --space-sm: clamp(0.9rem, 1.4vw, 1.4rem);
  --space-md: clamp(1.5rem, 2.4vw, 2.5rem);
  --space-lg: clamp(2.8rem, 4.4vw, 5rem);
  --space-xl: clamp(4.25rem, 7vw, 7.8rem);
  --content-max: 1240px;
  --content-gutter: clamp(1.25rem, 4vw, 4rem);
  --header-height: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 196, 166, 0.22), transparent 28rem),
    linear-gradient(135deg, rgba(32, 33, 32, 0.035) 0 25%, transparent 25% 100%),
    var(--color-porcelain);
  color: var(--color-graphite);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(90deg, rgba(75, 55, 43, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(75, 55, 43, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: normal;
}

h1 {
  max-width: 880px;
  margin-bottom: var(--space-md);
  color: var(--color-white);
  font-size: clamp(4rem, 8.2vw, 9.4rem);
}

h1 span {
  color: var(--color-sand);
  font-family: var(--font-script);
  font-style: italic;
}

h2 {
  max-width: 820px;
  margin-bottom: var(--space-md);
  font-size: clamp(2.7rem, 5vw, 6.1rem);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.section-inner {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--space-xl);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

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

.button-primary {
  border-color: var(--color-sand);
  background: var(--color-sand);
  color: var(--color-ink);
}

.button-ghost {
  color: var(--color-white);
}

.button-ghost:hover,
.button-texture:hover {
  background: var(--color-graphite);
  color: var(--color-white);
}

.button-texture {
  position: relative;
  overflow: hidden;
  color: var(--color-graphite);
}

.button-texture::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(216, 196, 166, 0.7), rgba(246, 241, 233, 0.35));
}

/* Fejléc */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--content-gutter);
  color: var(--color-white);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(32, 33, 32, 0.66);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 55;
  white-space: nowrap;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-logo-wrap {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.14), rgba(216, 196, 166, 0.08)),
    rgba(32, 33, 32, 0.34);
  backdrop-filter: blur(10px);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-logo {
  width: 44px;
  height: 44px;
  padding: 0.38rem;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  font-family: var(--font-display);
  line-height: 1;
}

.brand-text span {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
}

.brand-text small {
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.35vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.85rem);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 0.35rem;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.menu-toggle {
  position: relative;
  z-index: 55;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.45);
  background: rgba(255, 250, 242, 0.08);
  color: var(--color-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-graphite);
}

.hero::after {
  position: absolute;
  top: 12%;
  right: clamp(1.5rem, 7vw, 8rem);
  z-index: 1;
  width: min(38vw, 520px);
  height: min(58vh, 650px);
  content: "";
  border: 1px solid rgba(255, 250, 242, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.1), rgba(216, 196, 166, 0.04)),
    repeating-linear-gradient(100deg, rgba(255, 250, 242, 0.1) 0 1px, transparent 1px 18px);
  clip-path: polygon(15% 0, 100% 7%, 84% 100%, 0 88%);
  opacity: 0.72;
}

.hero-image,
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(216, 196, 166, 0.22), transparent 22rem),
    linear-gradient(90deg, rgba(22, 22, 21, 0.88), rgba(22, 22, 21, 0.52) 48%, rgba(22, 22, 21, 0.16)),
    linear-gradient(0deg, rgba(22, 22, 21, 0.42), transparent 45%);
}

.hero-brand-mark {
  position: absolute;
  top: 18%;
  right: clamp(2rem, 9vw, 10rem);
  z-index: 2;
  width: clamp(140px, 16vw, 260px);
  opacity: 0.075;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-content .eyebrow {
  color: var(--color-sand);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 2rem;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-cue {
  position: absolute;
  right: var(--content-gutter);
  bottom: 2rem;
  z-index: 3;
  width: 1px;
  height: 90px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.24);
}

.scroll-cue::after {
  display: block;
  width: 100%;
  height: 34px;
  content: "";
  background: var(--color-sand);
  animation: scrollCue 2s infinite var(--ease);
}

@keyframes scrollCue {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(110px);
  }
}

/* Válogatott munkák */
.works {
  background:
    linear-gradient(180deg, var(--color-porcelain), rgba(216, 196, 166, 0.3)),
    var(--color-porcelain);
}

.section-heading {
  max-width: 820px;
  margin-bottom: var(--space-lg);
}

.section-heading p {
  max-width: 520px;
  color: rgba(32, 33, 32, 0.68);
  font-size: 1.1rem;
}

.section-heading p + p {
  max-width: 680px;
  margin-top: 0.85rem;
}

.work-collage {
  position: relative;
  width: min(100%, 1180px);
  min-height: clamp(700px, 55vw, 880px);
  margin-inline: auto;
}

.work-item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--color-sand);
  box-shadow: 0 30px 80px rgba(75, 55, 43, 0.2);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.work-item:hover {
  z-index: 4;
  transform: translateY(-10px) rotate(0deg);
  box-shadow: 0 36px 100px rgba(75, 55, 43, 0.3);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.work-item:hover img {
  transform: scale(1.04);
}

.work-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.work-large {
  top: 0;
  left: 5%;
  width: clamp(300px, 31%, 430px);
  aspect-ratio: 0.68;
}

.work-wide {
  top: 8%;
  right: 5%;
  width: clamp(380px, 48%, 570px);
  aspect-ratio: 1.55;
  transform: rotate(-1.4deg);
}

.work-texture {
  top: 40%;
  left: 38%;
  z-index: 3;
  width: clamp(220px, 24%, 300px);
  aspect-ratio: 1;
  transform: rotate(2deg);
}

.work-kids {
  right: 0;
  bottom: 6%;
  width: clamp(280px, 34%, 400px);
  aspect-ratio: 0.9;
  transform: rotate(1.2deg);
}

.work-business {
  bottom: 1%;
  left: 18%;
  width: clamp(390px, 48%, 560px);
  aspect-ratio: 1.5;
  transform: rotate(-1deg);
}

/* Rólunk */
.about {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 6vw, 6rem);
  overflow: clip;
}

.about-media {
  position: relative;
}

.about-media::before {
  position: absolute;
  right: -7%;
  bottom: -8%;
  z-index: 0;
  width: 52%;
  height: 58%;
  content: "";
  background: rgba(216, 196, 166, 0.5);
  clip-path: polygon(10% 12%, 96% 0, 88% 88%, 0 100%);
}

.about-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  aspect-ratio: 0.78;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(75, 55, 43, 0.18);
}

.about-media img.about-photo-wide {
  width: min(100%, 560px);
  aspect-ratio: 1.48;
  object-position: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 1.1rem;
  color: rgba(32, 33, 32, 0.72);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.about-copy {
  min-width: 0;
}

.signature {
  margin-top: 1.8rem;
  color: var(--color-walnut) !important;
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem) !important;
  font-style: italic;
}

/* Szolgáltatások */
.services {
  background:
    linear-gradient(150deg, rgba(75, 55, 43, 0.08), transparent 35%),
    var(--color-porcelain);
}

.service-list {
  display: grid;
  gap: clamp(1.15rem, 1.7vw, 1.65rem);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(230px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 168px;
  padding: clamp(1.35rem, 2.4vw, 2.15rem) clamp(1rem, 3vw, 2.4rem);
  isolation: isolate;
}

.service-row::before {
  position: absolute;
  inset: 8% 0 7% 3%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(110deg, rgba(216, 196, 166, 0.65), rgba(255, 250, 242, 0.38)),
    repeating-linear-gradient(135deg, rgba(75, 55, 43, 0.06) 0 2px, transparent 2px 10px);
  clip-path: polygon(0 18%, 93% 0, 100% 72%, 8% 100%);
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.service-row:nth-child(even)::before {
  inset-inline: 0 4%;
  background:
    linear-gradient(110deg, rgba(191, 169, 138, 0.48), rgba(246, 241, 233, 0.52)),
    repeating-linear-gradient(80deg, rgba(32, 33, 32, 0.045) 0 2px, transparent 2px 12px);
  clip-path: polygon(5% 0, 100% 18%, 91% 100%, 0 78%);
}

.service-row:nth-child(odd) {
  margin-right: clamp(0rem, 5vw, 4rem);
}

.service-row:nth-child(even) {
  margin-left: clamp(0rem, 5vw, 4rem);
}

.service-row:hover::before {
  opacity: 0.86;
  transform: scaleX(1.015);
}

.service-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  background: var(--color-graphite);
  clip-path: polygon(15% 5%, 100% 20%, 82% 100%, 0 78%);
}

.service-mark img {
  width: 42px;
  height: 42px;
}

.service-row h3,
.service-row p {
  margin: 0;
  min-width: 0;
}

.service-row p {
  max-width: 620px;
  color: rgba(32, 33, 32, 0.68);
  line-height: 1.55;
}

/* Folyamat */
.process {
  background: var(--color-white);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.3rem, 2.4vw, 2.2rem);
}

.process-line::before {
  position: absolute;
  top: 2.15rem;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: rgba(75, 55, 43, 0.28);
}

.process-line article {
  position: relative;
  min-width: 0;
  padding: 0;
}

.process-line span {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 1px solid rgba(75, 55, 43, 0.24);
  background: var(--color-white);
  color: var(--color-clay);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.process-line h3 {
  margin-bottom: 0.7rem;
}

.process-line p {
  color: rgba(32, 33, 32, 0.66);
  max-width: 270px;
  line-height: 1.55;
}

/* Áraink */
.quote {
  background:
    linear-gradient(120deg, rgba(216, 196, 166, 0.34), transparent 48%),
    var(--color-porcelain);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.price-grid {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: start;
}

.quote-heading,
.quote-copy {
  min-width: 0;
}

.quote-heading p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(32, 33, 32, 0.7);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.price-grid .quote-heading h2 {
  font-size: clamp(2.55rem, 4.4vw, 5.8rem);
  line-height: 0.98;
}

.quote-copy {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  isolation: isolate;
}

.quote-copy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.72), rgba(216, 196, 166, 0.34)),
    repeating-linear-gradient(105deg, rgba(75, 55, 43, 0.055) 0 2px, transparent 2px 13px);
  clip-path: polygon(5% 0, 100% 9%, 92% 100%, 0 88%);
}

.quote-copy p {
  max-width: 560px;
  color: rgba(32, 33, 32, 0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.quote-copy .button {
  margin-top: 0.8rem;
}

.price-copy p {
  max-width: none;
}

.price-copy {
  padding-inline: clamp(2rem, 3vw, 2.6rem);
}

.price-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(3.5rem, 4.8vw, 4.5rem);
  row-gap: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.price-item {
  min-width: 0;
  border-top: 1px solid rgba(75, 55, 43, 0.24);
  padding-top: clamp(1.2rem, 2vw, 1.8rem);
}

.price-item:nth-child(2) {
  margin-top: 0;
}

.price-item h3 {
  max-width: 340px;
  margin-bottom: 1.15rem;
  color: var(--color-walnut);
  font-size: clamp(1.2rem, 1.45vw, 1.65rem);
}

.price-value {
  margin-bottom: 1rem;
  color: var(--color-graphite) !important;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 2.25vw, 2.2rem) !important;
  line-height: 0.98;
}

.price-main {
  display: block;
  white-space: nowrap;
}

.price-unit {
  display: block;
  margin-top: 0.22rem;
  white-space: nowrap;
  font-size: 0.46em;
  letter-spacing: 0;
}

.price-unit sup {
  font-size: 0.62em;
  line-height: 0;
}

.price-included {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(75, 55, 43, 0.22);
  color: rgba(32, 33, 32, 0.78) !important;
  font-weight: 700;
}

.price-note {
  color: var(--color-clay) !important;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem) !important;
  font-weight: 800;
}

/* Záró CTA */
.final-cta {
  position: relative;
  min-height: clamp(560px, 70vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-graphite);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 22, 21, 0.86), rgba(22, 22, 21, 0.44)),
    linear-gradient(0deg, rgba(22, 22, 21, 0.38), transparent);
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: var(--color-white);
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

/* Kapcsolat és lábléc */
.site-footer {
  padding-block: var(--space-lg);
  background: var(--color-graphite);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(230px, 0.85fr) minmax(190px, auto);
  gap: var(--space-md);
  align-items: start;
}

.site-footer h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

address {
  display: grid;
  gap: 0.55rem;
  font-style: normal;
}

.footer-intro p:not(.eyebrow) {
  max-width: 460px;
  margin: 1rem 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.footer-brand {
  margin-bottom: 1.7rem;
  color: var(--color-white);
}

.footer-logo {
  width: clamp(92px, 8vw, 116px);
  height: clamp(92px, 8vw, 116px);
  padding: 0.68rem;
  border-color: rgba(216, 196, 166, 0.34);
  background:
    linear-gradient(135deg, rgba(216, 196, 166, 0.16), rgba(255, 250, 242, 0.06)),
    rgba(255, 250, 242, 0.04);
}

.footer-brand .brand-text span {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.footer-brand .brand-text small {
  color: rgba(216, 196, 166, 0.78);
}

address a:hover,
.footer-links a:hover {
  color: var(--color-sand);
}

.social-links {
  display: grid;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 250, 242, 0.3);
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.social-links a:hover {
  background: var(--color-sand);
  color: var(--color-ink);
  transform: translateY(-3px);
}

.social-links svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links span {
  font-size: 0.9rem;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.9rem;
}

/* Finom belépő animációk */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (min-width: 1600px) {
  :root {
    --content-max: 1280px;
  }

  .section-inner {
    width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.35rem;
    background: rgba(32, 33, 32, 0.96);
    font-size: clamp(1.2rem, 6vw, 2.4rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero::after {
    right: -4rem;
    width: min(48vw, 420px);
    opacity: 0.45;
  }

  .work-collage {
    display: grid;
    min-height: auto;
    gap: 1rem;
  }

  .work-item {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .work-large,
  .work-kids {
    aspect-ratio: 0.9;
  }

  .work-wide,
  .work-business {
    aspect-ratio: 1.35;
  }

  .work-texture {
    aspect-ratio: 1.15;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .about-media img {
    width: min(100%, 460px);
  }

  .service-row {
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: start;
    min-height: 0;
  }

  .service-row:nth-child(odd),
  .service-row:nth-child(even) {
    margin-inline: 0;
  }

  .service-row h3 {
    padding-top: 0.25rem;
  }

  .service-row p {
    grid-column: 2;
    max-width: 680px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .process-line p {
    max-width: 420px;
  }

  .process-line::before {
    display: none;
  }

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

@media (max-width: 860px) {
  .quote-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    max-width: 680px;
  }

  .price-copy {
    max-width: none;
  }

  .price-grid .quote-heading h2 {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --content-gutter: 1rem;
  }

  .site-header {
    padding-inline: var(--content-gutter);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.65rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.55rem);
    line-height: 1;
  }

  .hero {
    min-height: 92svh;
  }

  .hero::after {
    top: 18%;
    right: -6rem;
    width: 70vw;
    height: 48vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(22, 22, 21, 0.9), rgba(22, 22, 21, 0.58)),
      linear-gradient(0deg, rgba(22, 22, 21, 0.5), transparent);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-heading p,
  .section-heading p + p {
    max-width: 100%;
    font-size: 1rem;
  }

  .work-collage {
    gap: 0.85rem;
  }

  .work-item figcaption {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.6rem 1rem;
  }

  .service-row p {
    grid-column: auto;
  }

  .service-row::before {
    inset: 4% 0;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .process-line article {
    padding-inline: 0;
  }

  .process-line p {
    max-width: 100%;
  }

  .quote-copy {
    padding: 1.5rem 1rem;
  }

  .price-list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .price-item:nth-child(2) {
    margin-top: 0;
  }

  .price-value {
    font-size: clamp(1.95rem, 8.4vw, 2.85rem) !important;
  }

  .final-cta {
    min-height: 520px;
  }

  .footer-links {
    gap: 0.75rem 1.25rem;
  }

  .social-links a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.05rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}
