:root {
  --bg: #0b110e;
  --bg-2: #111915;
  --panel: rgba(18, 25, 21, 0.92);
  --panel-2: rgba(24, 33, 28, 0.92);
  --paper: #efe5d6;
  --paper-2: #f8f1e6;
  --ink: #f7f2ea;
  --ink-soft: rgba(247, 242, 234, 0.74);
  --text-dark: #2a2018;
  --text-soft: #6e6257;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --gold: #d4a660;
  --gold-bright: #f0ca8b;
  --olive: #2f4b3c;
  --olive-soft: #4f6c5d;
  --saffron: #c36e3b;
  --saffron-soft: #e7ab72;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-xl: 0 22px 70px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.22);
  --content-width: min(1180px, calc(100% - 2rem));
  --service-accent: var(--gold);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 166, 96, 0.14), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(212, 166, 96, 0.08), transparent 24%),
    linear-gradient(180deg, #121915 0%, #0d130f 54%, #0a100c 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 80%);
}

body.theme-home {
  --service-accent: var(--gold);
}

body.theme-travel {
  --service-accent: var(--gold-bright);
}

body.theme-quran {
  --service-accent: #9eb58c;
}

body.theme-food {
  --service-accent: var(--saffron-soft);
}

body.nav-open {
  overflow: hidden;
}

html[dir="rtl"] body {
  font-family: "Noto Naskh Arabic", serif;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--text-dark);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-wrap {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0 0;
}

.site-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 15, 12, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* The Circular Frame */
.brand-mark {
  /* Dimensions must be equal for a perfect circle */
  width: 4.5rem; 
  height: 4.5rem;
  flex: 0 0 auto;
    align-items: center;
  /* The Circle Logic */
  border-radius: 50%;
  overflow: hidden; /* Clips the image to the circle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Aesthetics */
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 20px rgba(239, 181, 79, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-logo-img {
  /* This ensures the image behaves inside the circle */
  width: 100%;      /* Slightly smaller than 100% gives the logo "room to breathe" */
  height: 100%;
  object-fit: contaim; /* Ensures the logo isn't stretched or cropped */
  display: block;
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .brand-mark {
    width: 3.2rem;
    height: 3.2rem;
  }
}

/* Optional: Slight pulse effect when hovering over the brand */
.brand:hover .brand-mark {
  transform: scale(1.05);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html[dir="rtl"] .brand-mark {
  font-family: "Noto Naskh Arabic", serif;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  display: block;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[dir="rtl"] .brand-subtitle {
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.site-nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.24rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  min-width: 2.5rem;
  padding: 0.58rem 0.78rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-btn.active {
  background: var(--service-accent);
  color: #241403;
  box-shadow: 0 8px 20px rgba(212, 166, 96, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--service-accent), var(--gold-bright));
  border-color: transparent;
  color: #241403;
  box-shadow: 0 14px 34px rgba(212, 166, 96, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button-ghost {
  background: transparent;
  color: var(--ink-soft);
}

.button-live {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 166, 96, 0.35);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(212, 166, 96, 0.12);
}

.button-live:hover {
  background: rgba(212, 166, 96, 0.16);
  box-shadow: 0 14px 30px rgba(212, 166, 96, 0.16);
}

.main-content {
  position: relative;
  z-index: 1;
}

.section {
  padding: 1.4rem 0;
}

.section + .section {
  padding-top: 0.2rem;
}

.section-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow-xl);
}

.section-shell.soft {
  background: rgba(17, 24, 20, 0.8);
}

.section-shell.paper {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--paper);
  color: var(--text-dark);
  border-color: rgba(42, 32, 24, 0.08);
}

.section-body {
  padding: 2rem;
}

.hero {
  padding: 2.1rem 0 1.2rem;
}

.hero-shell {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.9fr);
  gap: 1.6rem;
  padding: 2.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--service-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 1.65rem;
  height: 1px;
  background: currentColor;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0.05em;
}

.hero-title,
.section-title,
.callout-title,
.media-card-title,
.price-value {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .callout-title,
html[dir="rtl"] .media-card-title,
html[dir="rtl"] .price-value {
  font-family: "Noto Naskh Arabic", serif;
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

html[dir="rtl"] .hero-title {
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-title .accent {
  color: var(--service-accent);
  font-style: italic;
}

html[dir="rtl"] .hero-title .accent {
  font-style: normal;
  font-weight: 700;
}

.hero-copy,
.section-copy,
.info-copy,
.card-copy,
.timeline-copy,
.order-template,
.footer-copy {
  line-height: 1.78;
}

.hero-copy {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.pill-row,
.tag-row,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-row {
  margin-top: 1.3rem;
}

.pill,
.tag,
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 0.92rem;
}

.pill-dot,
.tag-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--service-accent);
}

.stat-row {
  margin-top: 1.5rem;
}

.stat-card {
  flex: 1 1 160px;
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--service-accent);
}

.stat-label {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.callout-card,
.media-card,
.service-card,
.info-card,
.price-card,
.step-card,
.detail-card,
.faq-card,
.gallery-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.callout-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 96, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel-2);
}

.callout-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 64%);
}

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

.callout-title {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 0.98;
}

