@font-face {
    font-family: 'Playfair Display';
    src: url('/archives/lead-type/playfair-display.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/archives/lead-type/lora.woff2') format('woff2');
    font-weight: 400 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --paper-bg: hsl(175, 40%, 88%);
    --ink-text: hsl(200, 25%, 20%);
    --rust-accent: hsl(30, 60%, 50%);
    --faded-paper: hsl(175, 35%, 82%);
    --aged-border: hsl(170, 25%, 60%);
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --container-max: 86rem;
    --spacing-lg: 2rem;
    --spacing-md: 1.5rem;
    --spacing-sm: 1rem;
    --spacing-xs: 0.5rem;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    background-color: var(--paper-bg);
    color: var(--ink-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--rust-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

.material-icons {
    font-size: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 600px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
        --spacing-sm: 0.75rem;
    }
}

@media (max-width: 440px) {
    :root {
        --spacing-lg: 1rem;
        --spacing-md: 0.75rem;
        --spacing-sm: 0.5rem;
    }
}

@media (max-width: 350px) {
    :root {
        --spacing-lg: 0.5rem;
        --spacing-md: 0.25rem;
        --spacing-sm: 0.1rem;
    }
    
    body {
        word-break: break-word;
    }
}

.lounge_header {
  background-color: var(--faded-paper);
  border-bottom: 2px solid var(--aged-border);
  padding: var(--spacing-sm) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.lounge_header-top {
  display: flex;
  justify-content: center;
}

.lounge_logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  color: var(--ink-text);
}

.lounge_logo-link:hover {
  text-decoration: none;
}

.lounge_logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.lounge_logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--ink-text);
}

.lounge_nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  list-style: none;
}

.lounge_nav-link {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink-text);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.lounge_nav-link:hover {
  border-bottom-color: var(--rust-accent);
  text-decoration: none;
}

.lounge_nav-link--highlight {
  background-color: var(--rust-accent);
  color: var(--paper-bg);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 4px;
  font-weight: 600;
  border-bottom: none;
}

.lounge_nav-link--highlight:hover {
  background-color: hsl(30, 60%, 45%);
  border-bottom: none;
}

@media (max-width: 600px) {
  .lounge_header {
    padding: var(--spacing-xs) var(--spacing-sm);
  }
  
  .lounge_logo-text {
    font-size: 1.4rem;
  }
  
  .lounge_nav-list {
    gap: var(--spacing-sm);
  }
  
  .lounge_nav-link {
    font-size: 1rem;
  }
  
  .lounge_nav-link--highlight {
    padding: var(--spacing-xs) var(--spacing-xs);
  }
}

@media (max-width: 440px) {
  .lounge_logo-image {
    width: 35px;
    height: 35px;
  }
  
  .lounge_logo-text {
    font-size: 1.2rem;
  }
  
  .lounge_nav-list {
    gap: var(--spacing-xs);
  }
  
  .lounge_nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 350px) {
  .lounge_header-top {
    justify-content: flex-start;
  }
  
  .lounge_nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.modal_age {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 400px;
  background-color: var(--faded-paper);
  border: 3px solid var(--aged-border);
  padding: var(--spacing-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  font-family: var(--font-serif);
  z-index: 1000;
  display: none;
}

.modal_age[inert="true"] {
  display: none;
}

.modal_age:not([inert]) {
  display: block;
}

.modal_age-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  color: var(--ink-text);
  border-bottom: 1px dashed var(--aged-border);
  padding-bottom: var(--spacing-xs);
}

.modal_age-text {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.modal_age-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.modal_age-button {
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: var(--spacing-xs) var(--spacing-md);
  border: 2px solid var(--ink-text);
  background: transparent;
  color: var(--ink-text);
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 auto;
}

.modal_age-button--confirm {
  background-color: var(--rust-accent);
  border-color: var(--rust-accent);
  color: var(--paper-bg);
}

.modal_age-button--confirm:hover {
  background-color: hsl(30, 60%, 45%);
  border-color: hsl(30, 60%, 45%);
}

.modal_age-button--exit {
  background-color: transparent;
  color: var(--ink-text);
}

.modal_age-button--exit:hover {
  background-color: var(--ink-text);
  color: var(--paper-bg);
}

@media (max-width: 600px) {
  .modal_age {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: var(--spacing-md);
    max-width: none;
  }
  
  .modal_age-title {
    font-size: 1.5rem;
  }
  
  .modal_age-actions {
    flex-direction: column;
  }
}

@media (max-width: 350px) {
  .modal_age {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    padding: var(--spacing-sm);
  }
}

.modal_cookie {
  position: fixed;
  top: 2rem;
  right: 2rem;
  max-width: 350px;
  background-color: var(--faded-paper);
  border: 3px solid var(--aged-border);
  padding: var(--spacing-md);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  font-family: var(--font-serif);
  z-index: 1000;
  display: none;
}

.modal_cookie[inert="true"] {
  display: none;
}

.modal_cookie:not([inert]) {
  display: block;
}

.modal_cookie-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--ink-text);
}

