/* ============================================================
   Local Conference Solutions — design system
   Palette sampled from the May 2026 rebrand: ink black, brand
   taupe, warm greige surfaces. Poppins headings, Inter body.
   ============================================================ */

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --ink: #1c1b19;
  --ink-soft: #45413a;
  --ink-mute: #6d675d;
  --paper: #faf8f4;
  --sand: #f1ece3;
  --stone: #d8ccbc;
  --taupe: #a0906f;
  --taupe-deep: #7a6a4c;
  --line: #e2dbcf;
  --white: #ffffff;
  --whatsapp: #1faa53;
  --error: #b3341f;
  --ok: #2a6a4a;

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1160px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgba(28, 27, 25, 0.05), 0 8px 28px rgba(28, 27, 25, 0.08);
  --shadow-lift: 0 2px 4px rgba(28, 27, 25, 0.06), 0 14px 40px rgba(28, 27, 25, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--taupe-deep); text-underline-offset: 2px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--taupe); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }
h4 { font-size: 1.02rem; font-weight: 600; }
p { margin: 0 0 1em; max-width: 68ch; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 6px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--sand { background: var(--sand); }
.section--stone { background: var(--stone); }
.section--ink { background: var(--ink); color: #efe9de; }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: #d9d2c4; }
.section--tight { padding: 48px 0; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin: 0 0 14px;
}
.section--ink .eyebrow { color: var(--taupe); }
.lede { font-size: 1.13rem; color: var(--ink-soft); max-width: 62ch; }

/* ---- header ------------------------------------------------ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.topbar {
  background: var(--ink); color: #e7e0d3;
  font-size: 0.82rem; padding: 7px 0;
}
.topbar .container { display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap; }
.topbar a { color: #e7e0d3; text-decoration: none; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
.topbar-note { color: var(--stone); }

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .container {
  display: flex; align-items: center; gap: 26px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 168px; height: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; color: var(--ink-soft); }
.nav > ul > li > a, .nav-drop > button {
  display: inline-block; padding: 10px 13px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.94rem;
  color: var(--ink-soft); background: none; border: 0; cursor: pointer;
  border-radius: 10px;
}
.nav > ul > li > a:hover, .nav-drop > button:hover { color: var(--ink); background: var(--sand); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-drop { position: relative; }
.nav-drop > button::after {
  content: ""; display: inline-block; margin-left: 7px;
  width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.nav-drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lift); padding: 8px; margin: 0; list-style: none;
  display: none; z-index: 120;
}
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block; padding: 9px 13px; border-radius: 9px;
  font-size: 0.93rem; color: var(--ink-soft);
}
.nav-drop-menu a:hover { background: var(--sand); color: var(--ink); }
.nav-drop-menu .menu-label {
  padding: 10px 13px 4px; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute); font-weight: 600;
}

.btn {
  display: inline-block; padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: #000; color: var(--white); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--stone); color: var(--ink); }
.head-cta { white-space: nowrap; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift); padding: 12px 22px 22px;
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li > a, .nav-drop > button { display: block; width: 100%; text-align: left; font-size: 1.02rem; padding: 12px 10px; }
  .nav-drop-menu { position: static; display: none; box-shadow: none; border: 0; background: var(--sand); }
  .nav-drop.open .nav-drop-menu { display: block; }
  .brand img { width: 148px; }
}

/* ---- hero -------------------------------------------------- */
.hero { position: relative; background: var(--sand); overflow: hidden; }
.hero .container {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px; align-items: center; padding-top: 64px; padding-bottom: 72px;
}
.hero-copy .btn { margin: 6px 12px 6px 0; }
.hero-kickers { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0 0; padding: 0; list-style: none; }
.hero-kickers li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); margin: 0;
}
.hero-kickers svg { width: 17px; height: 17px; flex: none; color: var(--taupe-deep); }
.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  width: 100%; object-fit: cover; aspect-ratio: 4 / 3.4;
}
.hero-motif {
  position: absolute; z-index: 0; opacity: 0.5; pointer-events: none;
}
.hero .container > * { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 52px; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
}

/* subpage hero */
.page-hero { background: var(--sand); padding: 52px 0 46px; }
.page-hero .lede { margin-top: 6px; }
.breadcrumbs { font-size: 0.84rem; color: var(--ink-mute); margin: 0 0 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--stone); }
.breadcrumbs a { color: var(--ink-mute); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }

