:root {
  --ink: #17120f;
  --paper: #f7f2e9;
  --gold: #b5822f;
  --red: #a92727;
  --muted: #746b61;
  --line: rgba(23, 18, 15, 0.13);
}

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

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.96), transparent 32rem),
    radial-gradient(circle at 86% 46%, rgba(181, 130, 47, 0.11), transparent 30rem),
    linear-gradient(135deg, #fbf8f2 0%, var(--paper) 58%, #f0e7da 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-shell {
  width: min(100%, 1600px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(1.1rem, 2.2vw, 2.3rem) clamp(1.25rem, 5vw, 5.75rem) 1.35rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand {
  display: inline-block;
  color: inherit;
}

.brand:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid rgba(169, 39, 39, 0.3);
  outline-offset: 5px;
}

.brand-crop {
  position: relative;
  display: block;
  width: clamp(14.5rem, 21vw, 21rem);
  aspect-ratio: 3.45 / 1;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  top: -118%;
  left: -4.5%;
  width: 109%;
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
}

.launch-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.66rem 1rem;
  color: #4f463d;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(169, 39, 39, 0.1);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(169, 39, 39, 0.28);
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
  align-items: center;
  gap: clamp(1rem, 3.5vw, 5rem);
  min-height: calc(100vh - 172px);
  padding: clamp(1rem, 2.4vh, 2.3rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 45rem;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(3.65rem, 6.1vw, 7.1rem);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -0.072em;
}

h1 em {
  position: relative;
  color: var(--gold);
  font-family: inherit;
  font-style: italic;
  font-weight: 800;
}

h1 em::after {
  position: absolute;
  right: 0.03em;
  bottom: -0.12em;
  width: 42%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red));
  transform: rotate(-1deg);
}

.hero-visual {
  position: relative;
  min-height: min(72vh, 50rem);
  isolation: isolate;
}

.visual-frame {
  position: absolute;
  inset: 0 1.7rem 0 0;
  overflow: hidden;
  border-radius: clamp(2rem, 4vw, 4.5rem);
  background: #f7f1e8;
  box-shadow: 0 34px 90px rgba(66, 44, 20, 0.12);
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(181, 130, 47, 0.15);
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.36);
}

.visual-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 57%;
  will-change: transform;
  animation: hero-float 7s ease-in-out infinite;
}

.vertical-note {
  position: absolute;
  top: 50%;
  right: -1.8rem;
  z-index: 4;
  margin: 0;
  color: rgba(23, 18, 15, 0.34);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.quality-seal {
  position: absolute;
  right: 0.25rem;
  bottom: -0.3rem;
  z-index: 6;
  width: 6.8rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.18rem;
  color: var(--gold);
  border: 1px solid rgba(181, 130, 47, 0.4);
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.86);
  text-align: center;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: rotate(9deg);
  backdrop-filter: blur(8px);
}

.quality-seal::before {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(181, 130, 47, 0.35);
  border-radius: inherit;
  content: "";
}

.quality-seal strong {
  color: var(--red);
  font-size: 1rem;
}

.site-footer {
  min-height: 36px;
  justify-content: flex-start;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0.95rem 0 0;
}

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(0.6); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) scale(1.001); }
  50% { transform: translateY(-5px) scale(1.008); }
}

@media (max-width: 1080px) {
  .site-shell {
    padding-inline: clamp(1.2rem, 4vw, 3rem);
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
    gap: 1rem;
  }

  h1 {
    font-size: clamp(3.4rem, 6.5vw, 5.3rem);
  }
}

@media (max-width: 780px) {
  .site-shell {
    min-height: 100svh;
  }

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

  .brand-crop {
    width: 12.5rem;
  }

  .launch-status {
    padding: 0.55rem 0.72rem;
    font-size: 0.55rem;
    letter-spacing: 0.09em;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.8rem 0 2rem;
  }

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

  h1 {
    font-size: clamp(3.45rem, 14vw, 5.8rem);
  }

  .hero-visual {
    min-height: 38rem;
    margin-top: 1.3rem;
  }

  .visual-frame {
    inset: 0 1rem 0 0;
  }

  .vertical-note {
    right: -1.4rem;
  }

  .quality-seal {
    right: 0;
    width: 6rem;
  }
}

@media (max-width: 500px) {
  .site-shell {
    padding: 0.9rem 1rem 1.2rem;
  }

  .brand-crop {
    width: 10.8rem;
  }

  .launch-status {
    gap: 0.46rem;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .hero {
    padding-top: 2.35rem;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.55rem);
  }

  .hero-visual {
    min-height: 32rem;
    margin-top: 0.8rem;
  }

  .visual-frame {
    inset: 0 0.8rem 0 0;
    border-radius: 2rem;
  }

  .visual-frame > img {
    object-position: 51% 58%;
  }

  .vertical-note {
    display: none;
  }

  .quality-seal {
    right: -0.2rem;
    bottom: -0.2rem;
    width: 5.5rem;
  }

  .site-footer {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }
}

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