.modal_cookie-text {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.modal_cookie-link {
  color: var(--rust-accent);
  text-decoration: underline;
  text-decoration-style: dotted;
}

.modal_cookie-link:hover {
  text-decoration-style: solid;
}

.modal_cookie-actions {
  display: flex;
  justify-content: flex-end;
}

.modal_cookie-button {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  padding: var(--spacing-xs) var(--spacing-md);
  border: 2px solid var(--rust-accent);
  background-color: var(--rust-accent);
  color: var(--paper-bg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal_cookie-button:hover {
  background-color: hsl(30, 60%, 45%);
  border-color: hsl(30, 60%, 45%);
}

@media (max-width: 600px) {
  .modal_cookie {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 350px) {
  .modal_cookie {
    bottom: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    padding: var(--spacing-sm);
  }
  
  .modal_cookie-actions {
    justify-content: center;
  }
}

.welcome_section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ink-text);
}

.welcome_picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.welcome_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.welcome_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.welcome_decor {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.2;
  animation: vintageFloat 10s infinite ease-in-out;
}

.welcome_decor--inkwell {
  top: 15%;
  left: 8%;
  width: 50px;
  height: 40px;
  background: var(--ink-text);
  border-radius: 40% 40% 20% 20%;
  animation-delay: 0s;
}

.welcome_decor--inkwell::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 15px;
  width: 20px;
  height: 15px;
  background: var(--rust-accent);
  border-radius: 30% 30% 0 0;
}

.welcome_decor--hourglass {
  top: 60%;
  right: 10%;
  width: 40px;
  height: 60px;
  background: transparent;
  border-left: 10px solid var(--faded-paper);
  border-right: 10px solid var(--faded-paper);
  animation-delay: 2s;
}

.welcome_decor--hourglass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 25px;
  background: var(--faded-paper);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.welcome_decor--hourglass::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 20px;
  height: 25px;
  background: var(--faded-paper);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.welcome_decor--scroll {
  bottom: 20%;
  left: 12%;
  width: 60px;
  height: 45px;
  background: var(--faded-paper);
  border-radius: 0 0 30% 30%;
  animation-delay: 1s;
}

.welcome_decor--scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 40px;
  height: 35px;
  background: var(--paper-bg);
  border-radius: 0 0 20% 20%;
}

.welcome_decor--compass {
  bottom: 40%;
  right: 15%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(var(--rust-accent) 0deg 90deg, var(--faded-paper) 90deg 180deg, var(--rust-accent) 180deg 270deg, var(--faded-paper) 270deg 360deg);
  animation-delay: 3s;
}

.welcome_decor--compass::after {
  content: 'N';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rust-accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: bold;
}

@keyframes vintageFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(3deg);
  }
  50% {
    transform: translateY(-30px) rotate(6deg);
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.welcome_content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  padding: var(--spacing-lg);
  text-align: center;
  color: var(--paper-bg);
}

.welcome_title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.welcome_description {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.welcome_benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.welcome_benefit-card {
  background-color: var(--faded-paper);
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--spacing-sm);
  border: 2px solid var(--aged-border);
  color: var(--ink-text);
  transition: transform 0.2s ease;
}

.welcome_benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust-accent);
}

.welcome_benefit-icon {
  font-size: 2rem;
  color: var(--rust-accent);
}

.welcome_benefit-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.welcome_actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.welcome_link {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  padding: var(--spacing-sm) var(--spacing-lg);
  transition: all 0.2s ease;
  text-decoration: none;
}

