:root {
  --ink: #0b0908;
  --cream: #f8f1e7;
  --muted: #c8bbb0;
  --copper: #d1a36f;
  --copper-light: #efd1ad;
  --line: rgba(239, 209, 173, 0.28);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1760px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(18px, 3.5vw, 64px);
}

.site-header {
  display: flex;
  position: relative;
  z-index: 5;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
}

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

.brand__mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #000;
}

.brand__mark img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.brand__identity {
  display: grid;
  gap: 2px;
}

.brand__identity strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.brand__identity span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  border-color: var(--cream);
  color: var(--copper-light);
}

#main-content {
  display: grid;
}

.hero {
  position: relative;
  height: clamp(610px, 74vh, 770px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px 42px 2px 2px;
  background: #15110e;
  isolation: isolate;
  animation: reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.18), transparent 44%),
    linear-gradient(0deg, rgba(7, 6, 5, 0.96) 0%, rgba(7, 6, 5, 0.7) 19%, transparent 57%);
  pointer-events: none;
}

.status {
  display: inline-flex;
  position: absolute;
  top: 28px;
  left: 28px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.62);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 0 5px rgba(239, 209, 173, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero__bottom {
  display: grid;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.78fr);
  align-items: end;
  gap: clamp(28px, 4vw, 70px);
  padding: 34px clamp(26px, 3.5vw, 56px) 36px;
}

.hero__message {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--copper-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--copper);
}

h1 {
  margin: 0;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

h1 em {
  color: var(--copper-light);
  font-weight: 400;
}

.social-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 9, 8, 0.76);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.social-panel__heading {
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.social-panel__heading p,
.social-panel__heading span {
  margin: 0;
}

.social-panel__heading p {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 1.15rem;
}

.social-panel__heading span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.social-panel__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.social-panel__links a {
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 8px;
  color: #eee4dc;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.social-panel__links a + a {
  border-left: 1px solid var(--line);
}

.social-panel__links a:hover,
.social-panel__links a:focus-visible {
  background: rgba(209, 163, 111, 0.12);
  color: var(--copper-light);
}

.social-panel__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid rgba(239, 209, 173, 0.4);
  border-radius: 50%;
}

.social-panel__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-panel__links a:nth-child(2) svg,
.social-panel__links a:nth-child(3) svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-panel__links .social-panel__dot {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 82px;
  align-items: center;
  color: #958980;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer > p,
.footer-signature p {
  margin: 0;
}

.footer-domain {
  color: var(--muted);
}

.footer-signature {
  justify-self: end;
  padding: 9px 0 9px 18px;
  border-left: 1px solid var(--line);
  text-align: right;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-signature a {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 1rem;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 4px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero {
    height: 760px;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .social-panel {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 0 14px;
  }

  .site-header {
    min-height: 88px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__mark img {
    width: 44px;
    height: 44px;
  }

  .brand__identity strong {
    font-size: 1.2rem;
  }

  .brand__identity span {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .header-contact {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .header-contact span:first-child {
    display: none;
  }

  .hero {
    height: 720px;
    border-radius: 2px 28px 2px 2px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(7, 6, 5, 0.98) 0%, rgba(7, 6, 5, 0.72) 32%, transparent 67%);
  }

  .status {
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    font-size: 0.69rem;
  }

  .hero__bottom {
    gap: 20px;
    padding: 24px 16px 18px;
  }

  .eyebrow {
    font-size: 0.69rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  .social-panel__heading {
    padding: 14px 15px 13px;
  }

  .social-panel__links a {
    min-height: 68px;
    flex-direction: column;
    gap: 6px;
    font-size: 0.65rem;
  }

  .site-footer {
    display: flex;
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .footer-signature {
    justify-self: auto;
    padding: 0;
    border-left: 0;
    text-align: left;
  }
}

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