:root {
  --color-obsidian: #1A1A1A;
  --color-plum-black: #2A1F2D;
  --color-copper: #B87333;
  --color-amber-glow: #FFBF00;
  --color-felt-green: #2E5E4E;
  --color-white: #FFFFFF;
  --color-off-white: #E0E0E0;
  --color-copper-light: #F5D6B8;
  --color-surface-elevated: #2A2A2A;
  --color-overlay: rgba(26, 26, 26, 0.7);
  --color-border-copper: rgba(184, 115, 51, 0.2);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-display: clamp(2.5rem, 5vw + 1rem, 4rem);
  --text-h1: clamp(2rem, 3.5vw + 0.75rem, 3rem);
  --text-h2: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  --text-h3: clamp(1.4rem, 1.5vw + 0.5rem, 1.75rem);
  --text-h4: clamp(1.2rem, 1vw + 0.5rem, 1.375rem);
  --text-body: 1.125rem;
  --text-small: 0.875rem;

  --leading-display: 1.1;
  --leading-h1: 1.2;
  --leading-h2: 1.2;
  --leading-h3: 1.3;
  --leading-h4: 1.4;
  --leading-body: 1.6;
  --leading-small: 1.5;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --container-max: 1200px;
  --container-padding-desktop: 64px;
  --container-padding-mobile: 32px;

  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-pill: 24px;

  --shadow-standard: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.6);

  --transition-fast: 0.3s ease;
  --transition-page: 0.5s ease;

  --surface-gradient: linear-gradient(135deg, var(--color-obsidian) 0%, var(--color-plum-black) 100%);
  --surface-frosted: rgba(26, 26, 26, 0.7);
  --surface-card: #2A2A2A;

  --image-filter: saturate(0.8) contrast(1.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-white);
  background-color: var(--color-obsidian);
  background-image: var(--surface-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-copper-light);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-white);
  line-height: var(--leading-h1);
  margin-block-end: var(--space-5);
}

h1 {
  font-size: var(--text-h1);
  line-height: var(--leading-h1);
}

h2 {
  font-size: var(--text-h2);
  line-height: var(--leading-h2);
  margin-block-start: var(--space-8);
}

h3 {
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
  margin-block-start: var(--space-7);
}

h4 {
  font-size: var(--text-h4);
  line-height: var(--leading-h4);
  margin-block-start: var(--space-6);
}

h5,
h6 {
  font-size: var(--text-h4);
  line-height: var(--leading-h4);
  margin-block-start: var(--space-5);
}

p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-off-white);
  margin-block-end: var(--space-5);
}

small {
  font-size: var(--text-small);
  line-height: var(--leading-small);
  color: var(--color-off-white);
}

strong,
b {
  font-weight: 700;
  color: var(--color-white);
}

em,
i {
  font-style: italic;
}

blockquote {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
  color: var(--color-copper-light);
  border-inline-start: 3px solid var(--color-copper);
  padding-inline-start: var(--space-5);
  margin-block: var(--space-7);
}

blockquote p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin-block-end: 0;
}

figure {
  margin-block: var(--space-6);
}

figcaption {
  font-size: var(--text-small);
  color: var(--color-off-white);
  margin-block-start: var(--space-2);
}

hr {
  border: none;
  border-block-start: 1px solid var(--color-border-copper);
  margin-block: var(--space-8);
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-mobile);
}

.section {
  padding-block: var(--space-7);
}

.surface-card {
  background-color: var(--surface-card);
  border: 1px solid var(--color-border-copper);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-standard);
  padding: var(--space-5);
}

.surface-frosted {
  background: var(--surface-frosted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-copper);
}

.badge {
  display: inline-block;
  background-color: var(--color-copper);
  color: var(--color-obsidian);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: var(--leading-small);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--color-copper);
  background-color: var(--color-obsidian);
  border: 1px solid var(--color-copper);
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.btn:hover {
  background-color: var(--color-copper);
  color: var(--color-obsidian);
  transform: scale(1.02);
}

.btn:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
  opacity: 0.85;
}

.btn-accent {
  background-color: var(--color-amber-glow);
  color: var(--color-obsidian);
  border-color: var(--color-amber-glow);
}

.btn-accent:hover {
  background-color: var(--color-copper-light);
  border-color: var(--color-copper-light);
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-white);
  background-color: var(--color-obsidian);
  border: 1px solid var(--color-border-copper);
  border-radius: var(--radius-small);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-off-white);
  opacity: 0.7;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 2px rgba(184, 115, 51, 0.3);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B87333' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-inline-end: var(--space-8);
}

label {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-off-white);
  margin-block-end: var(--space-2);
}

fieldset {
  border: 1px solid var(--color-border-copper);
  border-radius: var(--radius-medium);
  padding: var(--space-5);
  margin-block-end: var(--space-5);
}

legend {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  color: var(--color-copper);
  padding-inline: var(--space-2);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-block-end: var(--space-6);
}

th,
td {
  text-align: start;
  padding: var(--space-3) var(--space-4);
  border-block-end: 1px solid var(--color-border-copper);
}

th {
  font-family: var(--font-heading);
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--color-copper);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

td {
  font-size: var(--text-body);
  color: var(--color-off-white);
}

.content-list {
  margin-block-end: var(--space-5);
  padding-inline-start: var(--space-5);
}

.content-list li {
  position: relative;
  padding-inline-start: var(--space-4);
  margin-block-end: var(--space-2);
  color: var(--color-off-white);
}

.content-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.65em;
  width: 6px;
  height: 6px;
  background-color: var(--color-copper);
  border-radius: 50%;
}

.content-list li:last-child {
  margin-block-end: 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.flex > * {
  min-width: 0;
  flex-shrink: 1;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  align-items: flex-start;
  justify-content: flex-start;
}

.flex-end {
  align-items: flex-end;
  justify-content: flex-end;
}

.nav-toggle {
  flex-direction: column;
}

ul {
  list-style: none !important;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, figure, table, fieldset):last-child {
  margin-block-end: 0;
}

:where(.surface-card, .surface-frosted, .badge, .btn, .content-list) > :last-child {
  margin-block-end: 0;
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--container-padding-desktop);
  }

  .section {
    padding-block: var(--space-9);
  }

  .surface-card {
    padding: var(--space-5);
  }
}

@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;
  }
}
html, body {
  overflow-x: clip;
  max-width: 100%;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

.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;
  }

  .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;
  }
}
