:root {
  --koda-black: #1b1d1f;
  --koda-white: #ffffff;
  --koda-bg: #edefde;
  --koda-ink: #171717;
  --koda-muted: #5f5a55;
  --koda-paper: #f5f2ec;
  --koda-gold: #dbc990;
  --koda-line: rgba(5, 5, 5, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.koda-lightbox-open {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--koda-bg);
  color: var(--koda-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.koda-shell {
  min-height: 100vh;
  overflow: hidden;
}

.koda-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--koda-white);
  background: transparent;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.koda-header.is-scrolled {
  color: var(--koda-black);
  background: var(--koda-bg);
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.08);
}

.koda-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
  min-height: 70px;
  padding: 18px clamp(16px, 2.2vw, 38px);
}

.koda-nav__side {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  min-width: 0;
}

.koda-nav__side--left {
  justify-content: flex-start;
}

.koda-nav__side--right {
  justify-content: flex-end;
  gap: 16px;
}

.koda-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition: color 180ms ease, opacity 180ms ease;
}

.koda-nav a:hover {
  color: var(--koda-gold);
}

.koda-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.koda-nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.koda-nav-item--has-menu > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.koda-nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 156px;
  padding: 9px 0;
  background: rgba(237, 239, 222, 0.96);
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 18px 38px rgba(5, 5, 5, 0.08);
  color: var(--koda-black);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.koda-nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 20px;
}

.koda-nav-submenu a {
  display: block;
  padding: 10px 18px;
  color: var(--koda-black);
  white-space: nowrap;
}

.koda-nav-submenu a:hover {
  color: var(--koda-gold);
}

.koda-nav-item--has-menu:hover .koda-nav-submenu,
.koda-nav-item--has-menu:focus-within .koda-nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.koda-brand {
  position: relative;
  display: block;
  width: clamp(86px, 5.4vw, 112px);
  height: 28px;
}

.koda-brand__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.koda-brand__logo--dark,
.koda-header.is-scrolled .koda-brand__logo--light {
  opacity: 0;
}

.koda-header.is-scrolled .koda-brand__logo--dark {
  opacity: 1;
}

.koda-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.koda-icon-link svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.koda-cart-bubble {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--koda-gold);
  color: var(--koda-black);
  font-size: 8px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  transform-origin: 50% 55%;
  transition: opacity 140ms ease, transform 140ms ease;
}

.koda-cart-bubble.is-empty {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.koda-cart-bubble.is-animating {
  animation: kodaCartBubblePop 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes kodaCartBubblePop {
  0% {
    transform: scale(0.6) rotate(0deg);
  }
  28% {
    transform: scale(1.85) rotate(-10deg);
  }
  45% {
    transform: scale(1.35) rotate(9deg);
  }
  62% {
    transform: scale(1.15) rotate(-6deg);
  }
  78% {
    transform: scale(1.05) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.koda-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 0;
}

.koda-menu-button span {
  position: absolute;
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.koda-menu-button span:first-child {
  transform: translateY(-4px);
}

.koda-menu-button span:last-child {
  transform: translateY(4px);
}

.koda-menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.koda-menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.koda-mobile-menu {
  display: none;
}

.koda-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--koda-black);
}

.koda-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.koda-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 34%);
}

.koda-hero__shade::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.koda-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  align-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 112px clamp(20px, 5vw, 86px) 96px;
  text-align: right;
  color: var(--koda-white);
}

.koda-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0;
}

.koda-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 28px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--koda-black);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.koda-button--light {
  margin-top: 30px;
  color: var(--koda-white);
}

.koda-button--light:hover {
  background: var(--koda-bg);
  border-color: var(--koda-bg);
  color: var(--koda-black);
}

.koda-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border-right: 1px solid var(--koda-white);
  border-bottom: 1px solid var(--koda-white);
  transform: translateX(-50%) rotate(45deg);
}

.koda-scroll--dark {
  border-color: rgba(255, 255, 255, 0.72);
}

.koda-intro {
  display: grid;
  justify-items: center;
  gap: 26px;
  max-width: none;
  margin: 0;
  padding: clamp(82px, 7.7vw, 146px) 24px clamp(80px, 7.2vw, 132px);
  text-align: center;
  background: var(--koda-bg);
}

.koda-intro h2 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(30px, 2.05vw, 39px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.koda-products h2 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.koda-intro p {
  max-width: 720px;
  margin: 0;
  color: rgba(23, 23, 23, 0.48);
  font-size: clamp(10px, 0.65vw, 16px);
  font-weight: 300;
  line-height: 1.8;
}

.koda-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, 18.85vw));
  gap: 0;
  background: var(--koda-paper);
}

.koda-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.koda-mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.koda-mosaic img:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.koda-mosaic img:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.koda-mosaic img:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.koda-mosaic img:nth-child(6) {
  display: none;
}

.koda-products {
  padding: clamp(76px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
  background: var(--koda-bg);
}

.koda-section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 86px) 42px;
  text-align: center;
}

.koda-carousel-controls {
  position: absolute;
  right: clamp(18px, 5vw, 86px);
  display: flex;
  gap: 10px;
}

.koda-carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--koda-line);
  background: var(--koda-bg);
  color: var(--koda-black);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.koda-carousel-controls button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.koda-carousel-controls button:first-child::before {
  transform: translateX(2px) rotate(-45deg);
}

.koda-carousel-controls button:last-child::before {
  transform: translateX(-2px) rotate(135deg);
}

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

.koda-product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31vw);
  gap: 28px;
  overflow-x: auto;
  padding: 0 clamp(18px, 5vw, 86px) 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.koda-product-track::-webkit-scrollbar {
  display: none;
}

.koda-product {
  position: relative;
  scroll-snap-align: start;
  background: var(--koda-bg);
}

.koda-product > a:first-child {
  display: grid;
  gap: 16px;
  text-align: center;
}

.koda-product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f7f7f7;
}

.koda-product span {
  min-height: 42px;
  color: var(--koda-ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.koda-product strong {
  margin-top: -8px;
  font-size: 22px;
  font-weight: 500;
}

.koda-product__action {
  position: absolute;
  inset: auto 0 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--koda-white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.koda-product:hover .koda-product__action {
  opacity: 1;
  transform: translateY(0);
}

.koda-shop {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-shop-hero {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(150px, 17vw, 238px) 24px clamp(72px, 8vw, 120px);
  text-align: center;
}

.koda-shop-hero p,
.koda-shop-heading p,
.koda-shop-sidebar h3,
.koda-shop-search span,
.koda-shop-sort span {
  margin: 0;
  color: rgba(23, 23, 23, 0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.koda-shop-hero h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(76px, 13vw, 184px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.koda-shop-hero span {
  display: block;
  max-width: 760px;
  color: var(--koda-muted);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.7;
}

.koda-shop-shell {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.8vw, 86px) clamp(80px, 9vw, 136px);
}

.koda-shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  border-top: 1px solid var(--koda-line);
  padding-top: 34px;
}

.koda-shop-heading h2 {
  margin: 4px 0 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.koda-shop-result {
  display: inline-grid;
  justify-items: end;
  gap: 4px;
  min-width: 96px;
  color: var(--koda-muted);
}

.koda-shop-result strong {
  color: var(--koda-ink);
  font-family: Cormorant, Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 0.85;
}

.koda-shop-result span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.koda-shop-controls {
  position: sticky;
  top: 88px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 260px);
  gap: 14px;
  margin-bottom: 36px;
  padding: 14px;
  background: rgba(237, 239, 222, 0.94);
  border: 1px solid var(--koda-line);
  backdrop-filter: blur(16px);
}

.koda-shop-search,
.koda-shop-sort {
  display: grid;
  gap: 8px;
}

.koda-shop-search input,
.koda-shop-sort select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 23, 23, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.38);
  color: var(--koda-ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 0 14px;
}

.koda-shop-search input:focus,
.koda-shop-sort select:focus {
  border-color: var(--koda-black);
}

.koda-shop-layout {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
}

.koda-shop-sidebar {
  position: sticky;
  top: 192px;
  display: grid;
  gap: 18px;
}

.koda-shop-sidebar h3 {
  color: var(--koda-ink);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.koda-shop-categories {
  display: grid;
  gap: 3px;
}

.koda-shop-chip {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(23, 23, 23, 0.66);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.koda-shop-chip:hover,
.koda-shop-chip.is-active {
  color: var(--koda-black);
}

.koda-shop-chip.is-active::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--koda-gold);
  border-radius: 50%;
}

.koda-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3vw, 52px) clamp(22px, 2.8vw, 44px);
}

.koda-shop-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.koda-shop-card[hidden] {
  display: none;
}

.koda-shop-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.5);
}

