/* ==========================================================================
   SecuroQ — Design tokens & components
   Palette: ink #070C17 / panel #0D1729 / card #111F37
   Accents: gold #C9A85A · azure #4A7FE0 · jade #3AAE83
   Display: Space Grotesk · Body: Inter · Data/labels: IBM Plex Mono
   Signature: the "0" in SECUR0Q rendered as an animated regulatory scope-ring
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

body {
  background-color: #070C17;
}

::selection {
  background: rgba(201, 168, 90, 0.28);
  color: #F4EFE3;
}

/* ---------------------------------------------------------------------- */
/* Scope-ring backdrop                                                     */
/* ---------------------------------------------------------------------- */

.scope-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scope-ring {
  position: absolute;
  top: 8%;
  right: -18%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 90, 0.10);
}

.scope-ring--1 { width: 62vw; height: 62vw; }
.scope-ring--2 { width: 44vw; height: 44vw; top: 17%; right: -9%; border-color: rgba(74, 127, 224, 0.09); }
.scope-ring--3 { width: 27vw; height: 27vw; top: 26%; right: 0%; border-color: rgba(58, 174, 131, 0.10); }

.scope-sweep {
  position: absolute;
  top: 8%;
  right: -18%;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(201, 168, 90, 0.14), transparent 26%);
  animation: sweep 16s linear infinite;
  mix-blend-mode: screen;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .scope-sweep { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------- */
/* Wordmark                                                                */
/* ---------------------------------------------------------------------- */

.wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #F1EEE4;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
}

.wordmark--sm { font-size: 1.15rem; }

.wordmark-zero {
  position: relative;
  display: inline-block;
  width: 0.62em;
  height: 0.62em;
  margin: 0 0.02em;
  border-radius: 50%;
  border: 2px solid #C9A85A;
  vertical-align: middle;
  transform: translateY(-0.06em);
}

.wordmark-zero-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 90, 0.35);
  animation: pulse-ring 3s ease-in-out infinite;
}

.wordmark-zero--sm { width: 0.6em; height: 0.6em; }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 0; }
}

/* ---------------------------------------------------------------------- */
/* Header / nav                                                            */
/* ---------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7, 12, 23, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 90, 0.10);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9AA5B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover { color: #F1EEE4; }

.nav-link--cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 90, 0.4);
  color: #E7C878;
}

.nav-link--cta:hover {
  background: rgba(201, 168, 90, 0.1);
  color: #E7C878;
}

.nav-toggle {
  background: transparent;
  border: 1px solid rgba(201, 168, 90, 0.25);
  color: #E7C878;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links.is-open {
  display: flex;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: #0A1425;
  border-bottom: 1px solid rgba(201, 168, 90, 0.14);
  padding: 0.5rem 1.5rem 1.5rem;
}

.nav-links.is-open .nav-link {
  width: 100%;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links.is-open .nav-link--cta {
  margin-top: 1rem;
  justify-content: center;
  border-bottom: 1px solid rgba(201, 168, 90, 0.4);
}

/* ---------------------------------------------------------------------- */
/* Type & section scaffolding                                              */
/* ---------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A85A;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A85A;
  box-shadow: 0 0 0 3px rgba(201, 168, 90, 0.18);
}

.eyebrow--plain { color: #8B96AC; }
.eyebrow--plain::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #C9A85A;
  margin-right: 0.3rem;
}

.hero-section { position: relative; }

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  filter: saturate(0.7) contrast(1.05);
}

.hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,12,23,0.55) 0%, rgba(7,12,23,0.88) 55%, #070C17 100%),
    linear-gradient(100deg, #070C17 10%, rgba(7,12,23,0.35) 55%);
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #F4F2EA;
}

.text-gold-grad {
  background: linear-gradient(100deg, #E7C878, #C9A85A 55%, #8F7735);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plain-strip {
  position: relative;
  z-index: 10;
  padding: 2.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(201, 168, 90, 0.04);
}

.plain-strip-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 56rem;
}

.plain-strip-icon {
  color: #C9A85A;
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.plain-strip p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #9AA5B8;
}

.plain-strip strong {
  color: #E7C878;
  font-weight: 600;
}

.section { position: relative; z-index: 10; padding: 6.5rem 0; }
.section--panel {
  background: linear-gradient(180deg, rgba(13,23,41,0.6), rgba(13,23,41,0) 100%), #0A1424;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-head { max-width: 46rem; }

.section-h2 {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  color: #F1EEE4;
}

.section-sub {
  margin-top: 1rem;
  color: #8B96AC;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40rem;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  border-radius: 10px;
  background: linear-gradient(100deg, #E7C878, #C9A85A);
  color: #10192B;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 12px 30px -12px rgba(201, 168, 90, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(201, 168, 90, 0.6); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #D7DCE6;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(201, 168, 90, 0.45);
  color: #E7C878;
  background: rgba(201, 168, 90, 0.06);
}

/* ---------------------------------------------------------------------- */
/* Hero stat strip                                                          */
/* ---------------------------------------------------------------------- */

