@import url('https://fonts.googleapis.com/css2?family=Bellefair&family=Montserrat:wght@400;500;600;700;800&subset=latin,latin-ext');

:root {
  --cu-ink: #101820;
  --cu-midnight: #17242f;
  --cu-green: #24382f;
  --cu-gold: #d6b46a;
  --cu-gold-dark: #a77c35;
  --cu-ivory: #f7f2e8;
  --cu-paper: #fffaf1;
  --cu-white: #ffffff;
  --cu-text: #3d4650;
  --cu-muted: #73777b;
  --cu-line: rgba(214, 180, 106, .38);
  --cu-shadow: 0 24px 70px rgba(16, 24, 32, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cu-text);
  background: var(--cu-paper);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

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

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: var(--cu-ink);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  border-bottom: 1px solid rgba(214, 180, 106, .25);
}

.topbar .container,
.site-header .container,
.topbar-list,
.nav-list {
  display: flex;
  align-items: center;
}

.topbar .container {
  min-height: 44px;
  justify-content: space-between;
  gap: 18px;
}

.topbar-list {
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.topbar a:hover,
.nav-list a:hover {
  color: var(--cu-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 24, 32, .95);
  border-bottom: 1px solid rgba(214, 180, 106, .38);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.site-header .container {
  min-height: 88px;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: clamp(190px, 24vw, 286px);
  color: var(--cu-gold);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-list {
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--cu-gold);
  color: var(--cu-gold);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  background: var(--cu-gold);
  color: var(--cu-ink);
  transform: translateY(-1px);
}

.btn.fill {
  background: var(--cu-gold);
  color: var(--cu-ink);
}

.btn.fill:hover {
  background: var(--cu-white);
  border-color: var(--cu-white);
}

.btn.light {
  border-color: rgba(255, 255, 255, .64);
  color: var(--cu-white);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--cu-ink);
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-mark {
  width: min(280px, 62vw);
  animation: loaderMarkIn .75s ease both;
}

.page-loader-mark img {
  width: 100%;
  height: auto;
}

.page-loader-line {
  width: min(260px, 58vw);
  height: 1px;
  margin: 22px auto 0;
  overflow: hidden;
  background: rgba(214, 180, 106, .22);
}

.page-loader-line::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--cu-gold);
  animation: loaderLine 1.05s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cu-white);
  text-align: center;
  background:
    linear-gradient(rgba(16, 24, 32, .56), rgba(16, 24, 32, .66)),
    var(--hero-image, url("../images/catering/web-firemni-bufet.jpg")) center / cover no-repeat;
}

.hero:not(.page-title) {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  place-items: stretch;
  text-align: left;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 180, 106, .14), transparent 34%),
    linear-gradient(135deg, var(--cu-ink), var(--cu-green));
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 28px;
  border: 1px solid rgba(214, 180, 106, .48);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  padding: 94px 0;
}

.hero:not(.page-title) .hero-inner {
  width: min(680px, calc(100% - 48px));
  justify-self: end;
  align-self: center;
  padding: 96px 48px 96px 0;
}

.kicker,
.section-kicker {
  color: var(--cu-gold);
  font-family: Bellefair, Georgia, serif;
  font-size: 34px;
  line-height: 1;
  text-transform: lowercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--cu-ink);
  font-family: Bellefair, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  color: var(--cu-white);
  font-size: clamp(58px, 8vw, 112px);
  line-height: .92;
  margin: 14px 0 24px;
}

.hero p {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
  line-height: 1.75;
}

.hero:not(.page-title) p {
  margin-left: 0;
  margin-right: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero:not(.page-title) .hero-actions {
  justify-content: flex-start;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 690px;
  background: url("../images/catering/web-firemni-bufet.jpg") center / cover no-repeat;
  border-left: 1px solid rgba(214, 180, 106, .42);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 32, .34), transparent 36%);
  pointer-events: none;
}

.effects-enabled .site-header {
  animation: headerIn .7s ease both;
}

.effects-enabled .hero .kicker,
.effects-enabled .hero h1,
.effects-enabled .hero p,
.effects-enabled .hero-actions {
  opacity: 0;
  animation: heroTextIn .8s ease forwards;
}

.effects-enabled .hero h1 {
  animation-delay: .08s;
}

.effects-enabled .hero p {
  animation-delay: .16s;
}

.effects-enabled .hero-actions {
  animation-delay: .24s;
}

.effects-enabled .hero-media {
  animation: heroPhotoIn .9s ease .14s both;
}

.effects-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}

.effects-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.effects-enabled .reveal:nth-child(2) {
  transition-delay: .06s;
}

