:root {
  --bg: #f6f1eb;
  --bg-soft: #f3ede6;
  --bg-tint: #efe7de;
  --card: #fbf8f4;
  --text: #1b1714;
  --muted: #665d55;
  --line: #ddd2c8;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(29, 22, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 18px;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: #d8c6b4;
  color: var(--text);
}

.shell {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero,
main > .section {
  scroll-snap-align: start;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("/media/jada-hero.jpg");
  background-position: 56% 28%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__overlay {
  background:
    linear-gradient(
      115deg,
      rgba(17, 14, 12, 0.84) 0%,
      rgba(17, 14, 12, 0.62) 34%,
      rgba(17, 14, 12, 0.14) 68%,
      rgba(17, 14, 12, 0.18) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 32px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}

.brand,
.eyebrow {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.nav__links a:hover,
.socials a:hover {
  color: var(--white);
}

.hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.56fr);
  gap: 40px;
  align-items: start;
  margin-top: auto;
  padding: 88px 0 48px;
}

.hero__copy {
  max-width: 760px;
}

.hero__aside {
  display: grid;
  gap: 18px;
  justify-items: center;
  justify-self: end;
  width: min(34vw, 360px);
  padding-top: clamp(34px, 5vw, 56px);
}

.hero__aside--mobile {
  display: none;
}

.hero__portrait {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow--dark {
  color: #7b6e64;
}

.hero h1,
.section h2 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  font-weight: 600;
}

.hero__lede,
.section__intro p,
.about__copy p,
.work-card__body p,
.mini-card p,
.contact__links,
.band__row p {
  color: var(--muted);
}

.hero__lede {
  margin: 24px 0 0;
  max-width: 700px;
  color: rgba(246, 240, 234, 0.92);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button--solid {
  background: var(--white);
  color: var(--text);
}

.button--solid:hover {
  background: #e7ddd4;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--text {
  color: rgba(255, 255, 255, 0.86);
}

.button--text:hover {
  color: var(--white);
}

.button--dark {
  border: 0;
  background: var(--text);
  color: var(--white);
  cursor: pointer;
}

.button--dark:hover {
  background: #312923;
}

.section-nav {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.section-nav__button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(17, 14, 12, 0.2);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.section-nav__button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-nav__button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.section-nav__button:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.stats {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.stat {
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.12);
}

.stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}

.stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(246, 240, 234, 0.9);
}

.band {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.band__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.band__row p {
  margin: 0;
  max-width: 720px;
  line-height: 1.8;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons--light {
  justify-content: center;
}

.social-icons--dark {
  margin-top: 8px;
}

.social-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon__fill {
  fill: currentColor;
  stroke: none;
}

.social-icons--light .social-icon {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.social-icons--light .social-icon:hover {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.social-icons--dark .social-icon {
  border: 1px solid rgba(27, 23, 20, 0.08);
  background: rgba(27, 23, 20, 0.84);
  color: rgba(255, 255, 255, 0.84);
}

.social-icons--dark .social-icon:hover {
  background: rgba(27, 23, 20, 0.94);
  color: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.section {
  padding: 88px 0;
}

.section--tint {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__intro {
  max-width: 760px;
}

.section__intro--compact {
  max-width: 620px;
}

.section h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  color: var(--text);
}

.section__intro p {
  margin-top: 22px;
  font-size: 1.02rem;
  line-height: 1.9;
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-card,
.mini-card,
.contact__form,
.list-panel,
.quick-facts article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.work-card {
  overflow: hidden;
}

.work-card__media {
  display: block;
  background: #0d0b0a;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.work-card iframe,
.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #0d0b0a;
}

.work-card img {
  object-fit: cover;
}

.work-card__body {
  padding: 24px;
}

.work-card__meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7b6e64;
}

.work-card__body h3,
.mini-card h3 {
  margin: 14px 0 0;
  font-size: 1.6rem;
  line-height: 1.15;
}

.work-card__body p,
.mini-card p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.work-card__body ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.section--dark {
  background: #1f1a16;
  color: var(--white);
  border-top: 1px solid #352c26;
  border-bottom: 1px solid #352c26;
}

.section--dark .section__intro h2 {
  color: var(--white);
}

.section--dark .section__intro p,
.section--dark .eyebrow {
  color: rgba(246, 240, 234, 0.76);
}

.offers {
  display: grid;
  gap: 44px;
}

.offers__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-tile {
  min-height: 220px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.offer-tile span {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(246, 240, 234, 0.62);
}

.offer-tile h3 {
  margin: 18px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 500;
}

.work-card__body li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.work-card__body li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b7f75;
}

.two-col {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.list-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.list-panel div {
  padding: 20px;
  background: #f8f4ef;
  line-height: 1.8;
}

.strengths {
  margin-top: 48px;
}

.mini-card {
  padding: 22px;
  line-height: 1.8;
}

.about {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.about__image {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about__photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: min(18vw, 180px) min(18vw, 180px) 14px 14px;
  background: #e7ddd4;
}

.about__image img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.about__copy p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.9;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chips span {
  padding: 10px 16px;
  border: 1px solid #cdbfb3;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #3d342e;
}

.quick-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-facts article {
  padding: 14px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  min-width: 0;
}

.quick-facts p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b6e64;
}

.quick-facts strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.mini-card--process span {
  display: inline-block;
  color: #7b6e64;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.contact__links {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact__links p {
  margin: 0;
  font-size: 1rem;
}

.contact__links a {
  text-decoration: underline;
  text-decoration-color: #cdbfb3;
  text-underline-offset: 4px;
}

.contact__form {
  padding: 28px;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.92rem;
  color: #594f48;
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdbfb3;
  border-radius: 8px;
  background: var(--white);
  padding: 14px 16px;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--text);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

@media (min-width: 840px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .card-grid--three,
  .card-grid--four,
  .about,
  .contact,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--four .mini-card:nth-child(3),
  .card-grid--four .mini-card:nth-child(4) {
    min-height: 100%;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100vw - 32px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav__links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .hero__aside {
    justify-self: start;
    width: min(52vw, 220px);
    padding-top: 0;
  }

  .hero__aside--mobile {
    display: grid;
    width: min(72vw, 240px);
    margin: 12px auto 20px;
    gap: 12px;
    justify-items: center;
  }

  .hero__aside--desktop {
    display: none;
  }

  .hero__portrait {
    width: 100%;
  }

  .hero__aside--mobile .hero__portrait {
    width: min(52vw, 220px);
  }

  .hero__aside--mobile .social-icons {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .hero__lede {
    margin-top: 18px;
    line-height: 1.75;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .about__photo {
    border-radius: min(30vw, 160px) min(30vw, 160px) 12px 12px;
  }

  .hero h1,
  .section h2 {
    line-height: 1.02;
  }

  .card-grid--three,
  .card-grid--four,
  .about,
  .contact,
  .two-col,
  .field-row,
  .field-row--three,
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .contact__form {
    padding: 22px;
  }

  .section-nav {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .section-nav__button {
    width: 44px;
    height: 44px;
  }

  .band__row {
    gap: 16px;
    padding: 14px 0;
  }

  .card-grid {
    margin-top: 28px;
    gap: 18px;
  }

  .section__intro p {
    margin-top: 16px;
    line-height: 1.75;
  }

  .offers,
  .strengths {
    margin-top: 36px;
  }

  .offers {
    gap: 20px;
    padding-bottom: 10%;
  }

  .offers__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-tile {
    min-height: 0;
    padding: 14px 16px 16px;
  }

  .offer-tile span {
    font-size: 0.82rem;
  }

  .offer-tile h3 {
    margin-top: 8px;
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .about__image,
  .contact {
    gap: 28px;
  }

  .contact__links {
    margin-top: 20px;
    gap: 12px;
  }

  .work-card__body,
  .mini-card,
  .contact__form {
    padding: 20px;
  }

  .work-card__body p,
  .mini-card p {
    margin-top: 12px;
    line-height: 1.7;
  }
}
