/* ===== TOKENS ===== */
:root {
  --charcoal: #353535;
  --charcoal-soft: #3f3f3f;
  --accent: #f15f4e;
  --accent-dark: #d94b3b;
  --grey: #cdcfce;
  --grey-light: #f4f4f3;
  --white: #ffffff;
  --ink: #2a2a2a;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { border-color: var(--grey); color: var(--white); background: transparent; }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn--sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.btn--full { width: 100%; text-align: center; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(53,53,53,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.nav__logo { height: 56px; width: auto; }
.nav__name { color: var(--white); font-family: var(--serif); font-size: 1.15rem; }
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a { color: var(--grey); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--white); }

/* ===== HERO ===== */
.hero {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
}
.hero__text h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); margin-bottom: 1.5rem; }
.hero__lead { font-size: 1.12rem; color: var(--grey); max-width: 32rem; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hero__note { font-size: 0.86rem; color: #9a9a9a; }
.hero__image img {
  border-radius: 3px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero { background: var(--charcoal); }
body { background: var(--charcoal); }

/* ===== PROOF BAR ===== */
.proof {
  background: var(--accent);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof__item {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.proof__item:last-child { border-right: none; }
.proof__num { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 700; }
.proof__label { display: block; font-size: 0.8rem; opacity: 0.92; margin-top: 0.2rem; }

/* ===== SECTION HEADS ===== */
.section-head { max-width: 44rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.section-head--light .eyebrow { color: var(--accent); }
.section-head--light h2 { color: var(--white); }
.section-sub { color: #6b6b6b; margin-top: 1rem; font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad);
}
.about__image img { border-radius: 3px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about__text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 1.5rem; }
.about__text p { margin-bottom: 1.1rem; color: #444; }
.about__values { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about__values li {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--charcoal);
  padding-left: 1.4rem; position: relative;
}
.about__values li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 0.55rem; height: 0.55rem; background: var(--accent); border-radius: 50%; }

/* ===== SERVICES ===== */
.services { background: var(--grey-light); padding: clamp(3.5rem, 7vw, 6rem) var(--pad); }
.services__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: 3px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.service-card p { color: #555; margin-bottom: 0.8rem; }
.service-card__stat {
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--charcoal);
  padding: 0.5rem 0 0.7rem; margin-bottom: 0.6rem; border-bottom: 1px solid var(--grey);
}
.service-card__for { font-size: 0.9rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 0; }

/* ===== VIDEO ===== */
.video { background: var(--charcoal); padding: clamp(3.5rem, 7vw, 6rem) var(--pad) clamp(3.5rem, 7vw, 5rem); }
.section-sub--light { color: var(--grey); }
.video__frame {
  max-width: 860px; margin: 0 auto;
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== APPROACH ===== */
.approach { background: var(--charcoal); color: var(--white); padding: clamp(3.5rem, 7vw, 6rem) var(--pad); }
.approach__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.approach__item h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.7rem; }
.approach__item p { color: var(--grey); font-size: 0.95rem; }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); padding: clamp(3.5rem, 7vw, 6rem) var(--pad); }
.badges { max-width: var(--max); margin: 0 auto 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.badge {
  background: var(--grey-light); border: 1px solid var(--grey);
  border-radius: 100px; padding: 0.6rem 1.3rem; font-size: 0.85rem; font-weight: 600; color: var(--charcoal);
}
.reviews__links { max-width: 620px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.review-link {
  background: var(--white); border: 1.5px solid var(--grey); border-radius: 4px;
  padding: 1.8rem 1rem; text-align: center; transition: border-color 0.2s, transform 0.15s;
}
.review-link:hover { border-color: var(--accent); transform: translateY(-3px); }
.review-link__stars { display: block; color: var(--accent); font-size: 1.1rem; letter-spacing: 0.1em; }
.review-link__count { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin: 0.4rem 0 0.1rem; }
.review-link__source { display: block; font-size: 0.85rem; color: #777; }

/* ===== CONTACT ===== */
.contact {
  background: var(--charcoal); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6rem) var(--pad);
}
.contact__intro h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 1.2rem; }
.contact__intro p { color: var(--grey); margin-bottom: 2rem; }
.contact__methods { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact__methods li { display: flex; flex-direction: column; border-left: 2px solid var(--accent); padding-left: 1rem; }
.contact__methods span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: #9a9a9a; }
.contact__methods a { color: var(--white); font-size: 1.05rem; font-weight: 500; }
.contact__methods a:hover { color: var(--accent); }

.contact__form {
  background: var(--charcoal-soft); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--grey); font-weight: 600; }
.field .opt { color: #888; font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--charcoal); border: 1px solid rgba(255,255,255,0.14); border-radius: 3px;
  padding: 0.75rem 0.85rem; color: var(--white); font-family: var(--sans); font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.contact__form .btn { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; font-size: 0.82rem; color: #9a9a9a; text-align: center; margin: 0; }
.hidden-field { display: none; }

/* ===== FOOTER ===== */
.footer { background: #2b2b2b; color: var(--grey); }
.footer__inner {
  max-width: var(--max); margin: 0 auto; padding: 2.5rem var(--pad) 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.footer__logo { height: 46px; width: auto; opacity: 0.9; }
.footer__tag { font-size: 0.85rem; max-width: 20rem; }
.footer__social { display: flex; gap: 1.5rem; }
.footer__social a { font-size: 0.9rem; }
.footer__social a:hover { color: var(--accent); }
.footer__legal { border-top: 1px solid rgba(255,255,255,0.08); }
.footer__legal p { max-width: var(--max); margin: 0 auto; padding: 1.2rem var(--pad); font-size: 0.78rem; color: #7d7d7d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__image { order: -1; max-width: 340px; }
  .proof { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(2) { border-right: none; }
  .proof__item:nth-child(1), .proof__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .about { grid-template-columns: 1fr; }
  .about__image { max-width: 360px; }
  .services__grid { grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr 1fr; }
  .reviews__links { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .proof { grid-template-columns: 1fr; }
  .proof__item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .approach__grid { grid-template-columns: 1fr; }
}