.effects-enabled .reveal:nth-child(3) {
  transition-delay: .12s;
}

.effects-enabled .reveal:nth-child(4) {
  transition-delay: .18s;
}

@keyframes loaderMarkIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPhotoIn {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.info-strip {
  position: relative;
  z-index: 2;
  margin-top: -62px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--cu-white);
  border: 1px solid var(--cu-line);
  box-shadow: var(--cu-shadow);
}

.info-card {
  min-height: 138px;
  padding: 30px 28px;
  border-right: 1px solid var(--cu-line);
}

.info-card:last-child {
  border-right: 0;
}

.info-card h3 {
  margin-bottom: 7px;
  font-size: 30px;
  line-height: 1.05;
}

.info-card p {
  margin: 0;
  color: var(--cu-muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 96px 0;
}

.section.light {
  background: var(--cu-ivory);
}

.section.dark {
  color: var(--cu-white);
  background:
    linear-gradient(120deg, rgba(16, 24, 32, .94), rgba(36, 56, 47, .92)),
    url("../images/row-bgimage-5.jpg") center / cover no-repeat;
}

.section-head {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  max-width: none;
  margin: 0 0 26px;
  text-align: left;
}

.section-head h2 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.section.dark h2,
.section.dark h3 {
  color: var(--cu-white);
}

.section-head p,
.copy p {
  margin: 0;
  color: var(--cu-muted);
  font-size: 16px;
  line-height: 1.8;
}

.section.dark .section-head p,
.section.dark .copy p,
.section.dark .step p {
  color: rgba(255, 255, 255, .72);
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.section-head.left .separator {
  justify-content: flex-start;
}

.separator::before,
.separator::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--cu-gold);
}

.separator span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--cu-gold);
  transform: rotate(45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}

.photo-frame {
  position: relative;
  min-height: 500px;
  background: center / cover no-repeat;
  box-shadow: var(--cu-shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--cu-gold);
  z-index: -1;
}

.photo-food {
  background-image: url("../images/catering/web-prosciutto-hruska.jpg");
}

.photo-hall {
  background-image: url("../images/sal-union.jpg");
}

.copy .btn {
  margin-top: 8px;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.checks li {
  padding-bottom: 12px;
  color: var(--cu-ink);
  border-bottom: 1px solid var(--cu-line);
  font-weight: 800;
}

.checks li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border: 1px solid var(--cu-gold);
  transform: rotate(45deg) translateY(-1px);
}

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

.service-card {
  min-height: 276px;
  padding: 34px 26px;
  text-align: center;
  background: var(--cu-white);
  border: 1px solid var(--cu-line);
}

.service-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--cu-gold);
  border: 1px solid var(--cu-gold);
  font-family: Bellefair, Georgia, serif;
  font-size: 28px;
}

.service-card h3,
.step h3 {
  margin-bottom: 13px;
  font-size: 31px;
  line-height: 1.05;
}

.service-card p,
.step p {
  margin: 0;
  color: var(--cu-muted);
  font-size: 14px;
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(214, 180, 106, .34);
  gap: 1px;
}

.step {
  min-height: 225px;
  padding: 34px 26px;
  background: rgba(16, 24, 32, .78);
}

.step span {
  color: var(--cu-gold);
  font-size: 13px;
  font-weight: 800;
}

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

.gallery-item {
  display: block;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background: center / cover no-repeat;
  cursor: pointer;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(16, 24, 32, .72));
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--cu-white);
  font-family: Bellefair, Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.gallery-item:hover::before {
  background: linear-gradient(180deg, rgba(16, 24, 32, .08), rgba(16, 24, 32, .82));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(8, 12, 16, .92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1180px, 86vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .82);
  font-family: Bellefair, Georgia, serif;
  font-size: 28px;
}