.stat-strip {
  border: 1px solid rgba(201, 168, 90, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.stat-cell {
  padding: 1.6rem 1.8rem;
  background: rgba(13, 23, 41, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5B667E;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #E9E6DB;
}

/* ---------------------------------------------------------------------- */
/* Operating Principle cards                                               */
/* ---------------------------------------------------------------------- */

.principle-card {
  position: relative;
  padding: 2rem 1.9rem 2.2rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #111F37, #0D1729);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #4A7FE0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.principle-card--gold { border-left-color: #C9A85A; }
.principle-card--jade { border-left-color: #3AAE83; }

.principle-card:hover { transform: translateY(-4px); }

.principle-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: #5B667E;
  letter-spacing: 0.08em;
}

.principle-title {
  margin-top: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: #F1EEE4;
}

.principle-list {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.principle-list li {
  font-size: 0.92rem;
  color: #9AA5B8;
  padding-left: 1.1rem;
  position: relative;
}

.principle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  color: #5B667E;
}

/* rule chain */

.rule-chain {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.rule-chain-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A85A;
}

.rule-chain-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
}

.rule-chain-track span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #C3CADA;
  white-space: nowrap;
}

.rule-chain-track i {
  color: #5B667E;
  font-size: 0.65rem;
}

.rule-chain-end {
  border-color: rgba(201, 168, 90, 0.5) !important;
  color: #E7C878 !important;
  background: rgba(201, 168, 90, 0.08);
}

/* ---------------------------------------------------------------------- */
/* Offer section layout                                                    */
/* ---------------------------------------------------------------------- */

.offer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .offer-layout { grid-template-columns: 0.85fr 1.4fr; align-items: start; }
}

.offer-copy { max-width: 26rem; }

.offer-figure {
  margin-top: 2.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
}

.offer-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.offer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .offer-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .offer-cards { grid-template-columns: 1fr; }
}

@media (min-width: 1280px) {
  .offer-cards { grid-template-columns: repeat(3, 1fr); }
}

.offer-plain {
  margin-top: 0.5rem;
  font-size: 0.83rem;
  color: #5B667E;
  line-height: 1.5;
}

.glossary-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 90, 0.5);
  color: #C9A85A;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  margin-left: 0.3rem;
  cursor: help;
  vertical-align: middle;
}

/* ---------------------------------------------------------------------- */
/* Offer cards                                                             */
/* ---------------------------------------------------------------------- */

.offer-card {
  padding: 2.1rem 2rem 2.3rem;
  border-radius: 18px;
  background: #0F1B31;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 90, 0.3);
}

.offer-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 90, 0.1);
  color: #E7C878;
  font-size: 1.05rem;
}

.offer-title {
  margin-top: 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #F1EEE4;
}

.offer-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.offer-list li {
  font-size: 0.9rem;
  color: #9AA5B8;
  padding-left: 1.1rem;
  position: relative;
}

.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3E4B63;
}

.positioning-line {
  margin: 3.4rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #E9E6DB;
  line-height: 1.5;
}

.positioning-line--muted { color: #8B96AC; font-size: 1.05rem; font-family: 'Inter', sans-serif; }

/* ---------------------------------------------------------------------- */
/* Market cards                                                            */
/* ---------------------------------------------------------------------- */

.market-card {
  border-radius: 18px;
  background: linear-gradient(165deg, #111F37, #0D1729);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.market-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

.market-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.85);
  transition: transform 0.5s ease;
}

.market-card:hover .market-img img {
  transform: scale(1.06);
}

.market-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,12,23,0) 40%, rgba(13,23,41,0.9) 100%);
}

.market-body { padding: 1.6rem 2rem 2.2rem; }

.market-flagline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
}

