:root {
  --cream: #f7f2ea;
  --paper: #fffdf9;
  --peach: #ead7cb;
  --rose: #c7897e;
  --brown: #835336;
  --espresso: #34231e;
  --muted: #6e5a51;
  --line: rgba(52, 35, 30, 0.17);
  --shadow: 0 22px 60px rgba(72, 43, 29, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.wordmark span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.5vw, 5.2rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.45rem;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--espresso);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.93);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  font-size: 1.18rem;
}

.wordmark strong {
  color: var(--brown);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem;
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.9rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--brown);
}

.nav-cta {
  padding: 10px 17px;
  color: white;
  background: var(--espresso);
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: white;
  background: var(--brown);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 64px;
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 215, 203, 0.85), transparent 27%),
    radial-gradient(circle at 94% 78%, rgba(199, 137, 126, 0.22), transparent 29%),
    var(--cream);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(131, 83, 54, 0.18);
  border-radius: 50%;
}

.hero::before {
  top: -130px;
  right: 8%;
}

.hero::after {
  bottom: -155px;
  left: 4%;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero .eyebrow {
  text-align: center;
}

.hero-art {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(52, 35, 30, 0.1);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  image-rendering: auto;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--brown);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--espresso);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: white;
}

.section {
  padding: 104px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.prose {
  padding-top: 46px;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose p + p {
  margin-top: 1.3rem;
}

.services {
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

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

.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.75);
}

.service-card:nth-child(2) {
  background: var(--peach);
}

.service-card h3 {
  margin: 70px 0 16px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
}

.approach {
  color: white;
  background: var(--espresso);
}

.approach .eyebrow {
  color: #e7b9ab;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  gap: clamp(60px, 9vw, 130px);
}

.approach-title h2 {
  margin-bottom: 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.02em;
}

.approach-points > div {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.approach-points > div:first-child {
  padding-top: 0;
}

.approach-points h3 {
  margin-bottom: 8px;
}

.approach-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.featured-work {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 12%, rgba(234, 215, 203, 0.68), transparent 24%),
    var(--cream);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: clamp(24px, 5vw, 54px);
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(72, 43, 29, 0.1);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: var(--espresso);
  object-fit: cover;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--espresso);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-card-copy {
  padding: 24px 25px 28px;
}

.video-card-copy h3 {
  margin-bottom: 12px;
}

.video-card-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.video-type {
  margin-bottom: 9px;
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.featured-work-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 42px;
}

.video-loading,
.video-fallback {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.video-fallback a {
  color: var(--brown);
  font-weight: 800;
}

.media-kit {
  background: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.media-card {
  overflow: hidden;
  border: 12px solid white;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.media-card img {
  width: 100%;
}

.media-copy p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.05rem;
}

.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.text-link {
  color: var(--brown);
  font-weight: 800;
  text-underline-offset: 5px;
}

.socials {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.social-grid a {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  border-color: var(--brown);
  background: white;
  transform: translateY(-3px);
}

.social-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.social-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact {
  padding: 112px 0;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 215, 203, 0.18), transparent 24%),
    radial-gradient(circle at 86% 75%, rgba(199, 137, 126, 0.3), transparent 29%),
    var(--brown);
}

.contact-inner {
  max-width: 880px;
}

.contact .eyebrow {
  color: white;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.button-light {
  color: var(--espresso);
  background: white;
}

footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.73);
  background: var(--espresso);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 7px 13px;
  }

  .two-column,
  .approach-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .prose {
    padding-top: 0;
  }

  .approach-title h2 {
    margin-bottom: 34px;
  }

  .media-card {
    width: min(640px, 94%);
    margin-inline: auto;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 310px));
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-art {
    border-radius: 17px;
  }

  .hero-actions,
  .stacked-actions,
  .featured-work-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .card-grid,
  .social-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
