:root {
  --accent: #a8702f;
  --accent-deep: #83541f;
  --accent-soft: #f6eee3;
  --gold: #c49a52;
  --ink: #15171c;
  --muted: #5d6472;
  --line: #e8ebf1;
  --soft: #f6f7fb;
  --cream: #faf5ef;
  --dark: #170f0b;
  --dark-2: #2b1a13;
  --wa: #1fae5b;
  --wa-deep: #168a47;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 40px rgba(21, 23, 28, 0.08);
  --container: 1200px;
  --header-h: 76px;
  color-scheme: light only;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.muted {
  color: var(--muted);
}

[dir="rtl"] .flip-rtl {
  transform: scaleX(-1);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn-sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 26px;
  font-size: 16px;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 174, 91, 0.28);
}

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

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(168, 112, 47, 0.28);
}

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

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

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

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  color: #fff;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(21, 23, 28, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 20px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-tagline {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  opacity: 1;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.main-nav .nav-lang {
  display: none;
}

.main-nav .nav-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
}

.lang-switch:hover {
  background: rgba(127, 127, 127, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.85;
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  color: #fff;
  background: var(--dark);
  isolation: isolate;
}

.hero {
  padding-top: calc(var(--header-h) + 64px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 85% 20%, rgba(168, 112, 47, 0.35), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(195, 154, 75, 0.18), transparent 60%),
    linear-gradient(160deg, #1d130e 0%, #120b08 55%, #0c0806 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

.skyline {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  fill: rgba(255, 255, 255, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 96px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

[dir="rtl"] .kicker {
  letter-spacing: 0;
  font-size: 15px;
}

.kicker span {
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.hero h1,
.page-hero h1 {
  margin-top: 22px;
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.hero h1 em,
.display em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.hero h1 em {
  color: #fff;
  background: linear-gradient(90deg, #e6b774, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin-top: 20px;
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges .icon {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-card {
  position: absolute;
  inset-inline-start: 12%;
  top: 30px;
  width: min(360px, 80%);
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transform: rotate(-3deg);
}

[dir="rtl"] .hero-card {
  transform: rotate(3deg);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
}

.hero-card-lines {
  display: grid;
  gap: 10px;
  flex: 1;
}

.hero-card-lines i {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-card-lines i + i {
  width: 60%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-card-progress {
  height: 8px;
  margin: 26px 0 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-card-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.hero-card-steps {
  display: grid;
  gap: 12px;
  font-size: 15px;
}

.hero-card-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-card-steps li.done {
  color: #fff;
}

.hero-card-steps li.done .icon {
  color: #6be39b;
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

.hero-chip .icon {
  color: var(--accent);
}

.hero-chip-1 {
  inset-inline-end: 0;
  top: 0;
}

.hero-chip-2 {
  inset-inline-start: 0;
  bottom: 24px;
  animation-delay: -2s;
}

.hero-chip-3 {
  inset-inline-end: 0;
  bottom: 70px;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: -56px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.strip li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
}

.strip li + li {
  border-inline-start: 1px solid var(--line);
}

.strip strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}

.strip small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.strip-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Sections */
.section {
  padding: 110px 0;
}

.about {
  padding-top: 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

[dir="rtl"] .eyebrow {
  letter-spacing: 0;
  font-size: 15px;
}

.eyebrow.gold {
  color: var(--gold);
}

.eyebrow-line {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.display {
  margin-top: 14px;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display em.gold {
  color: var(--gold);
}

.section-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 480px;
}

.center-head {
  text-align: center;
}

.eyebrow.center {
  justify-content: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 36px;
  margin-top: 48px;
  align-items: start;
}

.about-lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.about-copy p + p {
  margin-top: 16px;
  color: var(--muted);
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.tiles li {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}

.tiles .icon {
  color: var(--accent);
}

.about-visual {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  background: linear-gradient(170deg, #2a1812, #120b08);
  box-shadow: 0 30px 60px rgba(23, 15, 11, 0.28);
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 50% 0%, rgba(168, 112, 47, 0.45), transparent 70%);
}

.doc {
  position: absolute;
  left: 50%;
  width: 62%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.doc-3 {
  top: 60px;
  transform: translateX(-50%) rotate(-10deg);
  opacity: 0.35;
}

.doc-2 {
  top: 70px;
  transform: translateX(-50%) rotate(6deg);
  opacity: 0.6;
}

.doc-1 {
  top: 80px;
  transform: translateX(-50%);
  padding: 34px 26px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.doc-1 i {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: var(--line);
}

.doc-1 i.short {
  width: 55%;
}

.doc-seal {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.about-badge {
  position: absolute;
  inset-inline: 20px;
  bottom: 20px;
  display: grid;
  justify-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(23, 15, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(8px);
}

.about-badge strong {
  font-size: 22px;
}

.about-badge span {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.about-side {
  display: grid;
  gap: 16px;
}

.quote-card {
  margin: 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.quote-card > .icon {
  color: #e3c9a2;
}

.quote-card blockquote {
  margin: 14px 0 26px;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
}

[dir="rtl"] .quote-card blockquote {
  font-style: normal;
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-card figcaption small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

.happiness-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 26px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 36px rgba(131, 84, 31, 0.3);
  transition: transform 0.2s ease;
}

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

.happiness-card small {
  display: block;
  opacity: 0.85;
  font-size: 13px;
}

.happiness-card strong {
  font-size: 22px;
}

.round-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

/* Services */
.services {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset-inline-end: -10%;
  top: 0;
  width: 40%;
  height: 100%;
  background: #fff;
  transform: skewX(-14deg);
  opacity: 0.7;
}

.services .container {
  position: relative;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 19px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}

.service-card-cta {
  justify-content: center;
  color: #fff;
  border: 0;
  background: linear-gradient(145deg, #c28b45, var(--accent-deep));
}

.service-card-cta p {
  color: rgba(255, 255, 255, 0.85);
  flex: 0;
}

.service-card-cta .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* Why */
.why {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  padding: 16px;
  border-radius: 32px;
  border: 1.5px solid rgba(195, 154, 75, 0.45);
}

.why-frame {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #3a2419, #140c08);
}

.why-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(195, 154, 75, 0.35), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(168, 112, 47, 0.35), transparent 45%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 22px);
}

.why-stat {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.why-stat .icon {
  color: var(--gold);
}

.why-stat strong {
  display: block;
  font-size: 15px;
}

.why-stat small {
  color: var(--muted);
  font-size: 13px;
}

.why-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 17px;
}

.why-list span {
  flex-shrink: 0;
  min-width: 34px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

.why-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.why-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

/* Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.step h3 {
  font-size: 20px;
}

.step p {
  margin-top: 8px;
  color: var(--muted);
}

/* Contact */
.contact {
  padding-top: 40px;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(168, 112, 47, 0.55), transparent 60%),
    linear-gradient(135deg, #2b1a13, #120b08);
}

.cta-band h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.cta-band p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 80px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.contact-item a,
.contact-item span span {
  font-weight: 600;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
}

.contact-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.contact-note .icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.map-card {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(21, 23, 28, 0.05) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(21, 23, 28, 0.05) 38px 39px),
    var(--soft);
}

.map-placeholder .icon {
  color: var(--accent);
}

.map-link {
  position: absolute;
  inset-inline-start: 16px;
  bottom: 16px;
}

.contact-line {
  display: block;
  font-weight: 600;
}

.follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--accent);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #fff;
}

.socials-footer {
  margin-top: 20px;
}

.socials-footer a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Team */
.team {
  margin-top: 64px;
}

.team-head h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.team-head p {
  margin-top: 6px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-top: 26px;
  align-items: stretch;
}

.team-lead {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, #2b1a13, #120b08);
  color: #fff;
}

.team-lead img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  background: #fff;
}

.team-lead h4 {
  font-size: 22px;
  margin: 0 0 14px;
}

.team-others {
  display: grid;
  gap: 12px;
}

.team-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.team-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.team-card h4 {
  margin: 0;
  font-size: 17px;
}

.team-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: #fff;
}

.team-numbers {
  display: grid;
  gap: 10px;
}

.team-numbers li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  font-weight: 600;
}

.team-actions {
  display: flex;
  gap: 8px;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.chip-wa {
  background: var(--wa);
  border-color: var(--wa);
  color: #fff;
}

.team-lead .chip-btn:not(.chip-wa) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Services page */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 70px;
}

.page-hero .hero-lead {
  max-width: 640px;
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.jump a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.jump .icon {
  color: #e6b774;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
  align-items: start;
}

.service-group {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(21, 23, 28, 0.05);
}

.service-group header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-group h2 {
  font-size: 21px;
}

.service-group header p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}

.check-list .icon {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--wa);
}

.service-group .btn {
  justify-self: start;
}

.contact-mini {
  padding-top: 0;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding-top: 70px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(120, 80, 32, 0.55), transparent 70%),
    var(--dark);
  border-radius: 36px 36px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 380px;
  font-size: 15px;
}

.footer-title {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.wa-float {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 174, 91, 0.4);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Appear on scroll (only when scripts run). */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-chip,
  .wa-float::after {
    animation: none;
  }
}

/* Tablet */
@media (max-width: 1080px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
  .strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .strip li + li {
    border-inline-start: 0;
  }
}

/* Phone and small tablet */
@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }
  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: var(--header-h);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 22px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 16px 30px rgba(21, 23, 28, 0.12);
  }
  .site-header.is-open .main-nav {
    display: flex;
  }
  .main-nav a {
    padding: 14px 12px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .main-nav a[aria-current="page"]::after {
    display: none;
  }
  .main-nav a[aria-current="page"] {
    color: var(--accent);
  }
  .main-nav .nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 0;
  }
  .lang-switch {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .hero {
    padding-top: calc(var(--header-h) + 40px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 70px;
  }
  .hero-visual {
    display: none;
  }
  .strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-bottom: -48px;
    scrollbar-width: none;
  }
  .strip li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .section {
    padding: 80px 0;
  }
  .about {
    padding-top: 120px;
  }
  .team-grid,
  .about-grid,
  .about-side,
  .why-grid,
  .contact-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 380px;
  }
  .why-frame {
    min-height: 300px;
  }
  .why-grid {
    gap: 40px;
  }
  .cta-band {
    padding: 30px 24px;
  }
  .contact-grid {
    margin-top: 56px;
  }
  .map-card,
  .map-card iframe {
    min-height: 320px;
  }
  .service-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-actions .btn-wa span {
    display: none;
  }
  .header-actions .btn-wa {
    width: 44px;
    padding: 0;
  }
  .brand-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-card {
    inset-inline-start: 4%;
    width: 86%;
  }
  .hero-chip-3 {
    display: none;
  }
  .tiles {
    grid-template-columns: 1fr;
  }
  .team-lead {
    grid-template-columns: 1fr;
  }
  .team-lead img {
    max-height: 340px;
  }
  .brand-tagline {
    display: none;
  }
  .wa-float {
    width: 56px;
    height: 56px;
    inset-inline-end: 16px;
    bottom: 16px;
  }
}
