.custom-page {
  background: var(--paper);
  color: var(--ink);
}

.visually-hidden {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.custom-page .site-header {
  background: var(--paper);
  border-bottom-color: var(--line);
  color: var(--ink);
  position: relative;
  top: auto;
}

.custom-page .site-header.is-sticky {
  position: fixed;
}

.custom-page .breadcrumbs {
  padding-top: 0;
}

.custom-hero {
  align-items: end;
  background: var(--forest-deep);
  color: var(--white);
  display: grid;
  min-height: min(720px, calc(100svh - 180px));
  overflow: hidden;
  position: relative;
}

.custom-hero__media,
.custom-hero__media::after {
  inset: 0;
  position: absolute;
}

.custom-hero__media {
  margin: 0;
}

.custom-hero__media::after {
  background:
    linear-gradient(90deg, rgba(8, 20, 16, .94) 0%, rgba(8, 20, 16, .74) 40%, rgba(8, 20, 16, .18) 75%),
    linear-gradient(0deg, rgba(8, 20, 16, .8) 0%, transparent 48%);
  content: "";
}

.custom-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  width: 100%;
}

.custom-hero__inner {
  padding-block: clamp(82px, 11vw, 150px) clamp(54px, 7vw, 88px);
  position: relative;
  z-index: 1;
}

.custom-hero__copy {
  max-width: 760px;
}

.custom-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.1vw, 7.2rem);
  font-weight: 460;
  letter-spacing: 0;
  line-height: .91;
  margin: 22px 0 28px;
  text-wrap: balance;
}

.custom-hero h1 em {
  color: var(--gold);
  display: block;
  font-weight: 350;
}

.custom-hero__lead {
  color: rgba(255, 253, 248, .87);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.custom-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 34px;
}

.custom-trust {
  border-top: 1px solid rgba(255, 253, 248, .24);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  padding-top: 20px;
}

.custom-trust span {
  color: rgba(255, 253, 248, .72);
  font-size: .78rem;
  font-weight: 700;
  padding-right: 20px;
  text-transform: uppercase;
}

.custom-intro {
  display: grid;
  gap: clamp(28px, 7vw, 110px);
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
}

.custom-intro h2,
.custom-section-head h2,
.custom-chef h2,
.custom-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: .96;
  margin: 0;
  text-wrap: balance;
}

.custom-intro h2 em,
.custom-section-head h2 em,
.custom-chef h2 em,
.custom-cta h2 em {
  color: var(--clay);
  font-weight: 340;
}

.custom-intro__body {
  max-width: 780px;
}

.custom-intro__body > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.7;
  margin: 24px 0 0;
}

.custom-services {
  padding-top: 0;
}

.custom-services__grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.custom-service {
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  min-height: 360px;
  text-decoration: none;
}

.custom-service:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.custom-service:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.custom-service__media {
  background: var(--forest);
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.custom-service__media img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  width: 100%;
}

.custom-service:hover .custom-service__media img {
  transform: scale(1.035);
}

.custom-service__type {
  align-content: end;
  background: var(--forest);
  color: var(--gold);
  display: grid;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: .92;
  padding: 28px;
}

.custom-service__body {
  align-content: space-between;
  display: grid;
  gap: 32px;
  padding: clamp(28px, 4vw, 52px);
}

.custom-service__body > span {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
}

.custom-service h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 450;
  line-height: 1;
  margin: 8px 0 16px;
}

.custom-service p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.custom-service b {
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  justify-self: start;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.custom-portfolio {
  background: var(--forest-deep);
  color: var(--white);
}

.custom-section-head {
  align-items: end;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .45fr);
  margin-bottom: clamp(34px, 6vw, 70px);
}

.custom-section-head p {
  color: rgba(255, 253, 248, .66);
  line-height: 1.65;
  margin: 0;
}

.custom-section-head h2 em {
  color: var(--gold);
}

.custom-work-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.15fr .85fr .85fr;
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  margin: -28px 0 28px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.portfolio-filters button {
  background: transparent;
  border: 1px solid rgba(255, 253, 248, .28);
  color: rgba(255, 253, 248, .78);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 16px;
  text-transform: uppercase;
}

.portfolio-filters button[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.portfolio-filters button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.custom-work[hidden],
.portfolio-filter-empty[hidden] {
  display: none;
}

.portfolio-filter-empty {
  border-block: 1px solid rgba(255, 253, 248, .2);
  color: rgba(255, 253, 248, .72);
  margin: 0;
  padding: 28px 0;
}

.custom-work {
  margin: 0;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.custom-work img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.custom-work figcaption {
  background: linear-gradient(transparent, rgba(7, 18, 14, .88));
  bottom: 0;
  color: var(--white);
  inset-inline: 0;
  padding: 70px 24px 24px;
  position: absolute;
}

.custom-work figcaption span {
  color: var(--gold);
  display: block;
  font-size: .7rem;
  font-weight: 800;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.custom-work figcaption strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 450;
}

.custom-portfolio__link {
  margin: 34px 0 0;
  text-align: right;
}

.custom-portfolio__link a {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: inherit;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  min-height: 44px;
  text-transform: uppercase;
}

.preview-banner {
  align-items: center;
  background: #b44c29;
  color: #fffdf8;
  display: flex;
  font-size: .78rem;
  gap: 18px;
  justify-content: center;
  min-height: 42px;
  padding: 8px 20px;
}

.preview-banner strong {
  text-transform: uppercase;
}

.preview-page .site-header {
  top: 0;
}

.custom-process {
  background: var(--linen);
}

.custom-process__head {
  display: grid;
  gap: 32px;
  grid-template-columns: .7fr 1.3fr;
  margin-bottom: 46px;
}

.custom-process__head h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 430;
  line-height: .96;
  margin: 0;
}

.custom-steps {
  border-bottom: 1px solid rgba(25, 24, 19, .18);
  border-top: 1px solid rgba(25, 24, 19, .18);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.custom-step {
  min-height: 260px;
  padding: 26px 22px 30px;
}

.custom-step + .custom-step {
  border-left: 1px solid rgba(25, 24, 19, .18);
}

.custom-step > span {
  color: var(--clay);
  font-size: .7rem;
  font-weight: 800;
}

.custom-step h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 450;
  line-height: 1.05;
  margin: 58px 0 14px;
}

.custom-step p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

.custom-chef {
  background: var(--paper);
}

.custom-chef__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 8vw, 130px);
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
}

.custom-chef__media {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
}

.custom-chef__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.custom-chef__copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 650px;
}

.custom-faq {
  background: var(--paper);
  padding-top: 0;
}