.market-flagline--azure { background: #4A7FE0; }
.market-flagline--gold { background: #C9A85A; }
.market-flagline--jade { background: #3AAE83; }

.market-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #F1EEE4;
}

.market-target {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: #5B667E;
  font-family: 'IBM Plex Mono', monospace;
}

.market-block {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.market-block-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A85A;
  margin-bottom: 0.4rem;
}

.market-block p {
  font-size: 0.92rem;
  color: #9AA5B8;
  line-height: 1.55;
}

.footnote-line {
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #5B667E;
  max-width: 40rem;
}

.footnote-line i { margin-top: 0.2rem; color: #C9A85A; }

/* ---------------------------------------------------------------------- */
/* Journey track                                                           */
/* ---------------------------------------------------------------------- */

.journey-track {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .journey-track { grid-template-columns: repeat(4, 1fr); }
  .journey-track::before {
    content: '';
    position: absolute;
    top: 1.55rem;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,90,0.05), rgba(201,168,90,0.35), rgba(201,168,90,0.05));
  }
}

.journey-step { position: relative; }

.journey-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #0D1729;
  border: 1px solid rgba(201, 168, 90, 0.4);
  color: #E7C878;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  position: relative;
  z-index: 2;
}

.journey-title {
  margin-top: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F1EEE4;
}

.journey-list {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.journey-list li {
  font-size: 0.87rem;
  color: #8B96AC;
}

/* ---------------------------------------------------------------------- */
/* Leadership cards                                                        */
/* ---------------------------------------------------------------------- */

.lead-card {
  padding: 2.1rem;
  border-radius: 18px;
  background: #0F1B31;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.lead-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 90, 0.28);
}

.lead-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lead-photo {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #16294A;
  position: relative;
}

.lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.lead-photo--gold { border-color: rgba(201, 168, 90, 0.45); }
.lead-photo--azure { border-color: rgba(74, 127, 224, 0.45); }
.lead-photo--jade { border-color: rgba(58, 174, 131, 0.45); }

.lead-photo.is-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.lead-photo--gold.is-fallback { background: rgba(201, 168, 90, 0.14); color: #E7C878; }
.lead-photo--azure.is-fallback { background: rgba(74, 127, 224, 0.14); color: #86A6EE; }
.lead-photo--jade.is-fallback { background: rgba(58, 174, 131, 0.14); color: #6FCBA4; }

.lead-photo.is-fallback img { display: none; }

.lead-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #F1EEE4;
}

.lead-role {
  font-size: 0.82rem;
  color: #8B96AC;
  margin-top: 0.15rem;
}

.lead-mandate {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9AA5B8;
}

.lead-tags {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lead-tags span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #7C86A0;
}

/* ---------------------------------------------------------------------- */
/* CTA panel                                                               */
/* ---------------------------------------------------------------------- */

.section--cta {
  position: relative;
  padding-bottom: 8rem;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.6);
  z-index: 0;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #0A1424 0%, #070C17 100%);
  opacity: 0.92;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1.35fr 1fr; }
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  z-index: 10;
}

.cta-info-row {
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-info-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A85A;
}

.cta-info-value {
  font-size: 0.94rem;
  color: #D7DCE6;
}

.cta-info-link { text-decoration: none; }
.cta-info-link:hover { color: #E7C878; }

/* ---------------------------------------------------------------------- */
/* Contact form                                                            */
/* ---------------------------------------------------------------------- */

.contact-form {
  padding: 2.2rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #111F37, #0D1729);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .contact-form { padding: 2.6rem; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B96AC;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #EDEFF5;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #4A5670; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201, 168, 90, 0.55);
  background: rgba(201, 168, 90, 0.04);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B96AC' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.form-field textarea { resize: vertical; min-height: 6.5rem; }

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: 0.4rem;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  min-height: 1.2rem;
}

.form-status.is-success { color: #6FCBA4; }
.form-status.is-error { color: #E19A6B; }

/* ---------------------------------------------------------------------- */
/* Generic image fallback (used if a hotlinked photo fails to load)        */
/* ---------------------------------------------------------------------- */

.img-broken { opacity: 0 !important; }

.fallback-bg { background: linear-gradient(135deg, #16294A, #0D1729); }
.fallback-bg--azure { background: linear-gradient(135deg, #1B2E4E, #0D1729); }
.fallback-bg--gold { background: linear-gradient(135deg, #2A2417, #0D1729); }
.fallback-bg--jade { background: linear-gradient(135deg, #14291F, #0D1729); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */

.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #060A13;
}

.footer-tag {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #5B667E;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: #8B96AC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #E7C878; }

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #3E4B63;
}

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll                                                         */
/* ---------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
