:root {
  --navy: #1f2e50;
  --navy-deep: #182541;
  --coral: #f6b6b6;
  --coral-deep: #efa1a1;
  --cream: #f2efec;
  --blush: #fdf0f0;
  --white: #ffffff;
  --ink: #222222;
  --ink-soft: #5b5f66;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --icon: #7b687c;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
}

/* Applied globally (not scoped to .section) so every h2 on the page gets
   the same scale, regardless of which wrapper it's inside. */
h2 {
  font-size: clamp(3.25rem, 6vw, 5.9rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
h2.light { color: var(--white); }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.75); }
.eyebrow--plum { color: var(--icon); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo { height: 26px; width: auto; }
.nav-divider { color: rgba(255,255,255,0.3); }
.nav-place {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-cta {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 4px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  padding: 4.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-wordmark {
  width: min(560px, 90vw);
  margin: 0.5rem auto 1.5rem;
}
.hero-tagline {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  margin-bottom: 1.75rem;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-footer {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn--pill {
  background: var(--coral);
  color: var(--navy);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn--pill:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link--light { color: var(--white); }
.link-inline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.link-inline--light { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ---------- Media / full bleed ---------- */
.media-full { position: relative; background: var(--navy-deep); }
.media-full img { width: 100%; height: auto; max-height: 620px; object-fit: cover; }
.media-caption {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.74);
  background: rgba(17, 22, 31, 0.78);
  padding: 8px 14px;
  border-radius: 999px;
  font-style: normal;
}

/* ---------- Sections ---------- */
.section { padding: 6rem 1.5rem; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); }
.section--blush { background: var(--blush); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-inner--narrow { max-width: 640px; }

/* "Made for the neighborhood" heading/lede split */
.concept-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 8rem;
  margin-bottom: 3.5rem;
}
.concept-grid h2 { margin-bottom: 0; }
.section-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* "A better arrival to Lodgeur Midtown" split */
.arrival-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9rem;
}
.arrival-brand h2 { margin-bottom: 0; }

/* "Stay all over Houston" heading/lede split */
.locations-heading {
  display: grid;
  grid-template-columns: 1.33fr 1fr;
  gap: 8.1rem;
  margin-bottom: 4.5rem;
}
.locations-heading h2 { margin-bottom: 0; }
.locations-heading .section-lede { padding-top: 0.5rem; }

/* "Be the first to know" signup split */
.signup-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 9rem;
  align-items: start;
}
.light-body {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.light-body--muted { color: rgba(255,255,255,0.55); font-size: 0.92rem; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-card {
  border-top: 2px solid var(--navy);
  padding-top: 1.5rem;
}
.offering-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid rgba(123, 104, 124, 0.36);
  color: var(--icon);
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.feature-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---------- Storefront ---------- */
.storefront { position: relative; }
.storefront img { width: 100%; height: 670px; object-fit: cover; display: block; }
.storefront-content {
  position: absolute;
  left: 6%;
  bottom: 2.25rem;
  max-width: 380px;
}
.storefront-content h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.storefront-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
  line-height: 1.6;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.media-caption--overlay { color: rgba(255,255,255,0.6); }

/* ---------- Welcome / logo split ---------- */
.arrival-brand { display: block; }
.welcome-logo { width: min(340px, 55vw); margin-bottom: 2rem; }

.guest-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 2.1rem;
  padding: 1.4rem 0;
}
.guest-services span {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: rgba(255,255,255,0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guest-services span:not(:first-child) {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 1.4rem;
}
.guest-services svg { color: var(--coral); flex-shrink: 0; }

/* ---------- Location grid ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.9rem;
  margin-bottom: 2.5rem;
}
.location-card {
  background: #f8f5f2;
  border: 1px solid rgba(31, 46, 80, 0.18);
  overflow: hidden;
  display: grid;
  grid-template-columns: 56% 44%;
  transition: box-shadow 0.15s ease;
}
.location-card:hover { box-shadow: 0 12px 28px rgba(31,46,80,0.1); }
.location-card-image { height: 100%; min-height: 220px; }
.location-card-image img { width: 100%; height: 100%; object-fit: cover; }
.location-card-copy { padding: 2.1rem; display: flex; flex-direction: column; }
.location-card-copy span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--icon);
  margin-bottom: 0.5rem;
}
.location-card-copy h3 { font-size: clamp(1.3rem, 2.2vw, 2.15rem); color: var(--navy); margin-bottom: 0.6rem; }
.location-card-copy p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.location-card-copy strong {
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  align-self: flex-start;
  padding-bottom: 2px;
  margin-top: auto;
}
.center-cta { text-align: center; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(123, 104, 124, 0.32);
  margin-top: 3rem;
}
.time-card { position: relative; padding: 3rem 1.5rem 0 0; }
.time-dot {
  position: absolute;
  top: -13px;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
}
.time-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.time-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }

/* ---------- Address split ---------- */
.address-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 8.1rem;
}
.address-copy .section-lede { margin-bottom: 1.75rem; }
.address {
  font-style: normal;
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

/* ---------- Signup form ---------- */
.signup-form { margin-top: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.signup-form label span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.signup-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.35); }
.signup-form input:focus { outline: 2px solid var(--coral); outline-offset: 1px; }
.form-fine {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-top: 1.1rem;
}
.form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--coral);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); padding: 3.5rem 1.5rem 2.5rem; }
.footer-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.footer-logo { width: 130px; margin: 0 auto 1rem; }
.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.footer-place { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-concept { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1rem; }
.footer-email {
  color: var(--coral);
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(246,182,182,0.4);
}
.footer-privacy { color: rgba(255,255,255,0.35); font-size: 0.72rem; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-copyright { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .arrival-grid, .concept-grid, .locations-heading { grid-template-columns: 1fr; gap: 2rem; text-align: center; margin-bottom: 2.5rem; }
  .address-grid, .signup-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .light-body { margin-left: auto; margin-right: auto; }
  .welcome-logo { margin-left: auto; margin-right: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .location-card { grid-template-columns: 1fr; }
  .location-card-image { min-height: 220px; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding-top: 3rem; }
  .hero-actions { flex-direction: column; gap: 1.25rem; }
  .hero-footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; row-gap: 2.5rem; }
  .storefront img { height: 480px; }
  .storefront-content { left: 5%; right: 5%; max-width: none; bottom: 1.5rem; }
}
