:root {
  --bg-deep: #060d18;
  --bg: #0a1628;
  --bg-soft: #0f1f35;
  --surface: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.22);
  --text: #eef3f8;
  --muted: #9eb0c4;
  --sea: #1a6b7c;
  --sea-light: #2d9cdb;
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --gold-dark: #b8942a;
  --max: min(1180px, calc(100% - 2.5rem));
  --header-h: 76px;
  --radius: 20px;
  --radius-lg: 28px;
  --font-ar: "Cairo", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --shadow-glass: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-glow: 0 0 80px rgba(26, 107, 124, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ar);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: var(--max);
  margin-inline: auto;
}

/* ── Liquid background ── */
.liquid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(26, 107, 124, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, #0c1a2e 100%);
}

.liquid-blob {
  position: absolute;
  border-radius: 42% 58% 62% 38% / 38% 42% 58% 62%;
  filter: blur(60px);
  opacity: 0.45;
  animation: blobFloat 18s ease-in-out infinite;
}

.liquid-blob--1 {
  width: 480px;
  height: 420px;
  top: -8%;
  right: -5%;
  background: rgba(26, 107, 124, 0.35);
}

.liquid-blob--2 {
  width: 380px;
  height: 340px;
  bottom: 15%;
  left: -8%;
  background: rgba(45, 156, 219, 0.2);
  animation-delay: -6s;
}

.liquid-blob--3 {
  width: 300px;
  height: 280px;
  top: 45%;
  right: 20%;
  background: rgba(212, 175, 55, 0.12);
  animation-delay: -12s;
}

.liquid-blob--4 {
  width: 220px;
  height: 200px;
  bottom: 5%;
  right: 10%;
  background: rgba(26, 107, 124, 0.25);
  animation-delay: -9s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(30px, -20px) rotate(4deg) scale(1.05); }
  66% { transform: translate(-20px, 15px) rotate(-3deg) scale(0.97); }
}

/* ── Glass utility ── */
.glass {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.07) 100%
  );
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius);
}

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-family: var(--font-ar);
  font-weight: 800;
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-ar);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--gold {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.45);
}

.btn--glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 13, 24, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-areas: "brand toggle nav cta";
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.nav-wrap .brand {
  grid-area: brand;
  justify-self: end;
}

.nav-wrap .menu-toggle {
  grid-area: toggle;
  justify-self: start;
}

.nav-wrap .nav-links {
  grid-area: nav;
  justify-self: center;
}

.nav-wrap .nav-cta {
  grid-area: cta;
  justify-self: start;
}

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

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__ar {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.brand__en {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.24rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.nav-links .nav-item-link {
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links .nav-item-link:hover,
.nav-links .nav-item-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.nav-mobile-head,
.nav-mobile-section,
.utility-inner--drawer {
  display: none;
}

.nav-mobile-links {
  display: contents;
}

.nav-item-ico {
  display: none;
}

.nav-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item-txt {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-links > .nav-mobile-cta {
  display: none;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.utility-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}

.utility-icon svg {
  width: 18px;
  height: 18px;
}

.utility-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.utility-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.nav-mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-mobile-close {
  display: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 13, 24, 0.92) 0%, rgba(6, 13, 24, 0.65) 45%, rgba(6, 13, 24, 0.4) 100%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 35%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: end;
}

.hero__glass {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  max-width: 36rem;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.stat-card {
  padding: 1.25rem 1.1rem;
  text-align: center;
  border-radius: var(--radius);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  text-decoration: none;
}

.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section--about {
  background: linear-gradient(180deg, transparent, rgba(26, 107, 124, 0.04) 50%, transparent);
}

.section--services {
  background: rgba(0, 0, 0, 0.15);
}

.section--projects {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03), transparent);
}

.section--process {
  background: rgba(0, 0, 0, 0.12);
}

.section--testimonials {
  background: linear-gradient(180deg, transparent, rgba(26, 107, 124, 0.05));
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-card {
  padding: 1.75rem;
}

.about-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-card__icon svg {
  width: 26px;
  height: 26px;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-card--featured {
  grid-column: span 1;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.about-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-card--featured:hover .about-card__image img {
  transform: scale(1.05);
}

.about-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 800;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
}

.service-card__num {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  color: var(--sea-light);
  background: rgba(45, 156, 219, 0.1);
  border: 1px solid rgba(45, 156, 219, 0.2);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Sectors ── */
.sectors-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sectors-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sectors-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.sectors-list__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

.sectors-list__item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 2rem;
}

.sectors-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
}

.sectors-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sectors-panel__caption {
  position: absolute;
  bottom: 1.5rem;
  inset-inline: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(6, 13, 24, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sectors-panel__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}

.sectors-panel__caption span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Projects showcase ── */
.projects-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 920px;
  margin-inline: auto;
}

.project-showcase {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-showcase:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(212, 175, 55, 0.08);
}

.project-showcase--featured {
  grid-column: 1 / -1;
}

.project-showcase__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(26, 107, 124, 0.2), rgba(6, 13, 24, 0.5));
}

.project-showcase--featured .project-showcase__media {
  aspect-ratio: 21 / 9;
}

.project-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}

