:root {
  --color-obsidian: #0D0D0F;
  --color-obsidian-soft: #1A1A1F;
  --color-white: #FFFFFF;
  --color-royal-gold: #D4AF37;
  --color-warm-amber: #FFBF00;
  --color-felt-green: #1B5E20;

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --text-display-size: clamp(2.25rem, 5vw, 4rem);
  --text-h1-size: clamp(2rem, 4vw, 3rem);
  --text-h2-size: clamp(1.75rem, 3vw, 2.25rem);
  --text-h3-size: clamp(1.5rem, 2.5vw, 1.75rem);
  --text-h4-size: clamp(1.25rem, 2vw, 1.375rem);
  --text-body-size: 1.125rem;
  --text-small-size: 0.875rem;

  --text-display-line-height: 1.1;
  --text-h1-line-height: 1.2;
  --text-h2-line-height: 1.3;
  --text-h3-line-height: 1.4;
  --text-h4-line-height: 1.5;
  --text-body-line-height: 1.6;
  --text-small-line-height: 1.5;

  --text-display-weight: 700;
  --text-h1-weight: 700;
  --text-h2-weight: 700;
  --text-h3-weight: 600;
  --text-h4-weight: 600;
  --text-body-weight: 400;
  --text-small-weight: 400;

  --letter-spacing-body: 0.02em;
  --letter-spacing-eyebrow: 0.05em;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  --container-max-width: 1200px;
  --container-gutter: 1.5rem;
  --section-padding-desktop: 6rem;
  --section-padding-mobile: 4rem;
  --card-padding: 1.5rem;
  --card-internal-gap: 1rem;
  --grid-gap-cards: 1.5rem;
  --grid-gap-sections: 3rem;

  --radius-0: 0px;
  --radius-1: 4px;
  --radius-2: 8px;
  --radius-3: 12px;
  --radius-4: 16px;

  --shadow-ambient: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-gold-glow: 0 0 12px rgba(212, 175, 55, 0.35);

  --border-gold: 1px solid var(--color-royal-gold);
  --border-gold-soft: 1px solid rgba(212, 175, 55, 0.35);

  --transition-smooth: 0.3s ease;
  --transition-card-hover: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;

  --focus-ring-color: var(--color-felt-green);
  --focus-ring-width: 3px;
  --focus-ring-offset: 2px;

  --touch-target-min: 44px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line-height);
  letter-spacing: var(--letter-spacing-body);
  color: var(--color-white);
  background-color: var(--color-obsidian);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
pre {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  text-wrap: balance;
}

h1 {
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-line-height);
  font-weight: var(--text-h1-weight);
  margin-block-end: var(--space-4);
}

h2 {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-line-height);
  font-weight: var(--text-h2-weight);
  margin-block-end: var(--space-3);
}

h3 {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line-height);
  font-weight: var(--text-h3-weight);
  margin-block-end: var(--space-3);
}

h4 {
  font-size: var(--text-h4-size);
  line-height: var(--text-h4-line-height);
  font-weight: var(--text-h4-weight);
  margin-block-end: var(--space-2);
}

h5,
h6 {
  font-size: var(--text-h4-size);
  line-height: var(--text-h4-line-height);
  font-weight: var(--text-h4-weight);
  margin-block-end: var(--space-2);
}

p {
  margin-block-end: var(--space-3);
}

ul,
ol {
  padding-inline-start: 1.5rem;
  margin-block-end: var(--space-3);
}

ul {
  list-style: none !important;
  padding-inline-start: 0;
}

ol {
  list-style: decimal;
}

li {
  margin-block-end: 0;
}

blockquote {
  margin-block-end: var(--space-3);
  padding-inline-start: var(--space-4);
  border-inline-start: 3px solid var(--color-royal-gold);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

figure {
  margin-block-end: var(--space-3);
}

figcaption {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  color: rgba(255, 255, 255, 0.7);
  margin-block-start: var(--space-2);
}

a {
  color: var(--color-royal-gold);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  color: var(--color-warm-amber);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  border-radius: var(--radius-1);
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-radius: var(--radius-1);
  border: 1px solid var(--color-royal-gold);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  min-height: var(--touch-target-min);
  min-width: var(--touch-target-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

input,
select,
textarea {
  background-color: var(--color-obsidian-soft);
  border: 1px solid var(--color-royal-gold);
  border-radius: var(--radius-1);
  color: var(--color-white);
  padding: var(--space-2) var(--space-3);
  min-height: var(--touch-target-min);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-felt-green);
  box-shadow: 0 0 0 2px rgba(27, 94, 32, 0.4);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-block-end: var(--space-3);
}

th,
td {
  text-align: start;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-royal-gold);
}

hr {
  border: none;
  border-top: 1px solid var(--color-royal-gold);
  margin-block: var(--space-5);
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.section {
  padding-block: var(--section-padding-desktop);
}

.section--compact {
  padding-block: var(--space-6);
}

.section--tight {
  padding-block: var(--space-5);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-small-size);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-eyebrow);
  text-transform: uppercase;
  color: var(--color-royal-gold);
  margin-block-end: var(--space-2);
}

