/* ============================================================
   page.css — interior pages for Encore Wynwood
   Extends style.css. Uses the same tokens; adds nothing global.
   ============================================================ */

.nav-phone {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ---------- Page header ---------- */
.page-hero {
  padding: 180px 0 70px;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.page-eyebrow {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 18px;
  background: var(--gradient-h); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.03;
  font-weight: 900; letter-spacing: -.02em; margin: 0 0 22px; color: var(--white);
}
.page-lede {
  font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65;
  color: var(--gray-200); max-width: 62ch; margin: 0;
}

/* ---------- Generic content ---------- */
.page-section { padding: 70px 0; }
.page-section:nth-of-type(even) { background: var(--dark-surface); }
.page-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.page-inner-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.page-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -.01em; color: var(--white); margin: 0 0 26px;
}
.page-section h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--white); margin: 34px 0 12px;
}
.page-section p { color: var(--gray-200); line-height: 1.75; margin: 0 0 18px; }
.page-section a { color: var(--pink); }

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; margin: 26px 0; }
.spec-table th, .spec-table td {
  text-align: left; padding: 15px 18px;
  border-bottom: 1px solid var(--dark-border); color: var(--gray-200); font-size: .96rem;
}
.spec-table th { color: var(--white); font-weight: 700; width: 42%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* ---------- Price cards ---------- */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px; margin: 34px 0;
}
.price-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 16px; padding: 30px;
}
.price-card h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--white); }
.price-amount {
  font-size: 2.1rem; font-weight: 900; letter-spacing: -.02em; margin: 0 0 4px;
  background: var(--gradient-h); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.price-unit { font-size: .82rem; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: .1em; margin: 0 0 16px; }
.price-card p { font-size: .93rem; margin: 0; }
.price-note {
  background: var(--dark-card); border-left: 3px solid var(--pink);
  border-radius: 8px; padding: 20px 24px; margin: 30px 0;
}
.price-note p { margin: 0; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--dark-border); padding: 26px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  margin: 0 0 12px; font-size: 1.08rem; font-weight: 700;
  color: var(--white); line-height: 1.4;
}
.faq-item p { margin: 0; font-size: .97rem; }

/* ---------- Checklist ---------- */
.check-list { list-style: none; padding: 0; margin: 22px 0; }
.check-list li {
  position: relative; padding: 0 0 0 30px; margin-bottom: 13px;
  color: var(--gray-200); line-height: 1.65;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--gradient);
}

/* ---------- CTA band ---------- */
.cta-band { padding: 76px 0; background: var(--dark-surface);
  border-top: 1px solid var(--dark-border); text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  color: var(--white); margin: 0 0 16px; }
.cta-band p { color: var(--gray-200); max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .82rem; color: var(--gray-500); margin-bottom: 24px; }
.crumb a { color: var(--gray-400); text-decoration: none; }
.crumb a:hover { color: var(--pink); }

/* ---------- Footer NAP ---------- */
.footer-nap { padding: 22px 0 6px; }
.footer-nap p { margin: 0 0 5px; color: var(--gray-400); font-size: .88rem; line-height: 1.6; }
.footer-nap a { color: var(--gray-200); text-decoration: none; }
.footer-nap a:hover { color: var(--pink); }

/* ---------- Visually hidden (video text equivalents) ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 768px) {
  .page-hero { padding: 140px 0 50px; }
  .page-hero-inner, .page-inner, .page-inner-narrow { padding: 0 20px; }
  .page-section { padding: 50px 0; }
  .nav-phone { display: none; }
}

/* ============================================================
   Dropdown navigation
   ============================================================ */
.nav-item { position: relative; display: inline-block; }
.nav-item > a::after {
  content: "▾"; font-size: .7em; margin-left: 5px; opacity: .65;
}
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 8px; min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  box-shadow: 0 18px 40px rgba(0,0,0,.5); z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: .93rem; white-space: nowrap; color: var(--gray-200);
  text-decoration: none;
}
.nav-dropdown a:hover { background: rgba(233,30,132,.14); color: var(--white); }

@media (max-width: 900px) {
  .nav-item { display: block; width: 100%; }
  .nav-item > a::after { content: ""; }
  .nav-dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 18px; min-width: 0;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown { transform: none; }
  .nav-dropdown a { padding: 8px 0; font-size: .88rem; opacity: .8; }
}

/* event calendar table on the hub page */
.evt-table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.evt-table th, .evt-table td {
  text-align: left; padding: 14px 14px 14px 0;
  border-bottom: 1px solid var(--dark-border); color: var(--gray-200);
  font-size: .93rem; vertical-align: top;
}
.evt-table th { color: var(--white); font-weight: 700; }
.evt-table thead th {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400);
}

/* ---------- Photography ---------- */
.pg-figure { margin: 34px 0; }
.pg-figure img {
  width: 100%; height: auto; display: block;
  border-radius: 14px; border: 1px solid var(--dark-border);
}
.pg-figure figcaption {
  margin-top: 10px; font-size: .84rem; color: var(--gray-400); line-height: 1.5;
}
.pg-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 34px 0; }
.pg-duo figure { margin: 0; }
.pg-duo img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  border-radius: 14px; border: 1px solid var(--dark-border);
}
.pg-duo figcaption {
  margin-top: 10px; font-size: .84rem; color: var(--gray-400); line-height: 1.5;
}
.pg-hero img {
  width: 100%; height: auto; display: block;
  border-radius: 16px; border: 1px solid var(--dark-border);
}
@media (max-width: 700px) {
  .pg-duo { grid-template-columns: 1fr; }
  .pg-duo img { height: auto; }
}

/* ---------- Case study video ---------- */
.cs-media { margin: 30px 0 34px; }
.cs-media video {
  width: 100%; height: auto; display: block;
  border-radius: 14px; border: 1px solid var(--dark-border);
  background: var(--dark-card);
}
.cs-media figcaption {
  margin-top: 10px; font-size: .84rem; color: var(--gray-400); line-height: 1.5;
}

/* ---------- Keep portrait photos from dominating the page ---------- */
.pg-hero img,
.pg-figure img,
.cs-media video {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pg-hero, .pg-figure { text-align: center; }
.pg-hero figcaption, .pg-figure figcaption { text-align: left; }
@media (max-width: 700px) {
  .pg-hero img, .pg-figure img { max-height: none; width: 100%; }
}