.koda-shop-card__image::after {
  content: "Quick-View";
  position: absolute;
  inset: auto 16px 16px;
  display: grid;
  place-items: center;
  min-height: 42px;
  background: rgba(27, 29, 31, 0.88);
  color: var(--koda-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.koda-shop-card:hover .koda-shop-card__image::after {
  opacity: 1;
  transform: translateY(0);
}

.koda-shop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.koda-shop-card:hover img {
  transform: scale(1.025);
}

.koda-shop-card__body {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.koda-shop-card__body p {
  margin: 0;
  min-height: 14px;
  color: rgba(23, 23, 23, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.koda-shop-card__body h3 {
  margin: 0;
  min-height: 48px;
  color: var(--koda-ink);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
}

.koda-shop-card__body strong {
  color: var(--koda-ink);
  font-family: Cormorant, Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.koda-shop-card__body form,
.koda-shop-card__buy-link {
  width: 100%;
  margin-top: 4px;
}

.koda-shop-card__body button,
.koda-shop-card__buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--koda-black);
  background: transparent;
  color: var(--koda-black);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.koda-shop-card__body button:hover,
.koda-shop-card__buy-link:hover {
  background: var(--koda-black);
  color: var(--koda-white);
}

.koda-shop-card__body button:disabled {
  border-color: rgba(23, 23, 23, 0.28);
  color: rgba(23, 23, 23, 0.42);
  cursor: not-allowed;
}

.koda-shop-card__body .koda-shop-card__secondary {
  border-color: rgba(23, 23, 23, 0.26);
  background: rgba(255, 255, 255, 0.22);
  color: rgba(23, 23, 23, 0.72);
}

.koda-shop-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid var(--koda-line);
  color: var(--koda-muted);
  text-align: center;
}

.koda-shop-empty[hidden] {
  display: none;
}

.koda-shop-more {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.koda-shop-more [hidden] {
  display: none;
}

.koda-services {
  background: var(--koda-bg);
}

.koda-services .koda-page-hero {
  min-height: clamp(560px, 52.8vw, 760px);
}

.koda-services .koda-page-hero img,
.koda-services .koda-stylist-card img {
  filter: grayscale(1);
}

.koda-services .koda-page-hero h1 {
  padding-top: 72px;
  font-size: clamp(44px, 3.65vw, 70px);
  line-height: 1;
}

.koda-page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--koda-white);
  text-align: center;
}

.koda-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.koda-page-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.koda-page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 90px 24px 40px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(62px, 9.2vw, 142px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.koda-services-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 108px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 24px;
  color: var(--koda-ink);
}

.koda-services-intro h2,
.koda-services-heading h2,
.koda-menu-content h2,
.koda-bookings h2 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(42px, 5.4vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.koda-services-intro p,
.koda-bookings__intro p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.72;
}

.koda-services-intro p + p {
  margin-top: 24px;
}

.koda-services-heading {
  display: grid;
  justify-items: center;
  gap: 19px;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(92px, 8vw, 126px) 24px clamp(146px, 10.5vw, 190px);
  text-align: center;
}

.koda-services .koda-services-heading h2 {
  font-size: clamp(28px, 2.1vw, 39px);
  line-height: 1;
}

.koda-services-heading p,
.koda-kicker {
  margin: 0;
  color: rgba(23, 23, 23, 0.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.koda-services-heading p {
  color: #b79a50;
}

.koda-menu-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  align-items: stretch;
  background: var(--koda-bg);
}

.koda-menu-image {
  min-height: 340px;
}

.koda-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.koda-menu-content {
  max-width: 528px;
  padding: clamp(64px, 8vw, 116px) clamp(24px, 6vw, 96px);
}

.koda-menu-content h2 {
  margin-top: 14px;
}

.koda-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 76px);
  margin-top: clamp(32px, 4vw, 54px);
}

.koda-price-grid h3 {
  margin: 34px 0 12px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.koda-price-grid h3:first-child {
  margin-top: 0;
}

.koda-price-grid h4 {
  display: inline-block;
  margin: 18px 0 8px;
  color: rgba(23, 23, 23, 0.74);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
}

.koda-price-grid p {
  margin: 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.58;
}

.koda-price-grid strong {
  color: var(--koda-black);
  font-weight: 700;
}

.koda-bookings {
  max-width: 836px;
  margin: 0 auto;
  padding: 0 24px clamp(118px, 10vw, 166px);
}

.koda-bookings__intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1fr);
  gap: clamp(48px, 6.8vw, 102px);
  margin-bottom: clamp(78px, 7.5vw, 112px);
}

.koda-services .koda-bookings h2 {
  font-size: clamp(30px, 2.15vw, 40px);
  line-height: 0.98;
}

.koda-services .koda-bookings__intro p {
  color: rgba(23, 23, 23, 0.54);
  font-size: 11px;
  line-height: 1.82;
}

.koda-stylist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(74px, 7.2vw, 108px) 32px;
}

.koda-stylist-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.koda-stylist-card--third {
  grid-column: auto;
}

.koda-stylist-card--half {
  grid-column: auto;
}

.koda-stylist-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 24px;
}

.koda-stylist-card h3 {
  margin: 0 0 13px;
  font-family: Cormorant, Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}

.koda-stylist-card p {
  margin: 0 0 13px;
  color: rgba(23, 23, 23, 0.56);
  font-size: 10px;
  line-height: 1.75;
}

.koda-stylist-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  margin-top: 9px;
  padding: 10px 20px;
  border: 1px solid var(--koda-black);
  background: var(--koda-black);
  color: var(--koda-white);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.koda-stylist-card p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.koda-stylist-card > a:hover {
  background: var(--koda-black);
  border-color: var(--koda-black);
  color: var(--koda-white);
}

.koda-policy {
  min-height: 520px;
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-policy-content {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 154px 0 116px;
}

.koda-policy-content h1 {
  margin: 0 0 26px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(34px, 2.7vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.koda-policy-content h4 {
  margin: 24px 0 9px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.koda-policy-content p {
  max-width: 1050px;
  margin: 0 0 14px;
  color: rgba(23, 23, 23, 0.7);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
}

.koda-salon-services {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-salon-services-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--koda-white);
  text-align: center;
}

.koda-salon-services-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.koda-salon-services-hero > div:last-child {
  position: relative;
  z-index: 1;
  padding: 92px 24px 40px;
}

.koda-salon-services-hero p {
  margin: 0 0 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(7px, 0.45vw, 9px);
  font-weight: 400;
  letter-spacing: 0.38em;
  line-height: 1;
}

.koda-salon-services-hero h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(60px, 4.15vw, 80px);
  font-weight: 400;
  line-height: 1;
}

.koda-salon-services-statement {
  display: grid;
  gap: 28px;
  place-items: center;
  min-height: clamp(320px, 20.5vw, 394px);
  padding: clamp(72px, 7vw, 128px) 24px;
  background: #f7f7f4;
  text-align: center;
}

.koda-salon-services-statement h2 {
  max-width: 760px;
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(18px, 1.08vw, 22px);
  font-weight: 400;
  line-height: 1.45;
}

.koda-outline-button {
  display: inline-grid;
  place-items: center;
  min-width: 104px;
  min-height: 36px;
  margin-top: 0;
  padding: 10px 20px;
  border: 1px solid currentColor;
  color: var(--koda-black);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.koda-salon-menu {
  max-width: 756px;
  margin: 0 auto;
  padding: clamp(108px, 7.8vw, 150px) 24px clamp(106px, 11.5vw, 220px);
  text-align: center;
}

.koda-salon-menu > h2 {
  margin: 26px 0 34px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(30px, 2vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.koda-salon-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.koda-salon-tabs__nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 38px);
  margin: 0 0 clamp(74px, 7.8vw, 150px);
  border-bottom: 0;
  text-align: center;
}

.koda-salon-tabs__nav label {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 18px;
  padding: 0;
  color: rgba(23, 23, 23, 0.62);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.koda-salon-tabs__nav label::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 1px;
  background: transparent;
}

#koda-tab-colour:checked ~ .koda-salon-tabs__nav label[for="koda-tab-colour"],
#koda-tab-cuts:checked ~ .koda-salon-tabs__nav label[for="koda-tab-cuts"],
#koda-tab-styling:checked ~ .koda-salon-tabs__nav label[for="koda-tab-styling"],
#koda-tab-treatments:checked ~ .koda-salon-tabs__nav label[for="koda-tab-treatments"] {
  color: #b79a50;
}

#koda-tab-colour:checked ~ .koda-salon-tabs__nav label[for="koda-tab-colour"]::after,
#koda-tab-cuts:checked ~ .koda-salon-tabs__nav label[for="koda-tab-cuts"]::after,
#koda-tab-styling:checked ~ .koda-salon-tabs__nav label[for="koda-tab-styling"]::after,
#koda-tab-treatments:checked ~ .koda-salon-tabs__nav label[for="koda-tab-treatments"]::after {
  background: var(--koda-black);
}

.koda-salon-tab {
  display: none;
  text-align: left;
}

#koda-tab-colour:checked ~ .koda-salon-tab--colour,
#koda-tab-cuts:checked ~ .koda-salon-tab--cuts,
#koda-tab-styling:checked ~ .koda-salon-tab--styling,
#koda-tab-treatments:checked ~ .koda-salon-tab--treatments {
  display: block;
}