.welcome_link--primary {
  background-color: var(--rust-accent);
  color: var(--paper-bg);
  border: 2px solid var(--rust-accent);
}

.welcome_link--primary:hover {
  background-color: transparent;
  color: var(--rust-accent);
  text-decoration: none;
}

.welcome_link--secondary {
  background-color: transparent;
  color: var(--paper-bg);
  border: 2px solid var(--paper-bg);
}

.welcome_link--secondary:hover {
  background-color: var(--paper-bg);
  color: var(--ink-text);
  text-decoration: none;
}

@media (max-width: 600px) {
  .welcome_decor {
    display: none;
  }
  
  .welcome_title {
    font-size: 2.2rem;
  }
  
  .welcome_description {
    font-size: 1.1rem;
  }
  
  .welcome_benefits {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-sm);
  }
  
  .welcome_benefit-card {
    padding: var(--spacing-xs) var(--spacing-sm);
  }
  
  .welcome_benefit-icon {
    font-size: 1.5rem;
  }
  
  .welcome_benefit-text {
    font-size: 0.9rem;
  }
  
  .welcome_actions {
    flex-direction: column;
    align-items: center;
  }
  
  .welcome_link {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-md);
  }
}

@media (max-width: 440px) {
  .welcome_title {
    font-size: 1.8rem;
  }
  
  .welcome_description {
    font-size: 1rem;
  }
  
  .welcome_benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .welcome_content {
    padding: var(--spacing-sm);
  }
  
  .welcome_title {
    font-size: 1.5rem;
  }
  
  .welcome_benefit-card {
    flex-direction: column;
    text-align: center;
  }
}

.games_vault {
  padding: var(--spacing-lg) var(--spacing-lg);
  background-color: var(--faded-paper);
  border-top: 3px solid var(--aged-border);
  border-bottom: 3px solid var(--aged-border);
}

.games_title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  text-align: center;
  color: var(--ink-text);
  margin-bottom: var(--spacing-lg);
  letter-spacing: 2px;
}

.games_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.games_card {
  background-color: var(--paper-bg);
  border: 2px solid var(--aged-border);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.games_card:hover {
  transform: translateY(-6px);
  border-color: var(--rust-accent);
}

.games_image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--aged-border);
  margin-bottom: var(--spacing-sm);
}

.games_name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.games_link {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: hsl(15, 90%, 55%);
  color: white;
  border: 2px solid hsl(15, 90%, 35%);
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 10px hsl(15, 90%, 60%), 0 0 20px rgba(255, 100, 0, 0.5);
  animation: linkPulse 1.5s infinite ease-in-out;
  transition: all 0.2s ease;
}

.games_link:hover {
  background-color: hsl(15, 100%, 65%);
  border-color: hsl(15, 100%, 45%);
  box-shadow: 0 0 15px hsl(15, 100%, 70%), 0 0 30px rgba(255, 100, 0, 0.8);
  transform: scale(1.05);
  text-decoration: none;
}

@keyframes linkPulse {
  0%, 100% {
    box-shadow: 0 0 10px hsl(15, 90%, 60%), 0 0 20px rgba(255, 100, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px hsl(15, 100%, 70%), 0 0 40px rgba(255, 120, 0, 0.9);
  }
}

@media (max-width: 600px) {
  .games_title {
    font-size: 2.2rem;
  }
  
  .games_grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .games_name {
    font-size: 1.5rem;
  }
  
  .games_link {
    font-size: 1.1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    animation: none;
  }
}

@media (max-width: 440px) {
  .games_vault {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .games_title {
    font-size: 1.8rem;
  }
}

@media (max-width: 350px) {
  .games_card {
    padding: var(--spacing-xs);
  }
  
  .games_name {
    font-size: 1.3rem;
  }
  
  .games_link {
    font-size: 1rem;
    padding: var(--spacing-xs);
  }
}

.workings_parlor {
  background-color: var(--paper-bg);
  padding: var(--spacing-lg) var(--spacing-lg);
  border-bottom: 3px solid var(--aged-border);
  position: relative;
}

.workings_parlor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--aged-border) 0px, var(--aged-border) 10px, transparent 10px, transparent 20px);
  opacity: 0.3;
}

.workings_container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.workings_title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.workings_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--rust-accent);
}

