:root {
  --black: #090806;
  --ink: #16130f;
  --white: #fffdf8;
  --soft: #f5f0e6;
  --muted: #b8ad99;
  --gold: #c99b3b;
  --gold-light: #f1d58a;
  --line: rgba(201, 155, 59, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Cairo", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

[lang="ar"],
[dir="rtl"] {
  font-family: "Cairo", "Manrope", Arial, sans-serif;
}

[dir="rtl"] {
  text-align: right;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(9, 8, 6, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 112px;
  object-fit: contain;
  background: transparent;
}

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

.brand small {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: rgba(255, 253, 248, 0.86);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: center;
  padding: 148px clamp(26px, 7vw, 104px) 96px;
  color: var(--white);
  background: var(--black);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 35%, rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(0deg, rgba(9, 8, 6, 0.82) 0%, rgba(9, 8, 6, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(8px, 2vw, 18px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(20px, 3vw, 41px);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  display: block;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: clamp(16px, 2.3vw, 31px);
  line-height: 1.45;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.78;
}

.license-line {
  margin: 16px 0 0;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy.ar {
  max-width: 540px;
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid currentColor;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 38px;
}

.section-heading h2,
.profile-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.profile-panel p {
  max-width: 800px;
  margin: 16px 0 0;
  color: #63594a;
  font-size: 17px;
  line-height: 1.8;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(201, 155, 59, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(201, 155, 59, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 58px 58px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.about-card,
.service-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 50px rgba(34, 27, 15, 0.08);
}

.about-card {
  min-height: 320px;
  padding: clamp(26px, 4vw, 44px);
}

.about-card.dark {
  background: var(--black);
  color: var(--white);
}

.about-card h3,
.service-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.about-card p,
.service-card p {
  color: #625745;
  line-height: 1.75;
}

.about-card.dark p {
  color: rgba(255, 253, 248, 0.75);
}

.stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats span {
  padding: 24px;
  border-right: 1px solid var(--line);
  color: #625745;
}

.stats span:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--black);
  font-size: 34px;
}

.services-section,
.profile-section,
.why-section,
.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 155, 59, 0.16), transparent 34%),
    linear-gradient(135deg, #090806, #17120b 55%, #090806);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.09), rgba(255, 253, 248, 0.03));
  color: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(201, 155, 59, 0.22) 17px 18px);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 213, 138, 0.7);
  background: linear-gradient(180deg, rgba(201, 155, 59, 0.18), rgba(255, 253, 248, 0.05));
}

.service-card > * {
  position: relative;
}

.service-card p,
.service-card li,
.services-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.75);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 22px;
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding-left: 20px;
  line-height: 1.6;
}

.service-list.ar-list {
  padding-right: 20px;
  padding-left: 0;
}

.gallery-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(201, 155, 59, 0.14), transparent 34%),
    linear-gradient(135deg, #090806, #17120b 55%, #090806);
}

.gallery-section .section-heading h2 {
  color: var(--white);
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--gold);
  background: var(--black);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 18px;
  gap: 18px;
}