.project-showcase:hover .project-showcase__media img {
  transform: scale(1.05);
}

.project-showcase__num {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.project-showcase__body {
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  text-align: center;
}

.project-showcase__tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.project-showcase__body h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.project-showcase__body p {
  margin: 0 auto 0.75rem;
  max-width: 28rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

.project-showcase__meta {
  display: inline-block;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sea-light);
  letter-spacing: 0.02em;
}

/* ── Process ── */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  inset-inline: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  text-align: center;
}

.process-step__num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Quality ── */
.quality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.quality-image-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
  background: linear-gradient(145deg, rgba(26, 107, 124, 0.2), rgba(6, 13, 24, 0.5));
}

.quality-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.quality-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.quality-pill {
  padding: 1rem 1.35rem;
  text-align: center;
  min-width: 120px;
}

.quality-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.quality-pill span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 2rem 1.75rem;
}

.testimonial p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
}

.testimonial footer strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.testimonial footer span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── CTA Band ── */
.section--cta-band {
  padding: 2rem 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(26, 107, 124, 0.25) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(212, 175, 55, 0.12) 100%
  );
  border-color: rgba(212, 175, 55, 0.2);
}

.cta-band__copy h2 {
  margin-bottom: 0.5rem;
}

.cta-band__copy p {
  margin: 0;
  color: var(--muted);
}

/* ── Contact ── */
.section--contact {
  background: linear-gradient(180deg, transparent, rgba(26, 107, 124, 0.06) 40%, transparent);
}

.contact-center {
  display: flex;
  justify-content: center;
}

.contact-panel {
  width: min(100%, 720px);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(26, 107, 124, 0.1) 100%
  );
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-panel__head {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-panel__head h2 {
  margin-bottom: 0.65rem;
}

.contact-panel__lead {
  margin: 0 auto;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

.contact-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: clamp(1.25rem, 2.5vw, 1.6rem) 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a.contact-tile:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.contact-tile__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(26, 107, 124, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-tile__icon svg {
  width: 22px;
  height: 22px;
}

.contact-tile__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.contact-tile__value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ── Footer ── */
.site-footer {
  padding: 2.5rem 0 calc(env(safe-area-inset-bottom, 0px) + 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
}

.footer-brand span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-copy {
  width: 100%;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.dev-credit {
  width: 100%;
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
}

.dev-credit__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--muted);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(26, 107, 124, 0.08) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dev-credit__pill:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.dev-credit__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--sea-light));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.55);
  flex-shrink: 0;
}

.dev-credit__label {
  letter-spacing: 0.02em;
}

.dev-credit a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.dev-credit a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
