/* ─── Spicora — Logo palette: gunmetal, chrome, gold flare, electric blue ─── */

:root {
  /* Gunmetal / brushed metal (from logo background) */
  --bg-deep: #2b2e33;
  --bg: #353940;
  --bg-mid: #3f434b;
  --bg-light: #4a4f58;
  --bg-surface: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);

  /* Chrome / silver (logo letterforms) */
  --chrome: #e4e7ec;
  --silver: #b8bec8;
  --silver-dim: #8a919c;

  /* Logo accents */
  --gold: #e8b020;
  --gold-bright: #f5cc4a;
  --gold-dim: rgba(232, 176, 32, 0.18);
  --gold-glow: rgba(232, 176, 32, 0.25);
  --blue: #3d9eff;
  --blue-bright: #5eb3ff;
  --blue-dim: rgba(61, 158, 255, 0.15);
  --blue-glow: rgba(61, 158, 255, 0.2);

  --text: var(--chrome);
  --text-muted: var(--silver);
  --text-subtle: var(--silver-dim);
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--bg-deep);
  background-image:
    /* Brushed metal grain — horizontal, like the logo */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 3px
    ),
    radial-gradient(ellipse 90% 60% at 50% 0%, var(--bg-light) 0%, var(--bg) 45%, var(--bg-deep) 100%);
  background-attachment: fixed;
}

::selection {
  background: var(--gold-dim);
  color: var(--chrome);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg-deep);
  font-size: 0.875rem;
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Typography ─── */

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--chrome);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-title em {
  font-style: italic;
  color: var(--silver);
}

.section-lead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.75;
  margin-top: 1.25rem;
}

.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-left: auto; margin-right: auto; }

/* Logo tagline dots */
.tagline-dots {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-top: 0.35rem;
}
.tagline-dots .dot-gold { color: var(--gold-bright); }
.tagline-dots .dot-blue { color: var(--blue-bright); }

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, #ffe082 100%);
  box-shadow: 0 6px 32px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.6875rem; }
.btn-full { width: 100%; }

/* ─── Header ─── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s;
}

.site-header.scrolled {
  background: rgba(53, 57, 64, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo-full {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 0 20px var(--blue-dim);
}

.brand-text { display: flex; flex-direction: column; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--silver);
  transition: color 0.3s;
}
.nav a:hover { color: var(--chrome); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--chrome);
  transition: transform 0.3s, opacity 0.3s;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

@media (max-width: 767px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(53, 57, 64, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}

/* ─── Sections ─── */

.section {
  position: relative;
  padding: 3rem 0 5rem;
  scroll-margin-top: var(--header-h);
}

.section-title--inline {
  max-width: none;
  white-space: nowrap;
}

.section-lead--inline {
  max-width: none;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-title--inline,
  .section-lead--inline {
    white-space: normal;
  }
}

/* ─── Hero ─── */

.scroll-hint {
  display: none !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Spotlight — like logo radial lighting */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(255,255,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 75% 60%, var(--blue-dim) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 20% 70%, var(--gold-dim) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 15%, transparent 65%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-glow--gold {
  width: 420px; height: 420px;
  bottom: 15%; left: 5%;
  background: var(--gold-glow);
}
.hero-glow--blue {
  width: 360px; height: 360px;
  top: 12%; right: 8%;
  background: var(--blue-glow);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo-wrap {
  display: none;
}

@media (min-width: 900px) {
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: center;
  }
  .hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-logo {
    width: min(320px, 80vw);
    height: auto;
    border-radius: 12px;
    box-shadow:
      0 24px 80px rgba(0, 0, 0, 0.35),
      0 0 40px var(--gold-dim);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 2rem;
  color: var(--chrome);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-title em {
  font-style: italic;
  color: var(--silver);
}

.hero-lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ─── Capabilities — logo plate style (light metal + dark emboss) ─── */

.capabilities {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 60%),
    var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 1.5rem;
}

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

/* Dark embossed metal — same as SPICORA on logo */
.metal-emboss-title {
  font-family: 'Montserrat', var(--font-body), sans-serif;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 28rem;
  margin-top: 0;
  background: linear-gradient(
    180deg,
    #4a5058 0%,
    #2e3239 35%,
    #1a1d22 50%,
    #353a42 68%,
    #4e545c 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5))
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3))
    drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.capability-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Smooth brushed metal — matches logo plate (no scanlines) */
.capability-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 90% 75% at 50% 38%, #c8ccd3 0%, #b0b6be 45%, #9ea4ac 100%);
}

.capability-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* Concentric circular grain — like logo */
  background: repeating-radial-gradient(
    circle at 50% 38%,
    transparent 0px,
    transparent 22px,
    rgba(0, 0, 0, 0.018) 22px,
    rgba(0, 0, 0, 0.018) 23px
  );
  pointer-events: none;
}

.capability-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* Soft horizontal brush + center spotlight */
  background:
    radial-gradient(ellipse 70% 55% at 50% 32%, rgba(255, 255, 255, 0.55) 0%, transparent 58%),
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 3px,
      rgba(255, 255, 255, 0.06) 3px,
      rgba(255, 255, 255, 0.06) 4px
    );
  pointer-events: none;
}

