/* LAAIHC standalone coming-soon page — no framework required */
:root {
  --cream: #f6f0e3;
  --paper: #fffaf0;
  --ink: #332014;
  --muted: #705d4d;
  --brown: #3b2514;
  --gold: #ffc126;
  --blue: #6b9bc2;
  --red: #d93827;
  --line: #d9cbb5;
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(59,37,20,.025) 1px, transparent 1px),
    linear-gradient(rgba(59,37,20,.025) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span, .footer-brand div { display: grid; }
.brand strong, .footer-brand strong { font-size: 15px; letter-spacing: .12em; }
.brand small, .footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.header-link {
  padding: 11px 16px;
  border: 1px solid rgba(51,32,20,.16);
  border-radius: 999px;
  background: rgba(255,250,240,.7);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 55px 0 95px;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  color: #9b4b25;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
.hero h1 {
  max-width: 700px;
  margin-top: 18px;
  color: var(--brown);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(64px, 7.5vw, 108px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .88;
}

.hero h1 em {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .63em;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.intro {
  max-width: 620px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 21px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(59,37,20,.18);
  transition: transform .18s, box-shadow .18s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 35px rgba(59,37,20,.24); }
.button:active { transform: scale(.97); }

.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.hero-art {
  position: relative;
  justify-self: end;
  width: min(44vw, 520px);
  aspect-ratio: 1;
}

.logo-frame {
  position: absolute;
  inset: 5%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(59,37,20,.12);
  border-radius: 50%;
  background: rgba(255,250,240,.78);
  box-shadow: 0 35px 80px rgba(59,37,20,.16);
}
.logo-frame::before {
  position: absolute;
  inset: -6%;
  border: 2px solid rgba(168,116,39,.18);
  border-right-color: var(--gold);
  border-radius: 50%;
  content: "";
}
.logo-frame img { width: 90%; filter: drop-shadow(0 14px 12px rgba(59,37,20,.12)); }

.opening {
  position: absolute;
  right: -14px;
  bottom: 7%;
  display: grid;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,250,240,.96);
  box-shadow: 0 18px 40px rgba(59,37,20,.17);
}
.opening small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.opening strong { margin-top: 5px; font-size: 15px; }

.section { padding-top: 110px; padding-bottom: 110px; }
.services { position: relative; }
.services::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: var(--paper);
  content: "";
  transform: translateX(-50%);
}

.section-heading {
  display: grid;
  grid-template-columns: .55fr 1fr .75fr;
  align-items: end;
  gap: 30px;
}
.section-heading h2,
.progress-intro h2,
.location-card h2,
.updates-card h2 {
  font-size: clamp(43px, 5vw, 70px);
  letter-spacing: -.045em;
  line-height: .95;
}
.section-heading > p:last-child,
.progress-intro > p:last-child,
.updates-card > p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 55px;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(51,32,20,.09);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(59,37,20,.1); }
.service-card.yellow { background: #fff0bd; }
.service-card.blue { background: #e1eef6; }
.service-card.red { background: #f7e3de; }
.service-card.tan { background: #e9dfd1; }
.service-number { margin-bottom: auto; color: var(--muted); font: italic 13px Georgia, serif; }
.service-card h3 { font-size: 22px; }
.service-card p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.progress {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  color: var(--paper);
}
.progress::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: var(--brown);
  content: "";
  transform: translateX(-50%);
}
.progress .eyebrow { color: var(--gold); }
.progress-intro > p:last-child { margin-top: 24px; color: #d1c1ad; }
.milestones { margin: 0; padding: 0; list-style: none; }
.milestones li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 23px 0;
  border-top: 1px solid rgba(255,250,240,.15);
}
.milestones li:last-child { border-bottom: 1px solid rgba(255,250,240,.15); }
.milestones li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,193,38,.12);
  color: var(--gold);
  font-weight: 800;
}
.milestones small { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.milestones h3 { margin-top: 5px; font-size: 20px; }
.milestones p { margin-top: 5px; color: #bfae99; font-size: 14px; }

.location {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 16px;
}
.location-card,
.updates-card {
  position: relative;
  min-height: 430px;
  padding: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}
.location-card { background: var(--gold); }
.location-card .eyebrow { color: #80501b; }
.location-card h2 { position: relative; z-index: 2; margin-top: 14px; }
.location-card address { position: relative; z-index: 2; margin-top: 22px; font-style: normal; font-weight: 700; line-height: 1.6; }
.location-card .plain-link { position: relative; z-index: 2; margin-top: 22px; }
.sun {
  position: absolute;
  right: 12%;
  bottom: 110px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffdc73;
}
.mountains {
  position: absolute;
  right: -6%;
  bottom: -1px;
  width: 70%;
  height: 52%;
  background: var(--brown);
  clip-path: polygon(0 100%, 0 74%, 17% 47%, 32% 64%, 48% 23%, 62% 59%, 76% 39%, 100% 73%, 100% 100%);
  opacity: .9;
}
.updates-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--blue);
  color: #173246;
}
.updates-card .eyebrow { color: #294f6a; }
.updates-card h2 { margin-top: 14px; font-size: clamp(38px, 4vw, 55px); }
.updates-card > p:last-child { margin-top: 20px; color: #254960; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.footer-brand img { width: 44px; }
.site-footer > p { max-width: 440px; color: var(--muted); font-size: 11px; line-height: 1.5; text-align: right; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s cubic-bezier(.23,1,.32,1), transform .65s cubic-bezier(.23,1,.32,1);
}
.js [data-reveal].visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 45px; }
  .hero-art { justify-self: center; width: min(90vw, 500px); margin-top: 65px; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .progress, .location { grid-template-columns: 1fr; }
  .progress { gap: 55px; }
}

@media (max-width: 560px) {
  .site-header, .hero, .section, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 44px; height: 44px; }
  .header-link { width: 42px; height: 42px; padding: 0; overflow: hidden; text-indent: 100px; white-space: nowrap; }
  .header-link::after { display: grid; place-items: center; width: 100%; height: 100%; content: "⌖"; text-indent: 0; }
  .hero { min-height: auto; padding: 45px 0 80px; }
  .hero h1 { font-size: clamp(57px, 16vw, 76px); }
  .intro { font-size: 15px; }
  .actions { align-items: flex-start; flex-direction: column; }
  .hero-art { width: min(100%, 420px); }
  .opening { right: 50%; bottom: -14px; transform: translateX(50%); }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .progress { gap: 45px; }
  .location-card, .updates-card { min-height: 390px; padding: 32px; }
  .location-card { padding-top: 55px; }
  .updates-card { min-height: 330px; }
  .mountains { width: 110%; height: 42%; }
  .sun { right: 9%; bottom: 95px; width: 100px; height: 100px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer > p { text-align: left; }
}