.custom-faq__grid {
  display: grid;
  gap: clamp(48px, 6vw, 92px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
}

.custom-faq h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 430;
  line-height: .95;
  margin: 0;
}

.custom-faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.custom-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.custom-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding-right: 42px;
  position: relative;
}

.custom-faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  position: absolute;
  right: 4px;
  top: -7px;
}

.custom-faq details[open] summary::after {
  content: "−";
}

.custom-faq details p {
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 50px 0 0;
}

.custom-cta {
  background: var(--clay);
  color: var(--white);
}

.custom-cta__inner {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.custom-cta h2 {
  max-width: 850px;
}

.custom-cta h2 em {
  color: var(--linen);
}

.custom-cta p {
  color: rgba(255, 253, 248, .94);
  line-height: 1.7;
  max-width: 700px;
}

.home-custom {
  background: var(--paper);
}

.home-custom .custom-intro {
  margin-bottom: clamp(44px, 7vw, 84px);
}

.home-custom .custom-services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-custom .custom-service {
  display: block;
  min-height: 0;
}

.home-custom .custom-service:nth-child(odd),
.home-custom .custom-service {
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.home-custom .custom-service:last-child {
  border-right: 0;
}

.home-custom .custom-service__media,
.home-custom .custom-service__type {
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.home-custom .custom-service__body {
  min-height: 310px;
}

.home-custom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.service-hero {
  background: var(--forest-deep);
  color: var(--white);
  padding: clamp(70px, 10vw, 140px) 0;
}

.service-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 8vw, 130px);
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
}

.service-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 440;
  letter-spacing: 0;
  line-height: .9;
  margin: 20px 0 28px;
}

.service-hero__lead {
  color: rgba(255, 253, 248, .78);
  font-size: 1.12rem;
  line-height: 1.7;
}

.service-hero__media {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
}

.service-hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-body__grid {
  display: grid;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
}

.service-aside {
  align-self: start;
  border-top: 1px solid var(--line);
  position: sticky;
  top: 110px;
}

.service-fact {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.service-fact span {
  color: var(--clay);
  display: block;
  font-size: .68rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-fact strong {
  font-size: .98rem;
}

.service-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
  font-weight: 430;
  line-height: .96;
  margin: 0 0 24px;
}

.service-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-copy h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 450;
  margin: 48px 0 14px;
}

.service-copy ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.service-copy li {
  border-top: 1px solid var(--line);
  padding: 16px 0 16px 28px;
  position: relative;
}

.service-copy li::before {
  color: var(--clay);
  content: "✦";
  left: 0;
  position: absolute;
}

.portfolio-gallery {
  background: var(--forest-deep);
  color: var(--white);
}

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

.portfolio-gallery__item {
  grid-column: span 5;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.portfolio-gallery__item:nth-child(3n + 1) {
  grid-column: span 7;
}

.portfolio-gallery__item img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  width: 100%;
}

.portfolio-gallery__item:hover img {
  transform: scale(1.025);
}

.portfolio-gallery__item figcaption {
  background: linear-gradient(transparent, rgba(7, 18, 14, .88));
  bottom: 0;
  color: rgba(255, 253, 248, .9);
  font-size: .76rem;
  inset-inline: 0;
  padding: 64px 20px 18px;
  position: absolute;
}

.portfolio-context {
  background: var(--linen);
}

.portfolio-context__grid {
  align-items: start;
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-chef h2 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 430;
  line-height: .96;
  margin: 16px 0 22px;
}

.portfolio-chef p:not(.section-index) {
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-quote {
  border-left: 1px solid var(--clay);
  margin: 0;
  padding-left: clamp(24px, 4vw, 46px);
}

.portfolio-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0;
}

.portfolio-quote figcaption {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
  margin-top: 24px;
  text-transform: uppercase;
}

.service-hero h1 em {
  color: var(--gold);
  display: block;
  font-style: italic;
  font-weight: 400;
}

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

.chef-project {
  color: var(--white);
  display: grid;
  gap: 8px;
  text-decoration: none;
}

.chef-project img {
  aspect-ratio: 4 / 3;
  margin-bottom: 8px;
  object-fit: cover;
  width: 100%;
}

.chef-project span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chef-project strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 450;
}

.portfolio-related {
  border-top: 1px solid var(--line);
}

.portfolio-related > p {
  margin: 18px 0;
}

.portfolio-related a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 62px;
  text-decoration: none;
}

.portfolio-related a:hover {
  color: var(--clay);
}

