:root {
  --white: #ffffff;
  --tan: #f7c8a1;
  --tan-deep: #e7b289;
  --tan-soft: #fdf0e3;
  --black: #111111;
  --muted: #66615d;
  --line: rgba(17, 17, 17, 0.12);
  --soft-line: rgba(17, 17, 17, 0.08);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

body.popup-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(6, 6, 6, 0.84);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.brand,
.nav-toggle,
.site-nav,
.header-actions {
  position: relative;
  z-index: 2;
}

.mobile-nav-media {
  display: none;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(30px, 4vw, 44px);
  object-fit: contain;
}

.footer-brand img {
  height: clamp(38px, 5vw, 58px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.site-nav a,
.nav-link-row > a,
.nav-subgroup > span {
  position: relative;
  padding: 4px 0;
}

.nav-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link-row > a {
  flex: 1;
}

.nav-expand,
.nav-subtoggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.site-nav a::after,
.nav-link-row > a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: var(--tan-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after,
.nav-group:hover .nav-link-row > a::after,
.nav-link-row > a.active::after {
  transform: scaleX(1);
}

.site-nav a.active,
.nav-link-row > a.active {
  color: var(--white);
}

.nav-group {
  position: relative;
}

.nav-group::after,
.nav-subgroup::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  content: "";
}

.nav-dropdown,
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 280px;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-subgroup {
  position: relative;
  display: grid;
  gap: 10px;
}

.nav-subgroup > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-subtoggle {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-submenu {
  top: -10px;
  left: calc(100% + 12px);
}

.nav-group:hover > .nav-dropdown,
.nav-group:focus-within > .nav-dropdown,
.nav-subgroup:hover > .nav-submenu,
.nav-subgroup:focus-within > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a,
.nav-submenu a {
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.nav-dropdown a::after,
.nav-submenu a::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.socials a:hover {
  color: var(--black);
  background: var(--tan);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-dark {
  color: var(--black);
  border-color: var(--tan);
  background: var(--tan);
}

.button-dark:hover {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.button-outline {
  color: var(--black);
  background: transparent;
}

.button-outline:hover {
  color: var(--black);
  border-color: var(--tan);
  background: var(--tan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.nav-toggle:hover {
  background: rgba(247, 200, 161, 0.2);
  transform: translateY(-1px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(82px, 9vw, 134px) clamp(18px, 4vw, 56px) clamp(44px, 6vw, 82px);
}

.home-hero-bg,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-bg {
  z-index: 0;
  object-fit: cover;
  object-position: 68% center;
}

.home-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.72) 0%, rgba(87, 58, 35, 0.42) 35%, rgba(247, 200, 161, 0.18) 100%),
    linear-gradient(180deg, rgba(247, 200, 161, 0.12) 0%, rgba(17, 17, 17, 0.52) 100%);
}

.hero-copy {
  max-width: 640px;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: min(720px, 100%);
}

.home-hero .eyebrow,
.home-hero h1,
.home-hero p,
.home-hero .text-link {
  color: var(--white);
}

.home-hero h1 {
  max-width: 840px;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
}

.home-hero .hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
}

.home-hero .text-link {
  border-bottom-color: rgba(255, 255, 255, 0.82);
}

.home-hero .text-link:hover {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .button-dark {
  border-color: var(--tan);
  background: var(--tan);
  color: var(--black);
}

.home-hero .button-dark:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  font-weight: 300;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  font-weight: 300;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  font-weight: 400;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-heading {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.section-heading h2 {
  color: var(--black);
}

.mode-grid,
.type-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.mode-panel,
.type-column {
  min-height: 280px;
  padding: clamp(22px, 3vw, 40px);
  background: var(--white);
}

.mode-number,
.publication {
  display: block;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mode-panel p,
.type-column p,
.service-item p,
.editorial p,
.team-copy p,
.media-card p,
.contact-details p,
.contact-details dd {
  color: var(--muted);
}

.quote-band {
  display: grid;
  min-height: 42svh;
  place-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 56px);
  background: var(--black);
}

blockquote {
  max-width: 1120px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 7.2rem);
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 4vw, 56px);
  background: var(--tan);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  background: var(--tan-soft);
}

.about-why-section {
  background: var(--white);
}

.intro-band-copy {
  min-width: 0;
}

.intro-band .section-heading {
  margin-bottom: 20px;
}

.intro-band .editorial-copy {
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.intro-band-image {
  overflow: hidden;
  border-radius: 28px;
}

.intro-band-image img {
  aspect-ratio: 5 / 4;
  height: auto;
}

.final-cta h2 {
  margin-bottom: 0;
}

.page-hero {
  display: grid;
  min-height: 54svh;
  align-items: end;
  gap: 24px;
  padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 56px) clamp(40px, 6vw, 72px);
}

.page-hero-with-image,
.services-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 1120px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.page-hero-tan {
  background: var(--tan);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.editorial-copy {
  max-width: 760px;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.about-intro-copy {
  margin-top: clamp(16px, 3vw, 42px);
  font-size: clamp(1.04rem, 1.4vw, 1.34rem);
  line-height: 1.6;
}

.values-list {
  border-top: 1px solid var(--line);
}

.values-list h2 {
  margin: 18px 0;
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
}

.values-list ul,
.type-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-list li,
.type-column li {
  padding: 14px 0;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
}

.values-list span {
  display: block;
  color: var(--black);
  font-weight: 500;
}

.team-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: var(--tan-soft);
}

.image-block {
  min-height: 560px;
  overflow: hidden;
}

.about-portrait-block {
  display: flex;
  min-height: auto;
  align-items: center;
  justify-content: center;
  justify-self: end;
  overflow: visible;
}

.about-portrait-image {
  width: min(100%, 660px);
  height: auto;
  object-fit: contain;
}

.team-copy {
  max-width: 690px;
}

.about-perspective-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
}

.about-perspective-section .team-copy {
  max-width: 690px;
}

.about-perspective-image-block {
  display: flex;
  min-height: auto;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.about-perspective-image {
  width: min(100%, 660px);
  height: auto;
  object-fit: contain;
}

.team-copy .button {
  margin-top: 18px;
}

.page-hero-image,
.hero-inline-image {
  min-height: 380px;
  border-radius: 28px;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  overflow: hidden;
}

.feature-links.section {
  padding: 0;
}

.feature-links-bg,
.feature-links-overlay {
  position: absolute;
  inset: 0;
}

.feature-links-bg {
  z-index: 0;
  object-fit: cover;
}

.feature-links-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.24) 0%, rgba(17, 17, 17, 0.16) 100%);
}

.feature-panel {
  position: relative;
  z-index: 2;
  min-height: 320px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--white);
}

.feature-links-video .feature-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.feature-links-video .feature-panel .eyebrow,
.feature-links-video .feature-panel h3,
.feature-links-video .feature-panel p,
.feature-links-video .feature-panel .text-link {
  color: var(--white);
}

.feature-links-video .feature-panel .text-link {
  border-bottom-color: rgba(255, 255, 255, 0.84);
}

.feature-links-video .feature-panel .text-link:hover {
  color: rgba(255, 255, 255, 0.82);
}

.instagram-spot {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(247, 200, 161, 0.26) 0%, rgba(247, 200, 161, 0.66) 100%);
}

.instagram-spot-copy {
  max-width: 720px;
}

.instagram-spot-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.instagram-spot-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.instagram-spot-card h3 {
  max-width: 16ch;
}

.instagram-spot-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  background: var(--white);
}

.service-detail {
  padding: clamp(22px, 3vw, 38px);
  background: var(--tan);
}

.service-detail h2 {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.service-points {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.article-list .article-link {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
}

.service-item {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 38px);
  background: var(--white);
}

.service-item .button {
  margin-top: auto;
}

.session-types {
  background: var(--tan-soft);
}

.type-column .button {
  margin-top: 18px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

.media-card {
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.media-card:hover {
  border-color: rgba(17, 17, 17, 0.28);
  transform: translateY(-4px);
}

.media-card img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.media-card div {
  padding: clamp(18px, 2.8vw, 26px);
}

.media-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
}

.publication {
  margin-bottom: 18px;
}

.store-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 26px);
}

.store-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.store-card-accent {
  background: var(--tan-soft);
}

.store-card-media {
  display: grid;
  place-items: center;
  padding: clamp(16px, 2.6vw, 22px);
  background: #f8f8f8;
}

.store-card-media img {
  width: min(100%, 420px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}

.store-card-media-cover {
  padding: 0;
  min-height: 420px;
  background: #111111;
}

.store-card-media-cover img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.store-card-copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(20px, 3vw, 30px);
}

.store-card-copy h2 {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.featured-book-copy > p:not(.eyebrow) {
  font-size: 0.94rem;
  line-height: 1.55;
}

.store-card-copy .button {
  margin-top: auto;
}

.store-more {
  width: 100%;
  margin: 0 0 20px;
}

.store-more summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--black);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.store-more summary::-webkit-details-marker {
  display: none;
}

.store-more summary:hover {
  color: var(--black);
  background: var(--tan);
  transform: translateY(-2px);
}

.store-more[open] summary {
  margin-bottom: 14px;
}

.store-more-copy p:last-child {
  margin-bottom: 0;
}

.store-points {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.store-points li + li {
  margin-top: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) clamp(18px, 4vw, 56px) clamp(42px, 6vw, 76px);
}

.contact-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-details .contact-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
}

