:root {
  --steel: #17354a;
  --night: #0e2535;
  --mist: #e8ecee;
  --chalk: #f8faf9;
  --brass: #c9963a;
  --charcoal: #1b252c;
  --display: Impact, "Arial Narrow", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mist);
  color: var(--charcoal);
  font-family: var(--body);
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.draft-notice {
  background: var(--brass);
  color: #172431;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 0.65rem clamp(1rem, 4vw, 4.5rem);
  text-align: center;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 6.5rem;
  padding: 1rem clamp(1rem, 5vw, 5rem);
}

.wordmark {
  color: var(--steel);
  display: inline-flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 0.8;
  text-decoration: none;
  text-transform: uppercase;
  width: max-content;
}

.wordmark strong { color: var(--brass); font-size: 1.42rem; font-weight: 400; }

nav { display: flex; gap: clamp(0.75rem, 2vw, 2rem); }

nav a, .header-call {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover, .header-call:hover { color: var(--brass); }

.header-call { justify-self: end; }

.hero {
  background: var(--night);
  color: var(--chalk);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  min-height: min(690px, calc(100vh - 8rem));
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: clamp(3.5rem, 5vw, 5.5rem) clamp(1rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
}

.eyebrow span { color: #8da4b0; margin: 0 0.3rem; }

h1, h2, p { margin-top: 0; }

h1 {
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.4vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.84;
  margin-bottom: clamp(1.7rem, 4vw, 3rem);
  max-width: 12ch;
  text-transform: uppercase;
}

h1 em { color: var(--brass); font-style: normal; }

.hero-intro {
  color: #d0dbe0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 34rem;
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.contact-actions a {
  border: 1px solid #527184;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: min(100%, 13.5rem);
  padding: 1rem 1.15rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-actions span { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-actions strong { font-family: var(--display); font-size: 1.35rem; font-weight: 400; letter-spacing: 0.01em; }
.call-action { background: var(--brass); color: #142633; border-color: var(--brass) !important; }
.whatsapp-action { color: var(--chalk); }
.contact-actions a:hover { background: var(--chalk); color: var(--night); transform: translateY(-3px); }

.key-mark {
  align-items: center;
  border-left: 1px solid #34546a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 100%;
  padding: clamp(2rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.key-mark svg { display: block; max-width: 38rem; overflow: visible; width: 100%; }
.key-mark figcaption { color: #96aeba; font-size: 0.72rem; letter-spacing: 0.13em; margin-top: 1rem; text-transform: uppercase; }
.measure { fill: none; stroke: #547186; stroke-width: 2; }
.measure-text { fill: #8fa6b2; font: 700 13px Arial, sans-serif; letter-spacing: 3px; text-anchor: middle; }
.key-ring { fill: none; stroke: var(--chalk); stroke-width: 31; }
.key-hole { fill: var(--night); }
.key-body { fill: var(--chalk); }
.key-line { fill: none; stroke: var(--steel); stroke-width: 5; }
.key-notch { fill: none; stroke: var(--chalk); stroke-width: 28; stroke-linejoin: miter; }
.brass { fill: var(--brass); }
.brass-circle { fill: var(--brass); }

.conversation, .business-info {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: clamp(1rem, 8vw, 8rem);
  padding-right: clamp(1rem, 8vw, 8rem);
}

.conversation {
  align-items: start;
  border-bottom: 1px solid #c4cdd1;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr minmax(16rem, 0.7fr);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

h2 {
  color: var(--steel);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 0;
  max-width: 9ch;
  text-transform: uppercase;
}

.conversation > p {
  color: #3d505a;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.62;
  margin: 2.6rem 0 0;
  max-width: 31rem;
}

.business-info {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.business-info h2 { margin-bottom: 2.4rem; max-width: none; }

.info-line {
  border-top: 1px solid #aab9c0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 9rem 1fr;
  max-width: 52rem;
  padding: 1.15rem 0;
}

.info-line span { color: #5d7079; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.info-line strong, .info-line a { color: var(--steel); font-size: 1.1rem; font-weight: 700; }
.info-line a:hover { color: #8a641e; }

footer {
  align-items: center;
  background: var(--steel);
  color: var(--chalk);
  display: flex;
  font-size: 0.84rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding: 1.5rem clamp(1rem, 8vw, 8rem);
}

footer p { margin: 0; }
footer span { color: var(--brass); margin: 0 0.3rem; }
footer a { color: var(--brass); text-decoration-thickness: 1px; text-underline-offset: 0.24em; }

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 5.4rem; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-bottom: 3rem; }
  .key-mark { border-left: 0; border-top: 1px solid #34546a; min-height: 18rem; padding: 2.4rem 1.2rem 3.2rem; }
  .key-mark svg { max-width: 29rem; }
  .conversation { grid-template-columns: 1fr; gap: 0; }
  .conversation > p { margin-top: 1.7rem; }
}

@media (max-width: 420px) {
  .draft-notice { font-size: 0.7rem; line-height: 1.4; }
  h1 { font-size: clamp(3.35rem, 17vw, 4.55rem); }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .contact-actions a { min-width: 0; width: 100%; }
  .info-line { grid-template-columns: 1fr; gap: 0.45rem; }
  footer { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .contact-actions a { transition: none; }
  .contact-actions a:hover { transform: none; }
}
