: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: 15px;
  font-weight: 400;
}

.nav-links a {
  opacity: 0.85;
  transition: opacity 0.15s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  text-decoration: underline;
  font-weight: 900;
}

.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: -2px;
}

.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: -2px;
  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);
}
.practices-1 .pcard h3{
  margin-top: 0;
}
/* 
.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: 30px;
}

.stat .num {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -2px;
  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: 20px;
  font-size: 13px;
  font-weight: 400;
}

.foot-links a {
  opacity: 0.85;
}

.foot-links a:hover {
  opacity: 1;
}

/* Pure CSS Mobile Menu Checkbox */
.menu-cb {
  display: none;
}

body:has(.menu-cb:checked) {
  overflow: hidden;
}

@media (max-width: 920px) {
  .wrap {
    padding: 0 24px;
  }

  header {
    background-color: rgba(250, 249, 245, 0.95);
    border-bottom: 1px solid rgba(60, 58, 64, 0.08);
  }

  .logo,
  .menu-toggle {
    position: relative;
    z-index: 50;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle .icon-close {
    display: none;
  }

  .menu-cb:checked~.menu-toggle .icon-hamburger {
    display: none;
  }

  .menu-cb:checked~.menu-toggle .icon-close {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .menu-cb:checked~.nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg);
    padding: 120px 24px 40px;
    gap: 32px;
    z-index: 45;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  .menu-cb:checked~.nav-links a {
    font-size: 24px;
    font-weight: 600;
    opacity: 1;
  }

  .menu-cb:checked~.nav-links .btn {
    font-size: 18px;
    padding: 14px 28px;
    margin-top: 10px;
  }

  .hero {
    padding: 110px 24px 60px;
  }

  h1 {
    font-size: 46px;
    line-height: 50px;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 16px;
    margin: 16px 0 24px;
  }

  h2 {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -1.5px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-art {
    max-width: 420px;
    margin: 0 auto;
  }

  .cards3 {
    grid-template-columns: 1fr;
    margin-top: -60px;
    gap: 20px;
  }

  .practices {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .cta {
    padding: 30px 0px;
  }

  .hww-lede {
    width: 100% !important;
  }

  .nav {
    padding: 16px !important;
  }

  .wrap {
    padding: 0 16px;
  }

  h1 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1px;
  }

  h2,
  h2.hww-title {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -2px;
    font-weight: 400;
  }

  .hero {
    padding: 120px 10px;
  }

  .pcard h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-top: -10px;
  }

  .cards3 {
    margin-top: -60px;
  }

  .vcard h3 {
    font-size: 22px;
  }

  .vcard p {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }


  .service {
    padding-bottom: 0px !important;
  }

  .hww-section {
    padding-top: 0px !important;
  }


}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto;
  }
}

.hww-section {
  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%);
}

.hww-wrap {
  margin: 0 auto;
}

.hww-eyebrow {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}

h2.hww-title {
  font-weight: 400;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1;
  margin-bottom: 24px;
}

h2.hww-title .hww-u {
  position: relative;
  display: inline-block;
}

h2.hww-title .hww-u::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 5px;
  background: var(--gold);
  border-radius: 2px;
}

.hww-lede {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink-soft);
  text-align: center;
  width: 85%;
  margin: auto;
  padding-bottom: 44px;
}

/* 3-Column Grid Layout */
.hww-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Styling */
.hww-item {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(51, 50, 45, 0.02);
  /* Subtle card depth */
}

.hww-idx {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
}

.hww-item-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.hww-item-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
}

/* Responsive Breakpoints */
@media(max-width: 1024px) {
  .hww-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }

  h2.hww-title {
    font-size: 44px;
  }
}

@media(max-width: 680px) {
  .hww-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    gap: 16px;
  }

  .hww-wrap {
    padding: 60px 16px 72px;
  }

  .hww-item {
    padding: 20px;
  }

  h2.hww-title {
    font-size: 36px;
  }

  .hww-item-title {
    line-height: 1.2;
  }

  .hww-section {
    padding-bottom: 0px;
  }
}

/* ============ PAGE: AI GTM ============ */
.page-ai-gtm .hero {
  padding: 110px;
}

.page-ai-gtm h1 {
  font-size: 50px;
  line-height: 50px;
}

.page-ai-gtm .practices {
  gap: 30px;
  margin-top: -132px;
}

.page-ai-gtm .pcard {
  position: relative;
}

.page-ai-gtm .pcard p {
  line-height: 22px;
}

.page-ai-gtm .pcard .tag {
  position: absolute;
  top: 0;
  right: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #5a5860;
  background: #ebebeb;
  border-radius: 0 0 10px 10px;
  padding: 6px 14px;
  letter-spacing: 0;
}

.page-ai-gtm .pcard .icon {
  width: 70px;
  height: 70px;
}

.page-ai-gtm .pcard .icon svg {
  width: 100%;
  height: 100%;
}

.page-ai-gtm .pcard .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-ai-gtm .pcard .field .eyebrow {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}

@media (max-width: 920px) {
  .page-ai-gtm .practices {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .page-ai-gtm .hero {
    padding: 120px 10px;
    padding-bottom: 0;
  }

  .page-ai-gtm h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .page-ai-gtm h2,
  .page-ai-gtm h2.hww-title {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -1px;
  }

  .page-ai-gtm .pcard {
    padding: 20px !important;
  }

  .page-ai-gtm .practices {
    gap: 20px;
  }

  .page-ai-gtm .stats {
    padding: 40px 28px;
  }
  .stat .num{
    font-size: 40px;
    line-height: 40px;
  }

}

/* ============ PAGE: LEGAL (Privacy & Terms) ============ */
.page-legal .practices {
  display: block;
  gap: 30px;
  margin-top: -132px;
  background-color: #fff;
  padding: 20px;
}

.page-legal .pcard {
  padding: 25px 30px;
  box-shadow: none;
  position: relative;
}

.page-legal h2 {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: -1px;
}

.page-legal .bullet-nm-all {
  margin-left: 30px;
  font-size: 16px;
  line-height: 22px;
}

.page-legal .pcard h3 {
  line-height: 1.2;
}

@media (max-width: 920px) {
  .page-legal .practices {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .page-legal h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .page-legal h2,
  .page-legal h2.hww-title {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -1px;
  }

  .page-legal .practices {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .page-legal .pcard {
    padding: 0 !important;
  }

  .page-legal .stats-section {
    padding: 0 !important;
  }

  .page-legal .stats {
    padding: 40px 28px;
  }
}