.koda-price-section {
  margin: 0 0 clamp(64px, 6.2vw, 120px);
}

.koda-price-section h3 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0 0 clamp(38px, 4.5vw, 86px);
  border-top: 0;
  border-bottom: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(19px, 1.28vw, 25px);
  font-weight: 400;
  line-height: 1.1;
}

.koda-price-section h3 span {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(15px, 1.06vw, 20px);
  letter-spacing: 0;
  line-height: 1.4;
}

.koda-price-section dl {
  margin: 0;
  padding: 0;
}

.koda-price-section dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 20px;
  align-items: baseline;
  padding: 0 0 9px;
}

.koda-price-section dt,
.koda-price-section dd {
  margin: 0;
  color: rgba(23, 23, 23, 0.74);
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.25;
}

.koda-price-section dd {
  color: var(--koda-black);
  text-align: right;
}

.koda-footer-mark {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 41vh, 520px);
  padding: clamp(76px, 9vw, 132px) 24px;
  background: var(--koda-black);
}

.koda-footer-mark img {
  width: clamp(54px, 5.2vw, 92px);
  height: auto;
}

.koda-footer {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr minmax(260px, 1.55fr);
  gap: clamp(42px, 6.8vw, 150px);
  align-items: start;
  padding: clamp(88px, 10vw, 150px) clamp(24px, 8vw, 168px) clamp(110px, 12vw, 182px);
}

.koda-footer h2 {
  margin: 0 0 24px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.koda-footer a,
.koda-footer p {
  display: block;
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.koda-footer p + p {
  margin-top: 22px;
}

.koda-footer a:hover {
  color: var(--koda-black);
}

.koda-footer__note {
  align-self: start;
  padding-top: 2px;
}

.koda-footer__note p {
  color: rgba(23, 23, 23, 0.42);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.koda-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 16px clamp(22px, 2.5vw, 42px);
  background: var(--koda-black);
  color: var(--koda-white);
}

.koda-footer__bar p,
.koda-footer__bar a {
  color: var(--koda-white);
  font-size: 12px;
  line-height: 1.4;
}

.koda-footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.koda-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.koda-footer-social svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.koda-status {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 120px 24px 80px;
  text-align: center;
}

.koda-status section {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.koda-status p {
  margin: 0;
  color: var(--koda-gold);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.koda-status h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
}

.koda-status span {
  color: var(--koda-muted);
}

.koda-salon {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-salon-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--koda-white);
  text-align: center;
}

.koda-salon-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.koda-salon-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.34) 100%);
}

.koda-salon-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 108px 24px 70px;
}

.koda-salon-hero__copy p {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.koda-salon-hero__copy h1,
.koda-salon-quote p,
.koda-salon-about h2 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.koda-salon-hero__copy h1 {
  font-size: clamp(46px, 3.8vw, 66px);
  line-height: 1;
}

.koda-salon-quote {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 34vw, 520px);
  padding: clamp(90px, 9vw, 148px) 24px;
  background: var(--koda-bg);
  color: var(--koda-ink);
  text-align: center;
}

.koda-salon-quote blockquote {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0;
}

.koda-salon-quote p {
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.05;
}

.koda-salon-quote cite {
  color: rgba(23, 23, 23, 0.62);
  font-style: normal;
  font-size: 15px;
}

.koda-salon-about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100vh;
  background: var(--koda-bg);
}

.koda-salon-about figure {
  margin: 0;
  min-height: 100vh;
}

.koda-salon-about img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.koda-salon-about__copy {
  align-self: center;
  display: grid;
  gap: 20px;
  width: 65%;
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 132px) 0;
}

.koda-salon-about h2 {
  font-size: clamp(40px, 4vw, 68px);
  line-height: 1;
}

.koda-salon-about h3 {
  margin: 8px 0 -6px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.koda-salon-about p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.68;
}

.koda-salon-about a:not(.koda-button) {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.koda-salon-about .koda-button {
  width: fit-content;
  margin-top: 2px;
}

.koda-salon-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(120px, 13vw, 220px) clamp(26px, 8vw, 164px);
  background: #111516;
}

.koda-salon-gallery button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--koda-white);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.koda-salon-gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  transition: opacity 180ms ease;
}

.koda-salon-gallery button span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: transparent;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 180ms ease, transform 180ms ease;
}

.koda-salon-gallery button span::before,
.koda-salon-gallery button span::after {
  content: "";
  position: absolute;
  background: var(--koda-white);
}

.koda-salon-gallery button span::before {
  width: 18px;
  height: 1px;
}

.koda-salon-gallery button span::after {
  width: 1px;
  height: 18px;
}

.koda-salon-gallery button:hover::after,
.koda-salon-gallery button:focus-visible::after,
.koda-salon-gallery button:hover span,
.koda-salon-gallery button:focus-visible span {
  opacity: 1;
}

.koda-salon-gallery button:hover span,
.koda-salon-gallery button:focus-visible span {
  transform: translate(-50%, -50%) scale(1);
}

.koda-salon-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 240ms ease;
}

.koda-salon-gallery button:hover img,
.koda-salon-gallery button:focus-visible img {
  transform: scale(1.025);
}

.koda-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 56px);
  background: rgba(8, 10, 10, 0.92);
}

.koda-lightbox[hidden] {
  display: none;
}

.koda-lightbox img {
  width: auto;
  height: auto;
  max-width: min(92vw, 1420px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.koda-lightbox__close {
  position: absolute;
  right: clamp(20px, 3vw, 46px);
  top: clamp(20px, 3vw, 46px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--koda-white);
}

.koda-lightbox__close::before,
.koda-lightbox__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.koda-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.koda-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.koda-contact {
  min-height: 100vh;
  background: #111516;
  color: var(--koda-white);
}

.koda-contact-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #111516;
}

.koda-contact-hero__media {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
}

.koda-contact-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.koda-contact-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.koda-contact-hero__copy {
  align-self: center;
  display: grid;
  gap: 14px;
  width: 65%;
  max-width: 650px;
  margin: 0 auto;
  padding: clamp(96px, 10vw, 150px) 0 clamp(70px, 8vw, 118px);
}

.koda-contact-hero__copy h1 {
  margin: 0 0 8px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(54px, 6vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.koda-contact-hero__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.58;
}

.koda-contact-hero__copy strong {
  color: var(--koda-white);
  font-weight: 700;
}

.koda-contact-hero__copy a:not(.koda-button) {
  color: inherit;
  text-decoration: none;
}

.koda-contact-hero__copy .koda-button {
  width: fit-content;
  margin-top: 6px;
}

.koda-contact-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #111516;
}

.koda-contact-gallery button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--koda-white);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.koda-contact-gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 180ms ease;
}

