/* ============================================================================
 *  PROPRIETARY & CONFIDENTIAL  —  © 2026 Demian Enriquez. All Rights Reserved.
 *  Code and Design by Demian Enriquez on June 3rd, 2026.
 *
 *  The visual design, layout system, and styling herein are the original work
 *  and intellectual property of Demian Enriquez (authored June 3rd, 2026).
 *  LEGAL NOTICE TO THEWELLGROUP: no ownership or authorship of this design has
 *  been transferred or licensed. All rights reserved; unauthorized use or any
 *  claim of authorship is prohibited.
 * ============================================================================ */

/* ===========================================================
   WeSellRestaurant — stylesheet
   =========================================================== */
:root {
  --brand: #c8102e;
  --brand-dark: #9c0c23;
  --ink: #1a1d21;
  --ink-soft: #4a5057;
  --muted: #7a828b;
  --line: #e4e7eb;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --gold: #f4b400;
  --green: #1e8e3e;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, .08);
  --shadow-md: 0 6px 20px rgba(16, 24, 40, .10);
  --radius: 12px;
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.center { text-align: center; }
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 8px;
  border: 1px solid transparent; cursor: pointer;
  transition: .15s ease; text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 800;
}
.brand b { color: var(--brand); }
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: .94rem; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  background:
    linear-gradient(rgba(15,17,20,.72), rgba(15,17,20,.78)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='700'%3E%3Crect fill='%231a1d21' width='1200' height='700'/%3E%3C/svg%3E") center/cover;
  padding: 90px 0 110px;
}
.hero h1 { color: #fff; max-width: 880px; margin: 0 auto .4em; }
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 680px; margin: 0 auto 36px; }
.hero .stat-strip { display: flex; gap: 40px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.hero .stat-strip .num { font-size: 2rem; font-weight: 800; color: #fff; }
.hero .stat-strip .lbl { font-size: .85rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- search box ---------- */
.search-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 18px; max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1.3fr 1.3fr auto; gap: 12px;
  text-align: left;
}
.search-card .field { display: flex; flex-direction: column; }
.search-card label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.search-card input, .search-card select {
  border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px;
  font-size: .95rem; font-family: inherit; color: var(--ink); background: #fff;
}
.search-card input:focus, .search-card select:focus { outline: 2px solid var(--brand); outline-offset: 0; border-color: var(--brand); }
.search-card .btn { align-self: end; height: 44px; }

/* ---------- listing grid / cards ---------- */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.listing-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: .18s ease;
  display: flex; flex-direction: column;
}
.listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.listing-card a.thumb-link { display: block; }
.listing-card .thumb { aspect-ratio: 16/10; width: 100%; object-fit: cover; background: var(--bg-soft); }
.listing-card .body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.listing-card .cat-tag {
  display: inline-block; align-self: flex-start; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--brand);
  background: #fdeef0; padding: 4px 10px; border-radius: 100px; margin-bottom: 10px;
}
.listing-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.listing-card h3 a { color: var(--ink); }
.listing-card h3 a:hover { color: var(--brand); text-decoration: none; }
.listing-card .loc { color: var(--muted); font-size: .9rem; margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.listing-card .financials { margin-top: auto; border-top: 1px solid var(--line); padding-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.listing-card .financials .k { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.listing-card .financials .v { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.listing-card .financials .v.price { color: var(--brand); }
.listing-card .id-row { font-size: .75rem; color: var(--muted); padding: 10px 18px; border-top: 1px solid var(--line); background: var(--bg-soft); }

/* ---------- listings page layout ---------- */
.listings-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; position: sticky; top: 90px;
}
.filters h3 { font-size: 1rem; display: flex; justify-content: space-between; align-items: center; }
.filters .fgroup { margin-bottom: 20px; }
.filters label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.filters input, .filters select {
  width: 100%; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px; font-size: .9rem; font-family: inherit;
}
.filters .clear { font-size: .8rem; font-weight: 600; background: none; border: 0; color: var(--brand); cursor: pointer; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.results-bar .count { font-weight: 600; color: var(--ink-soft); }
.results-bar select { border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; font-family: inherit; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); border: 2px dashed var(--line); border-radius: var(--radius); }

/* ---------- listing detail ---------- */
.detail-hero { background: var(--bg-soft); padding: 28px 0; border-bottom: 1px solid var(--line); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--ink-soft); }
.detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.detail-img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; box-shadow: var(--shadow-sm); }
.fin-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.fin-table th, .fin-table td { text-align: left; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.fin-table th { color: var(--muted); font-weight: 600; width: 45%; }
.fin-table td { font-weight: 700; }
.detail-aside {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 90px;
}
.price-big { font-size: 2.2rem; font-weight: 800; color: var(--brand); line-height: 1; }
.price-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.aside-stats { margin: 18px 0; }
.aside-stats div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.aside-stats .k { color: var(--muted); }
.aside-stats .v { font-weight: 700; }
.broker { display: flex; gap: 12px; align-items: center; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.broker .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.form-field label .req { color: var(--brand); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px;
  padding: 11px 12px; font-size: .95rem; font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-weight: 600; }
.alert-success { background: #e7f5ec; color: var(--green); border: 1px solid #b6e0c4; }

/* ---------- value props / features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.feature .ico { width: 56px; height: 56px; border-radius: 14px; background: #fdeef0; color: var(--brand);
  display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 16px; }
.feature h3 { font-size: 1.15rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; }
.step .num { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; margin: 0 auto 14px; }
.step h4 { margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.bg-soft { background: var(--bg-soft); }
.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cat-pill { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px; font-weight: 600; color: var(--ink-soft); }
.cat-pill:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* ---------- page header ---------- */
.page-head { background: var(--ink); color: #fff; padding: 54px 0; text-align: center; }
.page-head h1 { color: #fff; margin-bottom: .2em; }
.page-head p { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; }

/* © 2026 Demian Enriquez — Code and Design by Demian Enriquez on June 3rd, 2026. Proprietary. */
/* ---------- footer ---------- */
.site-footer { background: #14171a; color: #b7bec6; padding: 56px 0 24px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b7bec6; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a2f34; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .listing-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .listings-layout { grid-template-columns: 1fr; }
  .detail-aside, .filters { position: static; }
  .search-card { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 44px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; padding: 18px 20px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .listing-grid, .feature-grid, .form-row, .search-card { grid-template-columns: 1fr; }
  .hero .stat-strip { gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
}