@media (max-width: 980px) {
  .custom-trust {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .custom-services__grid,
  .custom-work-grid {
    grid-template-columns: 1fr;
  }

  .home-custom .custom-services__grid {
    grid-template-columns: 1fr;
  }

  .home-custom .custom-service,
  .home-custom .custom-service:nth-child(odd) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .custom-service:nth-child(odd) {
    border-right: 0;
  }

  .custom-service {
    border-bottom: 1px solid var(--line);
  }

  .custom-work {
    min-height: 55vw;
  }

  .portfolio-gallery__item,
  .portfolio-gallery__item:nth-child(3n + 1) {
    grid-column: span 6;
    min-height: 48vw;
  }

  .custom-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-step {
    border-bottom: 1px solid rgba(25, 24, 19, .18);
  }

  .custom-step:nth-child(odd) {
    border-left: 0;
  }

  .custom-step:last-child {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .custom-section-head,
  .custom-chef__grid,
  .service-hero__grid,
  .portfolio-context__grid {
    grid-template-columns: 1fr;
  }

  .custom-section-head p {
    max-width: 640px;
  }

  .custom-chef__media,
  .service-hero__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .custom-hero {
    min-height: min(610px, calc(100svh - 185px));
  }

  .custom-hero__media::after {
    background:
      linear-gradient(0deg, rgba(8, 20, 16, .98) 4%, rgba(8, 20, 16, .75) 58%, rgba(8, 20, 16, .26) 100%);
  }

  .custom-hero__media img {
    object-position: 62% center;
  }

  .custom-hero__inner {
    padding-block: 52px 26px;
  }

  .custom-hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 3.8rem);
    margin-block: 16px 20px;
  }

  .custom-hero__lead {
    font-size: 1rem;
    line-height: 1.52;
  }

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

  .custom-hero .button {
    min-height: 52px;
  }

  .custom-trust {
    display: none;
  }

  .custom-intro,
  .custom-process__head,
  .custom-chef__grid,
  .custom-faq__grid,
  .custom-cta__inner,
  .service-body__grid {
    grid-template-columns: 1fr;
  }

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

  .custom-service__media,
  .custom-service__type {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .custom-service__type {
    align-content: center;
  }

  .custom-work {
    min-height: 92vw;
  }

  .portfolio-gallery__grid {
    display: block;
  }

  .portfolio-gallery__item,
  .portfolio-gallery__item:nth-child(3n + 1) {
    min-height: 108vw;
  }

  .portfolio-gallery__item + .portfolio-gallery__item {
    margin-top: 12px;
  }

  .custom-steps {
    display: block;
  }

  .custom-step,
  .custom-step:last-child {
    min-height: 0;
    padding: 24px 0;
  }

  .custom-step + .custom-step {
    border-left: 0;
  }

  .custom-step h3 {
    margin-top: 28px;
  }

  .custom-chef__media,
  .service-hero__media {
    aspect-ratio: 4 / 5;
  }

  .service-aside {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-service__media img {
    transition: none;
  }
}

/* Real-photo custom orders */
.custom-hero--real {
  min-height: min(760px, calc(100svh - 150px));
}

.custom-hero--real .custom-hero__media::after {
  background:
    linear-gradient(90deg, rgba(7, 18, 14, .96) 0%, rgba(7, 18, 14, .82) 38%, rgba(7, 18, 14, .18) 72%),
    linear-gradient(0deg, rgba(7, 18, 14, .72) 0%, transparent 54%);
}

.custom-hero--real .custom-hero__media picture,
.custom-hero--real .custom-hero__media img {
  display: block;
  height: 100%;
  width: 100%;
}

.custom-hero--real .custom-hero__proof {
  border-top: 1px solid rgba(255, 253, 248, .28);
  color: rgba(255, 253, 248, .7);
  font-size: .76rem;
  font-weight: 700;
  margin: 44px 0 0;
  max-width: 660px;
  padding-top: 18px;
  text-transform: uppercase;
}

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

.orders-intro__grid,
.orders-heading {
  display: grid;
  gap: clamp(36px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
}

.orders-intro h2,
.orders-heading h2,
.orders-chef h2,
.orders-process h2,
.orders-archive-intro h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 5.6rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: .94;
  margin: 14px 0 0;
  text-wrap: balance;
}

.orders-intro h2 em,
.orders-heading h2 em,
.orders-process h2 em,
.orders-archive-intro h1 em {
  color: var(--clay);
  display: block;
  font-weight: 350;
}

.orders-intro__copy,
.orders-heading > p,
.orders-proof {
  align-self: end;
  color: var(--muted);
  line-height: 1.72;
}

.orders-intro__copy > p {
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  margin: 0;
}

.orders-intro__note {
  border-top: 1px solid var(--line);
  font-size: .88rem !important;
  margin-top: 24px !important;
  padding-top: 20px;
}

.orders-services {
  background: #f1e7d3;
  padding-top: clamp(64px, 8vw, 110px);
}

.orders-heading {
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.orders-heading > p {
  margin: 0;
}

.orders-services__grid {
  border-top: 1px solid rgba(25, 23, 17, .18);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.orders-service-card {
  color: var(--ink);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  text-decoration: none;
}

.orders-service-card + .orders-service-card {
  border-left: 1px solid rgba(25, 23, 17, .18);
}

.orders-service-card__media {
  aspect-ratio: 4 / 5;
  background: var(--forest);
  overflow: hidden;
}

.orders-service-card__media picture,
.orders-service-card__media img {
  display: block;
  height: 100%;
  width: 100%;
}

.orders-service-card__media img {
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}

.orders-service-card__body {
  align-content: start;
  background: rgba(255, 253, 248, .82);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 300px;
  padding: clamp(22px, 2.5vw, 34px);
}

.orders-service-card__body > span,
.orders-work__body > span {
  color: var(--clay);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.orders-service-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  font-weight: 450;
  line-height: 1;
  margin: 12px 0 15px;
}

.orders-service-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
}

.orders-service-card b,
.orders-work__body b,
.orders-proof a,
.orders-text-link {
  border-bottom: 1px solid currentColor;
  font-size: .74rem;
  justify-self: start;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.orders-service-card:hover img,
.orders-service-card:focus-visible img {
  transform: scale(1.035);
}

.orders-service-card:focus-visible,
.orders-work__link:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 5px;
  position: relative;
  z-index: 2;
}

.orders-portfolio {
  background: var(--forest-deep);
  color: var(--white);
}

.orders-heading--light h2 em {
  color: var(--gold);
}

.orders-heading--light .section-index {
  color: var(--gold);
}

.orders-heading--light .orders-proof,
.orders-heading--light > p {
  color: rgba(255, 253, 248, .68);
}

.orders-proof p {
  margin: 0 0 20px;
}

.orders-proof a {
  color: var(--white);
  display: inline-block;
  text-decoration: none;
}

.orders-work-grid {
  display: grid;
  gap: 12px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.orders-work {
  background: #0b211a;
  grid-column: span 4;
  margin: 0;
  min-width: 0;
}

.orders-work--wide {
  grid-column: span 6;
}

.orders-work:nth-child(5),
.orders-work:nth-child(6) {
  grid-column: span 3;
}

.orders-work__link {
  color: var(--white);
  display: grid;
  height: 100%;
  text-decoration: none;
}

.orders-work__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.orders-work--wide .orders-work__media {
  aspect-ratio: 3 / 2;
}

.orders-work--square .orders-work__media {
  aspect-ratio: 1;
}

.orders-work__media picture,
.orders-work__media img {
  display: block;
  height: 100%;
  width: 100%;
}

.orders-work__media img {
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}

.orders-work__body {
  align-content: start;
  display: grid;
  min-height: 244px;
  padding: clamp(22px, 2.4vw, 32px);
}

.orders-work__body > span {
  color: var(--gold);
}

.orders-work__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  font-weight: 430;
  line-height: 1;
  margin: 11px 0 13px;
}

.orders-work__body p {
  color: rgba(255, 253, 248, .66);
  line-height: 1.58;
  margin: 0 0 24px;
}

.orders-work__body b {
  align-self: end;
  color: var(--gold);
}

.orders-work__link:hover img,
.orders-work__link:focus-visible img {
  transform: scale(1.025);
}

.orders-chef {
  background: var(--paper);
}

.orders-chef__grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 108px);
  grid-template-columns: minmax(0, 42fr) minmax(0, 50fr);
}

.orders-chef__heading {
  grid-column: 2;
  grid-row: 1;
}

.orders-chef__media {
  align-self: center;
  aspect-ratio: 4 / 3;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.orders-chef__media picture,
.orders-chef__media img {
  display: block;
  height: 100%;
  width: 100%;
}

.orders-chef__media img {
  object-fit: cover;
}

.orders-chef__copy {
  color: var(--muted);
  grid-column: 2;
  line-height: 1.72;
}

.orders-chef__copy > p {
  margin: 0 0 18px;
}

.orders-chef__copy > p:first-child {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.orders-chef__copy ul {
  border-block: 1px solid var(--line);
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.orders-chef__copy li {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  padding: 13px 0;
}

.orders-chef__copy li:last-child {
  border-bottom: 0;
}

.orders-chef__copy .custom-actions {
  margin-top: 30px;
}

.orders-text-link {
  color: var(--ink);
  text-decoration: none;
}

.orders-process {
  background: #f1e7d3;
}

.orders-process__grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.orders-process__copy > p:not(.section-index) {
  color: var(--muted);
  line-height: 1.72;
  margin: 24px 0 32px;
}

.orders-process ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.orders-process li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 18px 0;
}

.orders-process li > span {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
}

.orders-process li strong {
  display: block;
}

.orders-process li p {
  color: var(--muted);
  line-height: 1.55;
  margin: 5px 0 0;
}

.orders-process__media {
  margin: 0;
}

.orders-process__media picture,
.orders-process__media img {
  display: block;
  width: 100%;
}

.orders-process__media img {
  aspect-ratio: 4 / 5;
  max-height: 720px;
  object-fit: cover;
}

.orders-process__media figcaption {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  padding: 12px 0;
  text-transform: uppercase;
}

.orders-archive-intro {
  background: var(--paper);
  padding: clamp(64px, 9vw, 120px) 0;
}

.orders-archive-intro__grid {
  align-items: end;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
}

.orders-archive-intro h1 em {
  margin-top: 4px;
}

.orders-archive-intro__grid > div:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.orders-archive-intro .button {
  margin-top: 22px;
}

.orders-portfolio--archive {
  padding-top: clamp(64px, 8vw, 110px);
}

.orders-lightbox {
  background: transparent;
  border: 0;
  color: var(--white);
  height: 100%;
  margin: auto;
  max-height: none;
  max-width: none;
  padding: 24px;
  width: 100%;
}

.orders-lightbox::backdrop {
  background: rgba(4, 12, 9, .94);
}

.orders-lightbox__inner {
  display: grid;
  min-height: 100%;
  place-items: center;
  position: relative;
}

.orders-lightbox__close {
  align-items: center;
  background: var(--paper);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 1.7rem;
  height: 48px;
  justify-content: center;
  position: fixed;
  right: 24px;
  top: 24px;
  width: 48px;
  z-index: 2;
}

.orders-lightbox figure {
  background: var(--forest-deep);
  margin: 0;
  max-width: min(1180px, calc(100vw - 48px));
}

.orders-lightbox img {
  display: block;
  max-height: calc(100svh - 190px);
  max-width: 100%;
  object-fit: contain;
}

.orders-lightbox figcaption {
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr);
  padding-top: 16px;
}

.orders-lightbox h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 430;
  margin: 0;
}

.orders-lightbox p {
  color: rgba(255, 253, 248, .68);
  line-height: 1.55;
  margin: 0;
}

.service-hero__media--real picture,
.service-hero__media--real img {
  display: block;
  height: 100%;
  width: 100%;
}

.service-hero__media--real img {
  object-fit: cover;
}

.service-gallery {
  background: var(--forest-deep);
  color: var(--white);
}

.service-gallery .orders-heading h2 em {
  color: var(--gold);
}

.service-gallery .orders-heading > p {
  color: rgba(255, 253, 248, .66);
}

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

.service-gallery__item {
  background: #0b211a;
  min-width: 0;
}

.service-gallery__item > a {
  color: var(--white);
  display: grid;
  height: 100%;
  text-decoration: none;
}

.service-gallery__item > a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.service-gallery__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.service-gallery__media picture,
.service-gallery__media img {
  display: block;
  height: 100%;
  width: 100%;
}

.service-gallery__media img {
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}

.service-gallery__item > a:hover img,
.service-gallery__item > a:focus-visible img {
  transform: scale(1.025);
}

.service-gallery__copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 32px);
}