.koda-contact-gallery button span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  color: transparent;
  opacity: 0;
}

.koda-contact-gallery button span::before,
.koda-contact-gallery button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--koda-white);
  transform: translate(-50%, -50%);
}

.koda-contact-gallery button span::before {
  width: 22px;
  height: 1px;
}

.koda-contact-gallery button span::after {
  width: 1px;
  height: 22px;
}

.koda-contact-gallery button:hover::after,
.koda-contact-gallery button:focus-visible::after,
.koda-contact-gallery button:hover span,
.koda-contact-gallery button:focus-visible span {
  opacity: 1;
}

.koda-contact-gallery img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 240ms ease;
}

.koda-contact-gallery button:hover img,
.koda-contact-gallery button:focus-visible img {
  transform: scale(1.025);
}

.koda-work {
  min-height: 100vh;
  background: #111516;
  color: var(--koda-white);
}

.koda-work-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100vh;
  background: #111516;
}

.koda-work-hero__media {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
}

.koda-work-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.koda-work-hero__copy {
  align-self: center;
  display: grid;
  gap: 22px;
  width: 65%;
  max-width: 650px;
  margin: 0 auto;
  padding: clamp(96px, 10vw, 150px) 0 clamp(70px, 8vw, 118px);
}

.koda-work-hero__copy h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(54px, 6vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.koda-work-hero__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.62;
}

.koda-work-form,
.koda-work-form__row {
  display: grid;
  gap: 18px;
}

.koda-work-form {
  margin-top: 4px;
}

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

.koda-work-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.koda-work-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.koda-work-form__accept span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.koda-work-form input,
.koda-work-form textarea {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  border-radius: 0;
  color: var(--koda-white);
  font: inherit;
  outline: none;
  padding: 11px 0;
}

.koda-work-form input::placeholder,
.koda-work-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.koda-work-form input:focus,
.koda-work-form textarea:focus {
  border-color: var(--koda-white);
}

.koda-work-form textarea {
  min-height: 106px;
  resize: vertical;
}

.koda-work-form input[type="file"] {
  min-height: 44px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.koda-work-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--koda-white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  padding: 6px 12px;
}

.koda-work-form__accept {
  display: flex;
  align-items: center;
  gap: 10px;
}

.koda-work-form__accept input {
  width: auto;
  min-height: 0;
}

.koda-work-form__accept a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.koda-work-form .koda-button {
  width: 100%;
}

.koda-gift-card {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-gift-card-product {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(42px, 5vw, 92px);
  min-height: 100vh;
  padding: clamp(126px, 12vw, 196px) clamp(28px, 6vw, 110px) clamp(76px, 8vw, 128px);
}

.koda-gift-card-summary,
.koda-gift-card-form {
  justify-self: center;
  display: grid;
  width: min(100%, 396px);
  text-align: center;
}

.koda-gift-card-summary {
  gap: 18px;
}

.koda-gift-card-summary h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(54px, 5.8vw, 98px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.koda-gift-card-price {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(36px, 3.6vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.koda-gift-card-copy p,
.koda-gift-card-meta p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
}

.koda-gift-card-meta {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.koda-gift-card-meta span {
  color: rgba(23, 23, 23, 0.48);
}

.koda-gift-card-meta strong {
  color: rgba(23, 23, 23, 0.72);
  font-weight: 500;
}

.koda-gift-card-media {
  justify-self: center;
  width: min(100%, 560px);
  margin: 0;
}

.koda-gift-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.koda-gift-card-form {
  gap: 18px;
}

.koda-gift-card-field {
  display: grid;
  gap: 7px;
  text-align: left;
}

.koda-gift-card-field span {
  color: rgba(23, 23, 23, 0.82);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.koda-gift-card-field abbr {
  text-decoration: none;
}

.koda-gift-card-field input,
.koda-gift-card-field select,
.koda-gift-card-field textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--koda-ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.koda-gift-card-field textarea {
  min-height: 82px;
  resize: vertical;
}

.koda-gift-card-field input::placeholder,
.koda-gift-card-field textarea::placeholder {
  color: rgba(23, 23, 23, 0.42);
}

.koda-gift-card-field input:focus,
.koda-gift-card-field select:focus,
.koda-gift-card-field textarea:focus {
  border-bottom-color: var(--koda-black);
}

.koda-gift-card-field--delivery {
  position: relative;
}

.koda-gift-card-field--delivery::after {
  content: "Clear";
  position: absolute;
  right: 0;
  bottom: 12px;
  color: rgba(23, 23, 23, 0.48);
  font-size: 12px;
}

.koda-gift-card-quantity {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 23, 23, 0.18);
}

.koda-gift-card-quantity span,
.koda-gift-card-quantity input {
  display: grid;
  place-items: center;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--koda-ink);
  font: inherit;
  text-align: center;
}

.koda-gift-card-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: 0;
  background: var(--koda-black);
  color: var(--koda-white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.koda-gift-card-submit:hover {
  background: #000;
}

.koda-gift-card-related {
  border-top: 1px solid rgba(23, 23, 23, 0.14);
  padding: clamp(68px, 8vw, 120px) clamp(28px, 6vw, 110px);
  text-align: center;
}

.koda-gift-card-related h2 {
  margin: 0 0 clamp(42px, 5vw, 72px);
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.koda-gift-card-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  max-width: 1260px;
  margin: 0 auto;
}

.koda-gift-card-related__item {
  display: grid;
  gap: 18px;
}

.koda-gift-card-related__image {
  display: block;
  overflow: hidden;
}

.koda-gift-card-related__image img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform 220ms ease;
}

.koda-gift-card-related__item:hover img {
  transform: scale(1.025);
}

.koda-gift-card-related__item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.koda-gift-card-related__item h3 span {
  display: block;
  margin-top: 8px;
  font-family: Cormorant, Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.koda-line-item__meta {
  color: rgba(23, 23, 23, 0.54);
  font-size: 13px;
}

.koda-commerce {
  min-height: 100vh;
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-commerce-hero {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(138px, 16vw, 220px) 24px clamp(48px, 6vw, 88px);
  text-align: center;
}

.koda-commerce-hero h1,
.koda-auth-page h1,
.koda-commerce-heading h2,
.koda-commerce-panel h2,
.koda-commerce-panel h3,
.koda-account-sidebar h2,
.koda-product-detail h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.koda-commerce-hero h1 {
  font-size: clamp(62px, 9vw, 138px);
  line-height: 0.86;
}

.koda-commerce-hero span {
  color: var(--koda-muted);
  font-size: 15px;
  font-weight: 600;
}

.koda-commerce-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) clamp(20px, 4.8vw, 86px);
}

.koda-commerce-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(24px, 3.4vw, 48px);
  text-align: center;
}

.koda-commerce-heading h2,
.koda-commerce-panel h2 {
  font-size: clamp(36px, 4.4vw, 70px);
  line-height: 0.96;
}

.koda-commerce-grid,
.koda-account-grid,
.koda-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 5vw, 76px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.8vw, 86px) clamp(82px, 10vw, 148px);
  align-items: start;
}

.koda-product-layout {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  padding-top: clamp(126px, 13vw, 184px);
}

.koda-account-grid {
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
}

.koda-commerce-panel,
.koda-commerce-empty,
.koda-account-sidebar,
.koda-account-card,
.koda-line-item,
.koda-commerce-alert {
  border: 1px solid var(--koda-line);
  background: rgba(255, 255, 255, 0.18);
}

.koda-commerce-panel,
.koda-commerce-empty,
.koda-account-sidebar,
.koda-commerce-alert {
  padding: clamp(22px, 3.2vw, 44px);
}

.koda-commerce-panel,
.koda-account-sidebar {
  display: grid;
  gap: 24px;
}

.koda-commerce-panel--sticky {
  position: sticky;
  top: 112px;
}

.koda-commerce-empty {
  display: grid;
  place-items: start;
  gap: 18px;
  min-height: 260px;
}

