/* ══════════════════════════════════════════
   5280.menu — Manus Art-Form Stylesheet
   ══════════════════════════════════════════ */

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

:root {
  --charcoal:  #1c1f26;
  --dark:      #232830;
  --forest:    #1b3a2d;
  --sage:      #3d6b52;
  --timber:    #c4944a;
  --gold:      #d4a843;
  --stone:     #e8e4de;
  --cream:     #f7f5f1;
  --white:     #ffffff;
  --text:      #2a2d32;
  --muted:     #6b7280;
  --border:    rgba(0,0,0,0.07);
  --r:         14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text); background: var(--cream);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}

.container { max-width: 1020px; margin: 0 auto; padding: 0 1.5rem; }

/* ── MASTHEAD ── */
.masthead {
  background: var(--charcoal);
  text-align: center;
  position: relative;
}
.mast-rule-top, .mast-rule-bot {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--timber) 20%, var(--gold) 50%, var(--timber) 80%, transparent 100%);
}
.mast-inner { padding: 1.6rem 1rem 1.3rem; }
.mast-flourish {
  font-size: 0.65rem; letter-spacing: 0.3em; color: var(--timber);
  margin-bottom: 0.4rem; font-weight: 600;
}
.mast-title {
  font-size: 3rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.03em; line-height: 1;
}
.mast-subtitle {
  font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--timber); margin-top: 0.35rem;
}
.mast-tagline {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em; margin-top: 0.35rem;
}

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; background: #080a0c;
}
.hero iframe {
  position: absolute; top: 50%; left: 50%;
  width: 178vh; height: 100vh;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  border: none; pointer-events: none;
}
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,31,38,0.25) 0%,
      rgba(27,58,45,0.45) 40%,
      rgba(28,31,38,0.85) 100%
    );
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 2rem; z-index: 2;
}
.hero-content h2 {
  font-size: 3.4rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.025em; line-height: 1.1;
  text-shadow: 0 3px 30px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 1.2rem; color: rgba(255,255,255,0.88);
  margin-top: 1rem; max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-ctas { margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.7rem 1.6rem;
  border-radius: 50px; font-size: 0.9rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--timber); color: var(--white); border-color: var(--timber);
}
.btn-primary:hover { background: #b3843f; border-color: #b3843f; transform: translateY(-1px); }
.btn-secondary {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.btn-secondary:hover { background: #164a30; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header.light h2, .section-header.light .section-sub { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,0.12); color: var(--timber); }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  background: var(--forest); color: var(--white);
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 0.8rem;
}
.section-header h2 {
  font-size: 2rem; font-weight: 800; color: var(--charcoal);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem; color: var(--muted); margin-top: 0.5rem; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* ── TOWN GRID ── */
.towns { padding: 4.5rem 0 4rem; }
.town-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.town-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.6rem 1.2rem 1.3rem;
  text-align: center; text-decoration: none; color: var(--text);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.tc-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--timber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.town-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(27,58,45,0.13); }
.town-card:hover .tc-accent { transform: scaleX(1); }
.tc-emoji { font-size: 2.4rem; margin-bottom: 0.6rem; }
.town-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }
.town-card p { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.45; }
.tc-link {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.78rem; font-weight: 700; color: var(--sage);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.town-card:hover .tc-link { color: var(--timber); }

/* ── ANGLE DIVIDERS ── */
.angle-div {
  height: 80px; margin-top: -1px;
  position: relative; z-index: 1;
}
.angle-dark {
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
  background: var(--dark);
  margin-top: 0;
}
.angle-light {
  background: var(--dark);
  clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 100%);
  background: var(--cream);
}

/* ── FEATURED ── */
.featured {
  background: var(--dark);
  padding: 3rem 0 4rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.img-placeholder {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--r);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  color: rgba(255,255,255,0.3);
}
.img-placeholder span { font-size: 3rem; }
.img-placeholder p { font-size: 0.85rem; margin-top: 0.5rem; }

.micro-interview { margin-bottom: 1.8rem; }
.qa {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.qa:last-child { border-bottom: none; }
.q {
  font-size: 0.82rem; font-weight: 700; color: var(--timber);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.a {
  font-size: 0.95rem; color: rgba(255,255,255,0.82);
  font-style: italic; line-height: 1.6;
}
.featured-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ── SPONSORS ── */
.sponsors { padding: 4.5rem 0; }
.sponsor-row {
  display: flex; justify-content: center;
  gap: 0.9rem; flex-wrap: wrap;
}
.sponsor-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  color: var(--forest);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.sponsor-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,58,45,0.1);
  border-color: var(--sage);
}
.sp-icon { font-size: 1.1rem; }
.sponsor-cta-line {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.88rem;
}
.sponsor-cta-line a {
  color: var(--sage); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.sponsor-cta-line a:hover { border-color: var(--sage); }

/* ── MEET THE OWNER ── */
.meet { padding: 2rem 0 5rem; }
.meet-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 2.5rem; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.photo-circle {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  border-radius: 50%; display: flex;
  justify-content: center; align-items: center;
  font-size: 3rem;
  box-shadow: 0 4px 15px rgba(27,58,45,0.2);
}
.meet-body h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.meet-body p { font-size: 0.95rem; color: var(--muted); max-width: 520px; }
.meet-steps {
  list-style: none; margin: 1.2rem 0 1.5rem;
}
.meet-steps li {
  font-size: 0.9rem; color: var(--text);
  padding: 0.35rem 0;
}
.meet-steps li strong { color: var(--timber); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.55);
  text-align: center; padding: 3rem 1.5rem;
}
.foot-brand {
  font-size: 1.6rem; font-weight: 900; color: var(--white);
  margin-bottom: 0.6rem;
}
footer strong { color: var(--timber); }
.foot-contact {
  margin-top: 0.8rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.foot-copy {
  margin-top: 0.5rem; font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .town-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .meet-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 640px) {
  .mast-title { font-size: 2.2rem; }
  .hero { height: 55vh; }
  .hero-content h2 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section-header h2 { font-size: 1.5rem; }
  .town-grid { gap: 1rem; }
  .town-card { padding: 1.2rem 1rem 1rem; }
  .sponsor-pill { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .meet-card { padding: 1.5rem; }
  .angle-div { height: 50px; }
}
@media (max-width: 380px) {
  .town-grid { grid-template-columns: 1fr; }
}

/* ═══ FEATURED VIDEO ═══ */
.video-feature {
  padding: 3rem 0;
  background: #fafaf7;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
