/* ==========================================================
   MSSV Design Studio — styles
   ========================================================== */
:root {
  --cream: #f6f1ea;
  --sand: #ebe2d6;
  --stone: #cbbfae;
  --ink: #1d1b19;
  --charcoal: #2b2825;
  --muted: #6d655c;
  /* brand palette — sampled from the MSSV logo */
  --brand-orange: #d4551e;
  --brand-blue: #8399ae;
  --brand-cream: #e7dbc5;
  --brand-grey: #4b4746;
  --accent: #c24c18;       /* logo orange, deepened for text contrast */
  --accent-dark: #a13e12;
  --accent-light: #e7dbc5; /* accent on dark backgrounds */
  --white: #fffdf9;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; color: var(--ink); }
em { font-style: italic; color: var(--accent); }

.container { width: min(1240px, 100% - 48px); margin-inline: auto; }
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section__title { font-size: clamp(2.4rem, 5vw, 4rem); }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 14px;
}
h1.eyebrow { font-family: inherit; line-height: inherit; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
  font-family: var(--sans);
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--small { padding: 11px 20px; font-size: .72rem; }
.btn--full { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s;
  color: var(--white);
}
.nav.is-scrolled {
  background: rgba(246, 241, 234, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  color: var(--ink);
  --nav-h: 70px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1; }
.logo__img { height: 46px; width: auto; transition: height .4s; }
.nav.is-scrolled .logo__img { height: 40px; }
.logo__text { display: flex; flex-direction: column; }
.logo__mark { font-family: var(--sans); font-size: 1.25rem; font-weight: 500; letter-spacing: .42em; margin-right: -.42em; }
.logo__sub { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; margin-top: 6px; opacity: .8; font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a:not(.btn) {
  text-decoration: none; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; color: inherit; }
.nav__toggle span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), top .35s; }
.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { top: 24px; }
.nav.is-open .nav__toggle span:first-child { top: 20px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,17,14,.78) 0%, rgba(20,17,14,.45) 55%, rgba(20,17,14,.2) 100%); }
.hero__content { position: relative; padding-top: var(--nav-h); }
.hero .eyebrow { color: var(--stone); }
.hero__title { font-family: var(--serif); line-height: 1.1; margin: 0; color: var(--white); font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 400; max-width: 900px; }
.hero__title em { color: var(--accent-light); }
.hero__lead { max-width: 540px; font-size: 1.1rem; color: rgba(255,255,255,.85); margin: 28px 0 40px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.6); border-radius: 20px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 2px; height: 8px; margin-left: -1px; background: var(--white); border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--white); padding: 56px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 6px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.14); }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--accent-light); }
.stat__num--text { font-size: clamp(1.7rem, 2.8vw, 2.4rem); padding: 6px 0 4px; }
.stat__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about__images { position: relative; padding: 0 12% 16% 0; }
.about__img--main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.about__img--accent {
  position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; object-fit: cover;
  border: 10px solid var(--cream); border-radius: var(--radius);
}
.about__text p { color: var(--muted); }
.about__text .section__title { margin-bottom: 28px; }
.about__list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.about__list li { position: relative; padding-left: 22px; font-weight: 500; color: var(--ink); font-size: .95rem; }
.about__list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 1px; background: var(--accent); }

/* ---------- Services ---------- */
.services { background: var(--sand); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--stone); border-left: 1px solid var(--stone); }
.service {
  padding: 44px 38px 48px;
  border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone);
  transition: background .4s;
}
.service:hover { background: var(--cream); }
.service__num { font-family: var(--serif); font-size: 1rem; color: var(--accent); letter-spacing: .1em; }
.service h3 { font-size: 1.75rem; margin: 18px 0 14px; }
.service p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Projects ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  background: none; border: 1px solid var(--stone); border-radius: 40px;
  padding: 9px 20px; font: 500 .78rem var(--sans); letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: all .3s;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; grid-auto-flow: dense; gap: 18px; }
