/* LG Digital Marketing LLC — clean, minimal, orange + grey */

:root {
  --orange: #F26522;
  --orange-dark: #D9530F;
  --orange-soft: #FFF1E9;
  --ink: #17181A;
  --grey-900: #1F2124;
  --grey-700: #3D4149;
  --grey-500: #6B7280;
  --grey-300: #D5D8DD;
  --grey-100: #F4F5F7;
  --grey-50: #FAFBFC;
  --white: #FFFFFF;
  --border: #E7E9ED;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(23, 24, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(23, 24, 26, 0.08);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

a { color: inherit; text-decoration: none; }

.accent { color: var(--orange); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--grey-100); border-color: var(--grey-300); color: var(--ink); box-shadow: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  border-radius: 10px;
}
.brand-text { font-weight: 800; color: var(--ink); letter-spacing: 0.02em; font-size: 1.02rem; }
.brand-thin { font-weight: 500; color: var(--grey-500); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--grey-700); transition: color 0.15s ease; }
.nav a:hover { color: var(--orange); }
.nav a.btn { color: var(--white); }
.nav a.btn:hover { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 0 24px; overflow: hidden; max-height: 0; transition: max-height 0.28s ease, padding 0.28s ease; border-bottom: 1px solid transparent; }
.nav-mobile a { padding: 13px 4px; font-weight: 600; color: var(--grey-700); border-bottom: 1px solid var(--border); }
.nav-mobile a.btn { margin: 14px 0; border: 1px solid var(--orange); color: var(--white); justify-content: center; }
.nav-mobile.open { max-height: 340px; padding: 8px 24px 18px; border-bottom-color: var(--border); }

/* Hero */
.hero {
  background:
    radial-gradient(1000px 420px at 78% -8%, var(--orange-soft) 0%, rgba(255,241,233,0) 62%),
    linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
  padding: clamp(64px, 11vw, 120px) 0 clamp(56px, 9vw, 104px);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 820px; }
.hero h1 { margin-bottom: 22px; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--grey-500); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Sections */
.section { padding: clamp(64px, 10vw, 108px) 0; }
.section-alt { background: var(--grey-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 620px; margin-bottom: 52px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--grey-300); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--orange-soft);
  color: var(--orange);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey-500); font-size: 0.98rem; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.about-copy p { color: var(--grey-500); margin-top: 16px; font-size: 1.02rem; }
.about-copy h2 { margin-bottom: 8px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.stat-num { display: block; font-size: 1.35rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.stat-label { display: block; margin-top: 6px; font-size: 0.9rem; color: var(--grey-500); }

/* Contact */
.contact-inner { max-width: 720px; text-align: center; margin: 0 auto; }
.contact-lede { color: var(--grey-500); font-size: 1.1rem; margin-top: 6px; }
.contact-card {
  margin-top: 36px;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
}
.contact-detail { display: flex; flex-direction: column; text-align: left; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey-500); font-weight: 700; }
.contact-value { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
a.contact-value:hover { color: var(--orange); }

/* Footer */
.site-footer { background: var(--grey-900); color: var(--grey-300); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-footer .brand-text { color: var(--white); }
.site-footer .brand-thin { color: var(--grey-500); }
.footer-legal { font-size: 0.9rem; color: var(--grey-500); }

/* Responsive */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
}
@media (max-width: 520px) {
  .about-stats { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; }
  .hero-actions .btn { flex: 1; }
}
