:root {
  --page: #efe9e4;
  --page-2: #e7ded6;
  --paper: #fbf7f3;
  --ink: #5e5343;
  --ink-strong: #4a4133;
  --muted: #685c4d;
  --soft: #f3ece4;
  --sand: #ded4ca;
  --line: rgba(94, 83, 67, 0.14);
  --line-strong: rgba(94, 83, 67, 0.28);
  --shadow: 0 30px 80px rgba(94, 83, 67, 0.12);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  background-image:
    radial-gradient(120% 60% at 80% -10%, rgba(255, 255, 255, 0.65), transparent 60%),
    radial-gradient(90% 50% at 0% 30%, rgba(255, 255, 255, 0.4), transparent 55%);
  background-attachment: fixed;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- Shared type ---------- */
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.0;
  color: var(--ink-strong);
}

h1 {
  margin: 0 0 26px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ink-strong);
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

strong {
  color: var(--ink-strong);
  font-weight: 700;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  max-width: 36ch;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 14px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(94, 83, 67, 0.16);
}

.button--dark {
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  color: #fbf7f3;
}

.button--ghost {
  background: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  background: rgba(239, 233, 228, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-strong);
}

.wordmark__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.wordmark__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.wordmark__name small {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 160ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  opacity: 1 !important;
}

/* ---------- Layout primitives ---------- */
main {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

section {
  padding: clamp(64px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line);
}

section:last-of-type {
  border-bottom: none;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 96px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
}

.hero__note {
  margin-top: 22px;
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.trust-strip li {
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-strip strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-strong);
}

.hero__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

/* ---------- Vision ---------- */
.vision {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.vision__intro h2 {
  max-width: 18ch;
}

.vision__goal {
  margin-top: 26px;
  font-size: 1.18rem;
  color: var(--ink);
  max-width: 40ch;
}

.vision__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
}

.vision__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: var(--sand);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.vision__gallery img:first-child {
  margin-top: clamp(20px, 4vw, 48px);
}

.vision__gallery img:last-child {
  margin-bottom: clamp(20px, 4vw, 48px);
}

.category-list {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.category-list li {
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 400;
  color: var(--ink-strong);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: padding-left 180ms ease, color 180ms ease;
}

.category-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-strong);
  flex: none;
  opacity: 0.5;
}

.category-list li:hover {
  padding-left: 14px;
}

/* ---------- Work / Video ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 34px);
}

.video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.video-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__duration {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(74, 65, 51, 0.62);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.video-card__mute {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 7px 13px;
  border: none;
  border-radius: 999px;
  background: rgba(74, 65, 51, 0.62);
  color: #fff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 160ms ease;
}

.video-card__mute:hover {
  background: rgba(74, 65, 51, 0.85);
}

.video-card__mute .is-unmuted {
  display: none;
}

.video-card__mute[aria-pressed="true"] .is-muted {
  display: none;
}

.video-card__mute[aria-pressed="true"] .is-unmuted {
  display: inline;
}

.video-card h3 {
  margin-top: 22px;
}

.video-card p {
  margin-bottom: 6px;
}

/* ---------- Proof ---------- */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.proof__showcase {
  border-radius: 26px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.proof__showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stat-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(28px, 4vw, 46px) 26px;
  border-radius: 26px;
  background: linear-gradient(150deg, var(--paper), var(--soft));
  border: 1px solid var(--line);
}

.stat-card__number {
  font-family: "Fraunces", serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.85;
  color: var(--ink-strong);
}

.stat-card p {
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.proof__copy h2 {
  max-width: 20ch;
}

.proof__copy p {
  margin-top: 22px;
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 46ch;
}

/* ---------- Studio / Team ---------- */
.studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.studio__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: visible;
}

.studio__image-wrap > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.studio__image-inset {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 46%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid var(--page);
  box-shadow: var(--shadow);
  background: var(--sand);
  margin-top: 36px;
}

.studio__pipeline li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  color: var(--ink-strong);
  font-size: 0.98rem;
}

.studio__pipeline span {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ---------- Services ---------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.service-list article {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-list article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-list p {
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.contact__lead h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.contact__image-wrap {
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-width: 420px;
}

.contact__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact__label {
  margin: 0 0 4px;
  font-weight: 800;
  color: var(--ink-strong);
  letter-spacing: 0.02em;
}

.contact__block p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--ink);
}

.contact__block a {
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}

.contact__equipment {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.contact__equipment li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 1rem;
}

.contact__equipment li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-strong);
  opacity: 0.7;
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px var(--gutter) 60px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 600;
  color: var(--ink-strong);
}

.site-footer__meta {
  font-weight: 500 !important;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero,
  .vision,
  .proof__grid,
  .studio,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact__image-wrap {
    max-width: none;
  }

  .hero__image-wrap {
    order: -1;
    max-height: 540px;
  }

  .vision__gallery img:first-child,
  .vision__gallery img:last-child {
    margin: 0;
  }

  .studio__image-inset {
    right: 12px;
    bottom: -18px;
    width: 40%;
  }

  .video-grid,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .video-grid,
  .service-list,
  .studio__pipeline {
    grid-template-columns: 1fr;
  }

  .wordmark__name {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ---------- Focus visibility (keyboard a11y) ---------- */
:focus-visible {
  outline: 2px solid var(--ink-strong);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Service meta ---------- */
.service-meta {
  margin-top: 14px !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-strong);
}

/* ---------- Trust / Why brands ---------- */
.trust-points {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
}

.trust-points li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.trust-points strong {
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  color: var(--ink-strong);
}

.trust-points span {
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial {
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: clamp(26px, 4vw, 40px);
  border-left: 3px solid var(--ink-strong);
  background: var(--paper);
  border-radius: 0 18px 18px 0;
}

.testimonial blockquote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink-strong);
}

.testimonial figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: clamp(26px, 4vw, 40px);
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
}

.faq-list summary {
  cursor: pointer;
  font-family: "Fraunces", serif;
  font-size: 1.12rem;
  color: var(--ink-strong);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 14px 0 0;
  color: var(--ink);
  max-width: 70ch;
}

@media (max-width: 640px) {
  .trust-points {
    grid-template-columns: 1fr;
  }
}
