/* ============================================================
   Above The Clouds Hospitality LLC - AboveClouds
   Hillside hotel register at dawn - shared stylesheet
   Palette: WARM SHELL #F3EDE2 | INN INK #332E38
            FOG ROSE #C87E9E | DUSK PLUM #6B5566
            BED LINEN #FBF8F2 | MORNING SKY #A8C3CC
            ATTIC SLATE #2E2A33 | Brass sand scene #BFA98A
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-size: 16px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #F3EDE2;
  color: #332E38;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: #6B5566; }
a:hover { color: #C87E9E; }
p { margin: 0 0 1.1em; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================ BELL DESK NAV ============================ */
.belldesk {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #F3EDE2;
  border-bottom: 1px solid #6B5566;
}
.belldesk-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brandplate {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brandlogo {
  width: 40px;
  height: 40px;
  background: #C87E9E;
  border-radius: 10px 10px 12px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  position: relative;
}
.bell-glyph {
  position: relative;
  width: 18px;
  height: 16px;
  background: #FBF8F2;
  border-radius: 9px 9px 7px 7px;
}
.bell-glyph::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 4px;
  width: 10px;
  height: 5px;
  border-radius: 5px 5px 0 0;
  background: #FBF8F2;
}
.bell-glyph::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 6px;
  width: 6px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: #FBF8F2;
}
.bellpull {
  position: absolute;
  top: -8px;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FBF8F2;
}
.brandword {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #C87E9E;
  text-transform: uppercase;
}
.foblocks {
  display: flex;
  align-items: center;
  gap: 10px;
}
.keyfob {
  display: inline-block;
  text-decoration: none;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #332E38;
  background: #FBF8F2;
  border: 1px solid #6B5566;
  border-radius: 20px;
  padding: 8px 16px;
  position: relative;
}
.keyfob::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 2px solid #6B5566;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: inset 0 0 0 2px #FBF8F2;
}
.keyfob.alt {
  background: #C87E9E;
  border-color: #C87E9E;
}
.keyfob.alt::before { border-color: #FBF8F2; box-shadow: inset 0 0 0 2px #C87E9E; }
.keyfob.alt { color: #FBF8F2; }
.cta-chip {
  display: inline-block;
  text-decoration: none;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: #C87E9E;
  color: #FBF8F2;
  border-radius: 22px;
  padding: 10px 20px;
  border: 2px solid #C87E9E;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-chip:hover { background: #FBF8F2; color: #C87E9E; }
.cloudline {
  display: block;
  height: 5px;
  background:
    radial-gradient(circle 3px at 12px 4px, #6B5566 0 3px, transparent 4px),
    radial-gradient(circle 3px at 22px 4px, #6B5566 0 3px, transparent 4px),
    radial-gradient(circle 3px at 32px 4px, #6B5566 0 3px, transparent 4px);
  background-size: 36px 8px;
  background-repeat: repeat-x;
}

.navtoggle {
  display: none;
  background: #C87E9E;
  color: #FBF8F2;
  border: none;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}
.mobilenav { display: none; }
.mobilenav.open { display: flex; flex-direction: column; padding: 8px 24px 20px; gap: 6px; }
.mobilenav a { font-family: "Trebuchet MS", sans-serif; font-weight: 700; }

/* ============================ HERO: MULLION WINDOW ============================ */
.mullionview {
  max-width: 1200px;
  margin: 0 auto 0;
}
.windowband {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(180deg, #E3D6E8 0%, #D7C7DC 18%, #D9CDD2 45%, #CFC4BE 100%);
  border-bottom: 14px solid #6B5566;
}
.mullion { position: absolute; top: 0; bottom: 0; width: 12px; background: #6B5566; }
.mullion.m1 { left: 33.33%; transform: translateX(-50%); }
.mullion.m2 { left: 66.66%; transform: translateX(-50%); }
.frametop, .framebottom { position: absolute; left: 0; right: 0; height: 12px; background: #6B5566; z-index: 12; }
.frametop { top: 0; }
.framebottom { bottom: 0; border: none; }
.cloudbanks { position: absolute; left: 0; right: 0; bottom: 60px; }
.cloud {
  position: absolute;
  border-radius: 999px;
  height: 56px;
  filter: none;
}
.cloud::before, .cloud::after { content: ""; position: absolute; border-radius: 50%; }
.cloud.c1 { width: 300px; left: 60px; bottom: 30px; background: #D8B7C6; }
.cloud.c1::before { width: 170px; height: 105px; left: 40px; top: -60px; background: #D8B7C6; }
.cloud.c1::after { width: 120px; height: 80px; right: 30px; top: -45px; background: #D8B7C6; }
.cloud.c2 { width: 220px; right: 160px; bottom: 120px; background: #CFBBD1; }
.cloud.c2::before { width: 120px; height: 75px; left: 40px; top: -50px; background: #CFBBD1; }
.cloud.c2::after { width: 100px; height: 65px; right: 20px; top: -35px; background: #CFBBD1; }
.cloud.c3 { width: 260px; left: 40%; bottom: 140px; background: #B9CAD1; }
.cloud.c3::before { width: 150px; height: 90px; left: 30px; top: -55px; background: #B9CAD1; }
.cloud.c3::after { width: 110px; height: 70px; right: 25px; top: -40px; background: #B9CAD1; }
.cloud.c4 { width: 190px; left: 15%; bottom: 60px; background: #D3BFC4; }
.cloud.c4::before { width: 110px; height: 66px; left: 30px; top: -45px; background: #D3BFC4; }
.cloud.c4::after { width: 90px; height: 58px; right: 15px; top: -35px; background: #D3BFC4; }
.sunpeek { position: absolute; top: 60px; left: 60px; width: 90px; height: 90px; border-radius: 50%; background: #E9C9AE; }
.horizonmist { position: absolute; left: 0; right: 0; bottom: 0; height: 44px; background: #D6C6CF; display: flex; justify-content: space-around; }
.sillbell {
  position: absolute;
  bottom: 10px;
  right: 80px;
  width: 24px;
  height: 20px;
  background: #6B5566;
  border-radius: 12px 12px 8px 8px;
  z-index: 13;
}
.sillbell::before { content: ""; position: absolute; top: -7px; left: 7px; width: 10px; height: 7px; border-radius: 8px 8px 0 0; background: #6B5566; }
.float-tag {
  position: absolute;
  z-index: 20;
  width: 150px;
  background: #C87E9E;
  color: #FBF8F2;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  padding: 12px 16px;
  border-radius: 10px 4px 10px 10px;
  box-shadow: 0 6px 0 #B98FA4;
}
.float-tag small { display: block; font-weight: 400; color: #FBF8F2; font-size: 12px; }
.float-tag.tl { top: 90px; left: 110px; }
.float-tag.tr { top: 150px; right: 100px; }

.ledgerstand {
  background: #FBF8F2;
  position: relative;
  padding: 56px 24px 60px;
}
.ledgerstand-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.eyebrow {
  font-family: "Trebuchet MS", sans-serif;
  letter-spacing: 4px;
  font-size: 14px;
  color: #C87E9E;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.ledgerstand h1 {
  font-size: 52px;
  color: #332E38;
  line-height: 1.05;
  margin: 0 0 8px;
  font-weight: 700;
}
.register-stamp {
  display: inline-block;
  color: #C87E9E;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px 4px 3px;
  border: 3px double #C87E9E;
  border-radius: 2px;
  transform: rotate(-4deg);
  margin: 6px 0 20px;
}
.hero-lead {
  font-size: 19px;
  color: #332E38;
  max-width: 700px;
  margin: 0 auto 26px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-rose {
  display: inline-block;
  text-decoration: none;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FBF8F2;
  background: #C87E9E;
  border: 2px solid #C87E9E;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-rose:hover { background: #FBF8F2; color: #C87E9E; }
.btn-ink {
  display: inline-block;
  text-decoration: none;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #332E38;
  border: 2px solid #332E38;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-ink:hover { background: #332E38; color: #FBF8F2; }
.ledge-decor { display: flex; justify-content: space-between; align-items: flex-end; max-width: 900px; margin: -18px auto 0; padding: 0 24px; }
.pewter-bell {
  width: 34px;
  height: 30px;
  background: #6B5566;
  border-radius: 17px 17px 8px 8px;
  position: relative;
}
.pewter-bell::before { content: ""; position: absolute; top: -8px; left: 12px; width: 10px; height: 8px; border-radius: 9px 9px 0 0; background: #6B5566; }
.pewter-bell::after { content: ""; position: absolute; bottom: -4px; left: 13px; width: 8px; height: 4px; background: #6B5566; border-radius: 0 0 4px 4px; }
.fob-rest {
  width: 54px;
  height: 34px;
  background: #C87E9E;
  border-radius: 17px;
  position: relative;
}
.fob-rest::before { content: ""; position: absolute; top: 8px; left: 6px; width: 8px; height: 8px; border: 3px solid #FBF8F2; border-radius: 50%; }

/* ============================ CHAPTER PAIRS ============================ */
.section-title {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 16px 8px;
}
.section-title h2 { font-size: 38px; color: #332E38; margin: 0 0 10px; font-weight: 700; }
.section-title .kicker { font-family: "Trebuchet MS", sans-serif; letter-spacing: 4px; font-size: 13px; color: #C87E9E; text-transform: uppercase; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.chapterlists { padding: 14px 24px 10px; max-width: 1160px; margin: 0 auto; }
.chapterpair {
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 0;
  background: #FBF8F2;
  border-radius: 14px;
  overflow: hidden;
  margin: 26px 0;
  box-shadow: 0 10px 24px #DDD1CE;
}
.chapterpair.flip .scene-side { order: 2; }
.scene-side { min-height: 300px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.chaptertext { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.chaptertext h3 { font-size: 27px; color: #332E38; margin: 4px 0 12px; font-weight: 700; }
.chlevy { font-family: "Trebuchet MS", sans-serif; letter-spacing: 4px; font-size: 14px; text-transform: uppercase; font-weight: 700; color: #C87E9E; }
.chaptertext p { color: #4a4149; }
.linkmore { font-family: "Trebuchet MS", sans-serif; font-weight: 700; color: #6B5566; text-decoration: none; letter-spacing: 1px; }

.scene-cloud {
  background: #C87E9E;
}
.scene-cloud .mound { position: absolute; width: 220px; height: 110px; bottom: 60px; left: 20px; border-radius: 999px; background: #D8B9C6; }
.scene-cloud .mound::before { content: ""; position: absolute; width: 130px; height: 90px; left: 30px; top: -60px; background: #D8B9C6; border-radius: 50%; }
.scene-cloud .mound.mbed { left: auto; right: 10px; bottom: 30px; background: #B8C7CD; }
.scene-cloud .sunlet { position: absolute; top: 40px; right: 40px; width: 64px; height: 64px; background: #E0CDDA; border-radius: 50%; }

.scene-fob {
  background: #6B5566;
}
.scene-fob .fobrail { position: absolute; left: 15%; right: 15%; top: 70px; height: 8px; background: #8d8292; border-radius: 4px; }
.pvd { position: absolute; width: 46px; height: 60px; border-radius: 12px; top: 96px; background: #C87E9E; }
.pvd.pv1 { left: 20%; }
.pvd.pv2 { left: 44%; background: #D9C1CC; }
.pvd.pv3 { left: 68%; background: #A8C3CC; }
.pvd::after { content: ""; position: absolute; top: 8px; left: 12px; width: 22px; height: 6px; background: #2E2A33; border-radius: 3px; }

.scene-bell {
  background: #A8C3CC;
}
.scene-bell .bigbell { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 60px; background: #6B5566; border-radius: 35px 35px 10px 10px; }
.scene-bell .bigbell::before { content: ""; position: absolute; top: -20px; left: 12px; width: 46px; height: 26px; background: #6B5566; border-radius: 46px 46px 0 0; }
.scene-bell .pins { position: absolute; bottom: 50px; left: 14%; width: 72%; height: 10px; background: repeating-linear-gradient(90deg, #E9DCC6 0 10px, transparent 10px 16px); }

.scene-linen { background: #C4B08F; }
.scene-linen .fold { position: absolute; left: 12%; right: 12%; bottom: 60px; height: 120px; background: #FBF8F2; border-radius: 0 0 40px 40px; transform: rotate(-3deg); box-shadow: 0 12px 18px #AA8F74; }
.scene-linen .fold::after { content: ""; position: absolute; top: 0; left: 6%; width: 88%; height: 46px; background: #E0CBD6; }

.scene-stair { background: #6B5566; }
.scene-stair .riserr { position: absolute; left: 18%; right: 0; bottom: 60px; height: 9px; background: #C0A98A; }
.scene-stair .riserr.r2 { bottom: 100px; left: 34%; }
.scene-stair .riserr.r3 { bottom: 140px; left: 62%; }
.scene-stair .rail { position: absolute; left: 60%; right: 14%; bottom: 152px; height: 40px; background: #C9A98F; }

/* ============================ DAY COUNT BAND ============================ */
.daycount {
  background: #2E2A33;
  padding: 60px 0 64px;
  margin: 20px 0 0;
}
.daycount .section-title { padding-top: 8px; }
.daycount .section-title h2 { color: #FBF8F2; }
.daycount .section-title .kicker { color: #C87E9E; }
.dayrow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.daystep { text-align: left; }
.daynum { font-size: 72px; font-weight: 700; color: #C87E9E; line-height: 0.95; font-family: Georgia, serif; }
.daylabel { font-family: "Trebuchet MS", sans-serif; text-transform: uppercase; letter-spacing: 3px; color: #E9C9AE; font-weight: 700; font-size: 15px; }
.daystep p { color: #D9CDCF; font-size: 15px; margin: 12px 0 0; }
.step-stagger span p { display: block; }
.step-stagger .d1 { margin-top: 6px; }
.step-stagger .d2 { margin-top: 26px; }
.step-stagger .d3 { margin-top: 12px; }
.step-stagger .d4 { margin-top: 40px; }
.step-stagger .d5 { margin-top: 18px; }

/* ============================ ACCENT STRIP: RESERVATIONS ============================ */
.reserveband { display: grid; grid-template-columns: 62fr 38fr; max-width: 1180px; margin: 46px auto; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px #CFC3CF; }
.reserve-main { background: #C87E9E; color: #FBF8F2; padding: 42px 46px; }
.reserve-main h3 { font-size: 30px; color: #FBF8F2; margin: 0 0 10px; font-weight: 700; letter-spacing: 1px; }
.reserve-main p { color: #FCF6F8; max-width: 480px; }
.reserve-main .pref { font-family: "Trebuchet MS", sans-serif; letter-spacing: 3px; text-transform: uppercase; font-size: 14px; color: #F6E7EE; font-weight: 700; }
.btn-linen {
  display: inline-block; margin-top: 10px;
  font-family: "Trebuchet MS", sans-serif; font-size: 17px; font-weight: 700;
  background: #FBF8F2; color: #C87E9E;
  border: 2px solid #FBF8F2; padding: 14px 30px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-linen:hover { background: #C87E9E; color: #FBF8F2; }
.reserve-side { background: #6B5566; color: #EDE4E8; padding: 42px 36px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.reserve-side .fact { display: flex; align-items: center; gap: 10px; }
.factdot { width: 10px; height: 10px; background: #C87E9E; border-radius: 50%; flex: none; }
.reserve-side .fact span { color: #FBF8F2; font-family: "Trebuchet MS", sans-serif; font-weight: 700; }
.reserve-side a { color: #F5EAF0; }

/* ============================ FOOTER: SKYLINE WORDMARK ============================ */
.skylineword { background: #2E2A33; margin-top: 20px; }
.wordmarkclip {
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  z-index: 1;
}
.wordmarkclip .giant {
  font-size: 112px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 6px;
  color: #C87E9E;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.wordmarkclip .cloudrule { position: absolute; bottom: 6px; left: 8%; right: 8%; height: 5px; background: radial-gradient(circle 3px at 12px 4px, #6B5566 0 3px, transparent 4px); background-size: 36px 8px; background-repeat: repeat-x; }
.footer-segment-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 16px 0 34px;
  border-top: 1px solid #403944;
}
.fsegment h4 { font-family: "Trebuchet MS", sans-serif; color: #E9C9AE; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin: 10px 0 10px; }
.fsegment p { color: #C7BEC3; font-size: 14px; }
.fsegment ul { list-style: none; margin: 0; padding: 0; }
.fsegment ul li { margin: 6px 0; }
.fsegment a { color: #DCD4D8; text-decoration: none; font-family: "Trebuchet MS", sans-serif; font-size: 14px; }
.fsegment a:hover { color: #C87E9E; }
.companyline { color: #B8AFB5; font-size: 13px; line-height: 1.7; }
.footcopy { position: relative; z-index: 1; text-align: right; padding: 0 8% 12px; color: #6B5566; font-family: "Trebuchet MS", sans-serif; font-size: 12px; }
.fsegment-row a { color: #C87E9E; }

/* ============================ SERVICES & CONTACT SHARED ============================ */
.pageheadchip { text-align: center; padding: 54px 24px 20px; }
.pageheadchip .eyebrow { color: #C87E9E; }
.pageheadchip h1 { font-size: 46px; color: #332E38; margin: 8px 0 12px; font-weight: 700; line-height: 1.1; }
.pageheadchip p { max-width: 720px; margin: 0 auto; color: #4a4149; font-size: 18px; }

.serviceblock { max-width: 1100px; margin: 0 auto 30px; padding: 0 24px; background: #FBF8F2; }
.servicefull { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 40px 30px; border-bottom: 1px solid #6B5566; align-items: start; }
.servicebadge { font-family: Georgia, serif; font-size: 30px; font-weight: 700; color: #C87E9E; line-height: 1; }
.servicetitle { display: flex; align-items: center; gap: 14px; }
.servicetitle h2 { font-size: 24px; color: #332E38; margin: 0 0 10px; font-weight: 700; }
.servicelabel { font-family: "Trebuchet MS", sans-serif; letter-spacing: 3px; text-transform: uppercase; font-size: 13px; color: #6B5566; font-weight: 700; }
.serviceblock h2 { margin: 0; }
.processband { background: #2E2A33; padding: 56px 24px; margin: 40px auto 0; }
.processband .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; }
.process-title h2 { color: #FBF8F2; font-size: 34px; margin: 0 0 8px; }
.process-title .kicker { color: #C87E9E; }
.processstep { flex: 1 1 160px; }
.ps-num { color: #C87E9E; font-family: Georgia, serif; font-size: 40px; font-weight: 700; }
.ps-name { font-family: "Trebuchet MS", sans-serif; letter-spacing: 2px; text-transform: uppercase; color: #E9C9AE; font-weight: 700; font-size: 13px; }
.ps-desc { color: #D6CDD1; font-size: 15px; }

.ctaband { max-width: 1100px; margin: 50px auto; background: #C87E9E; border-radius: 16px; text-align: center; padding: 44px 30px; }
.ctaband h2 { color: #FBF8F2; font-size: 32px; margin: 0 0 8px; }
.ctaband p { color: #F6E7EE; max-width: 600px; margin: 0 auto 18px; }

.contactgrid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 26px; max-width: 1100px; margin: 10px auto 40px; padding: 0 24px; align-items: stretch; }
.formcard { background: #FBF8F2; border-radius: 14px; padding: 34px 36px; box-shadow: 0 10px 22px #DDD1CE; }
.formcard h2 { font-size: 27px; color: #332E38; margin: 0 0 6px; font-weight: 700; }
.formfield { margin: 0 0 18px; }
.formfield label { display: block; font-family: "Trebuchet MS", sans-serif; font-size: 13px; letter-spacing: 1px; color: #6B5566; font-weight: 700; text-transform: uppercase; margin: 0 0 6px; }
.formfield input, .formfield textarea, .formfield select {
  width: 100%; padding: 12px 14px; font-size: 16px; font-family: Georgia, serif;
  border: 1px solid #6B5566; border-radius: 8px; color: #332E38; background: #fff;
}
.formfield textarea { min-height: 130px; resize: vertical; }
.formstatus { font-family: "Trebuchet MS", sans-serif; font-size: 14px; margin: 6px 0; min-height: 20px; }
.formstatus.ok { color: #332E38; font-weight: 700; }
.formstatus.err { color: #332E38; font-weight: 700; text-decoration: underline; }
.infocard { display: flex; flex-direction: column; }
.infocard .cardentry { background: #FBF8F2; border-radius: 14px; padding: 24px 26px; margin: 0 0 16px; box-shadow: 0 8px 18px #DDD1CE; }
.infocard h3 { font-family: "Trebuchet MS", sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 15px; color: #C87E9E; margin: 0 0 8px; font-weight: 700; }
.infocard p, .infocard address { margin: 0; color: #4a4149; font-style: normal; line-height: 1.8; }
.infocard a { color: #6B5566; text-decoration: none; }
.hourslist { margin: 0; padding: 0; list-style: none; }
.hourslist li { display: flex; justify-content: space-between; color: #4a4149; padding: 5px 0; border-bottom: 1px dashed #CFC1C9; }
.hourslist li:last-child { border-bottom: none; }
.faqentry { border-bottom: 1px solid #6B5566; }
.faqentry summary { cursor: pointer; font-family: "Trebuchet MS", sans-serif; font-weight: 700; font-size: 16px; color: #332E38; padding: 14px 0; list-style: none; }
.faqentry summary::-webkit-details-marker { display: none; }
.faqentry[open] summary { color: #C87E9E; }
.faqentry p { color: #4a4149; }
.faqentry p:last-child { margin-bottom: 18px; }

.reveal-hide { opacity: 0; transform: translateY(20px); }
.reveal-hide.visible { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }

@media (max-width: 900px) {
  .navtoggle { display: inline-block; }
  .foblocks { display: none; }
  .belldesk-inner { flex-wrap: wrap; }
  .chapterpair, .chapterpair.flip { grid-template-columns: 1fr; }
  .chapterpair.flip .scene-side { order: 1; }
  .scene-side { min-height: 210px; }
  .windowband { height: 300px; }
  .dayrow { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .reserveband { grid-template-columns: 1fr; }
  .footer-segment-row { grid-template-columns: repeat(2, 1fr); }
  .contactgrid { grid-template-columns: 1fr; }
  .wordmarkclip .giant { font-size: 56px; }
  .servicefull { grid-template-columns: 1fr; }
}

/* ============================ REVEAL UTILITY (JS ANIMATED) ============================ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hide { opacity: 1; transform: none; transition: none; }
}