.capability-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.capability-glow--gold {
  bottom: 10%;
  left: 8%;
  background: #f0c040;
}

.capability-glow--blue {
  top: 8%;
  right: 8%;
  background: #3d9eff;
}

.capability-card > *:not(.capability-card-bg):not(.capability-glow) {
  position: relative;
  z-index: 1;
}

.capability-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.capability-card--gold:hover .capability-glow--gold { opacity: 0.55; transform: scale(1.2); }
.capability-card--blue:hover .capability-glow--blue { opacity: 0.55; transform: scale(1.2); }

.capability-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #454b55;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.capability-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.capability-tags li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #525860;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .capabilities-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; padding: 1.75rem 1.25rem; }
}

/* ─── Approach ─── */

.approach {
  background: transparent;
  padding-top: 1.5rem;
}

.approach-steps {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.approach-step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.approach-step:first-child { padding-top: 0; }
.approach-step:last-child { border-bottom: none; padding-bottom: 0; }

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-glass);
  box-shadow: 0 0 20px var(--gold-dim);
}

.approach-step:nth-child(even) .step-marker {
  box-shadow: 0 0 20px var(--blue-dim);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-bright);
}

.approach-step:nth-child(even) .step-num {
  color: var(--blue-bright);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--chrome);
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Contact ─── */

.contact {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 80%, var(--blue-dim) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, var(--gold-dim) 0%, transparent 50%);
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-intro-text {
  flex: 1;
  min-width: 280px;
}

.contact-intro-text .section-title {
  margin-bottom: 0.5rem;
}

.contact-intro-text .section-lead {
  margin-top: 0.75rem;
  max-width: 36rem;
}

.contact-direct {
  text-align: right;
  flex-shrink: 0;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--chrome);
  transition: color 0.3s;
}
.contact-email:hover { color: var(--gold-bright); }

.contact-note {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.contact-form-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2rem 2.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Metal plate — matches capability cards */
.contact-form-plate {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 75% at 50% 30%, #c8ccd3 0%, #b0b6be 45%, #9ea4ac 100%);
}

.contact-form-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-radial-gradient(
    circle at 50% 30%,
    transparent 0px,
    transparent 22px,
    rgba(0, 0, 0, 0.018) 22px,
    rgba(0, 0, 0, 0.018) 23px
  );
}

.contact-form-plate::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 55% at 50% 22%, rgba(255, 255, 255, 0.55) 0%, transparent 58%),
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 3px,
      rgba(255, 255, 255, 0.06) 3px,
      rgba(255, 255, 255, 0.06) 4px
    );
}

.contact-form-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: -30px;
  right: -20px;
  border-radius: 50%;
  background: #f0c040;
  filter: blur(55px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.contact-form-wrap > *:not(.contact-form-plate):not(.contact-form-glow) {
  position: relative;
  z-index: 1;
}

.contact-form-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0;
}

.contact-form-heading {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem) !important;
  max-width: none;
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form--wide .form-row--triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.contact-form--wide .form-row--mandate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: stretch;
}

.form-group--grow {
  flex: 1;
}

.form-group--grow textarea {
  min-height: 52px;
  height: 100%;
}

.form-submit-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  min-width: 200px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a5058;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #2a2e35;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: vertical;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a919a;
  font-weight: 300;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.required-mark {
  color: var(--gold, #e8b020);
}

.optional-mark {
  color: #8a919a;
  font-size: 0.8125rem;
  font-weight: 400;
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #8a919a;
}

.form-group--recaptcha {
  margin-bottom: 1rem;
}

.form-group--recaptcha .g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 420px) {
  .form-group--recaptcha .g-recaptcha {
    transform: scale(0.9);
  }
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(232, 176, 32, 0.55);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.04),
    0 0 0 3px rgba(232, 176, 32, 0.12);
}

.form-footer {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.125rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #1a1d22;
  background: linear-gradient(180deg, #f5d060 0%, #e8b020 45%, #c99410 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 4px 16px rgba(232, 176, 32, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-luxury:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 6px 24px rgba(232, 176, 32, 0.45),
    0 3px 6px rgba(0, 0, 0, 0.18);
}

.form-disclaimer {
  margin-top: 0;
  font-size: 0.5625rem;
  letter-spacing: 0.06em;
  color: #6b7280;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.flash {
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  text-align: center;
}
.flash--success {
  color: #2d6a3a;
  border: 1px solid rgba(45, 106, 58, 0.2);
  background: rgba(255, 255, 255, 0.5);
}
.flash--error {
  color: #8b3030;
  border: 1px solid rgba(139, 48, 48, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .contact-intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-direct { text-align: left; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .contact-form--wide .form-row--triple,
  .contact-form--wide .form-row--mandate {
    grid-template-columns: 1fr;
  }
  .form-submit-col { min-width: 0; }
  .contact-form-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ─── Footer ─── */

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.footer-meta a {
  transition: color 0.3s;
}
.footer-meta a:hover { color: var(--gold-bright); }

.footer-divider { opacity: 0.3; }

/* ─── Reveal animations ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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