.callout-copy {
  max-width: 24rem;
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

.quote-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--service-accent);
}

.quote-copy {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

.quote-source {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.section-heading {
  max-width: 58rem;
}

.section-title {
  margin-top: 0.9rem;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

html[dir="rtl"] .section-title {
  line-height: 1.14;
  letter-spacing: 0;
}

.section-copy {
  max-width: 54rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section-shell.paper .section-copy,
.section-shell.paper .info-copy,
.section-shell.paper .card-copy,
.section-shell.paper .timeline-copy,
.section-shell.paper .footer-copy {
  color: var(--text-soft);
}

.grid-3,
.grid-4,
.service-grid,
.media-grid,
.info-grid,
.pricing-grid,
.steps-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-grid,
.media-grid,
.grid-3,
.pricing-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.service-card,
.info-card,
.price-card,
.step-card,
.gallery-card {
  padding: 1.25rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 100%;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 64%);
}

.service-label,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--service-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-title,
.card-title,
.detail-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.service-card-title {
  font-size: 1.28rem;
}

.card-copy,
.info-copy,
.detail-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: auto;
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.service-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.service-card-actions .button,
.service-card-actions .service-cta {
  flex: 1 1 12rem;
}

.preview-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.media-card {
  overflow: hidden;
  min-height: 100%;
}

.media-visual {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.media-content {
  padding: 1.2rem;
}

.media-card-title {
  font-size: 2rem;
  line-height: 0.98;
}

.media-card-copy {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

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

.info-icon,
.step-number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(212, 166, 96, 0.12);
  color: var(--service-accent);
  font-size: 1rem;
  font-weight: 800;
}

.info-card .card-title,
.step-card .card-title {
  margin-top: 1rem;
}

.timeline-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.timeline-copy {
  color: var(--ink-soft);
}

.timeline-title {
  margin: 0;
  font-size: 1rem;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 96, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.price-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
}

.price-value {
  font-size: 3.2rem;
  line-height: 0.9;
  color: var(--service-accent);
}

.price-unit {
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-align: right;
}

.price-age {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-list,
.tag-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.tag-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink-soft);
}

html[dir="rtl"] .feature-list li,
html[dir="rtl"] .tag-list li {
  padding-left: 0;
  padding-right: 1.3rem;
}

.feature-list li::before,
.tag-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--service-accent);
}

html[dir="rtl"] .feature-list li::before,
html[dir="rtl"] .tag-list li::before {
  left: auto;
  right: 0;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  overflow: hidden;
}

.detail-copy-wrap {
  padding: 1.5rem;
}

.detail-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(0, 0, 0, 0.12);
}

.tag-row {
  margin-top: 1.2rem;
}

.tag {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.faq-card {
  overflow: hidden;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 800;
}

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

.faq-card[open] summary {
  background: rgba(255, 255, 255, 0.04);
}

.faq-answer {
  padding: 0 1.15rem 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
  cursor: pointer;
  min-height: 2.9rem;
  padding: 0 1rem;
  font-weight: 700;
}

.filter-btn.active {
  background: var(--service-accent);
  color: #241403;
  border-color: transparent;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-content {
  padding: 1rem;
}

.order-template {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  white-space: pre-line;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.legacy-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.legacy-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.legacy-link {
  color: var(--service-accent);
  font-weight: 800;
}

.live-domain {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 166, 96, 0.28);
  background: rgba(212, 166, 96, 0.08);
  color: var(--service-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-domain::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--service-accent);
  box-shadow: 0 0 0 6px rgba(212, 166, 96, 0.12);
}

.live-site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.live-site-actions .button {
  flex: 1 1 100%;
}

.live-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.live-inline-links .button {
  min-height: 2.95rem;
  padding: 0 1rem;
  font-size: 0.9rem;
}

.site-footer {
  padding: 0 0 2.2rem;
}

.footer-shell {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(10, 15, 12, 0.84);
  box-shadow: var(--shadow-lg);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.footer-copy {
  margin-top: 0.8rem;
  max-width: 46rem;
  color: var(--ink-soft);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 166, 96, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--service-accent), var(--gold-bright));
  color: #241403;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.floating-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #241403;
}

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

.max-compact {
  max-width: 42rem;
}

@media (max-width: 1120px) {
  .hero-grid,
  .preview-split,
  .detail-card {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .media-grid,
  .grid-3,
  .pricing-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header-shell {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav-panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(9, 13, 10, 0.96);
    box-shadow: var(--shadow-xl);
  }

  body.nav-open .site-nav-panel {
    display: flex;
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a,
  .header-actions .button {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    justify-content: center;
  }

  .footer-top,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-wrap {
    width: min(100% - 1rem, 100%);
  }

  .site-header {
    padding-top: 0.7rem;
  }

  .site-header-shell {
    padding: 0.8rem 0.85rem 0.8rem 0.95rem;
  }

  .brand-mark {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.28rem;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-grid,
  .section-body {
    padding: 1.3rem;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .service-grid,
  .media-grid,
  .grid-3,
  .grid-4,
  .info-grid,
  .pricing-grid,
  .steps-grid,
  .gallery-grid,
  .legacy-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .media-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .media-actions .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 0.8rem;
    left: 0.8rem;
    justify-content: center;
  }
}
