@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #c9a96e;
  --gold-deep: #8b7355;
  --gold-light: #e6d7c3;
  --gold-gradient: linear-gradient(135deg, #d4b87a 0%, #9a7b45 100%);
  --gold-gradient-soft: linear-gradient(180deg, #f3ede3 0%, #ebe2d0 100%);
  --charcoal: #1a1916;
  --ink: #2c2924;
  --muted: #6b6760;
  --line: #ddd9d1;
  --canvas: #f6f6f4;
  --surface: #f9f9f7;
  --ivory: #f3f2ee;
  --white: #ffffff;
  --radius: 8px;
  --radius-sm: 4px;
  --header-h: 96px;
  --wrap: 1400px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-primary: "Cinzel", "Times New Roman", serif;
  --z-nav: 40;
  --z-menu: 50;
  --z-fab: 45;
  --z-grain: 55;
  --shadow: 0 18px 40px -24px rgba(26, 25, 22, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
}

body {
  font-family: var(--font-primary);
  font-size: 0.975rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--canvas);
  min-height: 100dvh;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.sprites {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 70;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex-shrink: 0;
}

.icon--sm {
  width: 0.95rem;
  height: 0.95rem;
}

.wordmark {
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}

.geo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 32px;
  padding: 0.35rem 1.5rem;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.geo-bar .icon {
  color: var(--white);
}

.geo-bar__text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.geo-bar__link {
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-sm);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.geo-bar__link:hover,
.geo-bar__link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
  padding: 0 1.5rem;
  background: rgba(246, 246, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav__tag {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--gold-deep);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__toggle .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.nav__toggle .icon--close,
.nav__toggle.is-open .icon--menu {
  display: none;
}

.nav__toggle.is-open .icon--close {
  display: block;
}

.mobile-menu {
  display: none;
}

.flag-ar {
  display: inline-block;
  width: 1.25rem;
  height: auto;
  vertical-align: -0.15em;
  margin-right: 0.35rem;
  border-radius: 2px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(58dvh, 520px);
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 4vw;
  max-width: 36rem;
}

.hero__copy h1 {
  font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
  max-width: 22ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  margin-top: 1.1rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.35rem;
  transition:
    transform 0.25s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--white);
  width: fit-content;
  box-shadow: 0 8px 24px -12px rgba(139, 115, 85, 0.55);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold-deep);
  color: var(--white);
}

.btn__icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: var(--white);
}

.btn--primary:hover .btn__icon,
.btn--primary:focus-visible .btn__icon {
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(2px);
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: 0 8px 24px -12px rgba(139, 115, 85, 0.45);
}

.btn--gold .icon {
  color: var(--white);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-deep);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold-deep);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--charcoal);
}

.collection {
  padding: 7.5rem 0 8rem;
  background: var(--surface);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 3.5rem;
}

.section-head h2,
.about__text h2,
.order h2,
.contact h2 {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-head p {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 42ch;
}

.gallery {
  list-style: none;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-flow: dense;
  gap: 1.25rem;
}

.gallery__item--feature {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.piece {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.piece__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  flex: 1;
  position: relative;
}

.gallery__item--feature .piece__media {
  min-height: 36rem;
}

.piece__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.7s var(--ease);
}

.gallery__item--feature .piece__media img {
  aspect-ratio: auto;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.piece__media:hover img,
.piece__media:focus-visible img {
  transform: scale(1.04);
}

.piece__meta {
  padding-top: 1rem;
}

.piece__meta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.piece__meta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.25rem 0 0.7rem;
}

.piece__wa {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold-deep);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.piece__wa:hover,
.piece__wa:focus-visible {
  color: var(--charcoal);
}

.about {
  padding: 7rem 0;
  background: var(--canvas);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 4rem;
  align-items: center;
}

.about__text p {
  margin-top: 1.15rem;
  max-width: 58ch;
  color: var(--ink);
}

.about__mark img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order {
  padding: 6.5rem 0 8rem;
  background: var(--ivory);
}

.order h2 {
  margin-bottom: 2.75rem;
}

.order__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 52rem;
}

.order__list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.order__list li:last-child {
  border-bottom: 1px solid var(--line);
}

.order__num {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  padding-top: 0.45rem;
}

.order__list h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.order__list p {
  margin-top: 0.4rem;
  color: var(--muted);
  max-width: 48ch;
}

.night {
  background: var(--gold-gradient-soft);
  color: var(--ink);
}

.contact {
  padding: 7rem 0 4rem;
}

.contact h2 {
  color: var(--charcoal);
}

.contact__lead {
  margin-top: 0.85rem;
  max-width: 40ch;
  color: var(--muted);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.faq {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.faq dt {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--gold-deep);
}

.faq dd {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 2.5rem 0 2rem;
  background: var(--gold-gradient);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .wordmark {
  color: var(--white);
}

.footer .icon {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer__brand p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
}

.footer__nav a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--white);
  opacity: 0.85;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
}

.footer__social a:hover,
.footer__social a:focus-visible {
  background: var(--white);
  color: var(--gold-deep);
  border-color: var(--white);
}

.footer__social a:hover .icon,
.footer__social a:focus-visible .icon {
  color: var(--gold-deep);
}

.footer__copy {
  width: min(100% - 2.5rem, var(--wrap));
  margin: 2rem auto 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: var(--z-fab);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px -10px rgba(139, 115, 85, 0.65);
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.fab .icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--white);
}

.fab:hover,
.fab:focus-visible {
  background: var(--gold-deep);
  color: var(--white);
  transform: scale(1.05);
}

.fab:active {
  transform: scale(0.98);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery__item--feature .piece__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about__grid {
    grid-template-columns: 1fr 220px;
    gap: 2rem;
  }

  .faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: min(100% - 2rem, var(--wrap));
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__wordmark {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    z-index: var(--z-menu);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0.5rem 0 1rem;
  }

  .mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    min-height: min(48dvh, 420px);
  }

  .hero__copy {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .collection,
  .about,
  .order,
  .contact {
    padding: 4.5rem 0;
  }

  .about__grid,
  .order__list li,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .order__num {
    padding-top: 0;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .geo-bar {
    padding-inline: 1rem;
    font-size: 0.72rem;
  }

  .nav {
    padding-inline: 1rem;
  }

  .nav__tag {
    display: none;
  }

  .footer__nav,
  .contact__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .btn--primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .geo-bar {
    gap: 0.5rem;
  }

  .geo-bar__text {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .piece__media img {
    transform: none;
  }
}