.service-gallery__copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 430;
  line-height: 1;
  margin: 0 0 12px;
}

.service-gallery__copy p {
  color: rgba(255, 253, 248, .65);
  line-height: 1.58;
  margin: 0 0 24px;
}

.service-gallery__copy span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .orders-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orders-service-card:nth-child(3) {
    border-left: 0;
  }

  .orders-service-card:nth-child(n + 3) {
    border-top: 1px solid rgba(25, 23, 17, .18);
  }

  .orders-work {
    grid-column: span 6;
  }

  .orders-work--wide {
    grid-column: span 12;
  }

  .orders-work:nth-child(5),
  .orders-work:nth-child(6) {
    grid-column: span 6;
  }

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

@media (max-width: 760px) {
  .custom-hero--real {
    min-height: 690px;
  }

  .custom-hero--real .custom-hero__media::after {
    background:
      linear-gradient(0deg, rgba(7, 18, 14, .98) 0%, rgba(7, 18, 14, .83) 54%, rgba(7, 18, 14, .24) 100%);
  }

  .custom-hero--real .custom-hero__media img {
    object-position: 58% 70% !important;
  }

  .custom-hero--real .custom-hero__inner {
    padding-bottom: 42px;
  }

  .custom-hero--real .custom-hero__proof {
    line-height: 1.55;
    margin-top: 30px;
  }

  .orders-intro__grid,
  .orders-heading,
  .orders-chef__grid,
  .orders-process__grid,
  .orders-archive-intro__grid {
    grid-template-columns: 1fr;
  }

  .orders-services__grid {
    grid-template-columns: 1fr;
  }

  .orders-service-card + .orders-service-card {
    border-left: 0;
    border-top: 1px solid rgba(25, 23, 17, .18);
  }

  .orders-service-card__body {
    min-height: 250px;
  }

  .orders-work,
  .orders-work--wide,
  .orders-work:nth-child(5),
  .orders-work:nth-child(6) {
    grid-column: 1 / -1;
  }

  .orders-work__body {
    min-height: 220px;
  }

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

  .orders-chef__heading,
  .orders-chef__media,
  .orders-chef__copy {
    grid-column: 1;
    grid-row: auto;
  }

  .orders-chef__heading {
    order: 1;
  }

  .orders-chef__media {
    min-height: 0;
    order: 2;
  }

  .orders-chef__media picture,
  .orders-chef__media img {
    aspect-ratio: 3 / 2;
  }

  .orders-chef__copy {
    order: 3;
  }

  .orders-process__media {
    order: -1;
  }

  .orders-lightbox {
    padding: 12px;
  }

  .orders-lightbox__close {
    height: 48px;
    right: 12px;
    top: 12px;
    width: 48px;
  }

  .orders-lightbox figure {
    max-width: calc(100vw - 24px);
  }

  .orders-lightbox img {
    max-height: calc(100svh - 220px);
  }

  .orders-lightbox figcaption {
    grid-template-columns: 1fr;
  }
}