.koda-commerce-empty h2 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
}

.koda-commerce-empty p,
.koda-commerce-panel p,
.koda-account-sidebar p,
.koda-account-card p,
.koda-line-item p {
  margin: 0;
  color: rgba(23, 23, 23, 0.68);
  line-height: 1.65;
}

.koda-button--solid {
  background: var(--koda-black);
  border-color: var(--koda-black);
  color: var(--koda-white);
}

.koda-button--solid:hover {
  background: transparent;
  color: var(--koda-black);
}

.koda-text-button {
  border: 0;
  background: transparent;
  color: var(--koda-black);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0;
  text-transform: uppercase;
}

.koda-commerce-actions,
.koda-quick-links,
.koda-auth-links,
.koda-account-sidebar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.koda-form,
.koda-form-grid,
.koda-field {
  display: grid;
  gap: 14px;
}

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

.koda-field--full {
  grid-column: 1 / -1;
}

.koda-field span,
.koda-check {
  color: rgba(23, 23, 23, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.koda-field input,
.koda-field select,
.koda-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.34);
  color: var(--koda-ink);
  font: inherit;
  outline: none;
  padding: 12px 14px;
}

.koda-field textarea {
  min-height: 116px;
  resize: vertical;
}

.koda-field input:focus,
.koda-field select:focus,
.koda-field textarea:focus {
  border-color: var(--koda-black);
}

.koda-provider-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.koda-provider-grid label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  padding: 16px;
  border: 1px solid var(--koda-line);
  background: rgba(255, 255, 255, 0.16);
}

.koda-provider-grid span {
  grid-column: 2;
  color: var(--koda-muted);
  font-size: 14px;
}

.koda-payment-form {
  display: grid;
  gap: 24px;
}

.koda-provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.koda-provider-tabs form {
  margin: 0;
}

.koda-provider-tab {
  min-height: 42px;
  border: 1px solid var(--koda-line);
  background: rgba(255, 255, 255, 0.16);
  color: rgba(23, 23, 23, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
}

.koda-provider-tab.is-active,
.koda-provider-tab:disabled {
  background: var(--koda-black);
  border-color: var(--koda-black);
  color: var(--koda-white);
  cursor: default;
}

.koda-stripe-element {
  min-height: 124px;
  border: 1px solid rgba(23, 23, 23, 0.22);
  background: rgba(255, 255, 255, 0.34);
  padding: 14px;
}

.koda-payment-note {
  color: rgba(23, 23, 23, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.koda-paypal-host {
  width: 100%;
  min-height: 150px;
}

.koda-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--koda-line);
  color: rgba(23, 23, 23, 0.68);
}

.koda-summary-row strong {
  color: var(--koda-black);
}

.koda-cart-lines,
.koda-account-list,
.koda-account-stack,
.koda-checkout-lines {
  display: grid;
  gap: 18px;
}

.koda-line-item,
.koda-mini-line,
.koda-account-card {
  padding: 18px;
}

.koda-line-item {
  display: grid;
  grid-template-columns: minmax(96px, 150px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.koda-line-item img,
.koda-mini-line img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.45);
}

.koda-line-item h2,
.koda-account-card h3 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.koda-quantity {
  display: grid;
  grid-template-columns: 36px 36px 36px;
  align-items: center;
  border: 1px solid var(--koda-line);
}

.koda-quantity button,
.koda-quantity span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--koda-black);
  font: inherit;
}

.koda-mini-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--koda-line);
}

.koda-mini-line div {
  display: grid;
  gap: 3px;
}

.koda-mini-line span {
  color: var(--koda-muted);
  font-size: 13px;
}

.koda-account-sidebar {
  position: sticky;
  top: 112px;
}

.koda-account-sidebar h2 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.koda-account-nav {
  display: grid;
}

.koda-account-nav a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--koda-line);
  color: rgba(23, 23, 23, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.koda-account-nav a::after {
  content: ">";
}

.koda-account-nav a:hover,
.koda-account-nav a.is-active {
  color: var(--koda-black);
}

.koda-account-card {
  display: grid;
  gap: 14px;
}

.koda-account-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.koda-account-card span:first-child {
  color: rgba(23, 23, 23, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.koda-details {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--koda-line);
  padding-top: 16px;
}

.koda-details summary {
  cursor: pointer;
  font-weight: 700;
}

.koda-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.koda-auth-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 126px 20px 86px;
}

.koda-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  width: min(100%, 1040px);
  margin: 0 auto;
}

.koda-auth-page .koda-auth-grid {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.koda-auth-page h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.92;
}

.koda-auth-links a {
  color: rgba(23, 23, 23, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.koda-product-gallery {
  display: grid;
  gap: 18px;
}

.koda-product-media {
  margin: 0;
  background: rgba(255, 255, 255, 0.26);
}

.koda-product-media img,
.koda-product-media video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.koda-product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.koda-product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.koda-product-detail {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.koda-product-detail h1 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.88;
}

.koda-product-price {
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
}

.koda-variant-list,
.koda-product-bullets,
.koda-product-specs {
  display: grid;
  gap: 10px;
}

.koda-variant-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.koda-variant-list span {
  width: 100%;
  color: var(--koda-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.koda-variant-list a {
  border: 1px solid var(--koda-line);
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 700;
}

.koda-variant-list a.is-selected {
  border-color: var(--koda-black);
  background: var(--koda-black);
  color: var(--koda-white);
}

.koda-product-bullets {
  padding-left: 18px;
}

.koda-product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--koda-line);
  padding-bottom: 9px;
}

.koda-product-specs dt {
  color: var(--koda-muted);
  font-weight: 700;
}

.koda-blog {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-blog-hero {
  position: relative;
  min-height: 55vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 138px 24px 116px;
  text-align: center;
}

.koda-blog-hero img,
.koda-blog-hero__overlay {
  position: absolute;
  inset: 0;
}

.koda-blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.koda-blog-hero__overlay {
  background: rgba(255, 255, 255, 0.35);
}

.koda-blog-hero__copy {
  position: relative;
  z-index: 1;
  width: min(756px, 100%);
}

.koda-blog-hero h1 {
  margin: 0 0 22px;
  color: rgba(23, 23, 23, 0.88);
  font-family: Cormorant, Georgia, serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
}

.koda-blog-hero p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-family: Cormorant, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0;
}

.koda-blog-list {
  padding: 88px clamp(24px, 4.2vw, 82px) 92px;
  background: var(--koda-bg);
}

.koda-blog-tools {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 22px 34px;
  align-items: end;
  margin: 0 0 44px;
}

.koda-blog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.koda-blog-search label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.koda-blog-search span,
.koda-blog-results,
.koda-blog-empty {
  color: rgba(23, 23, 23, 0.58);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.koda-blog-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  color: var(--koda-ink);
  font: 500 13px/1 Inter, Arial, sans-serif;
  outline: 0;
  padding: 0 14px;
}

.koda-blog-search input:focus {
  border-color: rgba(23, 23, 23, 0.54);
}

.koda-blog-search button,
.koda-blog-empty a {
  min-height: 44px;
  border: 1px solid rgba(23, 23, 23, 0.86);
  background: #16191a;
  color: #f6f6ef;
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 18px;
  text-transform: uppercase;
}

.koda-blog-filterbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.koda-blog-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  color: rgba(23, 23, 23, 0.72);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 0 12px;
  text-transform: uppercase;
}

.koda-blog-filter span {
  color: rgba(23, 23, 23, 0.42);
  font-weight: 600;
}

.koda-blog-filter:hover,
.koda-blog-filter.is-active {
  border-color: rgba(23, 23, 23, 0.86);
  background: #16191a;
  color: #f6f6ef;
}

.koda-blog-filter:hover span,
.koda-blog-filter.is-active span {
  color: rgba(246, 246, 239, 0.68);
}

.koda-blog-results {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
  padding-top: 16px;
}

.koda-blog-results a {
  color: rgba(23, 23, 23, 0.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.koda-blog-empty {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 52px 20px;
  text-align: center;
}

.koda-blog-empty p {
  margin: 0;
}

.koda-blog-empty a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.koda-blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(17, 21, 22, 0.08);
}

.koda-blog-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.34 / 1;
  background: rgba(17, 21, 22, 0.08);
}

.koda-blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 21, 22, 0.1);
  opacity: 0;
  transition: opacity 180ms ease;
}

