:root {
  color-scheme: light;
  --ink: #151313;
  --muted: #676b70;
  --line: #e6e7e3;
  --paper: #ffffff;
  --soft: #f6f7f3;
  --charcoal: #202225;
  --red: #c9162e;
  --red-dark: #a90f22;
  --green: #207a59;
  --gold: #c4933f;
  --shadow: 0 18px 60px rgba(15, 17, 20, .14);
  --radius: 8px;
  --max: 1160px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--soft);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#icon-whatsapp path {
  fill: currentColor;
  stroke: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity .45s ease, visibility .45s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__mark {
  width: min(260px, 58vw);
  display: grid;
  gap: 18px;
  place-items: center;
}

.loader__mark img {
  width: 210px;
}

.loader__mark span {
  width: 160px;
  height: 3px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e8e8;
  position: relative;
}

.loader__mark span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 44%;
  background: linear-gradient(90deg, var(--red), var(--green));
  animation: load-line .85s ease-in-out infinite;
}

@keyframes load-line {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  width: min(calc(100% - 28px), var(--max));
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 48px rgba(10, 10, 10, .14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease, top .25s ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 34px rgba(10, 10, 10, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  min-width: 156px;
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #303236;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  background: rgba(201, 22, 46, .08);
  outline: 0;
}

.header-call {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #151313 0%, #2b171a 52%, #c9162e 120%);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(21, 19, 19, .22), 0 6px 18px rgba(201, 22, 46, .18);
  isolation: isolate;
}

.header-call::before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -35%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: rotate(18deg) translateX(-120%);
  transition: transform .55s ease;
  z-index: -1;
}

.header-call:hover::before,
.header-call:focus-visible::before {
  transform: rotate(18deg) translateX(340%);
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(21, 19, 19, .24), 0 8px 22px rgba(201, 22, 46, .24);
  outline: 0;
}

.header-call svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  color: #fff;
  background: rgba(201, 22, 46, .92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25), 0 6px 14px rgba(201, 22, 46, .28);
}

.header-call span {
  position: relative;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: #f0f1ed;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: #fff;
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -2;
}

.hero__media img {
  object-fit: cover;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .82) 0%, rgba(10, 10, 10, .55) 44%, rgba(10, 10, 10, .18) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, .64) 0%, rgba(10, 10, 10, .06) 58%);
}

.hero__content {
  width: min(760px, 100%);
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: .96;
  font-weight: 700;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.btn--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 36px rgba(201, 22, 46, .34);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--red-dark);
}

.btn--light {
  color: #111;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.btn--dark {
  color: #fff;
  background: var(--ink);
}

.hero__panel {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  width: min(470px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__panel div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero__panel div:last-child {
  border-right: 0;
}

.hero__panel strong,
.hero__panel span {
  display: block;
}

.hero__panel strong {
  font-size: 20px;
  line-height: 1.1;
}

.hero__panel span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.35;
}

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.ticker {
  width: max-content;
  display: flex;
  gap: 12px;
  padding: 18px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #f0f2ee;
  font-weight: 800;
}

.ticker span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-45%); }
}

.section {
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
}

.section__head {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section__head h2,
.process h2,
.contact h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.intro {
  background: var(--paper);
}

.intro__grid,
.service-grid,
.region-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

.intro__grid {
  grid-template-columns: repeat(3, 1fr);
}

.intro-card,
.service-card,
.region-card,
.blog-card,
.social-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(15, 17, 20, .06);
}

.intro-card {
  padding: 28px;
}

.intro-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.intro-card:nth-child(2) span {
  background: var(--red);
}

.intro-card:nth-child(3) span {
  background: var(--gold);
}

.intro-card h3,
.service-card h3,
.step h3,
.blog-card h3,
.social-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.intro-card p,
.service-card p,
.step p,
.blog-card p,
.social-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: #f6f7f3;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 220px;
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 22, 46, .28);
  box-shadow: 0 18px 46px rgba(15, 17, 20, .1);
}

.service-card svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(32, 122, 89, .1);
}

.service-card:nth-child(2n) svg {
  color: var(--red);
  background: rgba(201, 22, 46, .1);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  background: var(--charcoal);
  color: #fff;
}

.process .eyebrow {
  color: #ff6b7c;
}

.process h2 {
  max-width: 720px;
}

.process__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.process__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.step p {
  color: rgba(255, 255, 255, .68);
}

.regions {
  background: var(--paper);
}

.region-grid {
  grid-template-columns: repeat(5, 1fr);
}

.region-card {
  min-height: 160px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.region-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 3px;
  border-radius: 8px;
  background: var(--red);
  transition: width .2s ease, background .2s ease;
}

.region-card:hover,
.region-card:focus-visible {
  color: #fff;
  background: var(--ink);
  transform: translateY(-5px);
  outline: 0;
}

.region-card:hover::after,
.region-card:focus-visible::after {
  width: 58px;
  background: var(--green);
}

.region-card strong,
.region-card span {
  display: block;
}

.region-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.region-card span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.region-card:hover span,
.region-card:focus-visible span {
  color: rgba(255, 255, 255, .72);
}

.gallery {
  background: #f6f7f3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: 0 16px 42px rgba(15, 17, 20, .1);
}

.gallery-item--wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item::after {
  content: "Görüntüle";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(0, 0, 0, .58);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  font-size: 13px;
  font-weight: 900;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.social {
  background: var(--paper);
}

.social__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insta-grid a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.insta-grid a::after {
  content: "@trakyacatering";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 8px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(0, 0, 0, .52);
  opacity: 0;
  transition: opacity .2s ease;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.insta-grid a:hover img,
.insta-grid a:focus-visible img {
  transform: scale(1.06);
}

.insta-grid a:hover::after,
.insta-grid a:focus-visible::after {
  opacity: 1;
}

.social-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-card > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--red);
  background: rgba(201, 22, 46, .1);
}