.inquiry-page {
  background: var(--linen);
}

.inquiry-intro {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 72px);
}

.inquiry-intro__grid {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr);
}

.inquiry-intro h1,
.inquiry-intro h2 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 7rem);
  font-weight: 440;
  letter-spacing: 0;
  line-height: .91;
  margin: 18px 0 0;
}

.inquiry-intro h1 em,
.inquiry-intro h2 em {
  color: var(--clay);
  display: block;
  font-weight: 350;
}

.inquiry-intro__lead {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.inquiry-shell {
  background: var(--forest-deep);
  color: var(--white);
  padding: clamp(50px, 8vw, 110px) 0;
}

.inquiry-intro--embedded {
  background: var(--linen);
  scroll-margin-top: 90px;
}

.inquiry-shell--embedded {
  scroll-margin-top: 90px;
}

.inquiry-layout {
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: space-between;
}

.inquiry-progress {
  align-self: start;
  position: sticky;
  top: 100px;
}

.inquiry-progress__count {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.inquiry-progress__bar {
  background: rgba(255, 255, 255, .14);
  height: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}

.inquiry-progress__bar span {
  background: var(--gold);
  display: block;
  height: 100%;
  transition: width .35s var(--ease-out);
  width: 16.667%;
}

.inquiry-progress ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.inquiry-progress li {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .46);
  font-size: .82rem;
  padding: 12px 0;
}

.inquiry-progress li.is-current {
  color: var(--white);
  font-weight: 800;
}

.inquiry-progress li.is-complete {
  color: var(--gold);
}

.inquiry-form {
  min-width: 0;
}

.inquiry-step[hidden] {
  display: none;
}

.inquiry-step__index {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.inquiry-step h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 430;
  line-height: .96;
  margin: 0 0 16px;
}

.inquiry-step__lead {
  color: rgba(255, 255, 255, .64);
  line-height: 1.65;
  margin: 0 0 34px;
  max-width: 640px;
}

.choice-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice {
  cursor: pointer;
  display: block;
  position: relative;
}

.choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.choice span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  font-weight: 700;
  min-height: 68px;
  padding: 16px 46px 16px 18px;
  position: relative;
}

.choice span::after {
  border: 1px solid rgba(255, 255, 255, .45);
  content: "";
  height: 14px;
  position: absolute;
  right: 18px;
  width: 14px;
}

.choice input:checked + span {
  background: var(--clay);
  border-color: var(--clay);
}

.choice input:checked + span::after {
  background: var(--white);
  border: 4px solid var(--clay);
  outline: 1px solid var(--white);
}

.choice input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: rgba(255, 255, 255, .76);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, .06);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  color: var(--white);
  font: inherit;
  min-height: 50px;
  padding: 12px 2px;
  width: 100%;
}

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

.field select option {
  background: var(--forest-deep);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
  outline: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}

.field-error {
  color: #ffd1bf;
  font-size: .78rem;
  min-height: 1.15em;
}

.field [aria-invalid="true"] {
  border-bottom-color: #ff9f7a;
}

.inline-check {
  align-items: flex-start;
  display: flex;
  gap: 11px;
  line-height: 1.5;
}

.inline-check input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.file-drop {
  border: 1px dashed rgba(255, 255, 255, .36);
  display: grid;
  gap: 10px;
  padding: 30px;
}

.file-drop input {
  border: 0;
  min-height: 0;
}

.file-drop small,
.form-help {
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}

.selected-files {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.selected-files span {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  font-size: .82rem;
  justify-content: space-between;
  padding: 9px 0;
}

.inquiry-nav {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 24px;
}

.inquiry-nav button {
  cursor: pointer;
}

.inquiry-back {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .72);
  font: inherit;
  font-weight: 800;
  padding: 14px 0;
}

.inquiry-next {
  background: var(--clay);
  border: 1px solid var(--clay);
  color: var(--white);
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  min-height: 54px;
  padding: 14px 24px;
  text-transform: uppercase;
}

.inquiry-next:disabled {
  cursor: wait;
  opacity: .58;
}

.form-status {
  border-left: 3px solid var(--clay);
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
  margin-top: 22px;
  padding: 13px 16px;
}

.inquiry-success {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.inquiry-success[hidden] {
  display: none;
}

.inquiry-page.is-success .breadcrumbs,
.inquiry-page.is-success .inquiry-intro,
.custom-page.is-success main > section:not(.inquiry-shell) {
  display: none;
}

.inquiry-page.is-success .inquiry-shell,
.custom-page.is-success .inquiry-shell {
  align-items: center;
  display: flex;
  min-height: min(760px, calc(100svh - 150px));
  padding-block: clamp(64px, 9vw, 112px);
}

.custom-page.is-success .inquiry-layout {
  display: block;
}

.inquiry-success h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: .98;
  margin: 14px 0 24px;
}

.inquiry-success__lead {
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
}

.inquiry-success__reference {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: 7px;
  margin: 34px auto 28px;
  max-width: 520px;
  padding: 22px clamp(18px, 4vw, 34px);
}

.inquiry-success__reference span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-success__reference strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.inquiry-success__reference small {
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.inquiry-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 620px) {
  .inquiry-success {
    text-align: left;
  }

  .inquiry-success__reference {
    margin-inline: 0;
    text-align: left;
  }

  .inquiry-success__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-success__actions .button {
    justify-content: center;
    width: 100%;
  }
}

.budget-fields[hidden],
.event-extras[hidden] {
  display: none;
}

.inspiration-context {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 18px;
  grid-template-columns: 112px minmax(0, 1fr);
  margin-bottom: 28px;
  padding: 14px;
}

.inspiration-context[hidden] {
  display: none;
}

.inspiration-context img {
  aspect-ratio: 1;
  height: 112px;
  object-fit: cover;
  width: 112px;
}

/* Eritellimuste tootmisküpse põhilehe lõplik struktuur. */
.custom-page .skip-link,
.inquiry-page .skip-link {
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: fixed;
  transform: none;
  white-space: nowrap;
  width: 1px;
}

.custom-page .skip-link:focus,
.inquiry-page .skip-link:focus {
  clip-path: none;
  height: auto;
  overflow: visible;
  width: auto;
}

.custom-page .section {
  padding-block: clamp(112px, 8vw, 136px);
}

.custom-page .custom-hero {
  min-height: clamp(680px, calc(100svh - 130px), 780px);
}

