:root {
  --paper: #f7f0e5;
  --ink: #1e1715;
  --muted: #4b3a34;
  --wine: #8f243a;
  --wine-dark: #741d30;
  --gold: #c89252;
  --line: rgba(201, 168, 117, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
}

::selection {
  background: #243b34;
  color: #fff;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.page-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.background-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    rgba(247, 240, 229, 0.97) 0%,
    rgba(247, 240, 229, 0.9) 42%,
    rgba(247, 240, 229, 0.7) 68%,
    rgba(247, 240, 229, 0.38) 100%
  );
}

.bottom-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 11rem;
  background: linear-gradient(0deg, var(--paper), rgba(247, 240, 229, 0));
}

.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(50, 35, 27, 0.12);
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  color: #211817;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.125rem, 1rem + 0.35vw, 1.35rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.brand-wordmark span:first-child {
  letter-spacing: 0.03em;
}

.brand-wordmark span:last-child {
  letter-spacing: 0.17em;
}

.profile-link {
  display: inline-flex;
  border: 1px solid rgba(155, 47, 66, 0.25);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.625rem 1rem;
  color: #3a211f;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(50, 35, 27, 0.1);
  backdrop-filter: blur(10px);
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.profile-link:hover {
  border-color: rgba(155, 47, 66, 0.45);
  background: #fff;
}

.hero-grid {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) 26.25rem;
  align-items: center;
  gap: 2.5rem;
  padding: 5rem 0;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(185, 135, 84, 0.35);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.25rem 0.75rem;
  color: #7c5638;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 1px 4px rgba(50, 35, 27, 0.1);
  backdrop-filter: blur(10px);
}

h1 {
  max-width: 54rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.intro {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.button.primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 18px 40px rgba(143, 36, 58, 0.2);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  border: 1px solid rgba(155, 47, 66, 0.25);
  background: rgba(255, 255, 255, 0.75);
  color: #5f1d2c;
  box-shadow: 0 1px 4px rgba(50, 35, 27, 0.1);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  border-color: rgba(155, 47, 66, 0.45);
  background: #fff;
}

.info-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 80px rgba(70, 37, 25, 0.16);
  backdrop-filter: blur(14px);
}

.logo-image-frame {
  background: #3a211f;
  padding: 0.75rem;
}

.logo-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
}

.info-body {
  padding: 1.25rem;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

dl {
  margin: 1.25rem 0 0;
}

dl div {
  border-top: 1px solid #dec9ae;
  padding: 1rem 0;
}

dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

dl div:last-child {
  padding-bottom: 0;
}

dt {
  color: #8a6143;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 0;
  color: #665047;
  font-size: 0.875rem;
}

.site-footer a {
  color: var(--wine);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25rem;
}

@media (max-width: 900px) {
  .content {
    padding: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 3.5rem 0;
  }

  .info-card {
    max-width: 32rem;
  }
}

@media (max-width: 640px) {
  .profile-link {
    display: none;
  }

  .hero-grid {
    gap: 2rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