.koda-blog-card__media:hover::after {
  opacity: 1;
}

.koda-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.koda-blog-card__category {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(23, 23, 23, 0.72);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.koda-blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 25px 27px 24px;
}

.koda-blog-card__date,
.koda-blog-card__author {
  margin: 0;
  color: rgba(23, 23, 23, 0.46);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.koda-blog-card h2 {
  margin: 13px 0 22px;
  color: rgba(23, 23, 23, 0.86);
  font-family: Cormorant, Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.koda-blog-card__excerpt {
  margin: -8px 0 22px;
  color: rgba(23, 23, 23, 0.58);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.koda-blog-card hr {
  width: 100%;
  height: 1px;
  margin: auto 0 19px;
  border: 0;
  background: rgba(23, 23, 23, 0.12);
}

.koda-blog-card__author {
  color: rgba(23, 23, 23, 0.5);
}

.koda-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 56px;
  color: rgba(23, 23, 23, 0.66);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.koda-blog-pagination a,
.koda-blog-pagination span {
  min-width: 22px;
  text-align: center;
}

.koda-blog-pagination .is-current {
  color: var(--koda-ink);
  font-weight: 700;
}

.koda-blog-pagination__arrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.koda-blog-pagination__arrow.is-disabled {
  opacity: 0.3;
}

.koda-blog-pagination__arrow.is-disabled::before {
  transform: rotate(225deg);
}

.koda-magazine {
  background: #111516;
  color: rgba(255, 255, 255, 0.86);
}

.koda-magazine-intro {
  position: relative;
  min-height: clamp(500px, 38.2vw, 734px);
  display: flex;
  align-items: center;
  padding: 118px clamp(24px, 8.3vw, 160px) 96px;
}

.koda-magazine-intro__copy {
  width: min(620px, 100%);
  margin-left: clamp(0px, 22vw, 424px);
}

.koda-magazine-intro h1,
.koda-magazine-intro p,
.koda-magazine-work h2,
.koda-magazine-news h2,
.koda-magazine-card__title,
.koda-magazine-news-card span {
  letter-spacing: 0;
}

.koda-magazine-intro h1 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(28px, 1.9vw, 37px);
  font-weight: 300;
  line-height: 1.03;
}

.koda-magazine-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(10px, 0.67vw, 13px);
  font-weight: 300;
  line-height: 1.48;
}

.koda-magazine-work {
  padding: 0 0 clamp(126px, 8.6vw, 166px);
}

.koda-magazine-work h2,
.koda-magazine-news h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.koda-magazine-work h2::before,
.koda-magazine-news h2::before {
  content: "-- ";
}

.koda-magazine-work h2 {
  padding: 0 clamp(32px, 4vw, 76px) 76px 0;
  text-align: right;
}

.koda-magazine-masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(28px, 3.9vw, 74px);
  row-gap: clamp(154px, 14.4vw, 276px);
  align-items: start;
}

.koda-magazine-card {
  grid-column: span 3;
}

.koda-magazine-card:nth-child(1) {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.koda-magazine-card:nth-child(2) {
  grid-column: 8 / span 3;
  grid-row: 1;
  margin-top: clamp(72px, 5.6vw, 108px);
}

.koda-magazine-card:nth-child(3) {
  grid-column: 2 / span 3;
  grid-row: 2;
  margin-top: 4px;
}

.koda-magazine-card:nth-child(4) {
  grid-column: 7 / span 6;
  grid-row: 2;
  margin-top: clamp(-58px, -3vw, -30px);
}

.koda-magazine-card:nth-child(5) {
  grid-column: 1 / span 6;
  grid-row: 3;
}

.koda-magazine-card:nth-child(6) {
  grid-column: 8 / span 3;
  grid-row: 3;
  margin-top: clamp(82px, 5.8vw, 112px);
}

.koda-magazine-card:nth-child(7) {
  grid-column: 2 / span 3;
  grid-row: 4;
}

.koda-magazine-card:nth-child(8) {
  grid-column: 7 / span 6;
  grid-row: 4;
  margin-top: clamp(-58px, -3.2vw, -34px);
}

.koda-magazine-card a,
.koda-magazine-news-card a {
  display: grid;
  gap: 14px;
}

.koda-magazine-card__media,
.koda-magazine-news-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.05);
}

.koda-magazine-card__media::after,
.koda-magazine-news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 31, 0.3);
  opacity: 0;
  transition: opacity 220ms ease;
}

.koda-magazine-card img,
.koda-magazine-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.koda-magazine-card a:hover .koda-magazine-card__media::after,
.koda-magazine-news-card a:hover .koda-magazine-news-card__media::after {
  opacity: 1;
}

.koda-magazine-card__title {
  color: rgba(255, 255, 255, 0.64);
  font-family: Inter, Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.25;
}

.koda-magazine-empty {
  margin: 0 auto 32px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
}

.koda-magazine-news {
  overflow: hidden;
  padding: clamp(42px, 4.3vw, 82px) 0 clamp(118px, 8vw, 154px);
}

.koda-magazine-news h2 {
  width: min(520px, calc(100% - 48px));
  margin: 0 auto 46px;
}

.koda-magazine-news-grid {
  display: flex;
  gap: clamp(54px, 7vw, 114px);
  width: max-content;
  transform: translateX(clamp(-92px, -5vw, -42px));
}

.koda-magazine-news-card {
  flex: 0 0 clamp(118px, 10.4vw, 176px);
}

.koda-magazine-news-card span {
  color: rgba(255, 255, 255, 0.62);
  font-family: Inter, Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.28;
}

.koda-magazine-post-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--koda-black);
}

.koda-magazine-post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.koda-magazine-post-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.koda-magazine-post-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  width: min(880px, calc(100% - 48px));
  padding-top: 42px;
  color: var(--koda-white);
  text-align: center;
}

.koda-magazine-post-hero__copy p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.koda-magazine-post-hero__copy h1 {
  margin: 0;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(54px, 6.8vw, 116px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.koda-magazine-post {
  background: var(--koda-bg);
  color: var(--koda-ink);
}

.koda-magazine-post-body {
  width: min(830px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 128px;
}

.koda-magazine-post-body__lead {
  margin: 0 0 34px;
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(31px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.koda-magazine-post-body__content {
  color: rgba(23, 23, 23, 0.82);
  font-size: 15px;
  line-height: 1.84;
}

.koda-magazine-post-body__content p,
.koda-magazine-post-body__content h2,
.koda-magazine-post-body__content h3,
.koda-magazine-post-body__content ul,
.koda-magazine-post-body__content ol,
.koda-magazine-post-body__content blockquote {
  margin-top: 0;
  margin-bottom: 24px;
}

.koda-magazine-post-body__content h2,
.koda-magazine-post-body__content h3 {
  color: var(--koda-ink);
  font-family: Cormorant, Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
}

.koda-magazine-post-body__content h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.koda-magazine-post-body__content h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.koda-magazine-post-body__content a {
  border-bottom: 1px solid currentColor;
}

.koda-magazine-post-body__content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.koda-magazine-post-body__content figure {
  margin: 0 0 42px;
}

.koda-magazine-post-nav {
  background: #111516;
  color: rgba(255, 255, 255, 0.86);
  padding: clamp(54px, 5.5vw, 92px) clamp(22px, 5vw, 96px) clamp(70px, 6.8vw, 112px);
}

.koda-magazine-post-nav__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 34px;
}

.koda-magazine-post-nav__back,
.koda-magazine-post-nav__link,
.koda-magazine-post-more__card {
  color: inherit;
}

.koda-magazine-post-nav__back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 16px;
  text-transform: uppercase;
}

.koda-magazine-post-nav__pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.koda-magazine-post-nav__link {
  display: grid;
  gap: 10px;
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
}

.koda-magazine-post-nav__link span,
.koda-magazine-post-more p,
.koda-magazine-post-more__card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.koda-magazine-post-nav__link strong {
  color: rgba(255, 255, 255, 0.88);
  font-family: Cormorant, Georgia, serif;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.koda-magazine-post-more {
  display: grid;
  gap: 24px;
  padding-top: 40px;
}

.koda-magazine-post-more__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.koda-magazine-post-more__card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.koda-magazine-post-more__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.35);
}

.koda-magazine-post-more__card strong {
  color: rgba(255, 255, 255, 0.86);
  font-family: Cormorant, Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}

.koda-creates {
  background: #111516;
  color: rgba(255, 255, 255, 0.86);
}

.koda-creates-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 75vh;
  padding: 122px 24px 96px;
  background: #111516;
}

.koda-creates-hero__copy {
  width: min(996px, calc(100% - 48px));
  margin-left: calc((100vw - min(1200px, calc(100vw - 48px))) / 2 + min(15vw, 216px));
}

.koda-creates-hero h1 {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Cormorant, Georgia, serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.koda-creates-hero p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-family: Cormorant, Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
}

.koda-creates-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 72px;
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%) rotate(45deg);
}