.custom-page .custom-hero__media::after {
  background:
    linear-gradient(90deg, rgba(7, 19, 15, .96) 0%, rgba(7, 19, 15, .8) 37%, rgba(7, 19, 15, .2) 72%),
    linear-gradient(0deg, rgba(7, 19, 15, .7) 0%, transparent 46%);
}

.custom-page .custom-hero h1 {
  font-size: clamp(56px, 6vw, 104px);
  max-width: 760px;
}

.custom-page .custom-hero__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 620px;
}

.custom-page .orders-intro__grid {
  align-items: center;
  grid-template-columns: minmax(0, 44fr) minmax(0, 54fr);
}

.custom-page .orders-intro h2,
.custom-page .orders-heading h2,
.custom-page .orders-chef h2,
.custom-page .custom-faq h2,
.custom-page .custom-cta h2 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .98;
}

.orders-intro__facts {
  display: grid;
  gap: 0 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.orders-intro__facts li {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
  padding: 15px 0;
}

.custom-page .orders-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
}

.custom-page .orders-service-card__body {
  min-height: 310px;
}

.custom-page .orders-service-card h3,
.custom-page .orders-work__body h3 {
  font-size: clamp(24px, 2vw, 30px);
}

.custom-page .orders-chef__grid {
  column-gap: clamp(54px, 8vw, 120px);
  row-gap: 4px;
  align-content: center;
  grid-template-columns: minmax(0, 42fr) minmax(0, 48fr);
}

.custom-page .orders-chef__heading {
  align-self: end;
}

.custom-page .orders-chef__copy {
  align-self: start;
}

.custom-page .orders-chef__media {
  aspect-ratio: 5 / 4;
  max-height: 460px;
}

.custom-page .orders-chef__copy,
.custom-page .orders-intro__copy,
.custom-page .orders-heading > p,
.custom-page .orders-proof {
  font-size: clamp(16px, 1.25vw, 18px);
}

