/* ===========================================================
   Vineesha — Organic Growth Advisor
   Light theme · palette ref: wearebranch.com
   =========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap");

:root {
  --bg: #f6f6f2;        /* warm cream */
  --surface: #fefefe;   /* card white */
  --text: #212121;      /* near-black */
  --muted: #555555;     /* muted gray */
  --orange: #ff5600;    /* vivid orange */
  --burnt: #ce5e31;     /* burnt orange */
  --coral: #f27553;     /* coral */
  --peach: #f1cab9;     /* peach */
  --line: rgba(0,0,0,0.08);
  --grad: linear-gradient(180deg, #ff5600 0%, #f27553 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- shared utilities ---------- */
.container { width: 100%; max-width: 1536px; margin: 0 auto; }

.section-pad { padding: 6rem 1.5rem; }
@media (min-width: 768px)  { .section-pad { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .section-pad { padding: 6rem 6rem; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  padding: 0.85rem 2.5rem;
  transition: gap 0.25s ease, filter 0.25s ease;
}
.btn:hover { gap: 1.5rem; filter: brightness(1.05); }
.btn svg { width: 16px; height: 16px; }

.btn--sm {
  letter-spacing: 0.4em;
  font-size: 0.88rem;
  padding: 0.8rem 2.5rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 0.8rem;
  transition: gap 0.25s ease, color 0.25s ease;
}
.arrow-link:hover { gap: 1.5rem; color: var(--orange); }
.arrow-link svg { width: 18px; height: 12px; }

.glass {
  background: var(--surface);
  border: 1px solid var(--line);
}

.outline-text {
  -webkit-text-stroke: 0;
  color: var(--burnt);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.nav-link { transition: color 0.3s ease; }
.nav-link:hover { color: var(--orange); }

/* ---------- header ---------- */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: transparent;
}
@media (min-width: 768px)  { .header { padding: 1.5rem 3rem; } }
@media (min-width: 1024px) { .header { padding: 1.5rem 6rem; } }

.nav {
  display: none;
  gap: 2rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}
@media (min-width: 768px) { .nav { display: flex; } }
.nav a.is-active { color: var(--orange); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bigtitle {
  position: absolute;
  top: -3.75rem;
  left: 10px;
  right: 10px;
  text-align: center;
  pointer-events: none;
  user-select: none;
  font-size: 17vw;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  padding: calc(17vw - 4.5rem) 1.5rem 0;
  flex: 1;
}
@media (min-width: 768px)  { .hero__grid { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1fr; padding-left: 6rem; padding-right: 6rem; align-items: stretch; } }

.hero__copy { max-width: 36rem; }
@media (min-width: 1024px) { .hero__copy { align-self: center; } }
.hero__copy h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--burnt);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__copy p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .hero__media { margin-top: 0; } }
.hero__media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 2;
  pointer-events: none;
}
.hero__media img {
  width: 100%;
  max-width: 46rem;
  object-fit: contain;
  object-position: bottom;
  mix-blend-mode: multiply;
}

.explore {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1280px) { .explore { display: flex; } }
.explore span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--burnt);
  text-transform: uppercase;
}
.explore .line {
  width: 1px;
  height: 6rem;
  background: linear-gradient(180deg, var(--burnt), transparent);
}

/* ---------- logo wall ---------- */
.logos {
  width: 100%;
  padding: 3rem 1.5rem 3.5rem;
  position: relative;
  z-index: 20;
  background: linear-gradient(to bottom, transparent 0%, rgba(241,202,185,0.45) 50%, transparent 100%);
}
@media (min-width: 1024px) { .logos { margin-top: -16vh; } }
@media (min-width: 768px) { .logos { padding: 3rem 6rem 3.5rem; } }
.logos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px)  { .logos__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logos__grid { grid-template-columns: repeat(6, 1fr); } }
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 1; }
.logo img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.55;
}

/* ---------- services / speaking ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  padding: 2.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
}
.card h2 {
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.card p { color: var(--muted); max-width: 24rem; }
.card .arrow-link { align-self: flex-end; margin-top: 2rem; }
.cards .card:first-child {
  background: linear-gradient(to top right, var(--peach) 0%, #faf1ea 60%, var(--surface) 100%);
}
.cards .card:last-child {
  background: linear-gradient(to top right, #e8e8eb 0%, #f3f3f5 60%, var(--surface) 100%);
}

/* ---------- about ---------- */
.about {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(241,202,185,0.6) 35%, rgba(241,202,185,0.6) 65%, var(--bg) 100%);
}
@media (min-width: 768px)  { .about { padding: 7rem 3rem; } }
@media (min-width: 1024px) { .about { padding: 8rem 6rem; } }
.about__inner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}
.about__copy { max-width: 46rem; text-align: center; }
.about__copy h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.about__copy p {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ---------- testimonials ---------- */
.tgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .tgrid { grid-template-columns: 1fr 1fr; } }
.tcard {
  padding: 5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid var(--line);
}
.tcard__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--coral);
  position: absolute;
  top: -1rem;
  left: 2.5rem;
}
.tcard p {
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}
.tcard__person { display: flex; align-items: center; gap: 1.25rem; }
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 2px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text);
  background: var(--peach);
  flex-shrink: 0;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.tcard__person h4 {
  color: var(--burnt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.tcard__person .role {
  font-size: 0.85rem;
  color: var(--muted);
}
.tcard-actions { display: flex; justify-content: flex-end; }
.tgrid .tcard:first-child {
  background: linear-gradient(to top right, var(--peach) 0%, #faf1ea 60%, var(--surface) 100%);
}
.tgrid .tcard:last-child {
  background: linear-gradient(to top right, #e8e8eb 0%, #f3f3f5 60%, var(--surface) 100%);
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  padding: 4rem 1.5rem 1.75rem;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 25%),
    repeating-linear-gradient(to right, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 1px, transparent 1px, transparent 4px),
    radial-gradient(ellipse 65% 60% at 95% 112%, rgba(255,86,0,0.35) 0%, rgba(242,117,83,0.18) 38%, transparent 62%),
    radial-gradient(ellipse 75% 65% at 4% 118%, rgba(241,202,185,0.7) 0%, transparent 60%),
    linear-gradient(to bottom right, #f6f6f2 0%, #f4e7df 45%, #f8c9b3 100%);
}
@media (min-width: 768px)  { .footer { padding: 4rem 3rem 1.75rem; } }
@media (min-width: 1024px) { .footer { padding: 4.5rem 6rem 1.75rem; } }

.footer__inner { position: relative; z-index: 10; }
.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.footer h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.footer .blurb { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 2rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.9rem; font-size: 0.95rem; color: var(--text); }

.footer__bigtitle {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 2rem;
  user-select: none;
  pointer-events: none;
}
.footer__bigtitle .outline-text { font-size: 17vw; opacity: 0.85; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  position: relative;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom a { color: var(--burnt); }
.footer__bottom a:hover { color: var(--orange); }
.footer__bottom .credit { color: var(--burnt); }
