
/* ===============================
   ArthurV2 Refined Styles
   Ratios: 60 (blue) / 30 (white) / 10 (gold)
   =============================== */
:root {
  --arthur-blue: #192537;
  --arthur-white: #E9E9E9;
  --arthur-gold: #B09E80;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--arthur-blue); color: var(--arthur-white); font-family: 'Cinzel', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Navbar (constant across pages) */
.navbar{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:12px 20px; background: var(--arthur-blue);
  border-bottom:1px solid rgba(233,233,233,0.12); position:sticky; top:0; z-index:1000;
  min-height: 92px;
}
.brand{display:flex; align-items:center; gap:10px; min-width:260px; flex:0 0 auto}
.brand .logo { width: 30px; height: 30px; flex: 0 0 30px; }
.brand .wordmark { font-weight: 800; letter-spacing: 2px; display: inline-flex; gap: 8px; align-items: baseline; }
.brand .wordmark .industries { color: var(--arthur-gold); }

.navlinks{display:flex; align-items:center; gap:18px; font-weight:700; flex:1 1 auto; justify-content:center}
.navlinks a { opacity: .9; position: relative; }
.navlinks a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--arthur-gold);
  transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.navlinks a:hover::after, .navlinks a.active::after { transform: scaleX(1); }

.actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(233,233,233,0.06); border: 1px solid rgba(233,233,233,0.12);
  transition: transform .12s ease, background .12s ease;
}
.icon-btn:hover { transform: translateY(-1px); background: rgba(233,233,233,0.12); }
.icon-btn svg { width: 20px; height: 20px; }

/* Hero */
.hero {
  padding: 86px 22px; text-align: center; background:
    linear-gradient(180deg, rgba(233,233,233,0.06), rgba(25,37,55,0));
}
.hero h1 { font-size: 44px; margin: 0 0 12px; color: var(--arthur-gold); }
.hero p { font-size: 18px; opacity: .95; max-width: 820px; margin: 0 auto; }

/* Layout */
.container { max-width: 1100px; margin: 32px auto; padding: 0 22px; }

.section-white { background: var(--arthur-white); color: var(--arthur-blue); border-top: 4px solid var(--arthur-gold); }
.section-pad { padding: 36px 22px; }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.card-white {
  background: var(--arthur-white); color: var(--arthur-blue);
  border: 1px solid rgba(25,37,55,0.12); border-radius: 16px; padding: 18px;
}
.card-white h3 { margin: 6px 0 6px; }
.divider-gold { height: 2px; background: var(--arthur-gold); opacity: .7; margin: 10px 0 14px; }

/* Buttons */
.btn-gold {
  display: inline-block; padding: 12px 16px; border-radius: 12px;
  background: var(--arthur-gold); color: var(--arthur-blue);
  font-weight: 800; border: 1px solid rgba(25,37,55,0.15);
  transition: transform .12s ease, filter .12s ease;
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Footer */
.footer { text-align: center; opacity: .85; padding: 40px 0; font-size: 14px; border-top: 1px solid rgba(233,233,233,0.12); }

/* Floating Arthur Assistant */
.assistant-fab {
  position: fixed; right: 20px; bottom: 20px; width: 54px; height: 54px; border-radius: 16px;
  background: var(--arthur-gold); color: var(--arthur-blue);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center; font-weight: 900; cursor: pointer; z-index: 1200;
}
.assistant-panel {
  position: fixed; right: 20px; bottom: 84px; width: 340px; max-height: 70vh;
  display: none; flex-direction: column; overflow: hidden; z-index: 1200;
  background: var(--arthur-white); color: var(--arthur-blue);
  border: 1px solid rgba(25,37,55,0.15); border-radius: 16px;
}
.assistant-header {
  padding: 12px 14px; background: var(--arthur-blue); color: var(--arthur-white);
  display: flex; align-items: center; justify-content: space-between;
}
.assistant-body { padding: 12px; overflow-y: auto; height: 300px; }
.assistant-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(25,37,55,0.15); }
.assistant-input input {
  flex: 1; padding: 10px; border-radius: 10px; border: 1px solid rgba(25,37,55,0.2);
}
.assistant-input button { padding: 10px 14px; border-radius: 10px; border: 0; background: var(--arthur-gold); color: var(--arthur-blue); font-weight: 800; }
.assistant-msg { padding: 8px 10px; margin: 6px 0; border-radius: 10px; font-size: 14px; }
.assistant-msg.user { background: rgba(25,37,55,0.06); }
.assistant-msg.bot { background: rgba(176,158,128,0.18); }

/* responsive logo guard */
@media (max-width: 480px){
  .brand .logo{width:260px;height:auto;display:block}
}

img.logo{max-height:none !important}


}


}

img.logo{max-height:none !important}

@media (max-width: 600px){
  .brand .logo{width:260px;height:auto;display:block}
}

.actions{display:flex; align-items:center; gap:10px}
.icon-btn{display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:12px; background: rgba(233,233,233,0.06); border:1px solid rgba(233,233,233,0.12)}
.icon-btn svg{width:20px;height:20px}

.menu-toggle{display:none; align-items:center; justify-content:center; width:44px; height:44px; border-radius:12px;
  background: rgba(233,233,233,0.08); border:1px solid rgba(233,233,233,0.15); color: var(--arthur-white);}
.menu-toggle svg{width:22px; height:22px}

@media (max-width: 820px){
  .brand{min-width:180px}
  .brand .logo{width:180px;height:auto}
  .navlinks{display:none; position: fixed; top: 92px; left: 0; right: 0; background: var(--arthur-blue);
    flex-direction: column; gap:14px; padding: 16px 18px; border-top: 1px solid rgba(233,233,233,0.12); z-index: 999;}
  .navlinks.open{display:flex}
  .menu-toggle{display:inline-flex}
}
