/* Site-wide shared styles for Sussex Growth Co. — Premium Agency */

:root {
  --ink: #0a2620;
  --ink-2: #143a30;
  --green: #1a6655;
  --green-2: #248070;
  --green-3: #e6f3ee;
  --green-light: #c8e6db;
  --cream: #f4f1ea;
  --cream-2: #ebe7dc;
  --paper: #ffffff;
  --line: #e2ddd0;
  --line-2: #d4cec0;
  --muted: #6a7d76;
  --muted-light: #9aa8a2;
  --gold: #b8914c;
  --gold-2: #d4a85a;
  --gold-light: #f5ead4;
  --red: #9a4137;
  --red-light: #f7e3e0;
  --shadow-sm: 0 2px 8px rgba(10, 38, 32, 0.05);
  --shadow: 0 8px 30px rgba(10, 38, 32, 0.07);
  --shadow-lg: 0 24px 60px rgba(10, 38, 32, 0.12);
  --shadow-xl: 0 40px 80px rgba(10, 38, 32, 0.15);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --gradient-green: linear-gradient(135deg, #1a6655 0%, #0a2620 100%);
  --gradient-gold: linear-gradient(135deg, #d4a85a 0%, #b8914c 100%);
  --gradient-cream: linear-gradient(180deg, #f4f1ea 0%, #ebe7dc 100%);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 15px/1.65 "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: #29453d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; color: var(--ink); font-weight: 600; margin: 0 0 0.5em; }
h1 { font-size: clamp(44px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 22px; line-height: 1.25; }
p { margin: 0 0 1em; color: #4a635b; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* Shell / container */
.site-shell { max-width: 1160px; margin: auto; padding: 0 24px; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 16px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-nav .site-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}
.site-brand {
  display: flex;
  align-items: center;
}
.site-brand img {
  height: 76px;
  width: auto;
  transition: var(--transition);
}
.site-brand a { color: inherit; text-decoration: none; }
.site-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.site-menu a:hover,
.site-menu a.active {
  background: var(--green-3);
  color: var(--green);
  text-decoration: none;
}
.site-menu .cta-link {
  background: var(--green);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(26, 102, 85, 0.25);
  transition: var(--transition);
}
.site-menu .cta-link:hover {
  background: var(--green-2);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 102, 85, 0.35);
}
.site-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
}

/* Hero */
.site-hero {
  padding: 80px 0 70px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.site-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-3) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.site-hero .site-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.site-hero.lead-only { grid-template-columns: 1fr; text-align: center; max-width: 820px; margin: auto; }
.site-hero .lead {
  font-size: 19px;
  color: #526961;
  max-width: 640px;
  margin: 0 0 26px;
}

/* Checks / pills */
.checks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 13px;
}
.checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-2);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.checks span::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: var(--green);
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 102, 85, 0.2);
}
.btn:hover { background: var(--green-2); transform: translateY(-2px); color: #fff; text-decoration: none; box-shadow: 0 8px 24px rgba(26, 102, 85, 0.3); }
.btn-secondary { background: var(--paper); color: var(--green); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--green-3); color: var(--ink); border-color: var(--green-light); }
.btn-gold { background: var(--gold); color: white; box-shadow: 0 4px 14px rgba(184, 145, 76, 0.25); }
.btn-gold:hover { background: #a47d3a; box-shadow: 0 8px 24px rgba(184, 145, 76, 0.35); }

/* Sections */
.site-section {
  padding: 90px 0;
  position: relative;
}
.site-section.alt { background: var(--paper); }
.site-section.dark {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}
.site-section.dark::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 102, 85, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.site-section.dark h2,
.site-section.dark h3,
.site-section.dark .eyebrow { color: #fff; }
.site-section.dark .eyebrow { color: var(--gold-2); }
.site-section.dark p { color: rgba(255,255,255,0.7); }
.site-section-header {
  max-width: 720px;
  margin: 0 0 48px;
}
.site-section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.site-section-header.center .eyebrow { padding-left: 0; }
.site-section-header.center .eyebrow::before { display: none; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.site-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.site-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.site-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-3);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.site-card h3 { font-size: 20px; margin-bottom: 10px; }
.site-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* Split panels */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img,
.split .visual {
  border-radius: var(--radius);
  background: var(--green-3);
  min-height: 320px;
}

/* Page banner */
.page-banner {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 102, 85, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner h1 { color: #fff; margin-bottom: 16px; }
.page-banner .lead { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 720px; margin: 0 auto; }

/* Content article */
.site-article {
  max-width: 740px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
}
.site-article h2 { margin-top: 46px; }
.site-article ul, .site-article ol { margin: 0 0 1.2em; padding-left: 24px; color: #4a635b; }
.site-article li { margin-bottom: 8px; }
.site-article strong { color: var(--ink); }

/* Feature list */
.feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.feature-list li:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}
.feature-list .marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* CTA panel */
.cta-panel {
  background: var(--gradient-green);
  color: #fff;
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 28px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 70px 0 32px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 102, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.footer-brand {
  margin-bottom: 14px;
}
.footer-brand img {
  height: 64px;
  width: auto;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Report top bar */
.report-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.report-bar .site-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-bar .site-brand img { height: 100px; }

/* Responsive */
@media (max-width: 920px) {
  .site-hero .site-shell,
  .split,
  .card-grid,
  .card-grid.two,
  .card-grid.four { grid-template-columns: 1fr; }
  .site-menu { display: none; }
  .site-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
  }
  .site-menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { padding: 40px 24px; }
  .site-section { padding: 60px 0; }
  .site-brand img { height: 60px; }
  .site-nav .site-shell { min-height: 80px; }
}