.gallery-item,
.gallery-tile,
.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.gallery-card {
  grid-row: span 24;
  min-height: 430px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(5) {
  grid-row: span 29;
  min-height: 520px;
}

.gallery-card:nth-child(4) {
  grid-row: span 26;
  min-height: 470px;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-item img,
.gallery-card img,
.pattern,
.temp-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img,
.gallery-card:hover img,
.gallery-card:hover .pattern,
.gallery-card:hover .temp-image,
.gallery-tile:hover .pattern {
  transform: scale(1.05);
}

.gallery-open {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.gallery-open::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.76) 68%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
}

.gallery-copy {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: var(--white);
}

.gallery-kicker {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-copy h3,
.gallery-copy h4 {
  margin: 0;
}

.gallery-copy h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.gallery-copy h4 {
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 20px;
  line-height: 1.35;
}

.gallery-copy p {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.65;
}

.gallery-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.gallery-copy li {
  padding: 6px 9px;
  border: 1px solid rgba(241, 213, 138, 0.28);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 253, 248, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.pattern {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.88)),
    repeating-linear-gradient(90deg, rgba(241, 213, 138, 0.6) 0 2px, transparent 2px 28px),
    linear-gradient(135deg, #2a2117, #c99b3b);
}

.pattern-2 {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 35% 36%, rgba(255, 255, 255, 0.45) 0 2px, transparent 3px 100%),
    repeating-linear-gradient(45deg, #111 0 18px, #c99b3b 18px 20px, #241b12 20px 44px);
}

.pattern-3 {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
    conic-gradient(from 45deg, #c99b3b, #fff1bd, #1b1710, #c99b3b);
}

.temp-image {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at 28% 22%, rgba(255, 253, 248, 0.35), transparent 22%),
    repeating-linear-gradient(135deg, rgba(241, 213, 138, 0.22) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #120d07, #8e6727 52%, #21160c);
}

.temp-ayala {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 72% 24%, rgba(241, 213, 138, 0.5), transparent 20%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.2) 0 8px, transparent 8px 22px),
    linear-gradient(135deg, #17100a, #b98b34);
}

.temp-harbiya {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.6)),
    repeating-linear-gradient(45deg, rgba(241, 213, 138, 0.28) 0 3px, transparent 3px 24px),
    linear-gradient(135deg, #100c08, #5b3f19 45%, #d8b867);
}

.temp-aazi {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 34%, rgba(255, 253, 248, 0.25), transparent 24%),
    conic-gradient(from 45deg, #1a1209, #c99b3b, #fff1bd, #2c1f0d, #1a1209);
}

.temp-haban {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 35% 30%, rgba(241, 213, 138, 0.5), transparent 18%),
    repeating-radial-gradient(circle at 70% 64%, rgba(255, 253, 248, 0.16) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, #0f0c09, #9f782e);
}

.temp-music {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 26% 28%, rgba(255, 253, 248, 0.35), transparent 18%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(241, 213, 138, 0.38) 18px 20px),
    linear-gradient(135deg, #0b0806, #7d5922 50%, #f1d58a);
}

.temp-corporate {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(241, 213, 138, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, #12100d, #5f4721 48%, #c99b3b);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.temp-government {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 24%, rgba(255, 253, 248, 0.38), transparent 20%),
    repeating-linear-gradient(135deg, rgba(241, 213, 138, 0.24) 0 4px, transparent 4px 20px),
    linear-gradient(135deg, #15100a, #6a4a1d 42%, #d2aa53);
}

.temp-weddings {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 70% 22%, rgba(255, 253, 248, 0.48), transparent 18%),
    radial-gradient(circle at 25% 70%, rgba(241, 213, 138, 0.32), transparent 22%),
    linear-gradient(135deg, #0d0a08, #7b5724 48%, #f1d58a);
}

figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

figcaption span {
  color: var(--gold-light);
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.72fr);
  width: min(980px, 100%);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
  box-shadow: var(--shadow);
}

.lightbox-visual {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45)),
    url("assets/heritage-hero.png") center / cover no-repeat;
}

.lightbox-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
}

.lightbox-copy h3,
.lightbox-copy h4,
.lightbox-copy p {
  margin: 0;
}

.lightbox-copy h3 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.lightbox-copy h4 {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 24px;
}

.lightbox-copy p:last-child {
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.75;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.06);
}

.profile-panel p {
  color: rgba(255, 253, 248, 0.76);
}

.profile-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-list li {
  padding: 16px;
  border: 1px solid rgba(241, 213, 138, 0.25);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.6;
}

.profile-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.profile-list span {
  display: block;
}

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

.why-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.06);
  list-style: none;
}

.why-list li {
  padding: 15px 18px;
  border: 1px solid rgba(241, 213, 138, 0.22);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 253, 248, 0.84);
  font-weight: 800;
  line-height: 1.55;
}

.why-list li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  content: "";
  background: var(--gold-light);
  transform: rotate(45deg);
}

.why-list[dir="rtl"] li::before {
  margin-right: 0;
  margin-left: 10px;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 42px);
}

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

.contact-card > a {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 800;
}

.whatsapp-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid #237b4b;
  background: #f0fff6;
  color: #125d36;
}

.whatsapp-card span {
  font-size: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #4d4539;
  font-weight: 800;
}

.label-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-form .button {
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 19, 15, 0.16);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 59, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #5a4b31;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #1fa463;
  color: #fff;
  box-shadow: 0 14px 35px rgba(31, 164, 99, 0.35);
  font-size: 25px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.6%, 0, 0);
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(9, 8, 6, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 100vh;
    align-items: end;
    padding: 128px 20px 56px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12)),
      linear-gradient(0deg, rgba(9, 8, 6, 0.92) 0%, rgba(9, 8, 6, 0.52) 44%, rgba(9, 8, 6, 0.08) 78%);
  }

  .hero-content {
    width: min(100%, 520px);
  }

  h1 {
    font-size: clamp(19px, 6.4vw, 27px);
    line-height: 1.14;
  }

  h1 span {
    font-size: clamp(15px, 5vw, 22px);
    line-height: 1.5;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-grid,
  .contact-grid,
  .profile-panel,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .stats span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats span:last-child {
    border-bottom: 0;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lightbox-visual {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 44px;
    max-width: 92px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-card {
    min-height: 0;
  }

  .gallery-card,
  .gallery-card.large {
    grid-row: auto;
    min-height: 430px;
  }

  .gallery-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  figcaption {
    position: static;
    background: var(--black);
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-copy {
    padding: 24px;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

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