/* Start custom CSS for html, class: .elementor-element-6a29854 */:root {
  --fd-bg: #f6f1ea;
  --fd-paper: #fffaf3;
  --fd-ink: #111111;
  --fd-muted: #6d675f;
  --fd-line: rgba(17, 17, 17, 0.12);
  --fd-soft: #e2d8cc;
  --fd-red: #8d2424;
  --fd-brown: #75543c;
  --fd-gold: #b68b5f;
  --fd-dark: #171615;
  --fd-white: #ffffff;

  --fd-serif: "Instrument Serif", Georgia, serif;
  --fd-sans: "Manrope", Arial, sans-serif;

  --fd-radius: 28px;
  --fd-radius-lg: 52px;

  --fd-shadow: 0 28px 90px rgba(17, 17, 17, 0.13);
  --fd-shadow-soft: 0 18px 54px rgba(17, 17, 17, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--fd-sans);
  color: var(--fd-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(141, 36, 36, 0.09), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(182, 139, 95, 0.14), transparent 30%),
    linear-gradient(180deg, var(--fd-bg), var(--fd-paper));
}

body::selection {
  background: var(--fd-ink);
  color: var(--fd-paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.fd-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.fd-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 234, 0.80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--fd-line);
}

.fd-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.fd-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.fd-logo > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--fd-ink);
  color: var(--fd-paper);
  font-family: var(--fd-serif);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.fd-logo strong {
  display: block;
  font-family: var(--fd-serif);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.fd-logo small {
  display: block;
  margin-top: 4px;
  color: var(--fd-muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.fd-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.fd-nav a {
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.fd-nav a:hover {
  color: var(--fd-ink);
}

/* Shared */

.fd-kicker,
.fd-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fd-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fd-kicker::before,
.fd-section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.fd-section {
  padding: 112px 0;
}

.fd-section h2,
.fd-hero h1,
.fd-gallery-head h2,
.fd-related h2,
.fd-contact h2 {
  font-family: var(--fd-serif);
  font-weight: 400;
  letter-spacing: -0.065em;
}

.fd-section h2,
.fd-gallery-head h2,
.fd-related h2,
.fd-contact h2 {
  margin: 16px 0 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
}

.fd-text p,
.fd-contact p,
.fd-related p {
  color: var(--fd-muted);
  font-size: 17px;
  line-height: 1.9;
}

.fd-text strong,
.fd-related strong {
  color: var(--fd-ink);
}

.fd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.fd-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.fd-btn--dark {
  background: var(--fd-ink);
  color: var(--fd-paper);
  border: 1px solid var(--fd-ink);
}

.fd-btn--light {
  background: rgba(255, 255, 255, 0.55);
  color: var(--fd-ink);
  border: 1px solid var(--fd-line);
}

.fd-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--fd-shadow-soft);
}

/* Hero */

.fd-hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 86px 0 96px;
}

.fd-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 74px;
}

.fd-hero h1 {
  margin: 22px 0 24px;
  max-width: 800px;
  font-size: clamp(76px, 10.5vw, 152px);
  line-height: 0.76;
}

.fd-hero h1 em {
  display: block;
  color: var(--fd-red);
  font-style: italic;
}

.fd-hero p {
  max-width: 650px;
  color: var(--fd-muted);
  font-size: 18px;
  line-height: 1.9;
}

.fd-hero__media {
  position: relative;
  min-height: 660px;
  border-radius: 999px 999px var(--fd-radius) var(--fd-radius);
  overflow: hidden;
  background: var(--fd-soft);
  box-shadow: var(--fd-shadow);
}

.fd-hero__media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
}

.fd-hero__badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.fd-hero__badge span {
  display: block;
  color: var(--fd-red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.fd-hero__badge strong {
  display: block;
  margin-top: 8px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  direction: rtl;
}

/* Overview */

.fd-overview {
  padding-top: 30px;
}

.fd-overview__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 74px 0;
  border-top: 1px solid var(--fd-line);
  border-bottom: 1px solid var(--fd-line);
}

/* Concept */

.fd-concept {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0));
}

.fd-concept__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 74px;
  align-items: start;
}

.fd-concept__intro {
  position: sticky;
  top: 120px;
}

.fd-concept__cards {
  display: grid;
  gap: 18px;
}

.fd-concept__cards article {
  padding: 32px;
  border-radius: var(--fd-radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--fd-line);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.05);
}

.fd-concept__cards article > span {
  color: var(--fd-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fd-concept__cards h3 {
  margin: 10px 0 10px;
  font-family: var(--fd-serif);
  font-size: 44px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.fd-concept__cards p {
  margin: 0;
  color: var(--fd-muted);
  line-height: 1.85;
}

/* Gallery */

.fd-gallery-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(116, 18, 18, 0.08), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(20, 20, 20, 0.06), transparent 32%),
    linear-gradient(180deg, #f6f1ea, #fffaf3);
}

.fd-gallery-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.fd-gallery-head p {
  max-width: 640px;
  color: var(--fd-muted);
  font-size: 17px;
  line-height: 1.9;
}

.fd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.fd-page-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--fd-soft);
  border: 1px solid rgba(18, 18, 18, 0.10);
  box-shadow: 0 14px 42px rgba(18, 18, 18, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fd-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 68px rgba(18, 18, 18, 0.14);
}

.fd-page-card img {
  width: 100%;
  aspect-ratio: 1200 / 1697;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.fd-page-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.08);
}