.contact-details > p {
  max-width: 680px;
}

.contact-details dl {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  background: var(--line);
}

.contact-details dl div {
  padding: 18px;
  background: var(--white);
}

.contact-details dt {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
}

.contact-form {
  align-self: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--tan-soft);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  outline: none;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.form-status {
  min-height: 28px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(32px, 5vw, 52px) clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-footer .brand,
.site-footer a {
  color: var(--white);
}

.footer-copy p {
  margin: 12px 0 0;
}

.legal {
  max-width: none;
  margin: 0;
  text-align: right;
  justify-self: end;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(6px);
}

.promo-popup-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(247, 200, 161, 0.34) 0%, rgba(118, 71, 39, 0.82) 100%),
    url("assets/IMG_0442.JPG") 58% center/165% no-repeat;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
}

.promo-popup-dialog .eyebrow {
  color: rgba(255, 255, 255, 0.94);
}

.promo-popup-dialog h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.promo-popup-dialog p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.promo-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.promo-popup-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: reveal-in 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1.is-visible {
  animation-delay: 120ms;
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    gap: 16px;
    overflow: hidden;
  }

  .mobile-nav-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-nav-media::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(135deg, rgba(247, 200, 161, 0.22) 0%, rgba(17, 17, 17, 0.14) 100%);
    content: "";
  }

  .mobile-nav-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .site-header.nav-open .mobile-nav-media {
    opacity: 1;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }

  .site-header.nav-open {
    align-items: start;
    background: rgba(6, 6, 6, 0.4);
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
    color: var(--white);
    font-size: 1rem;
    max-height: min(58svh, 520px);
    overflow: auto;
  }

  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 14px;
    padding: 0 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: transparent;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
    max-height: min(24svh, 220px);
    overflow: auto;
  }

  .site-header.nav-open .nav-group,
  .site-header.nav-open .nav-subgroup {
    width: 100%;
  }

  .site-header.nav-open .nav-link-row {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-header.nav-open .nav-expand,
  .site-header.nav-open .nav-subtoggle {
    display: inline-flex;
  }

  .site-header.nav-open .nav-expand {
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1;
    flex: 0 0 auto;
  }

  .site-header.nav-open .nav-dropdown,
  .site-header.nav-open .nav-submenu {
    position: static;
    min-width: 0;
    gap: 12px;
    padding: 12px 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .site-header.nav-open .site-nav > a,
  .site-header.nav-open .nav-link-row > a {
    width: 100%;
    padding: 6px 0;
    color: var(--white);
    font-size: 1rem;
  }

  .site-header.nav-open .nav-group.is-open > .nav-dropdown,
  .site-header.nav-open .nav-subgroup.is-open > .nav-submenu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.nav-open .header-actions .socials {
    justify-content: flex-start;
  }

  .site-header.nav-open .header-actions .socials a {
    color: var(--white);
  }

  .site-header.nav-open .header-actions .button {
    width: 100%;
  }

  .site-header.nav-open .nav-subtoggle {
    font-size: 0.78rem;
  }

  .site-header.nav-open .nav-expand[aria-expanded="true"] span,
  .site-header.nav-open .nav-subtoggle[aria-expanded="true"] > span:last-child {
    transform: rotate(45deg);
  }

  .home-hero,
  .intro-band,
  .editorial,
  .team-section,
  .instagram-spot,
  .page-hero-with-image,
  .services-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-block,
  .page-hero-image,
  .hero-inline-image {
    min-height: 440px;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .contact-form {
    max-width: 760px;
  }

  .about-intro-copy {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .site-header.nav-open .site-nav {
    padding: 20px 18px;
  }

  .site-header.nav-open .header-actions {
    padding: 0 18px 18px;
  }

  .brand img {
    height: 42px;
  }

  .footer-brand img {
    height: 58px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.45rem);
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.65rem);
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height));
    align-items: flex-end;
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .home-hero-bg {
    object-position: 58% center;
  }

  .home-hero h1 {
    max-width: 92%;
    font-size: clamp(2.5rem, 8.8vw, 3.7rem);
  }

  .home-hero .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .image-block,
  .page-hero-image,
  .hero-inline-image {
    min-height: 260px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .promo-popup-dialog {
    gap: 14px;
    padding: 22px 20px;
    max-height: min(88svh, 720px);
    overflow: auto;
  }

  .promo-popup-dialog h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .promo-popup-dialog p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .mode-grid,
  .type-columns,
  .service-grid,
  .service-stack,
  .media-grid,
  .store-card-grid,
  .feature-links,
  .contact-details dl,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .instagram-spot-card h3 {
    max-width: none;
  }

  .mode-panel,
  .type-column,
  .service-item {
    min-height: auto;
  }

  .legal {
    text-align: left;
    justify-self: start;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-layout {
    padding-top: 42px;
  }
}