.workings_description {
  margin-bottom: var(--spacing-lg);
  background-color: var(--faded-paper);
  padding: var(--spacing-lg);
  border: 2px solid var(--aged-border);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.05);
}

.workings_text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ink-text);
  margin-bottom: var(--spacing-md);
}

.workings_text:last-child {
  margin-bottom: 0;
}

.workings_truths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.workings_truth-card {
  background-color: var(--faded-paper);
  border: 2px solid var(--aged-border);
  padding: var(--spacing-md);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.workings_truth-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust-accent);
}

.workings_truth-icon {
  font-size: 2.5rem;
  color: var(--rust-accent);
  flex-shrink: 0;
}

.workings_truth-content {
  flex: 1;
}

.workings_truth-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-xs);
  border-bottom: 1px dashed var(--aged-border);
  padding-bottom: var(--spacing-xs);
}

.workings_truth-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink-text);
  line-height: 1.5;
}

.workings_footnote {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--aged-border);
}

.workings_deeper-link {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--rust-accent);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-md);
  transition: all 0.2s ease;
}

.workings_deeper-link:hover {
  color: var(--ink-text);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .workings_title {
    font-size: 2.2rem;
  }
  
  .workings_description {
    padding: var(--spacing-md);
  }
  
  .workings_text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .workings_truths {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .workings_truth-card {
    padding: var(--spacing-sm);
  }
  
  .workings_truth-icon {
    font-size: 2rem;
  }
  
  .workings_truth-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 440px) {
  .workings_parlor {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .workings_title {
    font-size: 1.8rem;
  }
  
  .workings_text {
    font-size: 1rem;
  }
  
  .workings_truth-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .workings_truth-content {
    text-align: center;
  }
  
  .workings_deeper-link {
    font-size: 1rem;
  }
}

@media (max-width: 350px) {
  .workings_description {
    padding: var(--spacing-xs);
  }
  
  .workings_truth-title {
    font-size: 1.1rem;
  }
  
  .workings_truth-text {
    font-size: 0.9rem;
  }
}

.repair_alcove {
  background-color: var(--faded-paper);
  padding: var(--spacing-lg) var(--spacing-lg);
  border-bottom: 3px solid var(--aged-border);
  position: relative;
  background-image: radial-gradient(circle at 10px 10px, var(--aged-border) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0;
  background-repeat: repeat;
  background-attachment: fixed;
}

.repair_container {
  max-width: var(--container-max);
  margin: 0 auto;
  background-color: var(--paper-bg);
  padding: var(--spacing-lg);
  border: 2px solid var(--aged-border);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.repair_container::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 0px;
  bottom: -5px;
  background-color: var(--aged-border);
  z-index: -1;
}

.repair_title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-xs);
  letter-spacing: 1px;
}

.repair_subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink-text);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px dashed var(--aged-border);
}

.repair_advice {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.repair_advice-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding: var(--spacing-sm);
  background-color: var(--faded-paper);
  border-left: 4px solid var(--rust-accent);
  transition: transform 0.2s ease;
}

.repair_advice-item:hover {
  transform: translateX(1px);
}

.repair_advice-icon {
  font-size: 2.5rem;
  color: var(--rust-accent);
  flex-shrink: 0;
}

.repair_advice-content {
  flex: 1;
}

.repair_advice-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-xs);
}

.repair_advice-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink-text);
  line-height: 1.5;
}

.repair_note {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--faded-paper);
  border: 2px dotted var(--aged-border);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.repair_note-text {
  margin-bottom: var(--spacing-xs);
  color: var(--ink-text);
}

.repair_note-link {
  color: var(--rust-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  word-break: break-word;
}

.repair_note-link:hover {
  border-bottom-color: var(--rust-accent);
  text-decoration: none;
}

@media (max-width: 600px) {
  .repair_title {
    font-size: 2rem;
  }
  
  .repair_subtitle {
    font-size: 1rem;
  }
  
  .repair_advice-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
  }
  
  .repair_advice-icon {
    font-size: 2rem;
  }
  
  .repair_advice-title {
    font-size: 1.2rem;
  }
  
  .repair_note {
    font-size: 1rem;
    padding: var(--spacing-sm);
  }
}

