:root {
  --parchment: #f2e6cf;
  --ink: #17120e;
  --oxblood: #7a1f1a;
  --brass: #b08d57;
  --smoke: #6f6256;
  --night: #221a14;

  --shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  --radius: 14px;
  --wrap: 1040px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: rgba(122, 31, 26, 0.5);
  text-underline-offset: 0.15em;
}

a:hover {
  text-decoration-color: rgba(122, 31, 26, 0.9);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--night);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 230, 207, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 18, 14, 0.12);
}

.nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 14, 0.16);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.nav__logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.nav__brand {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.95rem;
  opacity: 0.9;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav__links a:hover {
  background: rgba(23, 18, 14, 0.06);
}

.nav__cta {
  margin-left: 6px;
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid rgba(176, 141, 87, 0.7);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.btn--primary {
  background: linear-gradient(180deg, rgba(122, 31, 26, 0.96), rgba(90, 18, 14, 0.98));
  color: #fff;
  border-color: rgba(176, 141, 87, 0.95);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: rgba(23, 18, 14, 0.02);
  color: var(--ink);
}

.btn--ghost:hover {
  background: rgba(23, 18, 14, 0.06);
}

.hero .btn--ghost,
.section--dark .btn--ghost {
  color: rgba(252, 235, 160, 0.98); /* light yellow */
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(176, 141, 87, 0.85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.hero .btn--ghost:hover,
.section--dark .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  filter: brightness(1.02);
}

.hero {
  position: relative;
  padding: 64px 0 44px;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 26, 20, 0.70), rgba(34, 26, 20, 0.96)),
    radial-gradient(1100px 500px at 10% 5%, rgba(176, 141, 87, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 25%, rgba(122, 31, 26, 0.22), transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(242, 230, 207, 0.05) 0,
      rgba(242, 230, 207, 0.05) 2px,
      rgba(242, 230, 207, 0.02) 2px,
      rgba(242, 230, 207, 0.02) 6px
    );
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.72);
  transform: scale(1.02);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 18px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(176, 141, 87, 0.85);
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.18);
}

.hero__title {
  margin: 14px 0 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.hero__subtitle {
  margin: 0 0 18px;
  opacity: 0.88;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__logline {
  margin: 0;
  max-width: 60ch;
  font-size: 1.05rem;
  opacity: 0.94;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 22px;
}

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

.facts li {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(242, 230, 207, 0.14);
  border-radius: 14px;
  padding: 12px 12px;
}

.facts__k {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  opacity: 0.75;
}

.facts__v {
  display: block;
  font-weight: 700;
  margin-top: 3px;
}

.section {
  padding: 54px 0;
  border-top: 1px solid rgba(23, 18, 14, 0.10);
}

.section--light {
  background: var(--parchment);
  color: var(--ink);
}

.section--dark {
  background: var(--night);
  color: #fff;
  border-top: 1px solid rgba(242, 230, 207, 0.10);
}

.section__head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 18, 14, 0.12);
}

.section--dark .section__head {
  border-bottom-color: rgba(242, 230, 207, 0.12);
}

.section__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--smoke);
}

.section--dark .section__eyebrow {
  color: rgba(242, 230, 207, 0.72);
}

.section__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0.02em;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.15;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.lead {
  margin: 0 0 12px;
  font-size: 1.05rem;
  opacity: 0.92;
}

.bullets {
  margin: 0;
  padding-left: 1.1rem;
}

.bullets--tight li + li {
  margin-top: 6px;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 18, 14, 0.12);
  padding: 18px 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.card--dark {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(242, 230, 207, 0.12);
  box-shadow: none;
}

.card__title {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0.02em;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.fineprint {
  margin: 14px 0 0;
  font-size: 0.95rem;
  opacity: 0.82;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.gallery__subhead {
  margin: 22px 0 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0.02em;
}

.gallery__subhead:first-of-type {
  margin-top: 10px;
}

.gallery__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 14, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.galleryScroll {
  position: relative;
}

.galleryScroll__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 8px 0 8px;
}

.galleryScroll__btn {
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(23, 18, 14, 0.16);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(23, 18, 14, 0.92);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.galleryScroll__btn:hover {
  background: rgba(255, 255, 255, 0.82);
}

.galleryScroll__btn:focus-visible {
  outline: 3px solid rgba(176, 141, 87, 0.55);
  outline-offset: 2px;
}

.gallery--scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 18, 14, 0.25) transparent;
}

.gallery--scroll::-webkit-scrollbar {
  height: 10px;
}

.gallery--scroll::-webkit-scrollbar-track {
  background: transparent;
}

.gallery--scroll::-webkit-scrollbar-thumb {
  background: rgba(23, 18, 14, 0.20);
  border-radius: 999px;
}

.gallery--scroll .gallery__item {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.gallery--scroll .gallery__img {
  aspect-ratio: 16 / 10;
}

.gallery__link {
  display: block;
  background: rgba(0, 0, 0, 0.06);
}

.gallery__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.gallery__cap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  opacity: 0.92;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(23, 18, 14, 0.16);
  background: rgba(242, 230, 207, 0.75);
  color: rgba(23, 18, 14, 0.92);
}

.tag--concept {
  border-color: rgba(176, 141, 87, 0.55);
}

.tag--photo {
  border-color: rgba(122, 31, 26, 0.45);
}

.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(242, 230, 207, 0.10);
  padding: 22px 0;
}

.footer__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__brand {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer__meta {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

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

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

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: inline-flex;
    margin-left: auto;
  }

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

  .gallery--scroll .gallery__item {
    flex-basis: 280px;
  }
}

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