.lightbox-button {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 180, 106, .66);
  border-radius: 0;
  background: rgba(16, 24, 32, .72);
  color: var(--cu-gold);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.lightbox-button:hover {
  background: var(--cu-gold);
  color: var(--cu-ink);
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.g-sweet {
  background-image: url("../images/catering/web-mini-burgery.jpg");
}

.g-dessert {
  background-image: url("../images/catering/web-figove-crostini.jpg");
}

.g-hall {
  background-image: url("../images/gallery/sal/4.jpg");
}

.g-food {
  background-image: url("../images/catering/web-prosciutto-kanapky.jpg");
}

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

.request-box {
  padding: 34px;
  background: var(--cu-white);
  border: 1px solid var(--cu-line);
  box-shadow: 0 18px 48px rgba(16, 24, 32, .08);
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
  color: var(--cu-muted);
}

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

.form-label {
  color: var(--cu-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--cu-ink);
  background: var(--cu-white);
  border: 1px solid rgba(16, 24, 32, .18);
  border-radius: 0;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.form-control:focus {
  border-color: var(--cu-gold);
  box-shadow: 0 0 0 3px rgba(191, 157, 91, .2);
}

textarea.form-control {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.date-shortcuts,
.event-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.date-shortcuts button,
.event-option {
  min-height: 36px;
  padding: 0 12px;
  color: var(--cu-ink);
  background: rgba(191, 157, 91, .1);
  border: 1px solid rgba(191, 157, 91, .42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.date-shortcuts button:hover,
.event-option:hover,
.event-option.is-selected {
  color: var(--cu-white);
  background: var(--cu-ink);
  border-color: var(--cu-ink);
}

.event-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.event-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-option input {
  width: 14px;
  height: 14px;
  accent-color: var(--cu-gold);
}

.guest-stepper {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  min-height: 52px;
  border: 1px solid rgba(16, 24, 32, .18);
  background: var(--cu-white);
}

.guest-button,
.guest-value {
  min-width: 0;
  border: 0;
  color: var(--cu-ink);
  background: transparent;
  font: inherit;
}

.guest-button {
  font-size: 22px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.guest-button:hover {
  color: var(--cu-white);
  background: var(--cu-ink);
}

.guest-value {
  text-align: center;
  border-right: 1px solid rgba(16, 24, 32, .12);
  border-left: 1px solid rgba(16, 24, 32, .12);
  outline: none;
}

.guest-value:focus {
  box-shadow: inset 0 0 0 3px rgba(191, 157, 91, .2);
}

.form-note {
  align-self: center;
  margin: 0;
  color: var(--cu-muted);
  font-size: 13px;
}

.request-fields .btn {
  justify-self: start;
}

.contact-card {
  padding: 36px 32px;
  color: var(--cu-white);
  background: var(--cu-ink);
  border: 1px solid var(--cu-line);
}

.contact-card h3 {
  margin-bottom: 18px;
  color: var(--cu-white);
  font-size: 36px;
}

.contact-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .72);
}

.contact-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--cu-gold);
  font-size: 13px;
  text-transform: uppercase;
}

.map-link {
  color: var(--cu-gold);
  font-weight: 800;
}

.page-title {
  --hero-image: url("../images/ttm-pagetitle-bg.jpg");
  min-height: 360px;
}

.page-title h1 {
  font-size: clamp(54px, 7vw, 94px);
}

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

.feature-card {
  padding: 30px;
  background: var(--cu-white);
  border: 1px solid var(--cu-line);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 32px;
}

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

.footer {
  padding: 46px 0 30px;
  color: rgba(255, 255, 255, .7);
  background: var(--cu-ink);
  border-top: 1px solid rgba(214, 180, 106, .35);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 30px;
}

.footer .brand {
  margin-bottom: 18px;
}

.footer h4 {
  margin-bottom: 12px;
  color: var(--cu-white);
  font-size: 27px;
}

.footer p,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav-list {
    display: none;
  }

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

  .split,
  .split.reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .topbar .container {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .topbar-list {
    gap: 9px 16px;
  }

  .site-header .container {
    min-height: 78px;
  }

  .brand {
    width: 190px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero:not(.page-title) {
    grid-template-columns: 1fr;
  }

  .hero:not(.page-title) .hero-inner {
    width: min(100% - 32px, 680px);
    justify-self: center;
    padding: 76px 0 42px;
  }

  .hero-media {
    min-height: 310px;
    border-left: 0;
    border-top: 1px solid rgba(214, 180, 106, .42);
  }

  .hero::before {
    inset: 14px;
  }

  .hero-inner {
    width: min(100% - 32px, 980px);
  }

  .kicker,
  .section-kicker {
    font-size: 28px;
  }

  .info-strip {
    margin-top: 0;
  }

  .info-grid,
  .service-grid,
  .process,
  .gallery,
  .feature-list,
  .checks,
  .request-fields {
    grid-template-columns: 1fr;
  }

  .info-card {
    border-right: 0;
    border-bottom: 1px solid var(--cu-line);
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-image {
    max-width: 92vw;
    max-height: 76vh;
  }

  .lightbox-button {
    width: 42px;
    height: 42px;
  }

  .lightbox-caption {
    width: calc(100% - 36px);
    bottom: 18px;
    text-align: center;
    font-size: 24px;
  }

  .section {
    padding: 68px 0;
  }

  .photo-frame {
    min-height: 350px;
  }
}

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

  .page-loader {
    display: none;
  }

  .effects-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