.social-card .btn {
  width: fit-content;
  margin-top: 24px;
}

.blog {
  background: #f6f7f3;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  min-height: 226px;
  padding: 24px;
}

.blog-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--red);
  background: rgba(201, 22, 46, .08);
  font-size: 13px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  background: var(--paper);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-link {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 22, 46, .28);
  box-shadow: 0 14px 36px rgba(15, 17, 20, .08);
  outline: 0;
}

.contact-link svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

.contact-link:nth-child(2) svg {
  background: var(--green);
}

.contact-link:nth-child(3) svg {
  background: var(--red);
}

.contact-link:nth-child(4) svg {
  background: var(--gold);
}

.contact-link strong,
.contact-link span span {
  display: block;
}

.contact-link strong {
  color: var(--ink);
  font-size: 14px;
}

.contact-link span {
  min-width: 0;
  color: var(--muted);
  word-break: break-word;
}

.map-card {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 17, 20, .08);
}

.map-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.map-card__top strong,
.map-card__top span {
  display: block;
}

.map-card__top span {
  color: var(--muted);
  font-size: 14px;
}

.map-card__top a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 22, 46, .22), transparent 34%),
    linear-gradient(225deg, rgba(32, 122, 89, .18), transparent 38%),
    linear-gradient(180deg, #191719 0%, #101112 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 88%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 88%);
}

.footer-cta,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(255, 255, 255, .05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(16px);
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(201, 22, 46, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}

.footer-cta p,
.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
}

.footer-cta p {
  max-width: 760px;
  margin-top: 12px;
}

.footer-cta__actions {
  display: grid;
  gap: 10px;
  width: 230px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.footer-btn:hover,
.footer-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16);
  outline: 0;
}

.footer-btn--red {
  border-color: rgba(201, 22, 46, .45);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(201, 22, 46, .24);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) .65fr .85fr 1fr;
  gap: 34px;
  padding: 42px 0 30px;
}

.footer-brand img {
  width: 166px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  filter: brightness(1.04);
}

.footer-brand p {
  max-width: 430px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: transform .18s ease, background .18s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(201, 22, 46, .72);
  outline: 0;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 700;
  transition: color .18s ease, transform .18s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
  transform: translateX(3px);
  outline: 0;
}

.footer-contact a {
  width: 100%;
  line-height: 1.35;
}

.footer-contact svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 8px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

.credit {
  margin: 0;
}

.credit a {
  color: #fff;
  font-weight: 900;
}

.mobile-quick {
  position: fixed;
  z-index: 80;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.mobile-quick a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 52px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.mobile-quick a:nth-child(2) {
  background: var(--green);
}

.mobile-quick a:nth-child(3) {
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .55);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .16);
  font-size: 32px;
  line-height: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px;
  }

  .header-call {
    justify-self: end;
  }

  .intro__grid,
  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social__wrap,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .footer-cta__actions {
    width: min(100%, 470px);
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 66px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 8px;
  }

  .brand,
  .brand img {
    width: 118px;
    min-width: 118px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    order: initial;
  }

  .hero {
    min-height: 86svh;
    padding: 118px 18px 24px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .7) 58%, rgba(0, 0, 0, .84) 100%);
  }

  .hero__content {
    padding-bottom: 170px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: .98;
  }

  .hero__lead {
    font-size: 17px;
  }

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

  .btn {
    width: 100%;
  }

  .hero__panel {
    left: 18px;
    right: 18px;
    bottom: 20px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero__panel div {
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .hero__panel div:last-child {
    border-bottom: 0;
  }

  .hero__panel strong {
    font-size: 16px;
  }

  .hero__panel span {
    margin-top: 2px;
  }

  .ticker {
    animation-duration: 18s;
  }

  .section {
    padding: 64px 18px;
  }

  .section__head {
    margin-bottom: 24px;
  }

  .section__head h2,
  .process h2,
  .contact h2 {
    font-size: 32px;
  }

  .intro__grid,
  .service-grid,
  .region-grid,
  .blog-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .service-card,
  .blog-card,
  .social-card {
    padding: 22px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process__image img {
    aspect-ratio: 16 / 11;
  }

  .step {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .step span {
    width: 38px;
    height: 38px;
  }

  .region-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
    gap: 10px;
  }

  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .social__wrap {
    gap: 16px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-card {
    min-height: auto;
  }

  .map-card__top {
    display: grid;
  }

  .map-card__top a {
    width: 100%;
    justify-content: center;
  }

  .map-card iframe {
    height: 330px;
  }

  .site-footer {
    padding: 44px 18px 112px;
  }

  .footer-cta {
    padding: 22px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta__actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 24px;
  }

  .footer-brand img {
    width: 146px;
  }

  .footer-col {
    gap: 9px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-quick {
    display: grid;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 46px;
  }

  .section__head h2,
  .process h2,
  .contact h2 {
    font-size: 29px;
  }

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

  .contact-link svg {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    min-height: 86svh;
    padding-top: 96px;
    padding-bottom: 18px;
  }

  .hero__content {
    padding-bottom: 138px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .btn {
    min-height: 46px;
  }

  .hero__panel {
    bottom: 18px;
  }

  .hero__panel div {
    padding: 9px 12px;
  }
}
