/* Estrela Chat — Shared Styles
   Placeholder fields are marked with EDIT comments in HTML files */

:root {
  --color-white: #FFFFFF;
  --color-accent: #C89956;
  --color-accent-light: #dbb06a;
  --color-accent-soft: rgba(200, 153, 86, 0.14);
  --color-accent-glow: rgba(200, 153, 86, 0.35);
  --color-bg: #141E2A;
  --color-bg-deep: #0c1219;
  --color-bg-elevated: #1a2636;
  --color-bg-card: rgba(26, 38, 54, 0.72);
  --color-secondary: #1B3861;
  --color-secondary-soft: rgba(27, 56, 97, 0.45);
  --color-text: #dce4ef;
  --color-text-muted: #8fa0b8;
  --color-border: rgba(200, 153, 86, 0.2);
  --color-border-subtle: rgba(255, 255, 255, 0.06);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px rgba(200, 153, 86, 0.22);

  --nav-height: 70px;
  --section-gap: clamp(72px, 10vw, 120px);
  --container: min(1080px, 90vw);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(27, 56, 97, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(200, 153, 86, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(27, 56, 97, 0.3) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-light);
}

/* ---- Background layers ---- */

.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sky__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.7) 50%, transparent 50%),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(200,153,86,0.6) 50%, transparent 50%),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.45) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 15% 70%, rgba(200,153,86,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 75%, rgba(255,255,255,0.55) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.25) 50%, transparent 50%),
    radial-gradient(1px 1px at 50% 60%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 38%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 92% 12%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 48% 28%, rgba(255,255,255,0.4) 50%, transparent 50%);
  opacity: 0.85;
}

.sky__glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 620px;
  max-height: 620px;
  top: -18%;
  right: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 56, 97, 0.5) 0%, transparent 68%);
}

.sky__glow--left {
  top: auto;
  right: auto;
  bottom: -20%;
  left: -15%;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(200, 153, 86, 0.08) 0%, transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
}

/* ---- Layout ---- */

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  line-height: 1.75;
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(12, 18, 25, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
}

.nav__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__brand:hover {
  color: var(--color-white);
}

.nav__brand-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  list-style: none;
}

.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav__toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--color-white);
}

.nav__toggle svg {
  display: block;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12, 18, 25, 0.97);
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 8px 0 16px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    display: block;
    padding: 13px 24px;
    border-bottom: 1px solid var(--color-border-subtle);
    border-bottom-color: var(--color-border-subtle);
  }
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 55%, #a67d42 100%);
  color: var(--color-bg-deep);
  box-shadow: 0 4px 24px var(--color-accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-accent-glow);
  color: var(--color-bg-deep);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  color: var(--color-accent-light);
}

/* ---- Hero ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 20px);
  padding-bottom: 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  border: 1px solid var(--color-border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-accent-light);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--color-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.hero__desc {
  color: var(--color-text-muted);
  max-width: 44ch;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__halo {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 153, 86, 0.15) 0%, rgba(27, 56, 97, 0.2) 40%, transparent 70%);
  filter: blur(2px);
}

.hero__phone-wrap {
  position: relative;
  width: min(290px, 72vw);
  z-index: 1;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    margin-bottom: 12px;
  }

  .hero__phone-wrap {
    width: min(240px, 65vw);
  }
}

/* ---- Phone frame ---- */

.phone-frame {
  background: linear-gradient(145deg, #1e2d40 0%, #141e2a 100%);
  border-radius: 32px;
  border: 1.5px solid var(--color-border);
  padding: 11px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  height: 4px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius-pill);
  z-index: 3;
}

.phone-frame__screen {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200, 153, 86, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-secondary) 0%, var(--color-bg) 55%, var(--color-bg-deep) 100%);
}

.phone-frame__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 25%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 15%, rgba(255,255,255,0.35) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 40%, rgba(200,153,86,0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 35% 60%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 75%, rgba(255,255,255,0.25) 50%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.phone-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.phone-frame--hero {
  transform: rotate(-2deg);
}

/* ---- Ribbon ---- */

.ribbon {
  border-block: 1px solid var(--color-border-subtle);
  background: rgba(12, 18, 25, 0.5);
  padding: 16px 0;
  overflow: hidden;
}

.ribbon__track {
  display: flex;
  gap: 48px;
  animation: ribbon-scroll 40s linear infinite;
  width: max-content;
}

.ribbon__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.ribbon__item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.8;
}

