:root {
  color-scheme: light;
  --cream: #f5e8c8;
  --cream-2: #fff6dd;
  --ink: #1a1208;
  --ink-soft: #382513;
  --gold: #b88a35;
  --gold-light: #d6b15f;
  --green: #2f5d50;
  --wine: #6f1d1b;
  --paper: #fffaf0;
  --muted: #6e604c;
  --line: rgba(26, 18, 8, .16);
  --shadow: 0 24px 70px rgba(26, 18, 8, .18);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 32px));
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: var(--green);
  color: var(--paper);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--green);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(245, 232, 200, .92);
  border-bottom: 1px solid rgba(26, 18, 8, .12);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(26, 18, 8, .1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(26, 18, 8, .16);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: .74rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(184, 138, 53, .18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  border-radius: 99px;
  content: "";
}

.nav-toggle span[aria-hidden="true"]::before {
  transform: translateY(-7px);
}

.nav-toggle span[aria-hidden="true"]::after {
  transform: translateY(5px);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.btn-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: .92rem;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream-2);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: var(--gold-light);
  color: var(--ink);
  border-color: rgba(26, 18, 8, .15);
}

.btn-secondary:hover {
  background: #e8c670;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 250, 240, .35);
}

.btn-ghost:hover {
  background: rgba(255, 250, 240, .1);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 54px 0 36px;
  background:
    linear-gradient(110deg, rgba(245, 232, 200, .98) 0%, rgba(245, 232, 200, .9) 48%, rgba(26, 18, 8, .96) 48%, rgba(26, 18, 8, .96) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section h2,
.feature-copy h2,
.contact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.trust-strip div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .42);
}

.trust-strip dt {
  color: var(--gold);
  font-weight: 900;
}

.trust-strip dd {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-media {
  margin: 0;
  color: var(--cream);
}

.hero-media img {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 12px;
  color: rgba(255, 250, 240, .78);
  font-size: .92rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.feature-copy h2,
.contact-band h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .72fr);
  gap: 42px;
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.services-section {
  background: var(--cream);
}

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

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .56);
}

.service-card h3,
.process-list h3,
.video-card h3,
.data-note h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.service-card h3 {
  margin-top: auto;
  font-size: 1.65rem;
}

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

.service-number {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 40px;
  background: var(--ink);
  color: var(--gold-light);
  border-radius: 50%;
  font-weight: 900;
}

.feature-band {
  padding: 84px 0;
  background: var(--ink);
  color: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.feature-media {
  margin: 0;
}

.feature-media img {
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.feature-copy p {
  color: rgba(255, 250, 240, .78);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--paper);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .52em;
  width: 12px;
  height: 12px;
  background: var(--gold-light);
  border-radius: 50%;
  content: "";
}

.process-section {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  padding: 24px;
  border-top: 3px solid var(--gold);
  background: var(--cream-2);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.process-list h3 {
  font-size: 1.4rem;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--cream);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.split-heading > div {
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-grid figure {
  min-height: 470px;
  display: grid;
  align-content: end;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 16px 45px rgba(26, 18, 8, .12);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.social-section {
  background: var(--paper);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.social-grid p {
  color: var(--muted);
}

.instagram-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.instagram-frame img {
  border-radius: var(--radius);
}

.blog-preview-section {
  background: var(--cream);
}

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

.mini-video-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-video-card h3 {
  margin: 14px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.mini-video-card p {
  margin: 0;
  color: var(--muted);
}

.mini-video-card .text-link {
  margin-top: auto;
}

.contact-band {
  padding: 80px 0;
  background: var(--ink);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.contact-band p {
  max-width: 720px;
  color: rgba(255, 250, 240, .78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.site-footer {
  padding: 44px 0;
  background: #120c06;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, .5fr) minmax(180px, .5fr);
  gap: 32px;
  align-items: start;
}

.footer-brand,
.footer-brand small {
  color: var(--paper);
}

.site-footer p,
.site-footer address,
.site-footer nav {
  color: rgba(255, 250, 240, .72);
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, .28);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.back-to-top.is-visible {
  display: grid;
}

.page-hero {
  padding: 82px 0 72px;
  background: var(--ink);
  color: var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: 36px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 250, 240, .78);
}

.data-note {
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, .18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .08);
}

.data-note h2 {
  font-size: 1.45rem;
}

.blog-controls-section {
  background: var(--cream);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  background: var(--ink);
  color: var(--paper);
}

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

.video-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(26, 18, 8, .08);
}

.video-thumb {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(26, 18, 8, .78), rgba(47, 93, 80, .76)),
    var(--ink);
  color: var(--paper);
}

.video-thumb span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 250, 240, .72);
  border-radius: 50%;
  background: rgba(255, 250, 240, .12);
  font-weight: 900;
}

.video-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.video-card h3 {
  font-size: 1.55rem;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(47, 93, 80, .12);
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
}

.date {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

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

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.transcript-block {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.transcript-block summary {
  min-height: 44px;
  padding: 12px 0;
  font-weight: 900;
  cursor: pointer;
}

.transcript-block p {
  margin: 0 0 6px;
  color: var(--muted);
}

.post-model-section {
  background: var(--paper);
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.content-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.content-topics span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 900;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 6, .78);
}

.modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, .3);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 1.8rem;
  line-height: 1;
}

.modal-video {
  background: var(--ink);
}

.embed-shell,
.modal-video iframe,
.modal-video .placeholder-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.placeholder-video,
.embed-shell.placeholder-video {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(26, 18, 8, .92), rgba(47, 93, 80, .82)),
    var(--ink);
  color: var(--paper);
  font-weight: 900;
  text-align: center;
}

.modal-content {
  padding: 26px;
}

.modal-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.prose-page {
  max-width: 860px;
}

.prose-page h1,
.prose-page h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.prose-page h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    padding: 18px var(--container) 28px;
    background: rgba(245, 232, 200, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 70px rgba(26, 18, 8, .18);
  }

  .primary-nav.is-open {
    display: grid;
    justify-items: start;
  }

  .primary-nav a {
    width: 100%;
  }

  .hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 58%, var(--ink) 58%, var(--ink) 100%);
  }

  .hero-grid,
  .intro-grid,
  .feature-grid,
  .social-grid,
  .contact-grid,
  .page-hero-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    color: var(--paper);
  }

  .service-grid,
  .process-list,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 360px;
  }

  .contact-actions,
  .filter-group {
    justify-content: start;
  }

  .video-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 1120px);
    --header-height: 70px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .trust-strip,
  .service-grid,
  .process-list,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .feature-band,
  .contact-band {
    padding: 66px 0;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .service-card {
    min-height: 220px;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .page-hero {
    padding: 64px 0 58px;
  }

  .video-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
