@font-face {
  font-family: Cinzel;
  src: url("../fonts/cinzel/Cinzel-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #050505;
  --panel: #151515;
  --panel-2: #1d1d1d;
  --gold: #ddcb8e;
  --gold-strong: #d8c47a;
  --text: #e1e1e1;
  --muted: #bdbdbd;
  --border: rgba(221, 203, 142, 0.32);
  --serif: Cinzel, Georgia, serif;
  --sans: Montserrat, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0 clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--black);
  color: var(--text);
  font: 400 clamp(1.3rem, 1.6vw, 1.85rem)/1.67 var(--sans);
}
body.menu-open {
  overflow: hidden;
}
a {
  color: var(--gold);
  text-underline-offset: 0.2em;
}
a:hover {
  color: #fff1bd;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  outline-offset: 4px;
}
:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #070707;
  border-bottom: 1px solid var(--border);
}
.header-inner,
.wide,
.section-inner {
  width: min(calc(100% - 6rem), 1440px);
  margin-inline: auto;
}
.header-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding-block: 0.75rem;
}
.brand-prefix {
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
}
.brand-name {
  font-size: clamp(1.35rem, 2vw, 2.15rem);
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
}
.primary-nav a[aria-current="page"] {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.35em;
}
.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
main {
  display: block;
  max-width: 1680px;
  margin-inline: auto;
}
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--border);
}
.section:last-child {
  border-bottom: 0;
}
.home-page .section:not(.details-section) {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}
.details-section {
  padding-top: clamp(1.25rem, 2vw, 2rem);
  padding-bottom: clamp(1.25rem, 2vw, 2rem);
  border-bottom: 0;
}
.details-section + .section {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
}
.hero {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 3rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  margin: 0;
  color: #fff;
  font: 400 clamp(3.4rem, 8vw, 7.5rem)/1.08 var(--serif);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
}
.hero p {
  max-width: 900px;
  margin: 3.25rem auto 0;
  color: #fff;
  font: 400 clamp(1.6rem, 3.2vw, 3.5rem)/1.36 var(--serif);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h2 {
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 2.94rem);
  line-height: 1.25;
}
h3 {
  margin: 3rem 0 1rem;
  color: var(--gold-strong);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.35;
}
p {
  margin: 0 0 1.5rem;
}
.section-heading {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--border);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.detail-card {
  min-height: 235px;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 5px;
}
.detail-card h3 {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.detail-card p {
  margin: 0;
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
  line-height: 1.55;
}
.intro {
  max-width: 980px;
}
@media (min-width: 1051px) {
  .intro-wide {
    max-width: none;
  }
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 5px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  min-width: 720px;
}
th,
td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(221, 203, 142, 0.18);
}
th {
  background: var(--panel-2);
  color: var(--gold);
  font: 400 1rem/1.4 var(--serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
tr:last-child td {
  border-bottom: 0;
}
th:nth-child(1) {
  width: 13%;
}
th:nth-child(2) {
  width: 37%;
}
th:nth-child(3) {
  width: 50%;
}
.reference-list,
.appearance-list {
  padding-left: 1.4em;
}
.reference-list li,
.appearance-list li {
  margin: 0.75rem 0;
}
.cta {
  background: var(--panel);
  padding: clamp(3rem, 7vw, 6rem);
  text-align: center;
}
.cta h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta p {
  max-width: 1050px;
  margin: 0 auto 2.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.65rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--gold);
  color: #080808;
  text-decoration: none;
  cursor: pointer;
}
.button:hover {
  background: #f1dfa4;
  color: #000;
}
.site-footer {
  background: #070707;
  text-align: center;
  padding: 4.5rem 3rem;
}
.footer-intro {
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
}
.footer-nav {
  margin: 1rem 0 2.5rem;
}
.copyright {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}
.page-main {
  min-height: 65vh;
}
.page-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.page-title {
  text-align: center;
  margin: 0 0 2.5rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.contact-layout {
  border-block: 1px solid var(--border);
  padding-inline: clamp(1rem, 2.5vw, 1.75rem);
}
.contact-intro {
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.contact-form {
  width: min(100%, 720px);
  margin: 4.5rem auto 0;
}
.form-field {
  margin-bottom: 2rem;
}
.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font: 400 1.1rem/1.5 var(--serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.required {
  color: var(--gold);
}
input,
textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.8rem 1rem;
  background: var(--panel);
  border: 1px solid #777;
  border-radius: 5px;
  color: #fff;
}
textarea {
  min-height: 220px;
  resize: vertical;
}
::placeholder {
  color: #aaa;
  opacity: 1;
}
.form-status {
  display: none;
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: var(--panel);
}
.form-status.is-visible {
  display: block;
}
.form-status.error {
  border-color: #ff9494;
}
.error-main {
  min-height: calc(100vh - 118px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 2rem;
}
.error-content {
  max-width: 850px;
}
.error-content p {
  margin-bottom: 2.5rem;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1050px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-inner,
  .wide,
  .section-inner {
    width: min(calc(100% - 3rem), 1440px);
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
  }
  .primary-nav.is-open {
    display: block;
  }
  .primary-nav ul {
    display: block;
  }
  .primary-nav a {
    padding: 0.8rem;
  }
}
@media (max-width: 600px) {
  .header-inner {
    min-height: 94px;
    width: calc(100% - 2rem);
  }
  .brand-prefix {
    font-size: 0.95rem;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .section-inner,
  .wide {
    width: calc(100% - 2rem);
  }
  .hero {
    min-height: calc(100vh - 94px);
    padding: 4rem 1rem;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .detail-card {
    min-height: auto;
  }
  .section {
    padding: 4rem 0;
  }
  th,
  td {
    padding: 1rem;
  }
  .site-footer {
    padding: 3.5rem 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
