:root {
  --color-ink: #17211d;
  --color-muted: #62706a;
  --color-soft: #f8f2e9;
  --color-cream: #fffaf2;
  --color-card: #ffffff;
  --color-green: #1f5f46;
  --color-green-dark: #12382c;
  --color-gold: #d9a441;
  --color-orange: #e86f36;
  --shadow: 0 24px 70px rgba(18, 56, 44, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 12px 16px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.cookie-banner {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: 100%;
  min-height: 56px;
  align-items: center;
  padding: 12px 26px;
  color: #fff;
  background: linear-gradient(90deg, #21bfd3 0%, #93d83f 100%);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.16);
}

.cookie-banner a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.cookie-banner button {
  display: grid;
  min-width: 54px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.cookie-banner button span {
  display: block;
  margin-bottom: 2px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.8;
}

.cookie-banner__close span {
  font-size: 2.2rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.navbar__inner,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
}

.navbar {
  padding: 20px 0;
  background: rgba(15, 15, 15, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .navbar {
  padding: 13px 0;
  background: rgba(14, 14, 14, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: none;
  color: #151515;
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand__text {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand__text strong {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.quote-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #151515;
  background: #fff;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quote-link:hover,
.quote-link:focus-visible {
  color: #fff;
  background: var(--color-green);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #101816;
}

.hero__bg,
.hero__shade,
.hero__shape {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-image: var(--hero-image, url("/assets/img/catering-kapak.webp"));
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 1.1s ease, filter 1.1s ease;
  will-change: transform;
}

.hero:hover .hero__bg {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.1) translateX(12px);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 10, 0.74) 0%, rgba(5, 10, 10, 0.56) 46%, rgba(5, 10, 10, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, transparent 38%, rgba(0, 0, 0, 0.42) 100%);
}

.hero__shape {
  inset: auto 0 0 auto;
  width: min(44vw, 520px);
  height: 72vh;
  background: linear-gradient(150deg, transparent 0 34%, rgba(31, 95, 70, 0.8) 35% 100%);
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

.contact__grid,
.menu-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding-top: 104px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero__content p,
.section-heading p,
.split p,
.menu-preview p,
.contact p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero__content {
  max-width: 760px;
  padding-left: min(8vw, 92px);
}

.hero__content .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero__content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: var(--color-green);
  box-shadow: 0 16px 34px rgba(31, 95, 70, 0.24);
}

.btn--primary:hover {
  background: var(--color-green-dark);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  right: clamp(22px, 9vw, 120px);
  top: 50%;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.hero-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-controls button:hover,
.hero-controls button:focus-visible {
  color: #fff;
  background: rgba(31, 95, 70, 0.8);
  transform: scale(1.06);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(31, 95, 70, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card__media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, #fff 0 33%, transparent 34%),
    radial-gradient(circle at 50% 52%, #e6efe7 0 49%, transparent 50%),
    linear-gradient(135deg, #1f5f46, #d9a441);
  border-radius: 24px;
}

.plate {
  position: absolute;
  border-radius: 999px;
}

.plate--main {
  inset: 92px 78px 78px;
  background:
    radial-gradient(circle at 30% 36%, #e86f36 0 12%, transparent 13%),
    radial-gradient(circle at 62% 52%, #1f5f46 0 18%, transparent 19%),
    radial-gradient(circle at 48% 48%, #f7d37c 0 24%, transparent 25%),
    #fff;
  box-shadow: inset 0 0 0 18px #f2efe7, 0 18px 45px rgba(0, 0, 0, 0.18);
}

.plate--side {
  right: 30px;
  bottom: 34px;
  width: 96px;
  height: 96px;
  background: #fff;
  box-shadow: inset 0 0 0 14px #f2efe7;
}

.steam {
  position: absolute;
  top: 60px;
  width: 12px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  animation: floatSteam 3s ease-in-out infinite;
}

.steam--one {
  left: 42%;
}

.steam--two {
  left: 52%;
  animation-delay: 0.8s;
}

.hero-card__body {
  padding-top: 22px;
}

.hero-card__body span {
  color: var(--color-orange);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-card__body h2 {
  margin: 8px 0 10px;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.hero-card__body p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.stats {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  padding: 92px 0 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(31, 95, 70, 0.5), transparent 34%),
    linear-gradient(180deg, #101514 0%, #242a29 62%, var(--color-cream) 62%);
}

.stats__media {
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 360px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 26%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08));
}

.stats::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 360px;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.42)),
    rgba(12, 16, 16, 0.42);
}

.stats::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 252px;
  content: "";
  background: var(--color-cream);
}

.stats__inner {
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 84px;
}

.stats article {
  padding: 0 20px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 5.2vw, 4.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.stats__grid span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats__cards {
  display: grid;
  grid-template-columns: 0.82fr 1.42fr;
  align-items: stretch;
  max-width: 980px;
  margin-inline: auto;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.stats__claim {
  display: grid;
  min-height: 260px;
  align-items: center;
  padding: 52px 42px;
  color: #fff;
  background: #007248;
}

.stats__claim p {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.35;
  text-align: center;
}

.stats__quality {
  min-height: 260px;
  padding: 58px 72px;
  background: #fff;
}

.stats__quality .eyebrow {
  color: var(--color-green);
}

.stats__quality h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--color-green);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.stats__quality p {
  max-width: 690px;
  color: var(--color-muted);
}

.stats__quality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stats__quality-list span {
  margin: 0;
  padding: 9px 12px;
  color: var(--color-green);
  background: #eff6ef;
  border-radius: 999px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading--light {
  color: #fff;
}

.section-heading--light p,
.section-heading--light .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card,
.timeline article,
.menu-list article,
.contact-form {
  background: var(--color-card);
  border: 1px solid rgba(31, 95, 70, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(18, 56, 44, 0.08);
}

.service-card {
  min-height: 310px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--color-green);
  background: #eff6ef;
  border-radius: 18px;
  font-weight: 800;
}

.service-card p,
.timeline p,
.menu-list span,
.form-note {
  color: var(--color-muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-orange);
  font-weight: 800;
}

.services {
  background: #fff;
}

.service-showcase {
  display: grid;
  max-width: 920px;
  gap: 0;
  margin-inline: auto;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 56, 44, 0.1);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.service-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(18, 56, 44, 0.16);
}

.service-feature--reverse .service-feature__image {
  order: 2;
}

.service-feature--reverse .service-feature__content {
  order: 1;
}

.service-feature__image {
  display: block;
  width: 100%;
  height: 250px;
  min-height: 250px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.service-feature__content {
  padding: 34px 36px;
}

.service-feature__content h3 {
  margin-bottom: 16px;
  color: var(--color-ink);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-feature__content h3 span {
  color: #f08a00;
}

.service-feature__content p {
  margin-bottom: 16px;
  color: #696969;
  font-size: 0.86rem;
  line-height: 1.75;
}

.service-feature__content a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #f08a00;
  background: #fff;
  border: 1px solid #f08a00;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-feature__content a:hover,
.service-feature__content a:focus-visible {
  color: #fff;
  background: #f08a00;
  transform: translateY(-2px);
}

.services-contact {
  max-width: 760px;
  margin: 96px auto 0;
  text-align: center;
}

.services-contact h2 {
  margin-bottom: 10px;
  color: #8cc21f;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-contact > p {
  margin: 0 0 22px;
  color: #777;
  font-size: 0.82rem;
}

.services-contact__form {
  max-width: 100%;
  text-align: left;
}

.services-contact__form .contact-form__row {
  gap: 18px;
}

.services-contact__form .contact-check {
  font-size: 0.78rem;
}

.process {
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(217, 164, 65, 0.18), transparent 32%),
    linear-gradient(135deg, var(--color-green-dark), var(--color-green));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 28px;
  color: var(--color-ink);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  font-weight: 800;
}

.menu-preview,
.contact {
  background: var(--color-soft);
}

.menu-list {
  display: grid;
  gap: 16px;
}

.menu-list article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 56, 44, 0.1);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(18, 56, 44, 0.14);
}

.menu-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: 1.05rem;
}

.quality {
  background: #fff;
}

.quality-detail {
  max-width: 980px;
}

.quality-detail h2 {
  margin-bottom: 36px;
  color: var(--color-green);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.quality-detail__lead {
  max-width: 850px;
  margin-bottom: 46px;
  color: var(--color-green);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  font-weight: 500;
}

.quality-detail__body {
  display: grid;
  gap: 34px;
}

.quality-detail__body p {
  margin: 0;
  color: #4f6170;
  font-size: 0.98rem;
  line-height: 2.05;
}

.quality-detail__media-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: 42px;
  align-items: center;
}

.quality-detail__image {
  display: block;
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(1);
  box-shadow: 0 18px 42px rgba(18, 56, 44, 0.08);
}

.satisfaction {
  background: #fff;
  padding-top: 34px;
}

.satisfaction-detail {
  max-width: 980px;
}

.satisfaction-detail h2 {
  margin-bottom: 30px;
  color: var(--color-green);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.satisfaction-detail__lead {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--color-green);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  line-height: 1.8;
}

.satisfaction-detail__body {
  display: grid;
  gap: 30px;
}

.satisfaction-detail article h3 {
  margin-bottom: 12px;
  color: #1d3548;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.satisfaction-detail article p {
  margin: 0;
  color: #4f6170;
  font-size: 0.92rem;
  line-height: 1.95;
}

.satisfaction-detail__media-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.satisfaction-detail__image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(1);
  box-shadow: 0 18px 42px rgba(18, 56, 44, 0.08);
}

.blog {
  background: #fff;
}

.blog__heading {
  display: grid;
  justify-items: center;
  margin-bottom: 44px;
}

.blog__heading h2 {
  position: relative;
  margin: 0;
  color: #f08a00;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.blog__heading h2::after {
  display: block;
  width: 86px;
  height: 2px;
  margin: 12px auto 0;
  content: "";
  background: #f08a00;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 48px;
  max-width: 940px;
  margin-inline: auto;
}

.blog-card {
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  gap: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(18, 56, 44, 0.1);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 56, 44, 0.16);
}

.blog-card__media {
  position: relative;
  display: grid;
  width: 100%;
  height: 220px;
  overflow: hidden;
  align-items: end;
  padding: 0;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.blog-card__media::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.blog-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.blog-card__media:hover,
.blog-card__media:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
}

.blog-card__media:hover img,
.blog-card__media:focus-visible img {
  transform: scale(1.08);
}

.blog-card__media span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 92%;
  margin: auto auto 22px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.blog-card__meta {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.blog-card__meta > span {
  padding: 5px 10px;
  color: var(--color-green);
  background: #eff6ef;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.blog-card__share {
  display: inline-flex;
  gap: 6px;
}

.blog-card__share a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  background: #f08a00;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blog-card__share a:hover,
.blog-card__share a:focus-visible {
  background: var(--color-green);
  transform: translateY(-2px);
}

.blog-card__button {
  display: inline-flex;
  min-width: 210px;
  min-height: 44px;
  align-self: end;
  align-items: center;
  justify-content: center;
  color: #f08a00;
  background: #fff;
  border: 1px solid #f08a00;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.blog-card__button:hover,
.blog-card__button:focus-visible {
  color: #fff;
  background: #f08a00;
  transform: translateY(-2px);
}

.contact {
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: 960px;
  margin-inline: auto;
}

.contact-info-card {
  display: grid;
  min-height: 235px;
  justify-items: center;
  align-content: center;
  padding: 34px 24px;
  text-align: center;
  border: 1px solid #8cc21f;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(18, 56, 44, 0.1);
  background: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover,
.contact-info-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 56, 44, 0.16);
  cursor: pointer;
}

.contact-info-card__icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin-bottom: 18px;
  color: #8cc21f;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.contact-info-card h3 {
  margin-bottom: 12px;
  color: #8cc21f;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-info-card p {
  margin: 0;
  color: #777;
  font-size: 0.84rem;
  line-height: 1.8;
}

.contact-heading {
  max-width: 860px;
  margin: 74px auto 22px;
  text-align: center;
}

.contact-heading h2 {
  margin-bottom: 14px;
  color: #8cc21f;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-heading p {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  max-width: 960px;
  gap: 18px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.contact-form .field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-form .field-wrap label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
}

.contact-form .form-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form .form-status.is-ok {
  color: var(--color-green);
}

.contact-form .form-status.is-error {
  color: #b42318;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #8cc21f;
  border-radius: 0;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(140, 194, 31, 0.12);
}

.contact-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #777;
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-check input {
  width: auto;
  margin-top: 3px;
  accent-color: #8cc21f;
}

.contact-check strong {
  color: #666;
}

.contact-form__submit {
  justify-self: center;
  min-width: 160px;
  min-height: 46px;
  margin-top: 8px;
  color: #fff;
  background: #8cc21f;
  border: 0;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--color-green);
  transform: translateY(-2px);
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-green-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.95fr;
  gap: 40px;
  padding-bottom: 38px;
}

.brand--footer {
  color: #fff;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
}

.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer__copy {
  display: grid;
  gap: 8px;
}

.footer__copy > span,
.footer__takvio {
  display: block;
  margin: 0;
}

.footer__takvio a {
  display: inline;
  margin: 0;
  color: #fff;
}

.footer__takvio strong {
  display: inline;
  margin: 0;
  font-weight: 700;
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(217, 164, 65, 0.26), transparent 30%),
    linear-gradient(135deg, #fffaf2, #f6ead9);
}

.error-page__content {
  display: grid;
  min-height: calc(100vh - 192px);
  align-content: center;
  justify-items: start;
  max-width: 780px;
}

.error-page__content .brand {
  margin-bottom: 46px;
}

.error-page__content .brand__text {
  color: var(--color-ink);
}

.error-page__content .brand__text strong {
  color: var(--color-muted);
}

.error-page__content h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
}

.error-page__content p {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 1.1rem;
}

@keyframes floatSteam {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(18px) scaleY(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px) scaleY(1);
  }
}

@media (max-width: 980px) {
  .contact__grid,
  .menu-preview__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .timeline,
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .stats__cards {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .blog__grid {
    gap: 32px;
  }

  .contact-info-grid,
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-feature {
    grid-template-columns: 1fr;
  }

  .quality-detail__media-row {
    grid-template-columns: 1fr;
  }

  .satisfaction-detail__media-row {
    grid-template-columns: 1fr;
  }

  .service-feature--reverse .service-feature__image,
  .service-feature--reverse .service-feature__content {
    order: initial;
  }

  .service-feature__image {
    min-height: 280px;
  }

  .quote-link {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .stats__grid {
    gap: 10px;
  }

  .stats article {
    padding: 0 12px;
  }

  .stats strong {
    font-size: clamp(3rem, 4.8vw, 4.1rem);
  }

  .stats__grid span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 14px;
  }

  .cookie-banner p {
    font-size: 0.72rem;
  }

  .cookie-banner__actions {
    justify-content: center;
  }

  .cookie-banner button span {
    font-size: 1.65rem;
  }

  .section {
    padding: 70px 0;
  }

  .navbar {
    padding: 14px 0;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .brand__text {
    font-size: 0.92rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-green);
    background: #fff;
    border: 1px solid rgba(31, 95, 70, 0.14);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
  }

  .menu-toggle span {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
  }

  .nav-links {
    position: absolute;
    inset: calc(100% + 1px) 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: var(--color-ink);
    background: #fff;
    border: 1px solid rgba(31, 95, 70, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    color: var(--color-green);
  }

  .hero {
    min-height: 86vh;
  }

  .hero__grid {
    min-height: 86vh;
    padding-top: 94px;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero__shape {
    width: 72vw;
    height: 46vh;
    opacity: 0.66;
  }

  .hero-controls {
    right: 18px;
    top: auto;
    bottom: 28px;
    grid-auto-flow: column;
    transform: none;
  }

  .hero-controls button {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats {
    min-height: auto;
    padding-top: 68px;
  }

  .stats__media,
  .stats::before {
    height: 520px;
  }

  .stats__grid,
  .card-grid,
  .timeline,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .stats__grid {
    gap: 0;
    padding-bottom: 54px;
  }

  .stats article {
    padding: 24px 0;
  }

  .stats__claim,
  .stats__quality {
    min-height: auto;
    padding: 34px 24px;
  }

  .stats__claim p {
    text-align: left;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog-card__media {
    height: 210px;
  }

  .blog-card__button {
    width: min(100%, 230px);
  }

  .service-showcase {
    gap: 34px;
  }

  .service-feature {
    border: 1px solid rgba(31, 95, 70, 0.08);
    box-shadow: 0 18px 42px rgba(18, 56, 44, 0.08);
  }

  .service-feature__content {
    padding: 28px 24px;
  }

  .service-feature__image {
    min-height: 220px;
  }

  .quality-detail h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .quality-detail__lead {
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .quality-detail__body p {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .quality-detail__image {
    min-height: 230px;
  }

  .satisfaction-detail__lead {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .satisfaction-detail article p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .satisfaction-detail__image {
    min-height: 220px;
  }

  .services-contact {
    margin-top: 70px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== Yol haritası v3 + sürüm notları ===== */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-panel {
  display: contents;
}

.nav-close {
  display: none;
}

.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.theme-toggle__icon--sun { display: none; }
html[data-theme="dark"] .theme-toggle__icon--moon { display: none; }
html[data-theme="dark"] .theme-toggle__icon--sun { display: inline; }

.site-header.is-scrolled .theme-toggle,
.site-header:not(.is-scrolled) .theme-toggle {
  color: #fff;
}

.phone-field {
  display: flex;
  align-items: stretch;
  border: 1px solid #8cc21f;
  background: #fff;
}

.phone-field__prefix {
  display: grid;
  place-items: center;
  padding: 0 12px;
  font-weight: 700;
  color: var(--color-green);
  background: rgba(140, 194, 31, 0.12);
  border-right: 1px solid #8cc21f;
  user-select: none;
}

.phone-field input {
  border: 0 !important;
  box-shadow: none !important;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--color-cream);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__mark {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.float-btn:hover { transform: translateY(-2px); }

.float-btn--top {
  background: var(--color-green);
}

.float-btn--wa {
  background: #25d366;
}

.float-btn[hidden] { display: none !important; }

body.nav-open { overflow: hidden; }

/* Interactive box cards */
.stats__claim,
.stats__quality,
.timeline article,
.satisfaction-detail article {
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(18, 56, 44, 0.08);
}

.timeline article,
.satisfaction-detail article {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline article:hover,
.satisfaction-detail article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(18, 56, 44, 0.14);
}

/* Dark mode (ön yüz) */
html[data-theme="dark"] body {
  color: #e8efe9;
  background: #101816;
}

html[data-theme="dark"] .section,
html[data-theme="dark"] .menu-preview,
html[data-theme="dark"] .contact,
html[data-theme="dark"] .quality,
html[data-theme="dark"] .blog {
  background: #15201b;
}

html[data-theme="dark"] .stats__quality,
html[data-theme="dark"] .menu-list article,
html[data-theme="dark"] .contact-info-card,
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .service-feature,
html[data-theme="dark"] .phone-field,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  background: #1b2822;
  color: #e8efe9;
  border-color: rgba(140, 194, 31, 0.45);
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] .quality-detail__lead,
html[data-theme="dark"] .stats__quality h2,
html[data-theme="dark"] .contact-heading h2,
html[data-theme="dark"] .field-wrap label {
  color: #f3f7f4;
}

html[data-theme="dark"] p,
html[data-theme="dark"] .quality-detail__body p,
html[data-theme="dark"] .contact-info-card p {
  color: #b7c4bc;
}

html[data-theme="dark"] .site-preloader {
  background: #101816;
}

@media (min-width: 761px) {
  .menu-toggle { display: none !important; }
  .nav-close { display: none !important; }
  .nav-panel {
    display: flex;
    align-items: center;
    order: 2;
    margin-left: 18px;
    margin-right: auto;
  }
  .navbar__actions { order: 3; }
  .nav-links { display: flex; }
}

@media (max-width: 760px) {
  .quote-link { display: none; }

  .menu-toggle {
    display: inline-grid !important;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0;
  }

  .site-header.is-scrolled .menu-toggle {
    color: #fff;
  }

  .menu-toggle__bars {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
  }

  .menu-toggle__bars i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
  }

  .menu-toggle__bars i:nth-child(1) { top: 0; }
  .menu-toggle__bars i:nth-child(2) { top: 6px; }
  .menu-toggle__bars i:nth-child(3) { top: 12px; }

  .menu-toggle.is-open .menu-toggle__bars i:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }
  .menu-toggle.is-open .menu-toggle__bars i:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open .menu-toggle__bars i:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 88px 22px 28px;
    background: rgba(16, 24, 22, 0.97);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
  }

  .nav-links {
    position: static;
    inset: auto;
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-links a {
    color: #fff;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-gold);
  }

  /* Mobil hero optimize */
  .hero {
    min-height: auto;
    min-height: 100svh;
    max-height: none;
  }

  .hero__grid {
    min-height: auto;
    padding: 92px 0 48px;
    align-items: end;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.85rem);
    line-height: 1.08;
    word-break: break-word;
  }

  .hero__content p {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 36ch;
  }

  .hero__shape {
    width: 58vw;
    height: 38vh;
    opacity: 0.45;
  }

  .hero:hover .hero__bg {
    transform: scale(1.04);
  }

  .quality-detail__lead {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .float-actions {
    right: 14px;
    bottom: 86px;
  }

  .cookie-banner {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}
