:root {
  --bg: #faf9f5;
  --card: #ffffff;
  --peach: #fcf1e3;
  --ink: #3c3a40;
  --muted: #3c3a40;
  --accent: #bf8e56;
  --gold: #f2b23e;
  --line: #e3dfd4;
  --radius: 10px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Google Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

/* hand-drawn underlines */
.u-ink,
.u-accent {
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.16em;
  padding-bottom: 0.08em;
}
.u-ink {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 5px;
}
.u-accent {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 C 30 3.2, 60 6.4, 118 3.6' fill='none' stroke='%23E8963E' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ============ NAV ============ */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo svg {
  width: 34px;
  height: 34px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  opacity: 0.85;
  transition: opacity 0.15s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 C 30 3.2, 60 6.4, 118 3.6' fill='none' stroke='%233C3A40' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 4px;
  padding-bottom: 4px;
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(60, 58, 64, 0.08);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.menu-toggle {
  display: none;
}

/* ============ HERO ============ */
.hero {
  padding: 150px 56px;
  background-image: url("/assete/images/Banner_BG.svg");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
h1 {
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -5px;
}
.hero p {
  margin: 22px 0 30px;
  font-size: 18px;
  color: var(--muted);
  max-width: 44ch;
}

/* ============ VALUE CARDS ============ */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 26px 0 10px;
  margin-top: -132px;
}
.vcard {
  border-radius: var(--radius);
  background: #fcf1e3;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(60, 58, 64, 0.05);
}
.vcard img {
  height: 80px;
  width: fit-content;
}
.vcard .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}
.vcard h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 10px;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #1414131a;
  margin-top: 20px;
  margin-bottom: 20px;
}
.vcard p {
  font-size: 18px;
  color: var(--muted);
}

/* ============ SECTION HEADINGS ============ */
.section {
  padding: 60px 0;
}
.service {
  background:
    radial-gradient(
      600px 340px at 5% 90%,
      rgba(148, 192, 170, 0.28),
      transparent 70%
    ),
    radial-gradient(
      600px 340px at 95% 10%,
      rgba(142, 138, 240, 0.16),
      transparent 70%
    ),
    radial-gradient(
      500px 300px at 50% 50%,
      rgba(242, 178, 62, 0.22),
      transparent 50%
    );
}

.sec-head {
  text-align: center;
  margin-bottom: 44px;
}
.sec-head img {
  height: 80px;
  margin: 0 auto 14px;
}
h2 {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 1.2;
}

/* ============ PRACTICE AREAS ============ */
.practices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pcard {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(60, 58, 64, 0.05);
}
.pcard {
  background: var(--card);
  border-radius: var(--radius);
}
.pcard:nth-child(4) {
  background: #fcf1e3;
}
.pcard:nth-child(4) .eyebrow {
  color: var(--muted);
}
.pcard:nth-child(4) .chip {
  background-color: #fff;
}
.eyebrow {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.pcard h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: -10px;
}
.pcard p {
  font-size: 16px;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chip {
  font-size: 16px;
  font-weight: 400;
  background: #ebebeb;
  border-radius: 999px;
  padding: 5px 15px;
  color: var(--ink);
}
.pcard:nth-child(2) .chip,
.pcard:nth-child(3) .chip {
  border-color: #f0e0c8;
}
.pcard .go {
  margin-top: auto;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(309deg);
}
.pcard .go:hover {
  transform: translateX(3px);
}
.pcard .go svg {
  width: 20px;
  height: 20px;
}

/* ============ WORK ============ */
.work-grid-1 {
  display: grid;
  grid-template-columns: 1.7fr 348px;
  gap: 30px;
  margin-bottom: 20px;
}
.work-grid-2 {
  display: grid;
  grid-template-columns: 348px 1.7fr;
  gap: 30px;
}
.work-grid img {
  height: 400px;
}
.work-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.work-thumb {
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.work-item.tall .work-thumb {
  aspect-ratio: auto;
  flex: 1;
  min-height: 280px;
}
.work-item h4 {
  font-size: 24px;
  font-weight: 700;
}
.work-cat {
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  margin-top: -10px;
}
.work-cat span {
  color: var(--muted);
  font-weight: 500;
  margin: 0 4px;
}
.t-website {
  background-image: url("assete/images/Work/Website.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.t-standee {
  background-image: url("assete/images/Work/Standee.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.t-social {
  background-image: url("assete/images/Work/Social-media.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex: 1;
}
.t-brochure {
  background-image: url("assete/images/Work/Brochure.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ============ STATS ============ */
.stats {
  border-radius: 26px;
  padding: 60px 0px;
}
.stats h2 {
  text-align: left;
  margin-bottom: 36px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.stat .num {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 60px;
}
.stat .num em {
  font-style: normal;
  color: var(--accent);
}
.stat p {
  font-size: 16px;
  color: var(--muted);
  max-width: 32ch;
  margin-top: 10px;
}

/* ============ CTA ============ */
.cta {
  padding: 60px 0;
  text-align: center;
  background-image: url("assete/images/Banner_BG.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.cta .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
}
.cta h2 {
  margin-bottom: 34px;
}
.Growth_email {
  margin: auto;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: #fff;
  padding: 30px 0;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot .logo {
  color: #fff;
}
.foot-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}
.foot-links a {
  opacity: 0.85;
}
.foot-links a:hover {
  opacity: 1;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-width: 420px;
    margin: 0 auto;
  }
  .cards3 {
    grid-template-columns: 1fr;
  }
  .practices {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-cta {
    display: none;
  }
}
@media (max-width: 560px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    padding: 40px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto;
  }
}
