/* ==========================================================================
   Kishor Insights — navy, construction orange, warm paper
   Industrial and direct: hazard-stripe signature band, blueprint-grid hero,
   condensed Oswald headings over Inter body copy. No stock photography —
   the "Our Work" carousel uses hand-drawn line illustrations instead.
   ========================================================================== */

:root {
  /* Palette */
  --navy:       #14213D;
  --navy-deep:  #0B1526;
  --orange:     #F2662B;
  --orange-deep:#C8511D;

  /* Derived */
  --paper:      #FBF8F5;
  --surface:    #FFFFFF;
  --soft:       #F1EBE1;
  --ink:        #1B2436;
  --muted:      #5B667E;
  --line:       #E4E0D8;
  --on-navy:    #E9ECF5;
  --on-navy-dim:#AEB7D1;

  /* Type */
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Rhythm */
  --shell: 74rem;
  --pad:   clamp(1.25rem, 5vw, 2.5rem);
  --band:  clamp(3.5rem, 8vw, 6.5rem);
}

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

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--navy);
}

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--orange);
  color: var(--navy);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  z-index: 300;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Kickers */
.kicker {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.75rem;
}
.kicker--on-dark { color: var(--orange); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  background: var(--orange);
  color: var(--navy);
  border: 2px solid var(--orange);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.button:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }

.button--ghost {
  background: transparent;
  color: var(--on-navy);
  border-color: var(--on-navy-dim);
}
.button--ghost:hover { background: var(--on-navy); border-color: var(--on-navy); color: var(--navy); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--surface);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.brand__name em { font-style: normal; color: var(--orange-deep); }
.brand__tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.site-nav ul { display: flex; gap: 1.75rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.site-nav a:hover { color: var(--orange-deep); }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__cta:hover { background: var(--orange-deep); color: #fff; }
.site-header__cta svg { width: 16px; height: 16px; }

@media (max-width: 780px) {
  .site-nav { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233,236,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,236,245,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 10%, transparent 70%);
}

.hero__layout { position: relative; max-width: 42rem; }

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.1rem;
}

.standfirst {
  font-size: 1.08rem;
  color: var(--on-navy-dim);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.badges { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.badges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-navy);
}
.badges svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* Signature element: single hazard-stripe divider. Do not add a second one
   elsewhere on the page — see CLAUDE.md. */
.stripe-band {
  height: 16px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange),
    var(--orange) 22px,
    var(--navy) 22px,
    var(--navy) 44px
  );
}

/* ==========================================================================
   Bands / generic sections
   ========================================================================== */

.band { padding-block: var(--band); }
.band--soft { background: var(--soft); }

.band__head { max-width: 40rem; margin-bottom: 2.75rem; }
.band__head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.band__standfirst { color: var(--muted); margin-top: 0.75rem; font-size: 1.02rem; }
.band__head--on-dark h2 { color: #fff; }

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
}

.service-card__icon { width: 40px; height: 40px; color: var(--orange-deep); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Work / Carousel
   ========================================================================== */

.work {
  background: var(--navy-deep);
  padding-block: var(--band);
}

.carousel {
  position: relative;
  max-width: 52rem;
  margin-inline: auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(233,236,245,0.15);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel__slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel__slide img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.carousel__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(11,21,38,0.88), transparent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 2.5rem 1.5rem 1.1rem;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(11,21,38,0.65);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__arrow:hover { background: var(--orange); color: var(--navy); }
.carousel__arrow--prev { left: -8px; }
.carousel__arrow--next { right: -8px; }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.carousel__dots { display: flex; gap: 0.6rem; }
.carousel__dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--on-navy-dim);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.carousel__dots button[aria-selected="true"] { background: var(--orange); border-color: var(--orange); }

.carousel__play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--on-navy-dim);
  background: transparent;
  color: var(--on-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.carousel__play svg { width: 15px; height: 15px; }
.carousel__play:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 640px) {
  .carousel__arrow { display: none; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about__main h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1.2rem; }
.about__main p { color: var(--muted); margin-bottom: 1rem; max-width: 38rem; }

.motto {
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border-left: 4px solid var(--orange);
  border-radius: 0 6px 6px 0;
  max-width: 38rem;
}
.motto p {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.motto cite {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
}

.promise {
  background: var(--navy);
  color: var(--on-navy);
  border-radius: 8px;
  padding: 2rem 1.75rem;
}
.promise__title {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.promise ul { display: flex; flex-direction: column; gap: 1.5rem; }
.promise li { display: flex; gap: 1rem; align-items: flex-start; }
.promise svg { width: 24px; height: 24px; color: var(--orange); flex-shrink: 0; margin-top: 0.15rem; }
.promise h4 { font-size: 0.95rem; color: #fff; margin-bottom: 0.25rem; }
.promise p { font-size: 0.88rem; color: var(--on-navy-dim); }

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__side h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.contact__blurb { color: var(--muted); max-width: 34rem; }

.reach-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  font-style: normal;
}

.reach-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.reach-card__row:last-of-type { border-bottom: none; }
.reach-card__row svg { width: 22px; height: 22px; color: var(--orange-deep); flex-shrink: 0; margin-top: 0.1rem; }
.reach-card__row a { text-decoration: none; font-weight: 600; }
.reach-card__row a:hover { color: var(--orange-deep); }
.reach-card__row--address span { color: var(--muted); line-height: 1.5; }

.reach-card__directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--orange-deep);
  text-decoration: none;
}
.reach-card__directions svg { width: 16px; height: 16px; }
.reach-card__directions:hover { text-decoration: underline; }

@media (max-width: 780px) {
  .contact { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy-deep); color: var(--on-navy-dim); }

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3rem;
}

.site-footer__name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.site-footer__name em { font-style: normal; color: var(--orange); }
.site-footer__blurb { margin-top: 0.6rem; max-width: 22rem; font-size: 0.92rem; }

.site-footer__contact { display: flex; flex-direction: column; gap: 0.6rem; font-style: normal; font-size: 0.92rem; }
.site-footer__contact a { text-decoration: none; }
.site-footer__contact a:hover { color: var(--orange); }

.site-footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__nav a { text-decoration: none; font-size: 0.92rem; }
.site-footer__nav a:hover { color: var(--orange); }

.site-footer__legal {
  border-top: 1px solid rgba(233,236,245,0.12);
  padding-block: 1.25rem;
}
.site-footer__legal p {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
  font-size: 0.82rem;
}
.site-footer__credit { margin-top: 0.4rem; }
.site-footer__credit a { color: var(--orange); text-decoration: underline; }
.site-footer__credit a:hover { color: #fff; }

@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 1.75rem; }
}