.custom-page .orders-work-grid {
  gap: 24px;
  grid-auto-flow: row;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.custom-page .orders-work,
.custom-page .orders-work--wide,
.custom-page .orders-work:nth-child(5),
.custom-page .orders-work:nth-child(6) {
  grid-column: auto;
}

.custom-page .orders-work__link {
  grid-template-rows: 360px 1fr;
}

.custom-page .orders-work__media,
.custom-page .orders-work--wide .orders-work__media,
.custom-page .orders-work--square .orders-work__media {
  aspect-ratio: auto;
  height: 360px;
}

.custom-page .orders-work__body {
  grid-template-rows: auto auto 1fr auto;
  min-height: 270px;
}

.orders-portfolio__footer {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.orders-portfolio__footer a {
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  padding: 10px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.custom-page .orders-process {
  background: #f1e7d3;
}

.orders-process__steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.orders-process__steps li {
  align-content: start;
  border-left: 1px solid var(--line);
  border-top: 2px solid var(--clay);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  min-height: 290px;
  padding: 24px 20px;
}

.orders-process__steps li > span {
  color: var(--clay);
  font-size: .75rem;
  font-weight: 850;
}

.orders-process__steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.orders-process__steps p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 13px 0 0;
}

.custom-page .custom-faq details {
  min-height: 60px;
}

.custom-page .custom-faq summary {
  min-height: 60px;
}

.custom-page .custom-faq summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.custom-cta--orders {
  background: #f1e7d3;
}

.custom-cta--orders .custom-cta__inner {
  align-items: center;
}

.custom-cta--orders .custom-cta__copy {
  max-width: 620px;
}

.custom-cta--orders .custom-cta__copy > p {
  font-size: clamp(16px, 1.3vw, 18px);
}

.inquiry-step__subheading {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  margin: 38px 0 16px;
}

.inquiry-review {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(0, 1.35fr);
  margin: 30px 0;
}

.inquiry-review dt,
.inquiry-review dd {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin: 0;
  padding: 14px 0;
}

.inquiry-review dt {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-review dd {
  color: var(--white);
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .orders-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .orders-process__steps li:nth-child(n + 4) {
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .custom-page .section {
    padding-block: clamp(88px, 10vw, 112px);
  }

  .custom-page .orders-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-page .orders-work__link {
    grid-template-rows: 340px 1fr;
  }

  .custom-page .orders-work__media,
  .custom-page .orders-work--wide .orders-work__media,
  .custom-page .orders-work--square .orders-work__media {
    height: 340px;
  }
}

@media (max-width: 720px) {
  .custom-page .section {
    padding-block: clamp(72px, 19vw, 88px);
  }

  .custom-page .custom-hero {
    min-height: 640px;
  }

  .custom-page .custom-hero__media img {
    object-position: 64% 66% !important;
  }

  .custom-page .custom-hero__media::after {
    background: linear-gradient(0deg, rgba(7, 19, 15, .98) 2%, rgba(7, 19, 15, .8) 62%, rgba(7, 19, 15, .3) 100%);
  }

  .custom-page .orders-intro__grid,
  .custom-page .orders-heading,
  .custom-page .orders-chef__grid {
    grid-template-columns: 1fr;
  }

  .orders-intro__facts {
    grid-template-columns: 1fr;
  }

  .custom-page .orders-chef__heading,
  .custom-page .orders-chef__media,
  .custom-page .orders-chef__copy {
    grid-column: 1;
  }

  .custom-page .orders-chef__heading {
    grid-row: 1;
  }

  .custom-page .orders-chef__media {
    grid-row: 2;
  }

  .custom-page .orders-chef__copy {
    grid-row: 3;
  }

  .custom-page .orders-services__grid,
  .custom-page .orders-work-grid,
  .orders-process__steps {
    grid-template-columns: 1fr;
  }

  .custom-page .orders-work__link {
    grid-template-rows: min(106vw, 440px) 1fr;
  }

  .custom-page .orders-work__media,
  .custom-page .orders-work--wide .orders-work__media,
  .custom-page .orders-work--square .orders-work__media {
    height: min(106vw, 440px);
  }

  .orders-process__steps {
    border-left: 1px solid var(--line);
    gap: 0;
    margin-left: 12px;
  }

  .orders-process__steps li,
  .orders-process__steps li:nth-child(n + 4) {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 26px 18px 30px 30px;
    position: relative;
  }

  .orders-process__steps li::before {
    background: var(--clay);
    border-radius: 50%;
    content: "";
    height: 9px;
    left: -5px;
    position: absolute;
    top: 29px;
    width: 9px;
  }

  .inquiry-review {
    grid-template-columns: 1fr;
  }

  .inquiry-review dt {
    padding-bottom: 2px;
  }

  .inquiry-review dd {
    border-top: 0;
    padding-top: 2px;
  }
}

.inspiration-context strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 450;
  margin-bottom: 7px;
}

.inspiration-context p {
  color: rgba(255, 255, 255, .68);
  font-size: .85rem;
  line-height: 1.55;
  margin: 0;
}

.honeypot {
  left: -10000px;
  position: absolute;
}

@media (max-width: 860px) {
  .inquiry-intro__grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-progress {
    position: static;
  }

  .inquiry-progress ol {
    display: none;
  }

  .chef-project-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .inquiry-nav {
    gap: 12px;
  }

  .portfolio-filters {
    margin-top: -14px;
  }

  .inspiration-context {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .inspiration-context img {
    height: 78px;
    width: 78px;
  }

  .chef-project-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-intro {
    padding-block: 30px 28px;
  }

  .inquiry-intro h1,
  .inquiry-intro h2 {
    font-size: clamp(2.85rem, 13vw, 3.35rem);
    margin-top: 12px;
  }

  .inquiry-intro__lead {
    line-height: 1.6;
  }

  .inquiry-shell {
    padding-top: 30px;
  }

  .inquiry-layout {
    gap: 18px;
  }

  .inquiry-progress__count {
    margin-bottom: 10px;
  }

  .inquiry-progress__bar {
    margin-bottom: 0;
  }
}
.home-custom[hidden],
.custom-service[hidden] {
  display: none !important;
}

/* Ühtne tume päiseriba (29.07.2026): kirjutab üle ülal oleva heleda päise. */
.custom-page .site-header {
  color: var(--white);
  background: var(--forest);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.custom-page .site-header.is-sticky {
  color: var(--white);
  background: rgba(14, 36, 30, 0.96);
  border-color: rgba(255, 255, 255, 0.16);
}

.custom-page .header-cta {
  border-color: var(--gold);
  color: var(--gold);
}

/* Logo premium-viimistlus (29.07.2026): ühtne tume päis, SVG-märk, kuldne tüpograafia. */
.site-header,
.site-header.is-sticky,
.custom-page .site-header,
.custom-page .site-header.is-sticky,
.seo-page .seo-header,
.seo-page .seo-header.is-sticky,
.seo-page .site-header {
  color: #f2ede2;
  background: #050d09;
  border-bottom-color: rgba(199, 167, 90, 0.28);
  border-color: rgba(199, 167, 90, 0.28);
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  gap: 22px;
}

.brand__logo {
  width: auto;
  height: 64px;
  flex: none;
}

.site-header.is-sticky .brand__logo {
  filter: none;
}

.brand__word {
  color: #f2ede2;
  font-size: 56px;
  line-height: 0.95;
}

.brand__type {
  margin-left: 18px;
  padding: 3px 0 3px 18px;
  border-left: 1px solid rgba(199, 167, 90, 0.85);
  color: #d9bf78;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) and (max-width: 1400px) {
  .brand__logo {
    height: 56px;
  }

  .brand__word {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .brand {
    gap: 13px;
  }

  .brand__logo {
    height: 44px;
  }

  .brand__word {
    font-size: 34px;
  }

  .brand__type {
    margin-left: 14px;
    padding: 2px 0 2px 14px;
    font-size: 8.5px;
  }
}

@media (max-width: 420px) {
  .brand__type {
    display:block;
  }
}
.season-bar{color:#d9bf78;background:#050d09;border-bottom:1px solid rgba(199,167,90,.22)}.season-bar__inner{min-height:32px;font-size:.64rem}.status-dot{background:#d9bf78;box-shadow:0 0 0 4px rgba(217,191,120,.16)}.site-header,.home-page .site-header,.home-page .site-header.is-sticky{top:33px}@media (max-width:600px){.season-bar__inner{min-height:30px}.site-header,.home-page .site-header,.home-page .site-header.is-sticky{top:31px}}.season-bar,.site-header,.site-header.is-sticky,.custom-page .site-header,.custom-page .site-header.is-sticky,.seo-page .seo-header,.seo-page .seo-header.is-sticky,.seo-page .site-header,.home-page .site-header,.home-page .site-header.is-sticky{background:#041009}.season-bar{color:#c9a65a;border-bottom-color:rgba(201,166,90,.22)}.status-dot{background:#c9a65a;box-shadow:0 0 0 4px rgba(201,166,90,.16)}.brand{gap:16px}.brand__logo{width:72px;height:72px;object-fit:contain}.brand__word{font-size:55px;line-height:.92;white-space:nowrap}.brand__type{margin-left:22px;padding:2px 0 2px 20px;border-left:1px solid rgba(201,166,90,.85);color:#c9a65a;font-size:13px;font-weight:400}@media (max-width:767px){.brand{gap:12px}.brand__logo{width:48px;height:48px}.brand__word{font-size:36px}.brand__type{margin-left:14px;padding:2px 0 2px 14px;font-size:9px}}@media (max-width:420px){.brand__type{display:block}}.season-bar{color:var(--white);background:var(--clay);border-bottom:0}.season-bar__inner{min-height:40px;font-size:.68rem}.status-dot{background:#f4c98a;box-shadow:0 0 0 5px rgba(244,201,138,.14)}.site-header,.home-page .site-header,.home-page .site-header.is-sticky{top:40px}@media (max-width:600px){.season-bar__inner{min-height:38px}.site-header,.home-page .site-header,.home-page .site-header.is-sticky{top:38px}}.site-header.is-sticky,.custom-page .site-header.is-sticky,.seo-page .site-header.is-sticky,.seo-page .seo-header.is-sticky{position:fixed;top:0;right:0;left:0}.home-page .site-header.is-sticky{position:absolute;top:40px}.brand--footer{gap:12px}.brand--footer .brand__logo{width:46px;height:46px}.brand--footer .brand__word{font-size:30px;line-height:1}.brand--footer .brand__type{margin-left:12px;padding:2px 0 2px 12px;font-size:9px}@media (max-width:767px){.brand--footer .brand__logo{width:40px;height:40px}.brand--footer .brand__word{font-size:26px}.brand--footer .brand__type{display:block}}.inquiry-intro__copy{display:flex;flex-direction:column;gap:12px}.inquiry-intro__phone{margin:0;color:rgba(25,24,19,.62);font-size:.95rem}.inquiry-intro__phone a{color:var(--clay);font-weight:600;text-decoration:none;border-bottom:1px solid rgba(167,75,42,.4)}.inquiry-intro__phone a:hover{border-bottom-color:var(--clay)}
/* ==========================================================================
   Eritellimuse protsessi sektsioon — 10/10 viimistlus (2026-07-30)
   ========================================================================== */
.process-section {
  padding-top: 96px;
  padding-bottom: 112px;
  background: var(--paper);
  scroll-margin-top: 120px;
}

.process-section__inner {
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
  gap: clamp(80px, 10vw, 170px);
  align-items: end;
}

.process-kicker {
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 430;
  font-size: clamp(58px, 5vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
}

.process-intro-copy {
  max-width: 460px;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.58;
  color: rgba(29, 27, 22, 0.72);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 320px;
  padding: 28px 24px 36px;
  border-top: 2px solid var(--clay);
}

.process-step:first-child {
  padding-left: 20px;
}

.process-step:last-child {
  padding-right: 20px;
}

.process-step + .process-step {
  border-left: 1px solid rgba(38, 33, 25, 0.12);
}

.process-number {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.process-step-title {
  max-width: 230px;
  min-height: 2.05em;
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 1.75vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.process-step-copy {
  max-width: 230px;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(29, 27, 22, 0.7);
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 72px;
  padding: 40px 44px;
  background: #041009;
  border: 1px solid rgba(201, 166, 90, 0.46);
  border-radius: 2px;
}

.process-cta-kicker {
  margin: 0;
  color: #c9a65a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-cta h3 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-weight: 460;
  font-size: 32px;
  line-height: 1.1;
  color: #f2ede2;
}

.process-cta__text p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(242, 237, 226, 0.7);
  font-size: 17px;
  line-height: 1.5;
}

.process-cta-button {
  flex: none;
  min-width: 310px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px;
  color: #e2c685;
  border: 1px solid rgba(226, 198, 133, 0.72);
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.process-cta-button:hover {
  color: #041009;
  background: #e2c685;
  border-color: #e2c685;
}

.process-cta-button:focus-visible {
  outline: 3px solid rgba(226, 198, 133, 0.55);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .process-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

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

  .process-step {
    min-height: 260px;
  }

  .process-step:nth-child(odd) {
    border-left: none;
    padding-left: 20px;
  }

  .process-step:nth-child(even) {
    border-left: 1px solid rgba(38, 33, 25, 0.12);
  }
}

@media (max-width: 680px) {
  .process-section {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .process-title {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 0.98;
  }

  .process-intro-copy {
    font-size: 18px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    min-height: auto;
    padding: 24px 0 30px;
    border-left: none !important;
  }

  .process-number {
    margin-bottom: 18px;
  }

  .process-step-title {
    min-height: 0;
  }

  .process-step-title,
  .process-step-copy {
    max-width: none;
  }

  .process-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 48px;
    padding: 32px 24px;
  }

  .process-cta h3 {
    font-size: 27px;
  }

  .process-cta-button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 14px;
    min-height: 60px;
  }
}
.header-cta:hover,.is-sticky .header-cta:hover,.home-page .header-cta:hover,.custom-page .header-cta:hover{color:#f2ede2;background:rgba(201,166,90,.14);border-color:#d9bf78}
/* Eritellimuste KKK ühtlustatud kontaktilehe stiiliga (30.07.2026). */
.custom-faq h2 {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
}

.custom-faq details {
  padding: 0;
}

.custom-faq summary {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 430;
  line-height: 1.3;
  padding: 25px 42px 25px 0;
}

.custom-faq summary::after {
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: var(--clay);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
}

.custom-faq details[open] summary {
  padding-bottom: 10px;
}

.custom-faq details p {
  margin: 0 50px 24px 0;
  font-size: 0.95rem;
}

/* Jaluse veergude paigutus custom-page (eritellimused) lehtedel (30.07.2026). */
.custom-page .footer__top {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(190px, 0.95fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(160px, 0.8fr);
  gap: clamp(28px, 3.4vw, 56px);
  align-items: start;
}

.custom-page .footer__contact,
.custom-page .footer__nav,
.custom-page .footer__links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 11px;
}

.custom-page .footer__label {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.custom-page .footer__contact address {
  margin: 0 0 5px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.6;
}

.custom-page .footer__contact a,
.custom-page .footer__nav a,
.custom-page .footer__links a {
  min-height: 40px;
  display: flex;
  align-items: center;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
  text-transform: none;
}

.custom-page .footer__contact a:hover,
.custom-page .footer__nav a:hover,
.custom-page .footer__links a:hover {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .custom-page .footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .custom-page .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__legal{flex-basis:100%;order:-1;margin:0 0 18px;padding-bottom:16px;border-bottom:1px solid var(--line-light);color:rgba(255,253,248,.78);font-size:.72rem;font-weight:500;letter-spacing:0;line-height:1.6;text-transform:none}.footer__legal strong{font-weight:700;color:rgba(255,253,248,.92)}
/* Terviseandmete nõusolek ja vabatahtlikkuse märge (30.07.2026). */
.field-optional {
  color: rgba(29, 27, 22, 0.5);
  font-weight: 400;
  font-size: 0.85em;
}
.inquiry-health-consent {
  margin-top: 18px;
  padding: 16px 18px;
  background: #fdf1ec;
  border: 1px solid #e6bfae;
  border-radius: 8px;
}
.inquiry-health-consent .inline-check {
  align-items: flex-start;
  gap: 12px;
}
.inquiry-health-consent a { color: var(--clay); }

/* Logo tüpograafia (brief 30.07.2026): Ratturi = Cormorant Garamond 600, TALU KOHVIK = Montserrat 300. */
@font-face{font-family:"Cormorant Garamond";font-style:normal;font-weight:600;font-display:swap;src:url("/assets/fonts/cormorant-garamond-600-latin.woff2") format("woff2")}
@font-face{font-family:"Montserrat";font-style:normal;font-weight:300;font-display:swap;src:url("/assets/fonts/montserrat-300-latin.woff2") format("woff2")}
.brand__word{font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;letter-spacing:-0.035em;color:#f4f0e7}
.brand__type{font-family:"Montserrat",Arial,sans-serif;font-weight:300;letter-spacing:0.18em;line-height:1.5;color:#c8a45a;border-left-color:rgba(200,164,90,0.6)}

/* Logo vahed võrdseks ka custom-lehtedel (eritellimused jne) – 30.07.2026. */
.custom-page .brand { gap: 10px; }
.custom-page .brand__type { margin-left: 0; padding-left: 10px; letter-spacing: 0.13em; }
.custom-page .brand__logo { transform: translateY(1px); }

@media (max-width: 360px){ .brand__type{ display:none } }

/* Jaluse bränd kompaktne: logo + Ratturi (descriptor kataks kõrvalveeru) – 30.07.2026. */
.footer .brand--footer{gap:7px}.footer .brand--footer .brand__type{display:block;margin-left:0;padding:2px 0 2px 7px}

@media (max-width:767px){ .custom-page .brand{gap:10px} .custom-page .brand__type{padding-left:10px} }
