/* =========================
   WESTVIEW SQUARE — WHITE + LUXURY YELLOW THEME
   HTML + CSS ONLY
========================= */

:root{
  --gold:#f6c445;        /* luxury yellow */
  --gold-2:#ffdd77;      /* light gold */
  --ink:#0b1220;         /* deep ink */
  --muted:#556074;       /* muted text */
  --line:#e7e9ef;        /* borders */
  --soft:#fbfbfd;        /* soft background */
  --card:#ffffff;
  --shadow:0 14px 40px rgba(11,18,32,.09);
  --radius:18px;
  --max:1150px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), 92%); margin-inline:auto; }

::selection{ background:rgba(246,196,69,.35); }

/* =========================
   Utilities
========================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:.38rem .78rem;
  border-radius:999px;
  border:1px solid rgba(246,196,69,.45);
  background:rgba(246,196,69,.12);
  color:#7a5600;
  font-weight:700;
  font-size:.92rem;
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background:var(--gold);
  box-shadow: 0 0 0 4px rgba(246,196,69,.18);
}

.h1{
  margin:0 0 12px;
  font-size:clamp(2rem, 3.8vw, 3.35rem);
  letter-spacing:-.04em;
  line-height:1.08;
}
.h2{
  margin:0 0 10px;
  font-size:clamp(1.35rem, 2.35vw, 2.05rem);
  letter-spacing:-.02em;
}
.lead{
  margin:0;
  color:var(--muted);
  max-width:72ch;
}

.section{ padding:76px 0; }
.section--soft{
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(246,196,69,.18), rgba(246,196,69,0)),
    radial-gradient(820px 520px at 88% 30%, rgba(11,18,32,.05), rgba(11,18,32,0)),
    var(--soft);
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: 0 10px 26px rgba(11,18,32,.06);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:.92rem 1.12rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  font-weight:700;
  letter-spacing:.01em;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(11,18,32,.08); }
.btn--gold{
  border-color: rgba(246,196,69,.65);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color:#2b2100;
}
.btn--dark{
  background: var(--ink);
  color:#fff;
  border-color: transparent;
}
.btn:active{ transform: translateY(0); }

.kbd{
  font-size:.85rem;
  padding:.12rem .4rem;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}

/* =========================
   Header + Nav (CSS-only hamburger)
========================= */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:-.03em;
  text-transform:uppercase;
}
.brand small{
  display:block;
  font-weight:700;
  letter-spacing:.16em;
  color:var(--muted);
  font-size:.72rem;
  margin-top:-2px;
}
.logo{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(246,196,69,.55);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, rgba(246,196,69,.95), rgba(255,221,119,.95));
}
.brand strong{ display:block; line-height:1; }
.brand span{ color:#7a5600; }

.menu{
  display:flex;
  align-items:center;
  gap:8px;
}
.menu a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
}
.menu a:hover{
  background:rgba(246,196,69,.12);
  color:#7a5600;
}
.menu a.active{
  background:rgba(246,196,69,.18);
  border:1px solid rgba(246,196,69,.35);
  color:#5e4200;
}

.nav-toggle{ display:none; }
.hamburger{
  display:none;
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hamburger div{
  width:18px; height:2px; background:var(--ink);
  position:relative;
}
.hamburger div::before,
.hamburger div::after{
  content:"";
  position:absolute; left:0;
  width:18px; height:2px;
  background:var(--ink);
}
.hamburger div::before{ top:-6px; }
.hamburger div::after{ top:6px; }

@media (max-width: 860px){
  .hamburger{ display:flex; }
  .menu{
    position:absolute;
    left:0; right:0;
    top:70px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow: var(--shadow);
  }
  .menu a{ padding:12px 12px; }
  .nav-toggle:checked ~ .menu{ display:flex; }
}

/* =========================
   Hero
========================= */
.hero{
  padding:78px 0 44px;
  background:
    radial-gradient(950px 520px at 18% 10%, rgba(246,196,69,.22), rgba(246,196,69,0)),
    radial-gradient(780px 520px at 85% 25%, rgba(11,18,32,.06), rgba(11,18,32,0));
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:26px;
  align-items:center;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  max-width:72ch;
}
.actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

.hero-card{
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.render{
  height:260px;
  border-radius:20px;
  border:1px solid rgba(231,233,239,.9);
  overflow:hidden;
  position:relative;
  background:
    linear-gradient(135deg, rgba(246,196,69,.28), rgba(246,196,69,0)),
    linear-gradient(180deg, #ffffff, #f7f8fb);
}
.render::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:16px;
  border:1px dashed rgba(246,196,69,.55);
  background:
    radial-gradient(circle at 22% 35%, rgba(246,196,69,.22), rgba(246,196,69,0) 60%),
    radial-gradient(circle at 70% 60%, rgba(11,18,32,.10), rgba(11,18,32,0) 65%);
}
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:rgba(251,251,253,.9);
}
.stat strong{ display:block; font-size:1.1rem; }
.stat span{ color:var(--muted); font-size:.92rem; }

@media (max-width: 950px){
  .hero-grid{ grid-template-columns:1fr; }
}

/* =========================
   Grids
========================= */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 950px){
  .grid3{ grid-template-columns: 1fr; }
}

.feature{
  padding:18px;
}
.icon{
  width:46px; height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(246,196,69,.45);
  background:rgba(246,196,69,.12);
  color:#6a4b00;
  font-weight:900;
  margin-bottom:12px;
}

/* =========================
   Split panels
========================= */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.panel{ padding:20px; border-radius:24px; }
.list{ margin:12px 0 0; padding:0; list-style:none; }
.list li{
  padding:10px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.list li:first-child{ border-top:none; }
@media (max-width: 950px){
  .split{ grid-template-columns: 1fr; }
}

/* =========================
   Brands / Chips
========================= */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.chip{
  padding:.55rem .78rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  color:var(--muted);
}
.chip--gold{
  border-color: rgba(246,196,69,.55);
  background: rgba(246,196,69,.14);
  color:#6a4b00;
}

/* =========================
   Project cards
========================= */
.projects{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.project{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 26px rgba(11,18,32,.06);
}
.thumb{
  height:160px;
  background:
    linear-gradient(135deg, rgba(246,196,69,.26), rgba(246,196,69,0)),
    linear-gradient(180deg, #ffffff, #f5f6fb);
}
.project .body{ padding:16px; }
.project h3{ margin:0 0 6px; }
.project p{ margin:0; color:var(--muted); }

@media (max-width: 950px){
  .projects{ grid-template-columns:1fr; }
}

/* =========================
   Forms
========================= */
form{ display:grid; gap:12px; }
.field{ display:grid; gap:6px; }
label{ font-weight:800; font-size:.95rem; }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  outline:none;
  font: inherit;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(246,196,69,.75);
  box-shadow: 0 0 0 4px rgba(246,196,69,.18);
}
textarea{ min-height:120px; resize:vertical; }

/* =========================
   Footer
========================= */
.footer{
  border-top:1px solid var(--line);
  padding:28px 0;
  background:#fff;
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer small{ color:var(--muted); }
.footer a{ color:var(--muted); font-weight:700; }
.footer a:hover{ color:#6a4b00; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }

hr.sep{
  border:0;
  border-top:1px solid var(--line);
  margin:18px 0 0;
}

.logo-img{
  width:150px;
  height:110px;
  /* border-radius:14px;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(246,196,69,.55);
  box-shadow: var(--shadow);
  padding:6px 10px; */
}