/* Latitude House — Erik Bakker
   Palette: charcoal / limestone / glacier / brass / night water */
:root {
  --charcoal: #22292b;
  --charcoal-soft: #455052;
  --limestone: #f3f1e9;
  --paper: #fffdf8;
  --glacier: #d9e6e3;
  --water: #31565b;
  --brass: #bb9560;
  --brass-pale: #eadbc3;
  --shale: #e4e1d7;
  --rule: rgba(34,41,43,.13);
  --shadow: 0 26px 72px rgba(28,36,37,.075);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --max: 1270px;
  --radius-xl: 42px;
  --radius-lg: 27px;
  --radius-md: 17px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--limestone);
  color: var(--charcoal);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 3% 12%, rgba(217,230,227,.7), transparent 30%),
    radial-gradient(circle at 95% 18%, rgba(234,219,195,.35), transparent 31%),
    radial-gradient(circle at 62% 98%, rgba(49,86,91,.055), transparent 29%);
}
a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brass); }
p { line-height: 1.68; }
.masthead {
  max-width: var(--max);
  margin: 0 auto;
  padding: 29px 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.logo { display: inline-flex; gap: 17px; align-items: center; }
.logo-rule {
  width: 5px;
  height: 48px;
  border-radius: 99px;
  background: var(--water);
}
.logo-text { display: grid; gap: 5px; }
.logo strong {
  font: 400 29px/1 var(--serif);
  letter-spacing: -.06em;
}
.logo small {
  color: var(--charcoal-soft);
  font-size: 10px;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--charcoal-soft);
  font-size: 13px;
}
.navigation .is-current {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brass);
  color: var(--charcoal);
}
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 38px;
}
.eyebrow {
  margin: 0;
  color: var(--water);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow.light { color: #c1d4d2; }
.hero {
  min-height: 667px;
  padding: 71px 0 83px;
  display: grid;
  grid-template-columns: 137px minmax(490px, 1fr) 342px;
  gap: 48px;
  align-items: stretch;
}
.dayline {
  position: relative;
  padding-left: 22px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dayline-head {
  color: var(--water);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
}
.hour {
  position: relative;
  color: var(--charcoal-soft);
  display: grid;
  gap: 5px;
}
.hour::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--brass);
}
.hour span {
  font: 400 31px/1 var(--serif);
}
.hour p {
  margin: 0;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hour.selected { color: var(--water); }
.hero-content {
  padding-top: 79px;
}
.hero h1 {
  margin: 17px 0 29px;
  font: 400 clamp(59px, 6.3vw, 82px)/.99 var(--serif);
  letter-spacing: -.073em;
}
.hero h1 em {
  color: var(--water);
  font-style: italic;
}
.lead {
  max-width: 564px;
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 17px;
  line-height: 1.78;
}
.hero-links {
  margin-top: 43px;
  display: flex;
  align-items: center;
  gap: 29px;
}
.primary {
  min-height: 54px;
  padding: 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease, transform .18s ease;
}
.primary:hover {
  color: var(--paper);
  background: var(--water);
  transform: translateY(-1px);
}
.line-link {
  color: var(--charcoal-soft);
  font-size: 14px;
}
.line-link span {
  margin-left: 10px;
  color: var(--brass);
}
.feature {
  padding: 29px 28px 28px;
  min-height: 500px;
  border-radius: var(--radius-xl);
  background: var(--water);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.feature-label {
  display: flex;
  justify-content: space-between;
  gap: 17px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  color: #c1d4d2;
}
.feature h2 {
  margin: auto 0 18px;
  font: 400 52px/1.02 var(--serif);
  letter-spacing: -.065em;
}
.feature > p {
  margin: 0 0 42px;
  color: #d2dfdd;
  font-size: 14px;
}
.feature-data {
  padding-top: 20px;
  border-top: 1px solid rgba(255,253,248,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d2dfdd;
}
.feature-data strong {
  color: var(--paper);
  font: 400 31px var(--serif);
  letter-spacing: 0;
}
.axis {
  margin-bottom: 97px;
  min-height: 94px;
  padding: 0 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--paper);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.axis div {
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--rule);
}
.axis div:last-child { border-right: 0; }
.axis strong {
  color: var(--brass);
  font: 400 30px var(--serif);
}
.axis p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.library { padding-bottom: 103px; }
.library-head {
  display: grid;
  grid-template-columns: .72fr .95fr 1fr;
  gap: 48px;
  margin-bottom: 49px;
  align-items: start;
}
.library-head h2, .sequence h2, .letter-panel h2 {
  margin: 0;
  font: 400 clamp(43px,4.7vw,59px)/1.08 var(--serif);
  letter-spacing: -.065em;
}
.library-head > p:last-child {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 15px;
}
.cabinet {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr 1.12fr;
  gap: 17px;
  align-items: stretch;
}
.card {
  min-height: 392px;
  padding: 25px 24px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.card-a { background: var(--glacier); }
.card-b { background: var(--brass-pale); }
.card-c { color: var(--paper); background: var(--water); }
.card-d { background: var(--paper); border: 1px solid var(--rule); }
.card-num {
  margin-bottom: 38px;
  color: var(--brass);
  font: 400 31px var(--serif);
}
.card-c .card-num { color: #d9c598; }
.category {
  margin: 0 0 12px;
  color: var(--water);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.card-c .category { color: #c1d4d2; }
.card h3 {
  margin: 0 0 14px;
  font: 400 33px/1.12 var(--serif);
  letter-spacing: -.052em;
}
.description {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 13px;
}
.card-c .description { color: #d2dfdd; }
.card footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(34,41,43,.14);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 13px;
}
.card-c footer { border-color: rgba(255,253,248,.21); }
.card footer strong {
  font: 400 29px var(--serif);
}
.card footer a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--brass);
  font-size: 12px;
}
.sequence {
  padding: 77px 0 81px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 364px 1fr;
  gap: 90px;
}
.sequence-header h2 {
  margin-top: 17px;
}
.sequence-steps {
  display: grid;
  gap: 14px;
}
.sequence-steps article {
  min-height: 107px;
  padding: 24px 27px;
  background: rgba(255,253,248,.68);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 130px 1fr 1.12fr;
  gap: 22px;
  align-items: center;
}
.sequence-steps span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.sequence-steps h3 {
  margin: 0;
  font: 400 25px/1.16 var(--serif);
  letter-spacing: -.045em;
}
.sequence-steps p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 13px;
}
.correspondence {
  margin-bottom: 38px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: .88fr 1.08fr;
  box-shadow: var(--shadow);
}
.letter-panel {
  padding: 59px 53px;
  color: var(--paper);
  background: var(--charcoal);
}
.letter-panel h2 {
  margin-top: 17px;
}
.letter-panel > p:not(.eyebrow) {
  max-width: 380px;
  margin: 24px 0 47px;
  color: #ccd3d1;
  font-size: 15px;
}
.letter-panel address {
  color: #ccd3d1;
  font-size: 14px;
  line-height: 1.9;
  font-style: normal;
}
.letter-panel address strong { color: var(--paper); }
.inquiry-form {
  padding: 53px;
  background: var(--paper);
  display: grid;
  gap: 18px;
}
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.inquiry-form label:not(.consent) {
  display: grid;
  gap: 9px;
  color: var(--charcoal-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  padding: 16px 17px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--limestone);
  color: var(--charcoal);
  font: 400 14px var(--sans);
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  outline: 2px solid rgba(49,86,91,.18);
  border-color: var(--water);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--charcoal-soft);
  font-size: 12px;
  line-height: 1.55;
}
.consent input {
  margin-top: 4px;
  accent-color: var(--water);
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inquiry-form button {
  min-height: 55px;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--paper);
  font: 500 14px var(--sans);
  cursor: pointer;
  transition: background .18s ease;
}
.inquiry-form button:hover { background: var(--water); }
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 65px 38px 34px;
  color: var(--charcoal-soft);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 41px;
}
.footer-intro strong {
  color: var(--charcoal);
  font: 400 28px var(--serif);
  letter-spacing: -.055em;
}
.footer-intro p {
  margin: 13px 0 0;
  font-size: 13px;
}
.footer-address {
  font-size: 13px;
  line-height: 1.82;
  font-style: normal;
}
.footer-nav {
  display: grid;
  gap: 11px;
  font-size: 13px;
}
.footer-nav a[aria-current="page"] { color: var(--brass); }
.disclaimer {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
}
.copyright {
  grid-column: 1 / -1;
  margin: -22px 0 0;
  color: #6d7978;
  font-size: 12px;
}
/* Privacy page */
.policy-page, .terms-page {
  padding-top: 82px;
  padding-bottom: 47px;
}
.policy-title {
  max-width: 755px;
  margin-bottom: 56px;
}
.policy-title h1 {
  margin: 17px 0 19px;
  font: 400 clamp(59px,6.4vw,80px)/1 var(--serif);
  letter-spacing: -.075em;
}
.policy-title > p:last-child {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 18px;
}
.policy-columns {
  display: grid;
  grid-template-columns: 314px minmax(500px,742px);
  justify-content: space-between;
  gap: 66px;
}
.owner {
  align-self: start;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--glacier);
}
.owner h2 {
  margin: 16px 0 13px;
  font: 400 32px var(--serif);
  letter-spacing: -.05em;
}
.owner address {
  color: var(--charcoal-soft);
  font-size: 14px;
  line-height: 1.82;
  font-style: normal;
}
.effective {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--water);
  font-size: 12px;
}
.policy-copy {
  padding: 47px 51px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.policy-copy section {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 22px;
  margin-bottom: 31px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--rule);
}
.policy-copy section > span {
  color: var(--brass);
  font: 400 24px var(--serif);
}
.policy-copy h2, .terms-track h2 {
  margin: 0 0 13px;
  font: 400 29px/1.18 var(--serif);
  letter-spacing: -.047em;
}
.policy-copy p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 15px;
}
.policy-copy p a {
  color: var(--water);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Terms page */
.compact-title { margin-bottom: 52px; }
.terms-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.terms-track article {
  min-height: 335px;
  padding: 29px 25px;
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.terms-track article:nth-child(2) { background: var(--brass-pale); }
.terms-track article:nth-child(3) { background: var(--glacier); }
.terms-track article:nth-child(4) {
  color: var(--paper);
  background: var(--water);
}
.terms-track article > span {
  display: block;
  margin-bottom: 60px;
  color: var(--brass);
  font: 400 27px var(--serif);
}
.terms-track article:nth-child(4) > span { color: #d9c598; }
.terms-track p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 13px;
}
.terms-track article:nth-child(4) p { color: #d2dfdd; }
.terms-contact {
  margin-top: 18px;
  padding: 33px 35px;
  border-radius: var(--radius-lg);
  background: var(--shale);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.terms-contact p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--charcoal-soft);
  font-size: 14px;
}
/* Thank you */
.thanks-page {
  min-height: 720px;
  padding: 70px 38px 48px;
  display: grid;
  place-items: center;
}
.receipt {
  width: min(100%, 852px);
  padding: 40px 66px 52px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.receipt-code {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  color: var(--water);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .23em;
}
.confirm-mark {
  width: 63px;
  height: 63px;
  margin: 42px 0 27px;
  border-radius: 50%;
  background: var(--glacier);
  display: grid;
  place-items: center;
}
.confirm-mark span {
  width: 25px;
  height: 13px;
  border-left: 2px solid var(--water);
  border-bottom: 2px solid var(--water);
  transform: rotate(-45deg) translateY(-3px);
}
.receipt h1 {
  margin: 16px 0 21px;
  font: 400 clamp(50px,5.6vw,68px)/1.03 var(--serif);
  letter-spacing: -.073em;
}
.thanks-lead {
  max-width: 648px;
  margin: 0 0 39px;
  color: var(--charcoal-soft);
  font-size: 17px;
}
.receipt-grid {
  padding: 25px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.receipt-grid small {
  display: block;
  margin-bottom: 9px;
  color: var(--water);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.receipt-grid strong {
  font-size: 14px;
  font-weight: 500;
}
.receipt-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 29px;
}
.receipt address {
  margin-top: 42px;
  color: var(--charcoal-soft);
  font-size: 13px;
  line-height: 1.82;
  font-style: normal;
}
@media (max-width: 1070px) {
  .hero {
    grid-template-columns: 105px 1fr;
    gap: 38px;
  }
  .feature {
    grid-column: 2;
    max-width: 410px;
  }
  .axis {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }
  .axis div:nth-child(2) { border-right: 0; }
  .library-head, .sequence, .correspondence, .policy-columns {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cabinet, .terms-track { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-nav {
    grid-column: 1 / -1;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .copyright { margin: 0; }
}
@media (max-width: 730px) {
  .masthead {
    display: block;
    padding: 23px 20px 0;
  }
  .navigation {
    margin-top: 24px;
    gap: 21px;
    overflow-x: auto;
    white-space: nowrap;
  }
  main { padding: 0 20px; }
  .hero {
    min-height: 0;
    padding: 51px 0 55px;
    display: block;
  }
  .dayline { display: none; }
  .hero-content { padding-top: 0; }
  .hero h1 { font-size: clamp(47px,14vw,62px); }
  .lead { font-size: 16px; }
  .hero-links {
    flex-direction: column;
    align-items: stretch;
  }
  .feature {
    min-height: 424px;
    margin-top: 43px;
    padding: 25px;
    border-radius: 30px;
  }
  .axis {
    display: block;
    margin-bottom: 65px;
    padding: 17px 22px;
    border-radius: 25px;
  }
  .axis div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .axis div:last-child { border-bottom: 0; }
  .library { padding-bottom: 67px; }
  .library-head { gap: 20px; margin-bottom: 39px; }
  .cabinet { grid-template-columns: 1fr; }
  .card { min-height: 316px; }
  .sequence { padding: 56px 0; }
  .sequence-steps article {
    display: block;
    padding: 24px 22px;
  }
  .sequence-steps h3 { margin: 17px 0 10px; }
  .correspondence {
    margin-top: 0;
    border-radius: 29px;
  }
  .letter-panel, .inquiry-form {
    padding: 35px 22px;
  }
  .pair { grid-template-columns: 1fr; gap: 18px; }
  .site-footer {
    padding: 47px 20px 27px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .disclaimer { padding-top: 27px; }
  .policy-page, .terms-page { padding-top: 55px; }
  .policy-title { margin-bottom: 38px; }
  .policy-title h1 { font-size: 52px; }
  .policy-copy {
    padding: 34px 22px;
    border-radius: 29px;
  }
  .policy-copy section { grid-template-columns: 1fr; gap: 11px; }
  .terms-track { grid-template-columns: 1fr; }
  .terms-track article { min-height: auto; }
  .terms-track article > span { margin-bottom: 33px; }
  .terms-contact {
    padding: 29px 22px;
    display: grid;
  }
  .thanks-page { min-height: 0; padding: 55px 20px 36px; }
  .receipt {
    padding: 31px 22px 36px;
    border-radius: 29px;
  }
  .receipt-code { display: grid; gap: 10px; }
  .receipt-grid { grid-template-columns: 1fr; }
  .receipt-actions { display: grid; }
}