.koda-creates-label {
  padding: 0 clamp(34px, 7vw, 108px);
  background: #111516;
}

.koda-creates-label h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Cormorant, Georgia, serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
}

.koda-creates-label h2::before {
  content: "-- ";
}

.koda-creates-gallery {
  display: grid;
  grid-template-columns: repeat(4, 160px);
  justify-content: center;
  column-gap: clamp(42px, 5.4vw, 86px);
  row-gap: 78px;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0 156px;
  background: #111516;
}

.koda-creates-card {
  min-width: 0;
}

.koda-creates-card button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--koda-white);
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.koda-creates-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.koda-creates-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(21, 19, 18, 0.25);
  opacity: 0;
  transition: opacity 180ms ease;
}

.koda-creates-card button:hover .koda-creates-card__overlay,
.koda-creates-card button:focus-visible .koda-creates-card__overlay {
  opacity: 1;
}

.koda-creates-card__icon {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 7px;
}

.koda-creates-card__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.koda-creates-card__icon::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.koda-creates-card__icon--search {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.koda-creates-card__icon--search::before {
  left: auto;
  top: auto;
  right: -6px;
  bottom: -5px;
  width: 11px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
}

.koda-creates-card__icon--search::after {
  display: none;
}

.koda-creates-card__title {
  color: rgba(255, 255, 255, 0.95);
  font-family: Cormorant, Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
}

.koda-tv {
  background: #000;
  color: rgba(255, 255, 255, 0.86);
}

.koda-tv-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px 8vw 86px;
  background: #000;
}

.koda-tv-hero__video,
.koda-tv-hero__shade,
.koda-tv-hero__fade {
  position: absolute;
  inset: 0;
}

.koda-tv-hero__video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.koda-tv-hero__shade {
  background: rgba(0, 0, 0, 0.74);
}

.koda-tv-hero__fade {
  top: auto;
  height: 48%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

.koda-tv-hero__copy {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(900px, 100%);
  margin-top: 11vh;
  text-align: right;
}

.koda-tv-hero__copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.koda-tv-hero__copy h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Cormorant, Georgia, serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.koda-tv-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 1;
  transform: translateX(-50%) rotate(45deg);
}

.koda-tv-work {
  padding: 118px clamp(24px, 4vw, 76px) 146px;
  background: #000;
}

.koda-tv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: min(860px, 100%);
  margin: 0 auto 28px;
}

.koda-tv-filter {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
}

.koda-tv-filter:hover,
.koda-tv-filter.is-active {
  color: rgba(255, 255, 255, 0.9);
}

.koda-tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 36px 28px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.koda-tv-card a {
  display: grid;
  gap: 10px;
  text-align: center;
}

.koda-tv-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #050505;
}

.koda-tv-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.13);
  opacity: 1;
  transition: opacity 180ms ease;
}

.koda-tv-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.koda-tv-card a:hover .koda-tv-card__media::after {
  opacity: 1;
}

.koda-tv-card__title {
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.koda-tv-load-more {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.koda-tv-load-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.koda-tv-load-more a:hover {
  border-color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
}

.koda-tv-post {
  background: #111516;
  color: rgba(255, 255, 255, 0.84);
}

.koda-tv-post-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111516;
}

.koda-tv-post-hero__media,
.koda-tv-post-hero__shade {
  position: absolute;
  inset: 0;
}

.koda-tv-post-hero__media {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.koda-tv-post-hero__shade {
  background: rgba(17, 21, 22, 0.42);
}

.koda-tv-post-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(960px, calc(100% - 48px));
  text-align: center;
}

.koda-tv-post-hero__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.koda-tv-post-hero__copy h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Cormorant, Georgia, serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0;
}

.koda-tv-post-body {
  width: min(830px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 126px;
}

.koda-tv-post-body__lead {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Cormorant, Georgia, serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.12;
}

.koda-tv-post-body__content {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.84;
}

.koda-tv-post-body__content p,
.koda-tv-post-body__content h2,
.koda-tv-post-body__content h3,
.koda-tv-post-body__content ul,
.koda-tv-post-body__content ol,
.koda-tv-post-body__content blockquote {
  margin-top: 0;
  margin-bottom: 24px;
}

.koda-tv-post-body__content figure {
  margin: 0 0 42px;
}

.koda-tv-post-body__content img,
.koda-tv-post-body__content video,
.koda-tv-post-body__content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.koda-tv-post-body__content img {
  height: auto;
}

.koda-tv-post-body__content video,
.koda-tv-post-body__content iframe {
  aspect-ratio: var(--koda-media-ratio, 16 / 9);
  height: auto;
  border: 0;
  background: #000;
}

@media (max-width: 980px) {
  .koda-nav {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
    padding: 18px 20px;
  }

  .koda-nav__side {
    display: none;
  }

  .koda-nav-item {
    display: none;
  }

  .koda-brand {
    justify-self: center;
    width: 128px;
    height: 30px;
  }

  .koda-menu-button {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .koda-mobile-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 22px;
    background: rgba(237, 239, 222, 0.96);
    border-top: 1px solid var(--koda-line);
  }

  .koda-mobile-menu.is-open {
    display: grid;
  }

  .koda-mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid var(--koda-line);
    color: var(--koda-black);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .koda-mobile-menu .koda-mobile-subitem {
    padding-left: 18px;
    color: rgba(23, 23, 23, 0.68);
    font-size: 12px;
  }

  .koda-hero__content {
    align-content: end;
    justify-items: start;
    padding: 110px 20px 86px;
    text-align: left;
  }

  .koda-hero h1 {
    max-width: 10ch;
  }

  .koda-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .koda-mosaic img,
  .koda-mosaic img:nth-child(2),
  .koda-mosaic img:nth-child(3),
  .koda-mosaic img:nth-child(4),
  .koda-mosaic img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    height: 430px;
  }

  .koda-mosaic img:nth-child(6) {
    display: block;
  }

  .koda-product-track {
    grid-auto-columns: minmax(260px, 74vw);
  }

  .koda-shop-controls {
    top: 78px;
    grid-template-columns: 1fr;
  }

  .koda-shop-layout {
    grid-template-columns: 1fr;
  }

  .koda-shop-sidebar {
    position: static;
  }

  .koda-shop-categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .koda-shop-categories::-webkit-scrollbar {
    display: none;
  }

  .koda-shop-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--koda-line);
  }

  .koda-shop-chip.is-active::before {
    margin-right: 8px;
  }

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

  .koda-services-intro,
  .koda-bookings__intro,
  .koda-menu-section,
  .koda-salon-services-statement,
  .koda-salon-about {
    grid-template-columns: 1fr;
  }

  .koda-salon-about,
  .koda-salon-about figure,
  .koda-salon-about img {
    min-height: 0;
  }

  .koda-salon-about img {
    aspect-ratio: 16 / 11;
  }

  .koda-salon-about__copy {
    width: min(720px, calc(100% - 48px));
  }

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

  .koda-contact-hero__media,
  .koda-contact-hero__media img {
    min-height: 0;
  }

  .koda-contact-hero__media img {
    aspect-ratio: 16 / 11;
  }

  .koda-contact-hero__copy {
    width: min(720px, calc(100% - 48px));
  }

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

  .koda-work-hero__media,
  .koda-work-hero__media img {
    min-height: 0;
  }

  .koda-work-hero__media img {
    aspect-ratio: 16 / 11;
  }

  .koda-work-hero__copy {
    width: min(720px, calc(100% - 48px));
  }

  .koda-gift-card-product {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 132px;
  }

  .koda-gift-card-summary,
  .koda-gift-card-form {
    width: min(100%, 560px);
  }

  .koda-gift-card-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .koda-menu-image {
    min-height: 460px;
  }

  .koda-menu-content {
    max-width: none;
    padding: 58px 24px 78px;
  }

  .koda-salon-tabs__nav {
    flex-wrap: wrap;
  }

  .koda-salon-tabs__nav label {
    flex: 1 1 50%;
  }

  .koda-salon-menu {
    max-width: 720px;
  }

  .koda-price-grid {
    gap: 36px;
  }

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

  .koda-footer__note {
    grid-column: 1 / -1;
  }

  .koda-commerce-grid,
  .koda-account-grid,
  .koda-product-layout {
    grid-template-columns: 1fr;
  }

  .koda-magazine-intro__copy {
    margin-left: clamp(0px, 12vw, 120px);
  }

  .koda-magazine-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 24px;
  }

  .koda-magazine-card,
  .koda-magazine-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .koda-magazine-card--wide {
    grid-column: span 2;
  }

  .koda-commerce-panel--sticky,
  .koda-account-sidebar,
  .koda-product-detail {
    position: static;
  }

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

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

