:root {
  --brand: #a71315;
  --brand-deep: #860f11;
  --brand-soft: #c42a2c;
  --ink: #141212;
  --ink-2: #1c1818;
  --cream: #f6f3f2;
  --cream-2: #efe8e7;
  --paper: #ffffff;
  --text: #1f1c1c;
  --muted: #6b6464;
  --line: rgba(20, 18, 18, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Sora", system-ui, sans-serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 18px;
  --header-h: 76px;
  --dock-h: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--brand);
  color: #fff;
  padding: 8px 14px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3.1rem, 9vw, 7.2rem);
  color: var(--paper);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
}

h2 em,
h1 em {
  font-style: italic;
  color: var(--brand);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head.light h2 {
  color: var(--paper);
}

.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 54px;
  padding: 0 26px;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--brand);
  color: #fff;
}

.btn-gold:hover {
  background: var(--brand-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
}

.btn-outline-light {
  border-color: var(--line-light);
  color: var(--paper);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 18%, transparent 52%);
  opacity: 0.85;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(20, 18, 18, 0.07);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: #f6f2f2;
  border: 1px solid rgba(167, 19, 21, 0.08);
  border-radius: 999px;
}

.nav-desktop a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--text);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-desktop a .fa-solid {
  color: var(--brand);
  font-size: 0.7rem;
  width: 0.75em;
  text-align: center;
}

.nav-desktop a:hover {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 16px rgba(167, 19, 21, 0.1);
}

.nav-desktop a.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(167, 19, 21, 0.18);
}

.nav-desktop a.is-active .fa-solid {
  color: #fff;
}

.nav-desktop a.is-active:hover {
  background: var(--brand-deep);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.header-phone:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

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

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

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

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(20, 18, 18, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: auto;
  z-index: 36;
  width: min(260px, 78vw);
  height: auto;
  background: #fff;
  color: var(--text);
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px 0 0 16px;
  box-shadow: -16px 0 40px rgba(20, 18, 18, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: none;
  pointer-events: auto;
}

.mobile-nav-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.mobile-nav nav {
  display: grid;
}

.mobile-nav nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 6px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
}

.mobile-nav nav a .fa-solid {
  color: var(--brand);
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
}

.mobile-nav nav a.is-active {
  color: var(--brand);
  font-weight: 700;
}

.mobile-nav nav a:active {
  color: var(--brand);
}

.mobile-nav-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mobile-nav-cta .btn {
  min-height: 40px;
  padding: 0 10px;
  font-size: 0.75rem;
}

.btn-nav-call {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

body.nav-open {
  overflow: hidden;
}

/* Slider */
.slider {
  display: grid;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.slider-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 36px 20px 40px;
  min-width: 0;
}

.slider-texts {
  position: relative;
  min-height: 16.5rem;
}

.slider-text h1,
.slider-text h2 {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  color: var(--paper);
}

.hero-lead {
  max-width: 38ch;
  margin-top: 16px;
  font-size: 1.05rem;
  color: rgba(250, 247, 240, 0.78);
}

.slider-text:not(.is-active) {
  display: none;
}

.slider-text.is-active {
  animation: rise 0.55s var(--ease);
}

.slider-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider-arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.28);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--brand);
}

.slider-visual {
  position: relative;
  min-height: 280px;
  background: #0c0b0a;
}

.slider-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.slider-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery {
  padding: clamp(72px, 10vw, 120px) 0;
}

/* Services */
.services {
  background: var(--ink-2);
  color: var(--paper);
  padding: clamp(72px, 10vw, 120px) 0;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  background: rgba(255, 255, 255, 0.02);
}

.service-no {
  display: block;
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.service-card p {
  color: rgba(250, 247, 240, 0.68);
}

/* About */
.about {
  padding: clamp(80px, 11vw, 140px) 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #fff 0%, #f6f3f2 100%);
  border-block: 1px solid var(--line);
}

.about-inner {
  max-width: 720px;
  text-align: center;
}

.about-logo {
  display: block;
  width: min(220px, 58%);
  height: auto;
  margin: 0 auto 36px;
}

.about-inner .eyebrow {
  margin-bottom: 18px;
}

.about-inner h2 {
  margin-bottom: 22px;
}

.about-lead {
  margin: 0 auto;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-page h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--text);
  margin-bottom: 22px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--brand);
}

.crumbs a:hover {
  text-decoration: underline;
}

.about-copy {
  margin: 40px auto 0;
  max-width: 58ch;
  text-align: left;
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-copy h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--text);
  margin-top: 6px;
}

.about-copy a {
  color: var(--brand);
  font-weight: 600;
}

.about-copy a:hover {
  text-decoration: underline;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

/* Services page — distinct from homepage .services */
.offer {
  background: var(--cream);
  padding: clamp(48px, 7vw, 80px) 0 calc(56px + var(--dock-h));
}

.offer h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--text);
}

.offer-head {
  max-width: 38rem;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.offer-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.offer-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(20, 18, 18, 0.04);
}

.offer-item span {
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.offer-item h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--text);
}

.offer-item p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Keyword landing — Çubuk Araç Kiralama */
.topic {
  background: var(--cream);
  padding: clamp(48px, 7vw, 80px) 0 calc(56px + var(--dock-h));
}

.topic h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--text);
}

.topic h1.is-single {
  font-size: clamp(1.45rem, 5.2vw, 3.4rem);
  white-space: nowrap;
}

.topic-head {
  max-width: 40rem;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.topic-head .crumbs {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.topic-intro {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 14px;
  box-shadow: 0 16px 40px rgba(20, 18, 18, 0.04);
}

.topic-grid {
  display: grid;
  gap: 12px;
}

.topic-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(20, 18, 18, 0.04);
}

.topic-card span {
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.topic-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--text);
}

