:root {
  --paper: #f4f0e8;
  --paper-light: #fbfaf6;
  --sand: #e6ded2;
  --navy: #0c2940;
  --navy-2: #153d59;
  --rust: #b75133;
  --rust-dark: #8f3f29;
  --sage: #6e8a80;
  --ink: #101820;
  --soft: #4f565c;
  --line: rgba(12, 41, 64, 0.2);
  --shadow: 0 24px 70px rgba(12, 41, 64, 0.12);
  --wrap: min(1100px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 90% 0%, rgba(183, 81, 51, 0.1), transparent 28rem), var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 3px solid rgba(183, 81, 51, 0.48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.9);
}

.header-inner {
  display: flex;
  width: var(--wrap);
  min-height: 76px;
  margin-inline: auto;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark { width: 2.15rem; height: 2.15rem; }

.contact-main {
  display: grid;
  min-height: calc(100vh - 190px);
  padding: clamp(48px, 8vw, 100px) 0;
  place-items: center;
}

.contact-card {
  display: grid;
  width: min(980px, calc(100vw - 48px));
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.contact-copy { padding: clamp(40px, 7vw, 82px); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0 0 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.instruction {
  max-width: 36rem;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
  align-items: center;
}

.primary-action {
  display: inline-flex;
  padding: 14px 20px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  align-items: center;
  gap: 18px;
  color: var(--paper-light);
  background: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-action:hover { background: var(--navy-2); transform: translateY(-2px); }
.primary-action span { color: #f5c8b8; font-size: 1.1rem; }

.text-link {
  color: var(--rust-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

.privacy-note {
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
}

.contact-mark {
  position: relative;
  display: grid;
  min-height: 440px;
  padding: 42px;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--navy);
  align-content: end;
}

.contact-mark::before,
.contact-mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(230, 222, 210, 0.25);
  border-radius: 50%;
}

.contact-mark::before { width: 330px; height: 330px; top: -90px; right: -130px; }
.contact-mark::after { width: 230px; height: 230px; right: 45px; bottom: -135px; border-color: rgba(183, 81, 51, 0.55); }
.contact-mark img { position: relative; z-index: 1; width: 105px; }
.contact-mark span { position: relative; z-index: 1; margin-top: 18px; font-size: 0.74rem; font-weight: 850; letter-spacing: 0.28em; }

.site-footer {
  display: flex;
  width: var(--wrap);
  margin-inline: auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft);
  font-size: 0.78rem;
}

.site-footer p { margin: 0; }
.footer-brand { display: flex; align-items: center; gap: 9px; color: var(--navy); letter-spacing: 0.14em; }
.footer-brand img { width: 2rem; height: 2rem; }

.holding-main {
  display: grid;
  min-height: 100vh;
  width: min(760px, calc(100vw - 48px));
  margin-inline: auto;
  align-content: center;
}

.holding-main h1 { max-width: 12ch; }
.holding-main > p:last-child { max-width: 40rem; color: var(--soft); font-size: 1.15rem; }
.holding-mark { width: 70px; margin-bottom: 32px; }

@media (max-width: 760px) {
  :root { --wrap: calc(100vw - 32px); }
  body { font-size: 16px; }
  .header-inner { min-height: 64px; }
  .contact-card { width: calc(100vw - 32px); grid-template-columns: 1fr; }
  .contact-copy { padding: 42px 30px 46px; }
  .contact-mark { min-height: 180px; padding: 30px; }
  .contact-mark img { width: 72px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
