:root {
  --bg: #f7f6f1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-muted: #efece3;
  --surface-dark: #1f2422;
  --text: #18201d;
  --text-soft: #49554f;
  --line: rgba(24, 32, 29, 0.12);
  --line-strong: rgba(24, 32, 29, 0.22);
  --brand: #7a5907;
  --brand-strong: #5c4200;
  --brand-soft: #f0d38a;
  --accent: #c45b1b;
  --success: #247454;
  --shadow-lg: 0 28px 72px rgba(24, 32, 29, 0.12);
  --shadow-md: 0 20px 48px rgba(24, 32, 29, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1180px, calc(100vw - 32px));
  --safe-bottom: max(16px, env(safe-area-inset-bottom));
  --hero-image: url("/assets/images/hyundai-arazi.jpeg");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(122, 89, 7, 0.12), transparent 28%),
    linear-gradient(180deg, #faf8f2 0%, #f4f2ea 100%);
  line-height: 1.6;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  padding: 12px 16px;
  background: var(--surface-dark);
  color: #ffffff;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-top: 4px solid rgba(122, 89, 7, 0.55);
}

.site-header.is-scrolled {
  background: rgba(248, 246, 239, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(24, 32, 29, 0.08);
}

.header-shell,
.site-footer__shell,
.section-shell,
.page-shell,
.hero-shell,
.banner-shell {
  width: var(--container);
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand__meta {
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: "Work Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(24, 32, 29, 0.76);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
  border-color: rgba(122, 89, 7, 0.65);
}

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

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.menu-button:hover {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--brand), #9f7b22);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(122, 89, 7, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  border: 1px solid rgba(24, 32, 29, 0.12);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(24, 32, 29, 0.18);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(24, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
}

.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.phone-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.phone-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 32, 29, 0.54);
  backdrop-filter: blur(12px);
}

.phone-modal__panel {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 236, 0.97));
  border: 1px solid rgba(24, 32, 29, 0.08);
  box-shadow: 0 30px 80px rgba(24, 32, 29, 0.22);
  z-index: 1;
}

.phone-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.phone-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Work Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.phone-modal__title {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.phone-modal__close {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(24, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

.phone-modal__body {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.phone-modal__item {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(24, 32, 29, 0.04);
  border: 1px solid rgba(24, 32, 29, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.phone-modal__item:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 89, 7, 0.24);
  background: rgba(122, 89, 7, 0.06);
}

.phone-modal__meta {
  color: var(--brand);
  font-family: "Work Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-modal__item strong {
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.phone-modal__number {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 700;
}

.phone-modal__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.hero {
  position: relative;
  padding: 44px 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px 0 0;
  background:
    linear-gradient(90deg, rgba(24, 32, 29, 0.82) 0%, rgba(24, 32, 29, 0.46) 42%, rgba(24, 32, 29, 0.08) 76%),
    var(--hero-image) center/cover no-repeat;
  border-radius: 38px;
  width: var(--container);
  margin: 0 auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: calc((100vw - var(--container)) / 2 + 54px);
  top: 88px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240, 211, 138, 0.9), transparent 72%);
  filter: blur(22px);
  opacity: 0.9;
}

.hero-shell {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 34px;
  padding: 132px 52px 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Work Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 16px;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero h1 {
  color: #ffffff;
  max-width: 10.8ch;
}

.hero p {
  margin: 0;
  max-width: 640px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.page-hero__actions,
.cta-banner__actions,
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  align-self: start;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(248, 246, 239, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-card__title,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: "Work Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card__list,
.check-list,
.contact-list,
.detail-list,
.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card__list li,
.check-list li,
.detail-list li,
.coverage-list li {
  position: relative;
  padding-left: 28px;
}

.hero-card__list li + li,
.check-list li + li,
.detail-list li + li,
.coverage-list li + li {
  margin-top: 14px;
}

.hero-card__list li::before,
.check-list li::before,
.detail-list li::before,
.coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 6px rgba(122, 89, 7, 0.09);
}

.hero-chip-row,
.pill-row,
.service-meta,
.faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.hero-chip,
.service-meta span,
.faq-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 32, 29, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-chip {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 94px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(239, 236, 227, 0.48), rgba(255, 255, 255, 0.42));
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header h2,
.section-header h3,
.page-shell h2,
.page-shell h3,
.cta-banner h2,
.footer-cta h2 {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-header h2,
.page-shell h2,
.cta-banner h2,
.footer-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

.section-header p,
.page-shell p,
.cta-banner p,
.page-hero p,
.copy-block p,
.contact-card p,
.service-card p,
.faq-copy {
  color: var(--text-soft);
}

.grid-two,
.grid-three,
.grid-four,
.gallery-grid,
.services-grid,
.process-grid,
.coverage-grid,
.contact-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

.grid-two,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three,
.services-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.panel,
.service-card,
.process-card,
.stats-card,
.contact-card,
.faq-item,
.gallery-card,
.detail-panel,
.banner-panel,
.service-detail,
.coverage-card,
.copy-panel,
.legal-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 32, 29, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.service-card,
.process-card,
.stats-card,
.contact-card,
.detail-panel,
.coverage-card,
.copy-panel,
.legal-panel {
  padding: 28px;
}

.service-card {
  display: grid;
  gap: 18px;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: #ddd5c0;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 32, 29, 0.02), rgba(24, 32, 29, 0.12));
}

.service-card h3,
.process-card h3,
.stats-card h3,
.contact-card h3,
.detail-panel h3,
.copy-panel h3,
.coverage-card h3,
.service-detail h2,
.service-detail h3,
.faq-item summary,
.gallery-card h3 {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.04em;
}

.service-card h3,
.process-card h3,
.contact-card h3,
.detail-panel h3,
.copy-panel h3,
.coverage-card h3,
.gallery-card h3 {
  font-size: 1.45rem;
}

.service-card__index {
  color: rgba(122, 89, 7, 0.52);
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-family: "Work Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-link::after {
  content: "→";
}

.media-block,
.page-hero,
.detail-hero,
.footer-cta {
  display: grid;
  gap: 24px;
}

.media-block,
.page-hero,
.detail-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  align-items: center;
}

.media-frame,
.gallery-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 380px;
  background: #d9d3c3;
}

.media-frame img,
.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after,
.gallery-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 32, 29, 0.04), rgba(24, 32, 29, 0.28));
}

.copy-block {
  display: grid;
  gap: 20px;
}

.copy-block h2,
.copy-block h3 {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.stats-card span,
.metric-value {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--brand);
}

.stats-card small,
.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-card {
  overflow: hidden;
  grid-column: span 4;
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-card__copy {
  padding: 22px 24px 26px;
}

.gallery-card__meta {
  margin-bottom: 8px;
  color: var(--brand);
  font-family: "Work Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.cta-banner {
  padding: 40px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(24, 32, 29, 0.95), rgba(36, 47, 42, 0.88)),
    url("/assets/images/hyundai-lowbed.jpeg") center/cover;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cta-banner p,
.cta-banner .hero-card__title {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 42px 0 16px;
}

.page-hero__copy {
  padding: 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 32, 29, 0.08);
  box-shadow: var(--shadow-md);
}

.page-hero h1 {
  margin-top: 18px;
  color: var(--text);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--text-soft);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.46;
}

