/* styles.css (toned down: modern, muted palette, softer contrast/shadows) */

:root{
  /* Softer neutrals */
  --bg: #f6f6f4;
  --surface: #ffffff;
  --surface-2: #f1f1ee;

  /* Softer ink + borders */
  --ink: #1f2328;
  --muted: #5b6470;
  --border: rgba(31,35,40,0.14);
  --border-strong: rgba(31,35,40,0.22);

  /* Muted accents (no primaries) */
  --accent-1: #6f7f86;   /* slate */
  --accent-2: #9aa7a1;   /* sage */
  --accent-3: #b79b8c;   /* clay */
  --accent-4: #8b8fa6;   /* soft indigo */

  --radius: 16px;
  --radius-lg: 22px;

  /* Subtle shadows */
  --shadow-sm: 0 2px 8px rgba(16,24,40,0.08);
  --shadow-md: 0 10px 28px rgba(16,24,40,0.10);
  --ring: 0 0 0 4px rgba(111,127,134,0.18);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(154,167,161,0.12), transparent 60%),
              radial-gradient(1000px 500px at 80% 30%, rgba(139,143,166,0.10), transparent 55%),
              var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a{
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Top nav */
.top{
  position: sticky;
  top:0;
  background: rgba(246,246,244,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 5;
}

.top__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__mark{
  width: 14px; height: 14px;
  background: linear-gradient(145deg, var(--accent-1), var(--accent-4));
  border-radius: 5px;
  display:inline-block;
  box-shadow: 0 2px 8px rgba(16,24,40,0.12);
}
.brand__name{ font-size: 16px; }

.nav{
  display:flex;
  gap: 10px;
  align-items:center;
  font-weight: 700;
}
.nav a{
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}
.nav a:hover{
  border-color: var(--border);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
}
.nav__cta{
  color: var(--surface);
  background: linear-gradient(145deg, var(--accent-1), var(--accent-4));
  border-color: transparent !important;
  box-shadow: var(--shadow-sm);
}

/* Hero */
.hero{
  padding: 44px 0 12px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.badge{
  display:inline-flex;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  color: var(--muted);
}

h1{
  margin: 14px 0 10px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.lead{
  font-size: 18px;
  margin: 0 0 16px;
  max-width: 62ch;
  color: var(--muted);
}

/* Buttons */
.hero__ctas{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 750;
  text-decoration:none;
  box-shadow: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(111,127,134,0.35);
}

.btn--primary{
  color: var(--surface);
  background: linear-gradient(145deg, var(--accent-1), var(--accent-4));
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost{
  background: rgba(255,255,255,0.8);
  color: var(--ink);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.ticks{
  margin: 14px 0 0;
  padding-left: 18px;
  font-weight: 650;
  color: var(--muted);
}
.ticks li{ margin: 5px 0; }

/* Hero art card */
.hero__art{
  position: relative;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-md);
  overflow:hidden;
}

.hero__icon{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.92);
  transform: none;
  opacity: 0.98;
}

/* Softer decorative shapes */
.shape{
  position:absolute;
  border: 1px solid rgba(31,35,40,0.10);
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(0.2px);
}
.shape--a{ width: 120px; height: 120px; background: rgba(154,167,161,0.35); top: 22px; left: 18px; }
.shape--b{ width: 160px; height: 160px; background: rgba(183,155,140,0.30); bottom: -36px; right: 16px; }
.shape--c{ width: 90px; height: 90px; background: rgba(139,143,166,0.28); top: 150px; right: 110px; }

/* Sections */
.section{
  padding: 46px 0;
}

.section--alt{
  background: linear-gradient(180deg, rgba(241,241,238,0.9), rgba(246,246,244,0.9));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2{
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.2px;
  font-weight: 850;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 850;
}
.card p{ margin:0; font-weight: 600; color: var(--muted); }

/* Banner */
.banner{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  font-weight: 650;
  color: var(--muted);
}
.banner strong{ color: var(--ink); font-weight: 800; }
.mini{ font-weight: 800; color: var(--ink); }

/* Split + poster */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  font-weight: 650;
  color: var(--muted);
}
.bullets li{ margin: 8px 0; }

.poster{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  position: relative;
  overflow:hidden;
}

.poster::before{
  content:"";
  position:absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  background: rgba(154,167,161,0.22);
  border: 1px solid rgba(31,35,40,0.08);
  border-radius: 999px;
}

.poster::after{
  content:"";
  position:absolute;
  bottom: -90px; right: -90px;
  width: 260px; height: 260px;
  background: rgba(183,155,140,0.18);
  border: 1px solid rgba(31,35,40,0.08);
  border-radius: 999px;
}

.poster__title{
  font-weight: 850;
  font-size: 16px;
  position: relative;
  color: var(--ink);
}
.poster__line{
  font-weight: 900;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.6px;
  margin-top: 10px;
  position: relative;
  color: var(--ink);
}
.poster__footer{
  margin-top: 16px;
  font-weight: 750;
  position: relative;
  color: var(--muted);
}

/* Contact */
.contactCard{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contactCard > div{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.contactCard__label{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted);
}

.contactCard__value{
  margin-top: 6px;
  font-weight: 700;
  color: var(--ink);
}

/* Footer */
.foot{
  margin-top: 22px;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  font-weight: 650;
  color: var(--muted);
}

.foot__dot{
  width: 8px; height: 8px;
  border-radius: 3px;
  background: linear-gradient(145deg, var(--accent-2), var(--accent-4));
  display:inline-block;
  box-shadow: 0 2px 8px rgba(16,24,40,0.10);
}

/* Responsive */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  h1{ font-size: 38px; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contactCard{ grid-template-columns: 1fr; }
  .hero__art{ min-height: 320px; }
}