@media (max-width: 440px) {
  .repair_alcove {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .repair_container {
    padding: var(--spacing-md);
  }
  
  .repair_title {
    font-size: 1.6rem;
  }
  
  .repair_advice-item {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 350px) {
  .repair_container {
    padding: var(--spacing-sm);
  }
  
  .repair_title {
    font-size: 1.4rem;
  }
  
  .repair_advice-title {
    font-size: 1.1rem;
  }
  
  .repair_advice-text {
    font-size: 0.9rem;
  }
  
  .repair_note-link {
    font-size: 0.9rem;
  }
}

.responsible_corner {
  background-color: var(--paper-bg);
  padding: var(--spacing-lg) var(--spacing-lg);
  border-bottom: 3px solid var(--aged-border);
  position: relative;
  background-image: linear-gradient(45deg, var(--faded-paper) 25%, transparent 25%),
                    linear-gradient(-45deg, var(--faded-paper) 25%, transparent 25%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px;
}

.responsible_container {
  max-width: var(--container-max);
  margin: 0 auto;
  background-color: var(--faded-paper);
  padding: var(--spacing-lg);
  border: 2px solid var(--aged-border);
  position: relative;
}

.responsible_age-badge {
  position: absolute;
  top: -15px;
  right: var(--spacing-lg);
  background-color: var(--rust-accent);
  padding: var(--spacing-xs) var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  border: 2px solid var(--ink-text);
  transform: rotate(2deg);
}

.responsible_age-icon {
  font-size: 1.5rem;
  color: var(--paper-bg);
}

.responsible_age-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paper-bg);
  letter-spacing: 1px;
}

.responsible_title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-lg);
  padding-top: var(--spacing-xs);
  border-bottom: 2px solid var(--aged-border);
  padding-bottom: var(--spacing-sm);
}

.responsible_content {
  margin-bottom: var(--spacing-lg);
}

.responsible_text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ink-text);
  margin-bottom: var(--spacing-md);
}

.responsible_text--emph {
  font-style: italic;
  font-size: 1.3rem;
  padding: var(--spacing-md);
  background-color: var(--paper-bg);
  border-left: 6px solid var(--rust-accent);
  margin-top: var(--spacing-md);
}

.responsible_partners {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: var(--paper-bg);
  border: 2px dashed var(--aged-border);
}

.responsible_partners-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-text);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.responsible_partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.responsible_partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  padding: var(--spacing-sm);
  background-color: var(--faded-paper);
  border: 2px solid var(--aged-border);
  transition: all 0.2s ease;
}

.responsible_partner-link:hover {
  transform: translateY(-4px);
  border-color: var(--rust-accent);
  text-decoration: none;
}

.responsible_partner-svg {
  width: 80px;
  height: 80px;
  display: block;
  background-color: var(--paper-bg);
  border-radius: 50%;
  position: relative;
}

.responsible_partner-svg--ga::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 30%, var(--rust-accent) 10%, transparent 10%),
              linear-gradient(45deg, transparent 40%, var(--ink-text) 40%, var(--ink-text) 60%, transparent 60%);
  border-radius: 50%;
}

.responsible_partner-svg--ga::after {
  content: 'GA';
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--rust-accent);
  background: var(--paper-bg);
  padding: 2px 6px;
  border: 2px solid var(--ink-text);
  border-radius: 4px;
}

.responsible_partner-svg--ncpg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--rust-accent) 20%, transparent 20%),
              linear-gradient(45deg, var(--ink-text) 40%, transparent 40%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.responsible_partner-svg--ncpg::after {
  content: 'NCPG';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: bold;
  color: var(--paper-bg);
  text-shadow: 2px 2px 0 var(--ink-text);
}

.responsible_partner-svg--gaw::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--rust-accent) 30%, transparent 30%),
              repeating-linear-gradient(45deg, var(--ink-text) 0px, var(--ink-text) 4px, transparent 4px, transparent 8px);
  border-radius: 50% 50% 0 50%;
}

.responsible_partner-svg--gaw::after {
  content: 'GA';
  position: absolute;
  top: 5px;
  left: 5px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--rust-accent);
  transform: rotate(-10deg);
}

.responsible_partner-name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--ink-text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.responsible_footnote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-align: center;
  color: var(--rust-accent);
  font-style: italic;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--aged-border);
}