.card {
  background-color: var(--color-obsidian-soft);
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
  border: var(--border-gold);
  border-radius: var(--radius-2);
  padding: var(--card-padding);
  box-shadow: var(--shadow-ambient);
  transition: var(--transition-card-hover);
}

.card:hover {
  transform: scale(1.02);
  border-color: var(--color-warm-amber);
  box-shadow: var(--shadow-ambient), var(--shadow-gold-glow);
}

.card > :last-child {
  margin-block-end: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: var(--touch-target-min);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-body);
  border-radius: var(--radius-1);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  text-align: center;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-royal-gold);
  color: var(--color-obsidian);
  border-color: var(--color-royal-gold);
}

.btn--primary:hover {
  background-color: var(--color-warm-amber);
  border-color: var(--color-warm-amber);
  color: var(--color-obsidian);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-royal-gold);
  border-color: var(--color-royal-gold);
}

.btn--secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--color-warm-amber);
  color: var(--color-warm-amber);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  color: var(--color-white);
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
  min-height: var(--touch-target-min);
  min-width: var(--touch-target-min);
  padding: var(--space-2);
  background: transparent;
  border: 1px solid var(--color-royal-gold);
  border-radius: var(--radius-1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-royal-gold);
  border-radius: 1px;
  transition: background-color var(--transition-smooth), transform var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-toggle:hover .nav-toggle__bar {
  background-color: var(--color-warm-amber);
}

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background-color: var(--color-royal-gold);
  color: var(--color-obsidian);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-1);
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-2);
}

.flex {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.flex > * {
  min-width: 0;
}

.flex--nowrap {
  flex-wrap: nowrap;
}

.flex--column {
  flex-direction: column;
}

.flex--align-center {
  align-items: center;
}

.flex--align-start {
  align-items: flex-start;
}

.flex--align-end {
  align-items: flex-end;
}

.flex--justify-center {
  justify-content: center;
}

.flex--justify-between {
  justify-content: space-between;
}

.flex--justify-end {
  justify-content: flex-end;
}

.flex--gap-1 {
  gap: var(--space-1);
}

.flex--gap-2 {
  gap: var(--space-2);
}

.flex--gap-3 {
  gap: var(--space-3);
}

.flex--gap-4 {
  gap: var(--space-4);
}

.flex--gap-5 {
  gap: var(--space-5);
}

.flex--gap-6 {
  gap: var(--space-6);
}

.content-list {
  list-style: none !important;
  padding-inline-start: 0;
  margin-block-end: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.content-list > li {
  padding-inline-start: var(--space-4);
  position: relative;
}

.content-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: var(--color-royal-gold);
  border-radius: 1px;
  transform: rotate(45deg);
}

.content-list > li:last-child {
  margin-block-end: 0;
}

.content-list > :last-child {
  margin-block-end: 0;
}

.media-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-1);
  border: 1px solid var(--color-royal-gold);
}

.media-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.25) 0%, rgba(13, 13, 15, 0.55) 100%);
  pointer-events: none;
}

.media-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) sepia(8%) saturate(90%);
  border: none;
  border-radius: 0;
}

.divider-gold {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block: var(--space-5);
}

.divider-gold::before,
.divider-gold::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-royal-gold), transparent);
}

.divider-gold__diamond {
  width: 8px;
  height: 8px;
  background-color: var(--color-royal-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.corner-accent {
  position: relative;
}

.corner-accent::before,
.corner-accent::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 1;
}

.corner-accent::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--color-royal-gold);
  border-left: 2px solid var(--color-royal-gold);
  border-top-left-radius: var(--radius-2);
}

.corner-accent::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--color-royal-gold);
  border-right: 2px solid var(--color-royal-gold);
  border-bottom-right-radius: var(--radius-2);
}

@media (max-width: 767px) {
  .section {
    padding-block: var(--section-padding-mobile);
  }

  .section--compact {
    padding-block: var(--space-5);
  }

  .section--tight {
    padding-block: var(--space-4);
  }

  :root {
    --container-gutter: 1rem;
  }

  .flex--column-mobile {
    flex-direction: column;
  }

  .flex--gap-4-mobile {
    gap: var(--space-4);
  }

  .flex--gap-3-mobile {
    gap: var(--space-3);
  }
}

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

  .card:hover {
    transform: none;
  }
}
html, body {
  overflow-x: clip;
  max-width: 100%;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}
/* media-frame-fill-reassert */
.image-frame,
.media-frame,
.card__media {
  overflow: hidden;
}

.image-frame img,
.media-frame img,
.media-frame video,
.card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}


/* mobile-photo-center */
@media (max-width: 56.25rem) {
  img,
  video {
    object-position: center !important;
  }

  .image-frame,
  .media-frame,
  .card__media,
  [class*='__media'] {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    justify-self: stretch;
    overflow: hidden;
    grid-column: 1 / -1;
  }

  .image-frame img,
  .media-frame img,
  .media-frame video,
  .card__media img,
  [class*='__media'] img,
  [class*='hero'] img,
  [class*='hero__image'] {
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center !important;
  }
}