@media (max-width: 620px) {
  .koda-hero {
    min-height: 760px;
  }

  .koda-hero__content {
    min-height: 760px;
  }

  .koda-mosaic {
    grid-template-columns: 1fr;
  }

  .koda-mosaic img,
  .koda-mosaic img:nth-child(2),
  .koda-mosaic img:nth-child(3),
  .koda-mosaic img:nth-child(4),
  .koda-mosaic img:nth-child(5) {
    height: 430px;
  }

  .koda-section-head {
    justify-content: flex-start;
    text-align: left;
  }

  .koda-carousel-controls {
    display: none;
  }

  .koda-product__action {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 12px;
  }

  .koda-shop-hero {
    align-items: end;
    justify-items: start;
    padding: 124px 20px 60px;
    text-align: left;
  }

  .koda-shop-hero h1 {
    font-size: clamp(62px, 21vw, 108px);
  }

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

  .koda-shop-result {
    justify-items: start;
  }

  .koda-shop-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .koda-shop-card__body h3 {
    min-height: 0;
  }

  .koda-magazine-post-hero {
    min-height: 560px;
  }

  .koda-magazine-post-hero__copy h1 {
    font-size: clamp(42px, 13vw, 76px);
  }

  .koda-magazine-intro {
    min-height: 640px;
    padding: 128px 20px 76px;
  }

  .koda-magazine-intro h1 {
    font-size: clamp(58px, 17vw, 92px);
  }

  .koda-magazine-intro p {
    font-size: clamp(27px, 8vw, 40px);
  }

  .koda-magazine-work,
  .koda-magazine-news {
    padding-left: 20px;
    padding-right: 20px;
  }

  .koda-magazine-work h2 {
    text-align: left;
  }

  .koda-magazine-masonry {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .koda-magazine-news-grid {
    gap: 36px;
    transform: translateX(-46px);
  }

  .koda-magazine-news-card {
    flex-basis: 132px;
  }

  .koda-magazine-card,
  .koda-magazine-card--wide {
    grid-column: span 1;
  }

  .koda-magazine-post-body {
    width: calc(100% - 40px);
    padding: 64px 0 92px;
  }

  .koda-magazine-post-nav__top,
  .koda-magazine-post-nav__pager,
  .koda-magazine-post-more__grid {
    grid-template-columns: 1fr;
  }

  .koda-magazine-post-nav__link {
    min-height: auto;
  }

  .koda-blog-hero {
    min-height: 520px;
    padding: 124px 20px 84px;
  }

  .koda-blog-hero h1 {
    font-size: 42px;
  }

  .koda-blog-hero p {
    font-size: 20px;
  }

  .koda-blog-list {
    padding: 56px 20px 72px;
  }

  .koda-blog-tools,
  .koda-blog-search {
    grid-template-columns: 1fr;
  }

  .koda-blog-filterbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .koda-blog-filter {
    flex: 0 0 auto;
  }

  .koda-blog-results {
    align-items: flex-start;
    flex-direction: column;
  }

  .koda-blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .koda-blog-card h2 {
    font-size: 28px;
  }

  .koda-blog-pagination {
    gap: 12px;
    padding-top: 42px;
  }

  .koda-creates-hero {
    min-height: 640px;
    padding: 126px 20px 86px;
  }

  .koda-creates-hero__copy {
    margin-left: 0;
  }

  .koda-creates-hero h1 {
    font-size: 42px;
  }

  .koda-creates-hero p {
    font-size: 19px;
  }

  .koda-creates-label {
    padding: 0 20px;
  }

  .koda-creates-label h2 {
    text-align: left;
  }

  .koda-creates-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
    gap: 24px;
    padding: 52px 0 82px;
  }

  .koda-creates-card__overlay {
    opacity: 1;
    background: rgba(21, 19, 18, 0.14);
  }

  .koda-creates-card__title {
    font-size: 22px;
  }

  .koda-tv-hero {
    align-items: end;
    padding: 124px 20px 82px;
  }

  .koda-tv-hero__copy {
    justify-self: start;
    text-align: left;
  }

  .koda-tv-hero__copy h1 {
    font-size: 64px;
  }

  .koda-tv-work {
    padding: 76px 20px 92px;
  }

  .koda-tv-filters {
    justify-content: center;
  }

  .koda-tv-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .koda-tv-card__title {
    font-size: 26px;
  }

  .koda-tv-post-hero {
    min-height: 560px;
  }

  .koda-tv-post-hero__copy h1 {
    font-size: 58px;
  }

  .koda-tv-post-body {
    width: calc(100% - 40px);
    padding: 64px 0 92px;
  }

  .koda-tv-post-body__lead {
    font-size: 34px;
  }

  .koda-page-hero {
    min-height: 560px;
  }

  .koda-page-hero h1 {
    font-size: clamp(52px, 16vw, 86px);
  }

  .koda-salon-services-hero {
    min-height: 560px;
  }

  .koda-salon-services-hero h1 {
    font-size: clamp(56px, 16vw, 92px);
  }

  .koda-salon-services-statement h2 {
    font-size: 34px;
  }

  .koda-services-intro,
  .koda-bookings,
  .koda-salon-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .koda-price-grid,
  .koda-stylist-grid,
  .koda-salon-gallery,
  .koda-contact-gallery,
  .koda-gift-card-related__grid {
    grid-template-columns: 1fr;
  }

  .koda-stylist-card,
  .koda-stylist-card--third,
  .koda-stylist-card--half {
    grid-column: auto;
  }

  .koda-gift-card-product,
  .koda-gift-card-related {
    padding-left: 20px;
    padding-right: 20px;
  }

  .koda-price-section h3 {
    font-size: 28px;
  }

  .koda-price-section dl div {
    grid-template-columns: minmax(0, 1fr) 84px;
  }

  .koda-price-section dt,
  .koda-price-section dd {
    font-size: 19px;
  }

  .koda-salon-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 72px 20px;
  }

  .koda-salon-gallery img {
    height: auto;
  }

  .koda-stylist-card img {
    margin-bottom: 18px;
  }

  .koda-footer__grid {
    grid-template-columns: 1fr;
  }

  .koda-footer__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .koda-footer-social {
    flex-wrap: wrap;
  }

  .koda-commerce-grid,
  .koda-account-grid,
  .koda-product-layout,
  .koda-commerce-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .koda-form-grid,
  .koda-wishlist-grid,
  .koda-auth-grid,
  .koda-work-form__row {
    grid-template-columns: 1fr;
  }

  .koda-line-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .koda-line-item .koda-quantity,
  .koda-line-item > form {
    grid-column: 1 / -1;
  }
}