.topic-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.topic-kicker {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.3;
}

.topic-sub {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--text);
  margin: 10px 0 14px;
}

.topic-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.topic-points li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
  box-shadow: 0 16px 40px rgba(20, 18, 18, 0.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(12, 10, 10, 0.92);
  padding: 72px 20px 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1.4px;
  background: #fff;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

body.lightbox-open {
  overflow: hidden;
}

/* Contact */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 10vw, 120px) 0 calc(72px + var(--dock-h));
}

.contact h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--paper);
}

.contact-top {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}

.contact-lead {
  margin-top: 16px;
  color: rgba(250, 247, 240, 0.68);
  max-width: 42ch;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-pair {
  display: grid;
  gap: 22px;
  align-items: center;
}

.contact-rule {
  width: 36px;
  height: 1px;
  background: var(--brand);
}

.contact-pair > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.contact-pair span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-pair a,
.contact-pair address {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-pair a:hover {
  color: var(--brand);
}

/* Contact page — distinct from homepage .contact */
.reach {
  background: var(--cream);
  padding: clamp(48px, 7vw, 80px) 0 calc(56px + var(--dock-h));
}

.reach h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--text);
}

.reach-head {
  max-width: 38rem;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.reach-grid {
  display: grid;
  gap: 14px;
}

.reach-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  gap: 26px;
  box-shadow: 0 16px 40px rgba(20, 18, 18, 0.04);
}

.reach-card article {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.reach-card article:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.reach-card span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.reach-card article a,
.reach-card address,
.reach-card p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: var(--text);
}

.reach-card article a:hover {
  color: var(--brand);
}

.reach-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.reach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 12px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.reach-btn:hover {
  transform: translateY(-1px);
  color: #fff;
}

.reach-btn svg {
  flex-shrink: 0;
}

.reach-btn-call {
  background: var(--brand);
}

.reach-btn-call:hover {
  background: var(--brand-deep);
}

.reach-btn-wa {
  background: #25d366;
}

.reach-btn-wa:hover {
  background: #1ebe57;
}

.reach-map {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-2);
}

.reach-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reach-map-link {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: var(--paper);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(20, 18, 18, 0.08);
}

.reach-map-link:hover {
  color: var(--brand);
  border-color: var(--brand);
}

/* Footer */
.site-footer {
  background: #0c0b0a;
  color: rgba(250, 247, 240, 0.62);
  padding: 36px 0 calc(28px + var(--dock-h));
  font-size: 0.9rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--paper);
  margin-bottom: 6px;
}

.footer-nap {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-nap a:hover {
  color: var(--brand);
}

.footer-top {
  display: grid;
  gap: 22px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-top nav a:hover,
.footer-bottom a:hover {
  color: var(--brand);
}

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

.footer-bottom a {
  color: var(--paper);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: calc(var(--dock-h) + 16px);
  z-index: 32;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: 0;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

.wa-float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s var(--ease);
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-2px);
  background: #1ebe57;
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.4);
}

.wa-float:hover .wa-float-tip,
.wa-float:focus-visible .wa-float-tip {
  opacity: 1;
  transform: translateY(-50%);
}

/* Mobile dock */
.mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  background: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  overflow: hidden;
}

.mobile-dock a {
  text-align: center;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 14px 6px;
}

.mobile-dock .dock-wa {
  background: var(--brand);
  color: #fff;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .slider-text.is-active,
  .slider-slide {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Desktop */
@media (min-width: 860px) {
  :root {
    --header-h: 84px;
    --dock-h: 0px;
  }

  .mobile-dock,
  .menu-toggle {
    display: none;
  }

  .wa-float {
    right: 28px;
    bottom: 28px;
    width: 76px;
    height: 76px;
  }

  .wa-float svg {
    width: 36px;
    height: 36px;
  }

  .logo img {
    height: 56px;
    max-width: 240px;
  }

  .nav-desktop {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .slider {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: calc(100svh - var(--header-h));
  }

  .slider-copy {
    padding: 48px 48px 48px 56px;
  }

  .slider-controls {
    justify-content: flex-start;
  }

  .slider-texts {
    min-height: 20rem;
  }

  .slider-visual {
    min-height: 100%;
  }

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

  .about-logo {
    width: 240px;
    margin-bottom: 44px;
  }

  .about-lead {
    font-size: 1.15rem;
  }

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

  .footer-top {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .site-footer {
    padding-bottom: 36px;
  }

  .reach-grid {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
    min-height: 520px;
  }

  .reach-map {
    min-height: 100%;
  }

  .offer-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .topic-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .topic-card-wide {
    grid-column: 1 / -1;
  }

  .topic-intro {
    padding: 30px 32px;
  }

  .topic-points {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    padding-bottom: clamp(72px, 10vw, 120px);
  }

  .contact-top {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 40px;
  }

  .contact-cta {
    padding-bottom: 6px;
  }

  .contact-pair {
    grid-template-columns: 1fr auto 1fr;
    gap: 0 40px;
  }

  .contact-rule {
    width: 1px;
    height: 52px;
  }
}

@media (min-width: 860px) and (max-width: 1279px) {
  .nav-desktop a {
    padding: 9px 11px;
    letter-spacing: 0.02em;
    font-size: 0.75rem;
  }

  .nav-desktop a .fa-solid {
    font-size: 0.65rem;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 0 12px;
  }
}

@media (min-width: 1100px) {
  .wrap {
    width: min(1180px, calc(100% - 64px));
  }
}

@media (max-width: 859px) {
  :root {
    --dock-h: 72px;
  }

  .header-actions .btn-gold {
    display: none;
  }
}