/* ---- cards & grids ---------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.card-body h3 a { color: inherit; text-decoration: none; }
.card-body h3 a:hover { color: var(--taupe-deep); }
.card-link {
  margin-top: auto; padding-top: 10px; font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; color: var(--taupe-deep); text-decoration: none;
}
.card-link:hover { color: var(--ink); }
.card-link::after { content: " \2192"; }

.tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.tile h3 { margin-bottom: 8px; }
.tile p { font-size: 0.96rem; color: var(--ink-soft); }
.tile svg { width: 30px; height: 30px; color: var(--taupe-deep); margin-bottom: 14px; }

/* stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--white); letter-spacing: -0.02em;
}
.stat span { font-size: 0.92rem; color: var(--stone); }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* checklist */
.checks { list-style: none; padding: 0; margin: 18px 0; }
.checks li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.checks svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--taupe-deep); }
.section--ink .checks svg { color: var(--taupe); }

/* quote strip on every page */
.quote-strip { background: var(--stone); }
.quote-strip .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: center;
  padding-top: 64px; padding-bottom: 64px;
}
@media (max-width: 900px) { .quote-strip .container { grid-template-columns: 1fr; } }
.quote-strip h2 { margin-bottom: 10px; }
.quote-strip p { color: var(--ink-soft); }
.contact-lines { list-style: none; padding: 0; margin: 20px 0 0; }
.contact-lines li { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 0.98rem; }
.contact-lines svg { width: 19px; height: 19px; color: var(--taupe-deep); flex: none; }
.contact-lines a { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }

/* ---- forms ------------------------------------------------- */
.quote-form {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: 30px; display: grid; gap: 15px;
}
.quote-form h3 { margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 5px; }
.field label { font-size: 0.86rem; font-weight: 600; font-family: var(--font-head); }
.field .req { color: var(--error); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.96rem; color: var(--ink);
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--paper); width: 100%; min-height: 44px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--taupe); box-shadow: 0 0 0 3px rgba(160, 144, 111, 0.25);
}
.field .hint { font-size: 0.8rem; color: var(--ink-mute); }
.form-note { font-size: 0.82rem; color: var(--ink-mute); margin: 0; }

/* ---- footer ------------------------------------------------ */
.site-foot { background: var(--ink); color: #cfc7b8; font-size: 0.92rem; }
.foot-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding: 60px 0 44px;
}
@media (max-width: 900px) { .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-main { grid-template-columns: 1fr; } }
.site-foot h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot a { color: #cfc7b8; text-decoration: none; }
.site-foot a:hover { color: var(--white); text-decoration: underline; }
.foot-brand img { width: 150px; margin-bottom: 16px; filter: invert(1) hue-rotate(180deg) saturate(0); opacity: 0.95; }
.foot-brand p { font-size: 0.9rem; max-width: 34ch; color: #b5ac9a; }
.foot-social { display: flex; gap: 12px; margin-top: 16px; }
.foot-social a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid #4a463d; border-radius: 50%;
}
.foot-social a:hover { border-color: var(--taupe); }
.foot-social svg { width: 19px; height: 19px; fill: #cfc7b8; }
.foot-legal {
  border-top: 1px solid #37342e; padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-size: 0.8rem; color: #948c7b;
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: grid; place-items: center; width: 58px; height: 58px;
  background: var(--whatsapp); border-radius: 50%; box-shadow: var(--shadow-lift);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- misc -------------------------------------------------- */
.tbc {
  display: inline-block; background: var(--sand); border: 1px dashed var(--taupe);
  border-radius: 8px; padding: 1px 9px; font-size: 0.83rem; color: var(--taupe-deep);
  font-weight: 600; white-space: nowrap;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table.spec { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 560px; }
table.spec th {
  text-align: left; font-family: var(--font-head); font-size: 0.78rem;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-mute);
  background: var(--sand); padding: 12px 16px; border-bottom: 1px solid var(--line);
}
table.spec td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.spec tr:last-child td { border-bottom: none; }

.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 20px; margin-bottom: 12px;
}
.faq summary {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 0; cursor: pointer; list-style: none; position: relative; padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--taupe-deep); font-weight: 500;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--ink-soft); font-size: 0.96rem; }

.logo-row {
  display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--ink-mute);
}
.logo-row span { white-space: nowrap; }

.img-round { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.two-col { columns: 2; column-gap: 44px; }
@media (max-width: 760px) { .two-col { columns: 1; } }

.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0; }
.pill {
  background: var(--sand); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 15px; font-size: 0.86rem; font-weight: 500; color: var(--ink-soft);
}

.notice {
  background: var(--sand); border-left: 4px solid var(--taupe); border-radius: 0 12px 12px 0;
  padding: 16px 20px; font-size: 0.94rem; color: var(--ink-soft); margin: 22px 0;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; }
