﻿:root {
  --ink: #171717;
  --muted-ink: #555555;
  --paper: #ffffff;
  --line: #0d0d0d;
  --orange: #e8791b;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #eeeeee;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
}

.site-nav {
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav-inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  min-height: var(--header-height);
  min-width: 0;
  padding: 0 1.15rem;
}

.site-logo {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  text-decoration: none;
}

.site-menu-collapse {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
}

.site-menu-collapse.collapse:not(.show) {
  display: flex;
}

.site-menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0.25rem;
  display: none;
  flex-direction: row;
  gap: 0.6rem;
  height: 2.5rem;
  justify-content: center;
  padding: 0.45rem;
  width: auto;
}

.site-menu-label {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.site-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  width: 1.4rem;
}

.site-menu-icon span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 100%;
}

.mobile-menu-modal .modal-content {
  border: 1px solid #d6d6d6;
  border-radius: 0.35rem;
  box-shadow: 0 1rem 2.5rem rgba(23, 23, 23, 0.2);
}

.mobile-menu-modal .modal-dialog {
  max-width: 480px;
  margin: 100px auto 0;
}

.mobile-menu-modal .modal-header {
  border-bottom: 1px solid #eeeeee;
  padding: 0.75rem 1.25rem;
}

.mobile-menu-modal .modal-title {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.mobile-menu-modal .modal-body {
  padding: 0.35rem 1.25rem 0.75rem;
}

.site-menu.mobile-site-menu {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-site-menu li + li {
  border-top: 1px solid #eeeeee;
}

.site-menu.mobile-site-menu a {
  color: var(--ink);
  display: block;
  font-size: 22px;
  min-height: 0;
  padding: 0.45rem 0;
}

.mobile-site-menu a::after {
  display: none;
}

.mobile-site-menu a.active,
.mobile-site-menu a:hover,
.mobile-site-menu a:focus-visible {
  color: var(--orange);
}

.site-menu {
  align-items: stretch;
  display: flex;
  gap: clamp(1.75rem, 3.1vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu a {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 22px;
  font-weight: 400;
  min-height: var(--header-height);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.large-type-page main p,
.large-type-page main li,
.large-type-page main a,
.large-type-page main label,
.large-type-page main button,
.large-type-page main span,
.large-type-page main input,
.large-type-page main textarea,
.large-type-page main select {
  font-size: 22px;
}

.site-menu a::after {
  background: var(--line);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  width: 100%;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after,
.site-menu a.active::after {
  transform: scaleX(1);
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.active {
  color: var(--muted-ink);
}

.about-section {
  min-height: 100vh;
  padding: calc(var(--header-height) + 1rem) 1.5rem 6.5rem;
}

.about-container {
  margin: 0 auto;
  max-width: 1110px;
}

.section-rule {
  background: var(--orange);
  height: 5px;
  margin: 0 auto 2.6rem;
  width: 250px;
}

.about-section h1 {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 0.95;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.about-top-grid,
.about-bottom-grid {
  align-items: start;
  display: grid;
  gap: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  max-width: 960px;
}

.about-top-grid {
  align-items: stretch;
  margin: 6rem auto 0;
}

.about-portrait {
  aspect-ratio: 1.1 / 1;
  background: #111111;
  margin: 0;
  overflow: hidden;
}

.about-portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.about-learn-more {
  align-self: flex-start;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #ffffff;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1.25rem;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.about-learn-more:hover,
.about-learn-more:focus-visible {
  background: #ffffff;
  color: var(--orange);
}

.about-copy .about-lead {
  color: var(--muted-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.15vw, 1.85rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.about-bottom-grid {
  margin: 2.25rem auto 0;
}

.about-bottom-column {
  grid-column: 1 / -1;
  min-width: 0;
}

.orange-rule {
  background: var(--orange);
  height: 7px;
  margin-bottom: 1.75rem;
  width: 40%;
}

.about-bottom-copy {
  color: var(--muted-ink);
  font-size: 22px;
  line-height: 1.65;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.books-page {
  background: #f7f7f7;
  min-height: 100vh;
  padding: calc(var(--header-height) + 4rem) 1.5rem 5rem;
}

.books-container {
  margin: 0 auto;
  max-width: 1180px;
}

.books-title {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.books-intro {
  color: var(--muted-ink);
  margin: 1rem auto 3rem;
  text-align: center;
}

.books-grid {
  margin-top: 0;
}

.book-card {
  border: 0;
  border-radius: 0.35rem;
  box-shadow: 0 0.8rem 1.8rem rgba(23, 23, 23, 0.14);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.book-card:hover {
  box-shadow: 0 1rem 2.4rem rgba(23, 23, 23, 0.2);
  transform: translateY(-0.2rem);
}

.book-cover {
  aspect-ratio: 3 / 4;
  background: #e6e6e6;
  object-fit: cover;
}

.book-card .card-body {
  padding: 1.35rem;
}

.book-details {
  color: var(--muted-ink);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  min-height: 3rem;
}

.art-page {
  background: #f7f7f7;
  min-height: 100vh;
  padding: calc(var(--header-height) + 4rem) 1.5rem 5rem;
}

.art-container {
  margin: 0 auto;
  max-width: 1180px;
}

.art-title {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.art-intro {
  color: var(--muted-ink);
  margin: 1rem auto 3rem;
  text-align: center;
}

.art-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.art-card {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 0.35rem;
  box-shadow: 0 0.65rem 1.4rem rgba(23, 23, 23, 0.12);
  margin: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.art-card:hover {
  box-shadow: 0 0.95rem 2rem rgba(23, 23, 23, 0.2);
  transform: translateY(-0.2rem);
}

.art-image-button {
  background: #ffffff;
  border: 0;
  cursor: zoom-in;
  display: flex;
  padding: 0.75rem;
  width: 100%;
}

.art-image-button:focus-visible {
  outline: 3px solid rgba(232, 121, 27, 0.45);
  outline-offset: -3px;
}

.art-image-button img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.art-image-modal-content {
  background: #171717;
  color: #ffffff;
}

.art-modal-image {
  display: block;
  margin: 0 auto;
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
}

.art-modal-caption {
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  max-width: 90%;
}

.book-button {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  font-weight: 600;
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
}

.book-button:hover,
.book-button:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.book1-page {
  background: #e9e9e9;
  min-height: 100vh;
  padding: calc(var(--header-height) + 3rem) 1rem 4rem;
}

.book1-container {
  margin: 0 auto;
  max-width: 1180px;
}

.book1-page-title {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.book1-page-intro {
  color: var(--muted-ink);
  margin: 0.8rem auto 2.75rem;
  text-align: center;
}

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

.book1-card {
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 0.25rem;
  box-shadow: 0 0.45rem 0.85rem rgba(23, 23, 23, 0.15);
  overflow: hidden;
  padding: 0.5rem;
}

.book1-image-button {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

.book1-image-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.book1-image-frame {
  align-items: center;
  background: #ffffff;
  display: flex;
  height: 220px;
  justify-content: center;
  overflow: hidden;
}

.book1-image-frame img {
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.book1-card-body {
  padding: 0.7rem 0.35rem 0.15rem;
  text-align: center;
}

.book1-card-title {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.45rem;
}

.book1-description {
  color: #666666;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.45rem;
  line-height: 1.15;
  margin: 0 auto 0.7rem;
  min-height: 3.1rem;
}

.large-type-page .book1-description {
  font-size: 0.85rem;
  font-weight: 700;
}

.book1-card-footer {
  align-items: center;
  border-top: 1px solid #eeeeee;
  color: #555555;
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  padding: 0.65rem 0.1rem 0.1rem;
}

.book1-book-icon {
  color: var(--orange);
  display: inline-flex;
  height: 1.25rem;
  width: 1.25rem;
}

.book1-book-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

.simple-page {
  background: var(--paper);
  min-height: 100vh;
  padding: calc(var(--header-height) + 3rem) 1rem 4rem;
}

.simple-container {
  margin: 0 auto;
  max-width: 1160px;
}

.simple-title {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.simple-intro {
  color: var(--muted-ink);
  margin: 0.9rem auto 2.75rem;
  max-width: 38rem;
  text-align: center;
}

.service-hero {
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  margin: 0 auto;
  max-width: 1080px;
  padding-bottom: 3.25rem;
}

.services-page .simple-intro {
  max-width: 1080px;
}

.service-portrait {
  background: #ffffff;
  box-shadow: 0 0.55rem 1.15rem rgba(23, 23, 23, 0.14);
  overflow: hidden;
}

.service-portrait img {
  display: block;
  height: auto;
  width: 100%;
}

.service-hero-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0.4rem;
}

.service-dba {
  color: var(--muted-ink);
  font-size: 0.9rem;
  margin: -0.45rem 0 0.65rem;
}

.service-focus {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
}

.service-hero-copy > p:last-child,
.service-story p:last-child,
.service-holistic p {
  color: var(--muted-ink);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-logos {
  align-items: center;
  border-left: 1px solid #d6d6d6;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  padding-left: clamp(1rem, 3vw, 2.25rem);
}

.service-logos img {
  display: block;
  max-height: 145px;
  max-width: 100%;
  object-fit: contain;
}

.service-section {
  margin: 3.25rem auto 2.5rem;
  max-width: 800px;
  text-align: center;
}

.service-section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.85rem;
}

.service-section-intro {
  color: var(--muted-ink);
  line-height: 1.75;
  margin: 0;
}

.service-story-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto 1.25rem;
  max-width: 1080px;
}

.service-story,
.service-holistic {
  border: 1px solid #d6d6d6;
  box-shadow: 0 0.45rem 0.9rem rgba(23, 23, 23, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.service-story .simple-kicker {
  margin-bottom: 0.9rem;
}

.service-holistic {
  margin: 0 auto;
  max-width: 1080px;
}

.service-holistic h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.about-page-gallery {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto 3rem;
  max-width: 850px;
}

.about-page-gallery figure {
  background: #ffffff;
  border: 1px solid #d6d6d6;
  box-shadow: 0 0.55rem 1.15rem rgba(23, 23, 23, 0.12);
  height: clamp(280px, 42vw, 480px);
  margin: 0;
  overflow: hidden;
}

.about-page-gallery img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.about-page-copy {
  color: var(--muted-ink);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 980px;
  text-align: justify;
}

.about-page-copy p {
  margin: 0 0 1.5rem;
}

.about-page-copy p:last-child {
  margin-bottom: 0;
}

.about-copy-opening::after {
  clear: both;
  content: "";
  display: table;
}

.about-copy-portrait {
  border-radius: 50%;
  float: left;
  height: 180px;
  margin: 0 1.5rem 0.75rem 0;
  object-fit: cover;
  object-position: center top;
  shape-outside: circle(50%);
  width: 180px;
}

.simple-kicker {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.blog-list {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 840px;
}

.blog-card,
.contact-card {
  background: var(--paper);
  border: 1px solid #d6d6d6;
  box-shadow: 0 0.6rem 1.2rem rgba(23, 23, 23, 0.12);
  padding: 1.6rem;
}

.blog-card {
  min-height: 0;
}

.blog-card-row .card-body {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
}

.blog-option {
  margin: 0 auto 3rem;
  max-width: 1000px;
}

.blog-list-layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  margin: 0 auto;
  max-width: 1000px;
}

.blog-pen {
  align-items: center;
  display: flex;
  justify-content: center;
}

.blog-pen img {
  display: block;
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.blog-pen picture {
  display: block;
  max-width: 100%;
}

.blog-list-content {
  min-width: 0;
}

.blog-option-title {
  border-bottom: 2px solid var(--orange);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  text-transform: uppercase;
}

.blog-heading-link {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 0.45rem;
  text-decoration: none;
}

.blog-heading-link:hover,
.blog-heading-link:focus-visible {
  color: var(--orange);
}

.blog-external-icon {
  fill: none;
  height: 1rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1rem;
}

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

.blog-option-card .card-body {
  padding: 1.2rem;
}

.blog-option-list {
  border-top: 1px solid #d6d6d6;
}

.blog-list-item {
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
  color: var(--ink);
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  text-decoration: none;
}

.blog-list-item strong {
  color: var(--orange);
  font-size: 12px;
}

.blog-list-item:hover,
.blog-list-item:focus-visible {
  color: var(--orange);
}

.blog-option-rows {
  display: grid;
  gap: 0.75rem;
}

.blog-option-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 1rem 1.25rem;
}

.blog-option-row .blog-card-title {
  margin: 0 !important;
}

.blog-card h2,
.contact-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
}

.blog-card-title {
  color: var(--ink);
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}

.blog-read-more {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.blog-read-more:hover,
.blog-read-more:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.blog-card p:last-child,
.contact-card p:last-child {
  color: var(--muted-ink);
  line-height: 1.65;
  margin: 0;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin: 0 auto;
  max-width: 900px;
}

.contact-stacked {
  grid-template-columns: 1fr;
}

.contact-info address {
  color: var(--muted-ink);
  font-size: 22px;
  font-style: normal;
  line-height: 1.65;
  margin: 0;
}

.contact-info-layout {
  align-items: stretch;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1px minmax(0, 1fr);
}

.contact-email-icon {
  align-items: center;
  color: var(--orange);
  display: flex;
  justify-content: center;
  min-width: 3.5rem;
}

.contact-email-icon svg {
  fill: none;
  height: 3rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 3rem;
}

.contact-info-divider {
  background: #d6d6d6;
  width: 1px;
}

.contact-info-copy .simple-kicker {
  margin-top: 0;
}

.contact-info address a {
  color: var(--orange);
  text-decoration: none;
}

.contact-info address a:hover,
.contact-info address a:focus-visible {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #bcbcbc;
  border-radius: 0;
  font: inherit;
  padding: 0.7rem 0.8rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(232, 121, 27, 0.18);
}

.contact-submit {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: background 180ms ease, color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #ffffff;
  color: var(--orange);
}

.videos-page {
  background: #e9e9e9;
  min-height: 100vh;
  padding: calc(var(--header-height) + 3rem) 1rem 4rem;
}

.videos-container {
  margin: 0 auto;
  max-width: 1160px;
}

.videos-heading {
  color: var(--ink);
  padding: 0 1.5rem 2.75rem;
  text-align: center;
}

.videos-rule {
  background: var(--orange);
  margin-bottom: 2.6rem;
  width: 250px;
}

.videos-heading h1 {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.videos-heading p {
  color: var(--muted-ink);
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0.8rem 0 0;
}

.youtube-channel-link {
  align-items: center;
  color: var(--orange);
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 0.55rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.youtube-channel-icon {
  display: block;
  flex: 0 0 1.55rem;
  height: 1.55rem;
  max-height: 1.55rem;
  max-width: 1.55rem;
  width: 1.55rem;
}

.youtube-channel-link:hover,
.youtube-channel-link:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.video-card-featured {
  margin: 0;
}

.video-card {
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 0.15rem;
  box-shadow: 0 0.6rem 1.2rem rgba(23, 23, 23, 0.16);
  display: grid;
  grid-template-columns: minmax(220px, 36%) minmax(0, 1fr) 1.4rem;
  min-height: 175px;
  overflow: hidden;
}

.video-thumbnail {
  background: #111111;
  overflow: hidden;
  position: relative;
}

.video-thumbnail img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
  width: 100%;
}

.video-thumbnail:hover img,
.video-thumbnail:focus-within img {
  filter: brightness(0.8);
  transform: scale(1.03);
}

.video-play-button {
  align-items: center;
  background: var(--orange);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.3);
  display: flex;
  height: 4.5rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
  width: 4.5rem;
}

.video-play-button span {
  border-bottom: 0.65rem solid transparent;
  border-left: 0.95rem solid #ffffff;
  border-top: 0.65rem solid transparent;
  display: block;
  margin-left: 0.2rem;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play-button:hover span,
.video-play-button:focus-visible span {
  border-left-color: var(--orange);
}

.video-card-caption {
  color: var(--ink);
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  padding: 1.25rem 2rem;
  text-align: left;
}

.video-card-caption p {
  margin: 0;
}

.video-card-lines {
  display: flex;
  gap: 0.22rem;
  justify-content: center;
  padding: 0.9rem 0.25rem;
}

.video-card-lines span {
  display: block;
  height: 100%;
  min-height: 5rem;
  width: 0.22rem;
}

.video-card-lines span:nth-child(1) {
  background: #f1a33c;
}

.video-card-lines span:nth-child(2) {
  background: #f5c979;
}

.video-card-lines span:nth-child(3) {
  background: #e8dfbd;
}

.book-image-modal-content {
  background: #171717;
  color: #ffffff;
}

.book-modal-image {
  display: block;
  margin: 0 auto;
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 64px;
  }

  .site-nav-inner {
    gap: 1.5rem;
    flex-wrap: wrap;
    min-width: 0;
    padding: 0 1rem;
  }

  .site-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-menu-collapse {
    display: none;
  }

  .site-logo {
    font-size: 1.7rem;
  }

  .about-section h1,
  .books-title,
  .book1-page-title,
  .videos-heading h1 {
    font-size: 1.7rem;
  }

  .site-menu {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem 0 0.75rem;
  }

  .site-menu a {
    font-size: 22px;
    min-height: 2.5rem;
  }

  .about-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-rule {
    margin-bottom: 2rem;
    width: 150px;
  }

  .about-top-grid,
  .about-bottom-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .about-top-grid {
    margin-top: 3.5rem;
  }

  .about-bottom-grid {
    margin-top: 2.5rem;
  }

  .about-copy {
    padding-top: 0.5rem;
  }

  .books-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .art-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .books-intro {
    margin-bottom: 2rem;
  }

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

  .book1-image-frame {
    height: 220px;
  }

  .simple-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .simple-title {
    font-size: 1.7rem;
  }

  .about-page-gallery {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-logos {
    border-left: 0;
    border-top: 1px solid #d6d6d6;
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    padding-top: 1.25rem;
  }

  .service-logos img:first-child {
    grid-column: 1 / -1;
  }

  .service-story-grid {
    grid-template-columns: 1fr;
  }

  .blog-option-cards,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .blog-list-layout {
    grid-template-columns: 1fr;
  }

  .blog-pen img {
    max-height: 260px;
  }

  .blog-list-item,
  .blog-option-row {
    gap: 1rem;
  }

  .videos-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .video-gallery {
    width: 100%;
  }

  .video-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .video-thumbnail {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .video-card-caption {
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
  }

  .video-card-lines {
    flex-direction: row;
    gap: 0.25rem;
    min-height: 0;
    padding: 0 1rem 0.65rem;
  }

  .video-card-lines span {
    height: 0.22rem;
    min-height: 0;
    width: auto;
    flex: 1;
  }

  .video-play-button {
    height: 3.75rem;
    width: 3.75rem;
  }
}

@media (max-width: 575.98px) {
  .about-copy-portrait {
    height: 140px;
    width: 140px;
  }

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-logos {
    grid-column: auto;
  }

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

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

  .book1-image-frame {
    height: 220px;
  }

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

  .video-card-caption {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 0.75rem 0.9rem;
  }

  .video-card-lines {
    gap: 0.12rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }

  .video-card-lines span {
    height: 0.16rem;
    min-height: 0;
  }
}