@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- About ---- */

.about__content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: 44px;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.about__text p:first-child {
  font-size: 1.08rem;
  color: var(--color-text);
}

.about__text p:last-of-type {
  margin-bottom: 0;
}

.about__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.keyword {
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  border: 1px solid var(--color-border);
  background: rgba(200, 153, 86, 0.06);
}

.about__aside {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about__aside-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.about__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 0.9rem;
}

.about__stat:last-child {
  border-bottom: none;
}

.about__stat-label {
  color: var(--color-text-muted);
}

.about__stat-value {
  color: var(--color-white);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 800px) {
  .about__content {
    grid-template-columns: 1fr;
  }
}

/* ---- Gallery ---- */

.gallery {
  margin-top: 44px;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 28px;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.gallery::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg), transparent);
}

.gallery__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}

.gallery__track::-webkit-scrollbar {
  height: 3px;
}

.gallery__track::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}

.gallery__item {
  flex: 0 0 min(220px, 68vw);
  scroll-snap-align: center;
}

.gallery__item .phone-frame {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover .phone-frame {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft), 0 0 40px var(--color-accent-glow);
}

.gallery__caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ---- Moods ---- */

.moods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  position: relative;
}

.moods__grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), var(--color-accent), var(--color-border), transparent);
  z-index: 0;
}

.mood-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 36px 22px 30px;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mood-card::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent-glow);
}

.mood-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.mood-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.mood-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

.mood-card__text {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .moods__grid {
    grid-template-columns: 1fr;
  }

  .moods__grid::before {
    display: none;
  }

  .mood-card::before {
    display: none;
  }
}

/* ---- Features grid ---- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-border);
  background: rgba(27, 56, 97, 0.2);
}

.feature-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(27, 56, 97, 0.25) 0%, var(--color-bg-card) 100%);
}

.feature-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-accent);
  opacity: 0.45;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---- CTA ---- */

.cta-band {
  text-align: center;
  padding: clamp(52px, 7vw, 72px) 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(27, 56, 97, 0.55) 0%, rgba(20, 30, 42, 0.8) 100%);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 70%, rgba(255,255,255,0.25) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 20%, rgba(200,153,86,0.4) 50%, transparent 50%);
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-soft) 0%, transparent 70%);
  top: -120px;
  right: -60px;
  pointer-events: none;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--color-white);
  margin-bottom: 12px;
  position: relative;
}

.cta-band__text {
  color: var(--color-text-muted);
  max-width: 46ch;
  margin: 0 auto 28px;
  position: relative;
  font-size: 1.02rem;
}

.cta-band .btn {
  position: relative;
}

/* ---- Legal pages ---- */

.page-hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--color-white);
  margin-bottom: 10px;
}

.page-hero__meta {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.legal-content {
  padding-block: 44px 72px;
  max-width: 70ch;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-white);
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.legal-content ul {
  padding-left: 1.3em;
  margin-bottom: 16px;
}

.legal-content strong {
  color: var(--color-white);
  font-weight: 600;
}

.legal-callout {
  margin: 24px 0;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: rgba(27, 56, 97, 0.35);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
}

.legal-callout p {
  margin-bottom: 0;
  color: var(--color-text);
}

/* ---- Contact ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  padding-block: 44px 72px;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 22px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.contact-item__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.contact-item__value {
  color: var(--color-white);
  font-weight: 500;
}

.contact-item__value a {
  color: var(--color-white);
}

.contact-item__value a:hover {
  color: var(--color-accent-light);
}

/* ---- Form ---- */

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--color-white);
  background: rgba(12, 18, 25, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ---- Footer ---- */

.footer {
  border-top: 1px solid var(--color-border-subtle);
  padding: 36px 0 28px;
  background: rgba(12, 18, 25, 0.4);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
}

.footer__links a {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.45;
}

.footer__dots span:nth-child(2) { opacity: 0.75; width: 5px; height: 5px; }
.footer__dots span:nth-child(3) { opacity: 0.35; }
.footer__dots span:nth-child(4) { opacity: 0.6; width: 5px; height: 5px; }
.footer__dots span:nth-child(5) { opacity: 0.25; }

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Utility ---- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
