/* True Business Times — styles.css */
/* Palette: #C1512A terracotta | #1A1A1A deep ink | #FAF7F2 off-white | #5A5550 slate | #2E7D5B green */

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

:root {
  --terracotta: #D5281F;
  --terracotta-dark: #A81C16;
  --ink: #1A1A1A;
  --off-white: #FAF7F2;
  --slate: #5A5550;
  --green: #2E7D5B;
  --white: #FFFFFF;
  --card-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 28px rgba(0,0,0,.08);
  --card-shadow-hover: 0 4px 8px rgba(0,0,0,.06), 0 20px 48px rgba(0,0,0,.14);
  --radius-card: 16px;
  --radius-btn: 10px;
  --max-w: 1200px;
  --section-py: clamp(56px, 8vw, 96px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- UTILITIES ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--off-white); }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Poppins', sans-serif;
  line-height: 1.18;
  color: var(--ink);
}

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 56ch;
  line-height: 1.65;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213,40,31,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--outline-dark:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav__logo {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}
.nav__logo-img { width: 54px; height: 54px; object-fit: contain; background: #fff; border-radius: 10px; padding: 6px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.nav__logo span { color: var(--terracotta); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a:focus {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__ctas .btn { padding: 9px 18px; font-size: .85rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,.88) 0%, rgba(26,26,26,.55) 55%, rgba(213,40,31,.18) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 80px);
  max-width: 660px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(213,40,31,.12);
  border: 1px solid rgba(213,40,31,.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }
.hero__h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--terracotta);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Trust strip */
.trust-strip {
  background: var(--terracotta);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 32px;
  border-right: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item svg { flex-shrink: 0; opacity: .85; }

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--card-shadow);
  padding: 36px 32px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(213,40,31,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { color: var(--terracotta); }
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-card__tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--terracotta);
  background: rgba(213,40,31,.07);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(213,40,31,.15);
}

/* ---------- GALLERY ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e3dd;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(26,26,26,.75));
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.why-card__num {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--terracotta);
  opacity: .18;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card__desc { font-size: .875rem; color: var(--slate); line-height: 1.6; }

/* ---------- PROCESS ---------- */
.process {
  background: var(--ink);
  color: var(--white);
}
.process .section__title { color: var(--white); }
.process .section__sub { color: rgba(255,255,255,.6); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 56px;
  position: relative;
}
.process-step {
  padding: 40px 32px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  transition: background .2s;
}
.process-step:hover { background: rgba(213,40,31,.12); }
.process-step__num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Sora', 'Poppins', sans-serif;
  color: var(--terracotta);
  opacity: .35;
  line-height: 1;
  margin-bottom: 20px;
}
.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step__desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ---------- ABOUT ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e3dd;
}
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: 20px;
  z-index: -1;
}
.about__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.about__content .section__title { margin-top: 8px; }
.about__text { font-size: 1rem; color: var(--slate); line-height: 1.75; margin-bottom: 16px; }
.about__founders {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.about__founder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
}
.about__founder-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__founder-icon svg { color: var(--white); }
.about__founder-name { font-weight: 700; font-size: .9rem; }
.about__founder-role { font-size: .78rem; color: var(--slate); }

/* ---------- CONTACT ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact__info-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(213,40,31,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail-icon svg { color: var(--terracotta); }
.contact__detail-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); margin-bottom: 2px; }
.contact__detail-val { font-size: .95rem; font-weight: 500; color: var(--ink); }
.contact__detail-val a { color: var(--ink); text-decoration: none; }
.contact__detail-val a:hover { color: var(--terracotta); text-decoration: underline; }
.contact__map {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--card-shadow);
  padding: 40px 36px;
}
.contact__form-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.contact__form-note { font-size: .9rem; color: var(--slate); margin-bottom: 22px; line-height: 1.5; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(213,40,31,.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form__submit { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-name {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand-tagline { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; max-width: 32ch; margin-bottom: 20px; }
.footer__contact-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 8px; }
.footer__contact-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer__contact-item a:hover { color: var(--terracotta); }
.footer__col-title { font-family: 'Sora', 'Poppins', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: var(--terracotta); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer__bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer__bottom a:hover { color: var(--terracotta); }

/* ---------- THANK YOU PAGE ---------- */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 40px 20px;
}
.thankyou-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--card-shadow);
  padding: 56px 48px;
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(46,125,91,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.thankyou-card p { color: var(--slate); line-height: 1.65; margin-bottom: 28px; }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__accent { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav__links, .nav__ctas { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { flex-wrap: wrap; }
  .nav--open .nav__inner { height: auto; padding-bottom: 8px; }
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8px 0 12px;
    gap: 2px;
    order: 3;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav--open .nav__links a {
    padding: 13px 12px;
    font-size: 1rem;
    text-align: center;
  }
  .nav--open .nav__ctas {
    display: flex;
    width: 100%;
    padding: 0 0 16px;
    order: 4;
  }
  .trust-strip__item {
    padding: 6px 16px;
    font-size: .78rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    width: 50%;
    justify-content: center;
  }
  .trust-strip__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .trust-strip__item:last-child, .trust-strip__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .about__founders { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact__form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-strip__item { width: 100%; border-right: none; }
}

/* Focus states for a11y */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--terracotta);
  outline-offset: 3px;
}