.fd-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.46), transparent 30%),
    linear-gradient(0deg, rgba(18, 18, 18, 0.30), transparent 38%);
}

.fd-page-card::after {
  content: "Open page";
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.76);
  color: var(--fd-paper);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.fd-page-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.fd-page-card span,
.fd-page-card strong {
  position: absolute;
  z-index: 2;
  right: 14px;
  left: 14px;
  color: var(--fd-paper);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.fd-page-card span {
  top: 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fd-page-card strong {
  top: 36px;
  font-family: var(--fd-serif);
  font-size: 30px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.fd-page-card--cover {
  grid-column: span 2;
}

.fd-page-card--cover strong {
  font-size: 44px;
}

.fd-page-card--wide {
  grid-column: span 2;
}

.fd-page-card--wide img {
  aspect-ratio: 1697 / 1200;
}

.fd-page-card--wide strong {
  font-size: 42px;
}

/* Related Exhibition */

.fd-related {
  padding: 112px 0;
  background: var(--fd-paper);
}

.fd-related__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--fd-radius-lg);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--fd-line);
  box-shadow: var(--fd-shadow-soft);
}

.fd-related__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 999px 999px var(--fd-radius) var(--fd-radius);
  background: var(--fd-soft);
}

.fd-related__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.fd-related__content p {
  max-width: 680px;
}

.fd-related__content .fd-btn {
  margin-top: 16px;
}

/* Contact */

.fd-contact {
  padding: 112px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(141, 36, 36, 0.08), transparent 30%),
    var(--fd-bg);
}

.fd-contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: start;
}

.fd-contact__links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.fd-contact__links a {
  width: fit-content;
  color: var(--fd-red);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.fd-form {
  padding: 34px;
  border-radius: var(--fd-radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--fd-line);
  box-shadow: var(--fd-shadow-soft);
}

.fd-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.fd-form label span {
  color: var(--fd-ink);
  font-size: 12px;
  font-weight: 900;
}

.fd-form input,
.fd-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  outline: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--fd-ink);
  padding: 15px 16px;
  font-family: var(--fd-sans);
  font-size: 15px;
  transition: 0.25s ease;
}

.fd-form input:focus,
.fd-form textarea:focus {
  border-color: var(--fd-red);
  box-shadow: 0 0 0 4px rgba(141, 36, 36, 0.11);
}

.fd-form textarea {
  resize: vertical;
}

.fd-form button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--fd-ink);
  color: var(--fd-paper);
  font-family: var(--fd-sans);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.fd-form button:hover {
  transform: translateY(-3px);
  box-shadow: var(--fd-shadow-soft);
}

/* Footer */

.fd-footer {
  padding: 28px 0;
  background: var(--fd-dark);
  color: rgba(255, 250, 243, 0.66);
}

.fd-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fd-footer p {
  margin: 0;
  font-size: 13px;
}

.fd-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.fd-footer a {
  font-size: 13px;
  font-weight: 800;
}

.fd-footer a:hover {
  color: var(--fd-paper);
}

/* Responsive */

@media (max-width: 1080px) {
  .fd-hero__grid,
  .fd-overview__grid,
  .fd-concept__grid,
  .fd-related__inner,
  .fd-contact__grid {
    grid-template-columns: 1fr;
  }

  .fd-concept__intro {
    position: static;
  }

  .fd-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fd-page-card--cover,
  .fd-page-card--wide {
    grid-column: span 1;
  }

  .fd-page-card--wide img {
    aspect-ratio: 1200 / 1697;
  }
}

@media (max-width: 760px) {
  .fd-wrap {
    width: min(100% - 28px, 1180px);
  }

  .fd-header__inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .fd-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .fd-logo strong {
    font-size: 24px;
  }

  .fd-hero {
    min-height: auto;
    padding: 64px 0 78px;
  }

  .fd-hero h1 {
    font-size: clamp(68px, 19vw, 96px);
  }

  .fd-hero__media,
  .fd-hero__media img {
    min-height: 520px;
    height: 520px;
  }

  .fd-section,
  .fd-gallery-section,
  .fd-related,
  .fd-contact {
    padding: 82px 0;
  }

  .fd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fd-page-card {
    border-radius: 18px;
  }

  .fd-page-card strong {
    font-size: 24px;
  }

  .fd-page-card--cover strong,
  .fd-page-card--wide strong {
    font-size: 28px;
  }

  .fd-related__media,
  .fd-related__media img {
    min-height: 460px;
    height: 460px;
  }

  .fd-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .fd-actions {
    flex-direction: column;
  }

  .fd-btn {
    width: 100%;
  }

  .fd-section h2,
  .fd-gallery-head h2,
  .fd-related h2,
  .fd-contact h2 {
    font-size: 43px;
  }

  .fd-concept__cards h3 {
    font-size: 36px;
  }

  .fd-gallery-grid {
    grid-template-columns: 1fr;
  }

  .fd-page-card strong {
    font-size: 34px;
  }

  .fd-hero__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}/* End custom CSS */