.project { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--sand); }
.project--tall { grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,17,14,.75), transparent 55%); opacity: .85; transition: opacity .4s; }
.project figcaption { position: absolute; left: 26px; right: 26px; bottom: 22px; z-index: 1; color: var(--white); transform: translateY(6px); transition: transform .5s var(--ease); }
.project figcaption span { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent-light); }
.project figcaption h3 { color: var(--white); font-size: 1.7rem; margin-top: 4px; }
.project:hover img { transform: scale(1.06); }
.project:hover figcaption { transform: translateY(0); }
.project.is-hidden { display: none; }
.projects__more { text-align: center; margin-top: 48px; color: var(--muted); }
.projects__more a { color: var(--accent); font-weight: 600; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(15,13,11,.92);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 100%); max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox p { color: var(--white); font-family: var(--serif); font-size: 1.5rem; margin: 0; }
.lightbox button { position: absolute; top: 20px; right: 24px; background: none; border: 0; color: var(--white); font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Process ---------- */
.process { background: var(--ink); color: var(--white); }
.process .section__title { color: var(--white); }
.process em { color: var(--accent-light); }
.process__steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.step { padding: 36px 28px 0 0; border-top: 1px solid rgba(255,255,255,.18); position: relative; }
.step::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.step__num { font-family: var(--serif); color: var(--accent-light); font-size: 1rem; letter-spacing: .1em; }
.step h3 { color: var(--white); font-size: 1.6rem; margin: 10px 0 12px; }
.step p { color: rgba(255,255,255,.62); font-size: .92rem; margin: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--sand); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.contact__info > p { color: var(--muted); margin: 24px 0 0; }
.contact__details { margin: 36px 0; display: grid; gap: 24px; }
.contact__details dt { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.contact__details dd { margin: 0; color: var(--ink); font-size: 1.02rem; }
.contact__details a { text-decoration: none; }
.contact__details a:hover { color: var(--accent); }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.form { background: var(--cream); padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); display: grid; gap: 20px; box-shadow: 0 30px 60px -40px rgba(40,30,20,.4); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { display: flex; flex-direction: column; gap: 8px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.form input, .form select, .form textarea {
  font: 400 1rem var(--sans); color: var(--ink); letter-spacing: normal; text-transform: none;
  background: transparent; border: 0; border-bottom: 1px solid var(--stone); padding: 10px 0; border-radius: 0;
  transition: border-color .3s; width: 100%;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form .is-invalid { border-color: #b3462e; }
.form__note { margin: 0; font-size: .82rem; color: var(--muted); text-align: center; }

.map { margin-top: clamp(60px, 8vw, 100px); border-radius: var(--radius); overflow: hidden; height: 380px; filter: grayscale(.85) contrast(1.05); transition: filter .5s; }
.map:hover { filter: none; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo { display: block; }
.footer__logo img { height: 150px; width: auto; }
.footer__tag { margin: 18px 0 0; font-size: .88rem; }
.footer__links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.footer__links a:hover { color: var(--accent-light); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: all .3s; }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__social svg { width: 18px; height: 18px; fill: none; stroke: var(--white); stroke-width: 1.6; }
.footer__bottom p { margin: 24px 0 0; font-size: .8rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,.35);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --nav-h: 70px; }
  .nav__toggle { display: block; z-index: 2; }
  .nav__links {
    position: fixed; inset: 0; background: var(--ink); color: var(--white);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
  }
  .nav__links a:not(.btn) { font-size: 1.1rem; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
  .nav.is-open { color: var(--white); background: transparent; box-shadow: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__images { max-width: 520px; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .services__grid, .projects__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-auto-rows: 280px; }
  .project--tall { grid-row: span 1; }
  .process__steps { grid-template-columns: 1fr; row-gap: 40px; }
  .about__list, .form__row { grid-template-columns: 1fr; }
  .service { padding: 34px 26px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__scroll { display: none; }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 14px; }
  .stat { padding-left: 14px; }
  .stat__num--text { font-size: 1.45rem; }
  .hero__content { padding-bottom: 40px; }
  .map { height: 300px; }
}

/* ---------- Brand colour accents (echo the four logo blocks) ---------- */
.stat:nth-child(1) { border-left: 3px solid var(--brand-orange); }
.stat:nth-child(2) { border-left: 3px solid var(--brand-blue); }
.stat:nth-child(3) { border-left: 3px solid var(--brand-cream); }
.stat:nth-child(4) { border-left: 3px solid var(--brand-grey); }
.step:nth-child(4n+1)::before { background: var(--brand-orange); }
.step:nth-child(4n+2)::before { background: var(--brand-blue); }
.step:nth-child(4n+3)::before { background: var(--brand-cream); }
.step:nth-child(4n+4)::before { background: #8a8482; }
.service:hover .service__num { color: var(--brand-orange); }

/* ---------- Hero rating ---------- */
.hero__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; text-decoration: none; font-size: .88rem; color: rgba(255,255,255,.85); }
.hero__rating strong { color: var(--white); }
.hero__rating:hover { color: var(--white); }
.stars { color: #f4b400; letter-spacing: 2px; }
.stars--lg { font-size: 1.5rem; letter-spacing: 4px; }

/* ---------- Videos ---------- */
.videos { background: var(--ink); color: var(--white); }
.videos .section__title { color: var(--white); }
.videos em { color: var(--accent-light); }
.videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
.video {
  display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0;
  background: none; border: 0; color: inherit; text-align: left; cursor: pointer; font: inherit;
}
.video__thumb { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); background: #000; }
.video__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .4s; opacity: .9; }
.video:hover .video__thumb img { transform: scale(1.05); opacity: 1; }
.video__play {
  position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px;
  border-radius: 50%; background: rgba(212, 85, 30, .92); box-shadow: 0 10px 30px -8px rgba(0,0,0,.5);
  transition: transform .35s var(--ease), background .3s;
}
.video__play::after { content: ""; position: absolute; left: 26px; top: 21px; border-left: 16px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; }
.video:hover .video__play { transform: scale(1.1); background: var(--brand-orange); }
.video__meta { display: flex; flex-direction: column; gap: 2px; }
.video__meta span { font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }
.video__meta small { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.video:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 6px; }
.video--tall .video__thumb { aspect-ratio: 9/16; }

.latest { margin-top: clamp(60px, 8vw, 96px); padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.latest__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.latest__head h3 { color: var(--white); font-size: 1.9rem; }
.latest__head a { color: var(--accent-light); text-decoration: none; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.latest__row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(170px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.latest__row .video { scroll-snap-align: start; }
.latest__row .video__meta span { font-family: var(--sans); font-size: .85rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.latest__row .video__play { width: 46px; height: 46px; margin: -23px 0 0 -23px; }
.latest__row .video__play::after { left: 18px; top: 14px; border-left-width: 13px; border-top-width: 9px; border-bottom-width: 9px; }
.latest__row:empty { display: none; }

/* Video modal */
.vmodal { position: fixed; inset: 0; z-index: 110; background: rgba(10,9,8,.94); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.vmodal.is-open { opacity: 1; visibility: visible; }
.vmodal__frame { width: min(1100px, 100%); aspect-ratio: 16/9; background: #000; border-radius: var(--radius); overflow: hidden; }
.vmodal__frame.is-tall { width: auto; height: min(86vh, 900px); max-width: 100%; aspect-ratio: 9/16; }
.vmodal iframe { width: 100%; height: 100%; border: 0; display: block; }
.vmodal__close { position: absolute; top: 16px; right: 22px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.reviews__top { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.score { display: flex; align-items: center; gap: 20px; margin: 6px 0 30px; }
.score__num { font-family: var(--serif); font-size: clamp(4.5rem, 9vw, 6.5rem); line-height: .9; color: var(--ink); }
.score p { margin: 4px 0 0; color: var(--muted); font-size: .95rem; }
.reviews__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quotes { display: grid; gap: 18px; }
.quote { margin: 0; padding: 30px 34px; background: var(--white); border-radius: var(--radius); border-left: 3px solid var(--brand-orange); box-shadow: 0 20px 40px -32px rgba(40,30,20,.4); }
.quote:nth-child(2) { border-left-color: var(--brand-blue); }
.quote:nth-child(3) { border-left-color: var(--brand-grey); }
.quote p { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1.35; color: var(--ink); }
.quote cite { display: block; margin-top: 14px; font-style: normal; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.testimonials { margin-top: clamp(60px, 8vw, 96px); }
.testimonials__title { font-size: 2rem; margin-bottom: 24px; }
.testimonials__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.reviews .video__meta small { color: var(--muted); }

/* ---------- Instagram ---------- */
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta__item { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.insta__item::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(29,27,25,.45); opacity: 0; transition: opacity .35s; }
.insta__item::after {
  content: ""; position: absolute; z-index: 2; top: 10px; right: 10px; width: 22px; height: 22px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.insta__item[data-type="reel"]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}
.insta__item:hover img { transform: scale(1.06); }
.insta__item:hover::before { opacity: 1; }
.insta__more { text-align: center; margin-top: 36px; }
.insta__more a { color: var(--accent); font-weight: 600; text-decoration: none; letter-spacing: .06em; }

/* ---------- Responsive (new sections) ---------- */
@media (max-width: 1024px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .insta__grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials__row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .reviews__top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .videos__grid { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .testimonials__row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .quote { padding: 24px 22px; }
  .latest__row { grid-auto-columns: 150px; }
  .hero__rating { margin-top: 24px; }
}

/* ==========================================================
   Founder page
   ========================================================== */
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.fhero { background: var(--ink); color: var(--white); padding: calc(var(--nav-h) + clamp(60px, 9vw, 120px)) 0 clamp(70px, 9vw, 120px); position: relative; overflow: hidden; }
.fhero::before { /* four brand blocks, echoing the logo */
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; opacity: .12;
  background:
    linear-gradient(var(--brand-orange), var(--brand-orange)) 0 0 / 48% 48% no-repeat,
    linear-gradient(var(--brand-blue), var(--brand-blue)) 100% 0 / 48% 48% no-repeat,
    linear-gradient(var(--brand-cream), var(--brand-cream)) 0 100% / 48% 48% no-repeat,
    linear-gradient(#8a8482, #8a8482) 100% 100% / 48% 48% no-repeat;
}
.fhero__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 7vw, 100px); align-items: end; }
.fhero .eyebrow { color: var(--accent-light); }
.fhero__title { color: var(--white); font-size: clamp(2.7rem, 6vw, 5.2rem); font-weight: 400; }
.fhero__title em { color: var(--accent-light); }
.fhero__by { margin: 40px 0 0; display: flex; flex-direction: column; gap: 4px; padding-left: 18px; border-left: 3px solid var(--brand-orange); }
.fhero__by strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.fhero__by span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.fhero__portrait { position: relative; margin: 0; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: #2a2724; }
.fhero__portrait > img { width: 100%; height: 100%; object-fit: cover; }
.fhero__placeholder { display: none; position: absolute; inset: 0; place-items: center; }
.fhero__placeholder img { width: 42%; opacity: .9; }
.fhero__portrait.is-empty .fhero__placeholder { display: grid; }
.fhero__portrait figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); background: linear-gradient(to top, rgba(0,0,0,.55), transparent); }

.letter__grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.letter__aside { position: sticky; top: calc(var(--nav-h) + 30px); }
.letter__pull { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.25; color: var(--ink); }
.letter__body { max-width: 680px; }
.letter__body p { font-size: 1.08rem; line-height: 1.85; color: var(--charcoal); margin: 0 0 1.4em; }
.letter__body .letter__lead { font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 1.8rem); line-height: 1.45; color: var(--ink); }
.letter__body .letter__lead::first-letter { float: left; font-size: 4.2em; line-height: .8; padding: 6px 12px 0 0; color: var(--brand-orange); }
.signature { margin-top: 48px; display: flex; flex-direction: column; gap: 6px; }
.signature__name { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.signature__role { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.vmv { background: var(--sand); }
.vmv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.vmv__card { background: var(--cream); padding: clamp(32px, 4vw, 52px); border-radius: var(--radius); border-top: 4px solid var(--brand-orange); }
.vmv__card:nth-child(2) { border-top-color: var(--brand-blue); }
.vmv__tag { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--accent); }
.vmv__card p { margin: 16px 0 0; font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 1.85rem); line-height: 1.4; color: var(--ink); }
.values { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { background: var(--white); padding: 32px 28px; border-radius: var(--radius); }
.value__num { font-family: var(--serif); color: var(--accent); letter-spacing: .1em; }
.value h3 { font-size: 1.7rem; margin: 10px 0 10px; }
.value p { margin: 0; color: var(--muted); font-size: .95rem; }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); }
.tl { position: relative; padding: 36px 26px 0 0; border-top: 1px solid var(--stone); }
.tl::before { content: ""; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--brand-orange); }
.tl:nth-child(2)::before { background: var(--brand-blue); }
.tl:nth-child(3)::before { background: var(--brand-cream); box-shadow: inset 0 0 0 1px var(--stone); }
.tl:nth-child(4)::before { background: var(--brand-grey); }
.tl__when { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--accent); }
.tl h3 { font-size: 1.6rem; margin: 8px 0 10px; }
.tl p { margin: 0; color: var(--muted); font-size: .93rem; }

.fcta { position: relative; padding: clamp(100px, 14vw, 170px) 0; color: var(--white); overflow: hidden; text-align: center; }
.fcta__media { position: absolute; inset: 0; }
.fcta__media img { width: 100%; height: 100%; object-fit: cover; }
.fcta__overlay { position: absolute; inset: 0; background: rgba(20,17,14,.62); }
.fcta__content { position: relative; }
.fcta h2 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 400; }
.fcta p { color: rgba(255,255,255,.85); margin: 16px 0 34px; font-size: 1.08rem; }
.fcta .hero__cta { justify-content: center; }

/* Founder teaser on the home page */
.founder-teaser { display: flex; align-items: center; gap: 16px; margin-top: 34px; padding: 18px 22px; background: var(--white); border-radius: var(--radius); border-left: 3px solid var(--brand-orange); text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s; }
.founder-teaser:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(40,30,20,.45); }
.founder-teaser strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); }
.founder-teaser span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }

@media (max-width: 1024px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}
@media (max-width: 860px) {
  .fhero__grid, .letter__grid, .vmv__grid { grid-template-columns: 1fr; }
  .fhero__portrait { max-width: 420px; }
  .letter__aside { position: static; }
}
@media (max-width: 600px) {
  .values, .timeline { grid-template-columns: 1fr; }
  .signature__name { font-size: 2rem; }
}
@media (max-width: 1180px) and (min-width: 861px) {
  .nav__links { gap: 20px; }
  .nav__links a:not(.btn) { font-size: .74rem; letter-spacing: .08em; }
  .nav__links .btn { white-space: nowrap; }
  .nav__links a[href="#instagram"] { display: none; }
}

/* Award photo in the About section */
.about__img--award { object-position: 50% 30%; }
.award-badge {
  position: absolute; left: 16px; top: 16px; max-width: 62%;
  padding: 10px 14px; background: rgba(29,27,25,.82); color: rgba(255,255,255,.8);
  border-left: 3px solid var(--brand-orange); border-radius: var(--radius);
  font-size: .68rem; letter-spacing: .06em; line-height: 1.45;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.award-badge strong { display: block; color: var(--white); font-family: var(--serif); font-size: 1.05rem; font-weight: 500; letter-spacing: 0; margin-bottom: 2px; }

/* Testimonials carousel */
.testimonials__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.testimonials__head .testimonials__title { margin: 0; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--stone); background: transparent; color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: background .3s, color .3s, border-color .3s; }
.carousel-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.reviews .testimonials__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 60px) / 4); grid-template-columns: none;
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 12px; scrollbar-width: thin;
}
.reviews .testimonials__row .video { scroll-snap-align: start; }
@media (max-width: 1024px) { .reviews .testimonials__row { grid-auto-columns: calc((100% - 40px) / 3); } }
@media (max-width: 600px) { .reviews .testimonials__row { grid-auto-columns: 62%; gap: 12px; } .carousel-nav { display: none; } }

/* ==========================================================
   Service pages
   ========================================================== */
.service--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service__more { margin-top: auto; padding-top: 22px; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--accent); }
.service--link:hover .service__more span { display: inline-block; transform: translateX(4px); transition: transform .3s var(--ease); }

.fhero__grid--solo { grid-template-columns: 1fr; }
.fhero__grid--solo .fhero__text { max-width: 900px; }
.fhero__lead { margin: 26px 0 34px; max-width: 620px; font-size: 1.08rem; line-height: 1.7; color: rgba(255,255,255,.78); }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.crumbs a { text-decoration: none; color: rgba(255,255,255,.72); }
.crumbs a:hover { color: var(--accent-light); }
.page-service .fhero__portrait { aspect-ratio: 4/5; }

.svc-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.svc-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-gallery__item:hover img { transform: scale(1.04); }

.faq__grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq__list { border-top: 1px solid var(--stone); }
.faq__item { border-bottom: 1px solid var(--stone); }
.faq__item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 24px; padding: 26px 0; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--sans, inherit); color: var(--accent); font-size: 1.4rem; line-height: 1; transition: transform .3s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0 0 26px; color: var(--muted); line-height: 1.8; max-width: 640px; }

.svc-related { padding-top: 0; }
.svc-related__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-link { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 24px 26px; background: var(--sand); border-radius: var(--radius); text-decoration: none; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); transition: background .3s, transform .3s var(--ease); }
.svc-link:hover { background: var(--cream); transform: translateY(-3px); }
.svc-link span:last-child { color: var(--accent); font-family: inherit; }

.footer__services { display: flex; flex-wrap: wrap; gap: 12px 26px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__services span { color: rgba(255,255,255,.45); font-weight: 600; }
.footer__services a { text-decoration: none; }
.footer__services a:hover { color: var(--accent-light); }

@media (max-width: 1024px) {
  .svc-related__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .faq__grid { grid-template-columns: 1fr; }
  .svc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-gallery__grid, .svc-related__list { grid-template-columns: 1fr; }
}
