/* مركز الإبداع اللغوي — تصميم بعرض كامل وأقسام بارتفاع الشاشة */
:root {
  --teal: #0f7a76;
  --teal-dark: #085451;
  --teal-mid: #0c6562;
  --teal-light: #e8f3f2;
  --amber: #e8941c;
  --green: #2a9d5f;
  --text: #142625;
  --text-muted: #4d6563;
  --white: #ffffff;
  --surface: #f6faf9;
  --border: rgba(15, 122, 118, 0.12);
  --shadow: 0 20px 50px rgba(8, 84, 81, 0.1);
  --shadow-soft: 0 8px 30px rgba(8, 84, 81, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 5rem;
  --font: "Tajawal", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

::selection {
  background: rgba(15, 122, 118, 0.2);
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container--wide {
  width: min(1440px, 94vw);
  margin-inline: auto;
}

.brand-ribbon {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--teal) 45%, var(--amber) 100%);
  flex-shrink: 0;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding-block: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.brand img {
  width: clamp(150px, 22vw, 220px);
  height: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.4rem 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--teal);
  text-decoration: none;
}

.btn-header {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-mid) 55%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(8, 84, 81, 0.35);
}

.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(8, 84, 81, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid rgba(15, 122, 118, 0.35);
}

.btn-ghost:hover {
  background: var(--teal-light);
  text-decoration: none;
  border-color: var(--teal);
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
}

/* ——— Full-screen sections ——— */
.section-screen {
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(2.5rem, 6vh, 4rem);
}

.section-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 4vh, 3rem);
  flex: 1;
  width: 100%;
}

.section-stack--natural {
  flex: none;
}

.section-pad {
  padding-block: clamp(3.25rem, 8vw, 5rem);
}

.section-pad--lg {
  padding-block: clamp(4rem, 10vw, 6rem);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background:
    linear-gradient(165deg, var(--teal-light) 0%, #fff 38%, #fffaf3 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(42, 157, 95, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(232, 148, 28, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      -8deg,
      transparent,
      transparent 48px,
      rgba(15, 122, 118, 0.03) 48px,
      rgba(15, 122, 118, 0.03) 49px
    );
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--teal-mid);
}

.eyebrow--on-light {
  color: var(--teal);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.85rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-points li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-inline-end: 1.1rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-aside {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-panel__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.hero-panel__media img {
  width: 100%;
  object-fit: contain;
}

.hero-panel__caption {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.hero-panel__tagline {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
  justify-content: center;
}

.badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.badge-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.badge-amber {
  background: #fff4e0;
  color: #9a3412;
}

.badge-green {
  background: #e8f5ee;
  color: var(--green);
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(15, 122, 118, 0.25);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
  transition: border-color 0.2s ease;
}

.scroll-hint:hover {
  border-color: var(--teal);
}

.scroll-hint__line {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@media (max-width: 600px) {
  .scroll-hint {
    display: none;
  }
}

/* ——— Trust strip ——— */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--white);
  padding-block: clamp(1.75rem, 3vw, 2.25rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.trust-cell {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.trust-cell strong {
  display: block;
  font-size: 1.05rem;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}

.trust-cell span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ——— Values / identity ——— */
.values {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.value-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  border-color: rgba(15, 122, 118, 0.22);
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.value-card__mark {
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
}

.value-card__mark--amber {
  background: linear-gradient(90deg, var(--amber), #f5b041);
}

.value-card__mark--green {
  background: linear-gradient(90deg, var(--green), #3cb371);
}

.value-card__mark--teal {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
}

/* ——— Section headings ——— */
.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.section-head--left {
  text-align: right;
  margin-inline: 0;
  max-width: none;
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1.3;
}

.section-title--light {
  color: var(--white);
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.section-intro--center {
  max-width: 58ch;
  margin-inline: auto;
}

.section-intro--flush {
  max-width: 52ch;
}

.section-intro--muted-light {
  color: rgba(255, 255, 255, 0.82);
}

/* ——— Services ——— */
.services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.35rem;
}

.services-grid--dense {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.15rem;
}

.service-card {
  background: var(--white);
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover {
  border-color: rgba(15, 122, 118, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  background: var(--teal-light);
  color: var(--teal);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-icon--amber {
  background: #fff4e0;
  color: #c2410c;
}

.service-icon--green {
  background: #e8f5ee;
  color: var(--green);
}

/* ——— Audience ——— */
.audience {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.15rem;
}

.audience-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--teal);
}

.audience-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ——— About ——— */
.about {
  background: var(--white);
}

.about-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.about-panels {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .about-panels {
    grid-template-columns: 1fr 1fr;
  }
}

.about-panel {
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-panel--mission {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-panel--vision {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-inline-end: 4px solid var(--amber);
}

.about-panel__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.about-panel--vision .about-panel__title {
  color: var(--teal-dark);
}

.about-panel__text {
  margin: 0;
  line-height: 1.85;
  font-size: 0.98rem;
}

.about-panel--mission .about-panel__text {
  opacity: 0.94;
}

.about-panel--vision .about-panel__text {
  color: var(--text-muted);
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
}

.check {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ——— Approach / process ——— */
.approach {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal-mid) 45%, #0a4a48 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 10% 90%, rgba(232, 148, 28, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.approach .section-stack {
  position: relative;
  z-index: 1;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.process-step {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.process-step__num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  line-height: 1.4;
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* ——— Team ——— */
.team {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.35rem;
}

.team-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.team-card__photo {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-light), #d4ecea);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.team-card__photo--amber {
  background: linear-gradient(145deg, #fff4e0, #fde68a);
}

.team-card__photo--green {
  background: linear-gradient(145deg, #e8f5ee, #bbf7d0);
}

.team-card__initials {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.team-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.team-card__role {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

.team-card__bio {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ——— FAQ ——— */
.faq {
  background: var(--surface);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal-mid) 50%, #0a5e5b 100%);
  color: var(--white);
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(232, 148, 28, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
}

.cta-band__text {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 52ch;
}

.cta-band .btn-primary {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.cta-band .btn-primary:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* ——— Contact ——— */
.contact {
  background: linear-gradient(180deg, var(--teal-light) 0%, #fff 55%);
}

.contact-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-card__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
}

.social-row {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--teal);
  text-decoration: none;
  background: var(--teal-light);
}

.social-link--placeholder {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.contact-map {
  min-height: min(360px, 45vh);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.contact-map__placeholder {
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.contact-map__placeholder p {
  margin: 0;
  max-width: 28ch;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.7;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 720px) and (max-width: 899px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-tagline {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.footer-desc {
  margin: 0.5rem 0 0;
  max-width: 38ch;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  width: 150px;
  height: auto;
  opacity: 0.95;
  border-radius: 8px;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #b8eae6;
  text-decoration: none;
}

.footer-links--dense .footer-static {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar-inner {
  padding-block: 1.25rem;
}

.footer-bar-inner p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