.service-detail {
  padding: 34px;
  display: grid;
  gap: 18px;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr);
  gap: 24px;
}

.contact-grid {
  align-items: start;
}

.contact-card__label {
  margin-bottom: 10px;
  color: var(--brand);
  font-family: "Work Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list li strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 0.98rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-field input,
.form-field textarea,
.form-field select {
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(24, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(122, 89, 7, 0.28);
  border-color: rgba(122, 89, 7, 0.38);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.service-links {
  margin-top: 18px;
}

.coverage-card {
  min-height: 100%;
}

.site-footer {
  padding: 82px 0 36px;
}

.site-footer__shell {
  display: grid;
  gap: 30px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 32, 29, 0.08);
  box-shadow: var(--shadow-md);
}

.site-footer__top h3 {
  margin: 0 0 12px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-footer__top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.site-footer__bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #179b4d);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-inline small {
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.legal-panel {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .nav-links,
  .header-actions .button-secondary {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav {
    display: grid;
    gap: 10px;
    width: var(--container);
    margin: 0 auto;
    padding: 0 0 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  .mobile-nav.is-open {
    max-height: 360px;
    opacity: 1;
    padding-bottom: 18px;
  }

.mobile-nav a {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 32, 29, 0.08);
    font-family: "Work Sans", sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.84rem;
  }

  .hero-shell,
  .media-block,
  .page-hero,
  .detail-hero,
  .service-detail__grid,
  .site-footer__top,
  .grid-two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-three,
  .grid-four,
  .services-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero::before {
    inset: 18px 0 0;
  }

  .hero-shell {
    min-height: auto;
    padding: 110px 26px 34px;
  }

  .hero-card {
    max-width: 560px;
  }

  .section-header {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .header-shell {
    padding: 14px 0;
  }

  .brand__meta {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero::before {
    border-radius: 28px;
  }

  .hero::after {
    display: none;
  }

  .hero-shell {
    padding: 92px 20px 24px;
    gap: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-card,
  .page-hero__copy,
  .cta-banner,
  .service-card,
  .process-card,
  .stats-card,
  .contact-card,
  .detail-panel,
  .coverage-card,
  .copy-panel,
  .service-detail {
    padding: 22px;
  }

  .grid-three,
  .grid-four,
  .services-grid,
  .process-grid,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card--wide {
    grid-column: auto;
  }

  .media-frame,
  .gallery-card__media {
    min-height: 280px;
  }

  .section {
    padding: 76px 0;
  }

  .site-footer__top {
    padding: 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: var(--safe-bottom);
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .site-footer {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .site-header {
    background: rgba(248, 246, 239, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(24, 32, 29, 0.08);
  }

  .header-shell {
    gap: 10px;
  }

  .brand__name {
    font-size: 0.88rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .header-actions .button {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-shell {
    padding-top: 84px;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .phone-modal {
    padding: 16px;
  }

  .phone-modal__panel {
    padding: 22px;
    border-radius: 24px;
  }

  .phone-modal__title {
    font-size: 1.7rem;
  }

  .phone-modal__item {
    padding: 16px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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