/* IdealCalibre — Coming Soon
   No brand vault found on dev2 (searched /home/ocgdev2/{idealcalibre*,ic-*,ideal-calibre*}).
   Palette derived from the brief: precision + care — deep navy field, ivory type,
   a single restrained brass accent. Geometric headline, system-ui body,
   generous whitespace. Structure matches larana/miaminoctem/envimercado. */

:root {
  --navy:      #0E1A2B;   /* deep navy field */
  --navy-2:    #16273D;   /* panel / elevated surface */
  --ivory:     #F4F1EA;   /* primary text, ivory not pure white */
  --ivory-dim: rgba(244,241,234,0.60);
  --brass:     #C9A961;   /* restrained metallic accent */
  --brass-2:   #E0C489;   /* accent hover / highlight */
  --line:      rgba(244,241,234,0.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--ivory);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background:
    radial-gradient(ellipse at 50% -10%, rgba(201,169,97,0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 45%),
    var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  text-align: center;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}

header img {
  width: clamp(88px, 15vw, 132px);
  height: auto;
}

header h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ivory);
}

header .tagline {
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

main {
  max-width: 600px;
}

main h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 3.25rem);
  margin: 0 0 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
}

main h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--brass);
}

main p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 18px;
  color: var(--ivory-dim);
}

main a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,97,0.45);
  transition: border-color 0.2s ease, color 0.2s ease;
}

main a:hover {
  color: var(--brass-2);
  border-bottom-color: var(--brass-2);
}

footer {
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 600px;
}

footer p {
  font-size: 0.8125rem;
  color: var(--ivory-dim);
  margin: 0;
  letter-spacing: 0.08em;
}