@media (max-width: 600px) {
  .responsible_age-badge {
    position: static;
    display: inline-flex;
    margin-bottom: var(--spacing-md);
    transform: none;
  }
  
  .responsible_title {
    font-size: 2.2rem;
  }
  
  .responsible_text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .responsible_text--emph {
    font-size: 1.1rem;
  }
  
  .responsible_partners-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .responsible_partner-link {
    flex-direction: row;
    justify-content: center;
  }
  
  .responsible_footnote {
    font-size: 1rem;
  }
}

@media (max-width: 440px) {
  .responsible_corner {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .responsible_container {
    padding: var(--spacing-md);
  }
  
  .responsible_title {
    font-size: 1.8rem;
  }
  
  .responsible_text {
    font-size: 1rem;
  }
  
  .responsible_partners-title {
    font-size: 1.2rem;
  }
  
  .responsible_partner-svg {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 350px) {
  .responsible_age-text {
    font-size: 1rem;
  }
  
  .responsible_title {
    font-size: 1.5rem;
  }
  
  .responsible_partner-link {
    flex-direction: column;
  }
}

.footer_parlor {
  background-color: hsl(200, 25%, 20%);
  padding: 2rem 2rem 1rem;
  border-top: 4px solid hsl(30, 60%, 50%);
  color: hsl(175, 40%, 88%);
}

.footer_container {
  max-width: 86rem;
  margin: 0 auto;
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed hsl(170, 25%, 60%);
}

.footer_brand-icon {
  font-size: 2.5rem;
  color: hsl(30, 60%, 50%);
}

.footer_brand-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: hsl(175, 40%, 88%);
}

.footer_geo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid hsl(170, 25%, 60%);
  border-bottom: 1px solid hsl(170, 25%, 60%);
}

.footer_geo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 250px;
}

.footer_geo-icon {
  font-size: 1.5rem;
  color: hsl(30, 60%, 50%);
  flex-shrink: 0;
}

.footer_geo-text {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  color: hsl(175, 40%, 88%);
  line-height: 1.5;
}

.footer_geo-link {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  color: hsl(175, 40%, 88%);
  text-decoration: none;
  border-bottom: 1px dotted hsl(30, 60%, 50%);
  transition: all 0.2s ease;
  word-break: break-word;
}

.footer_geo-link:hover {
  color: hsl(30, 60%, 50%);
  border-bottom-color: hsl(30, 60%, 50%);
  text-decoration: none;
}

.footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.footer_link {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  color: hsl(175, 40%, 88%);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  text-transform: lowercase;
}

.footer_link:hover {
  color: hsl(30, 60%, 50%);
  border-bottom-color: hsl(30, 60%, 50%);
  text-decoration: none;
}

.footer_responsible {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid hsl(30, 60%, 50%);
}

.footer_responsible-text {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(175, 40%, 88%);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer_copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(170, 25%, 60%);
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  color: hsl(170, 25%, 60%);
}

.footer_date {
  color: hsl(175, 40%, 88%);
}

.footer_sep {
  color: hsl(30, 60%, 50%);
  font-size: 1.2rem;
}

.footer_rights {
  color: hsl(175, 40%, 88%);
}

@media (max-width: 600px) {
  .footer_parlor {
    padding: 1.5rem 1rem 1rem;
  }
  
  .footer_brand-name {
    font-size: 1.5rem;
  }
  
  .footer_geo {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer_geo-item {
    flex: 1 1 auto;
  }
  
  .footer_links {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .footer_link {
    font-size: 0.95rem;
  }
  
  .footer_responsible-text {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .footer_copyright {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  
  .footer_sep {
    display: none;
  }
}

@media (max-width: 440px) {
  .footer_brand {
    justify-content: center;
  }
  
  .footer_brand-name {
    font-size: 1.3rem;
  }
  
  .footer_geo-item {
    flex-direction: column;
    text-align: center;
  }
  
  .footer_geo-icon {
    margin-bottom: 0.25rem;
  }
  
  .footer_responsible {
    padding: 1rem;
  }
}

@media (max-width: 350px) {
  .footer_brand-icon {
    font-size: 2rem;
  }
  
  .footer_brand-name {
    font-size: 1.1rem;
  }
  
  .footer_link {
    font-size: 0.85rem;
  }
  
  .footer_responsible-text {
    font-size: 0.85rem;
  }
  
  .footer_date {
    font-size: 0.85rem;
  }
}