
:root {
  --red: #c71a39;
  --ink: #171514;
  --muted: #6f6761;
  --paper: #f4eee8;
  --line: rgba(23, 21, 20, 0.16);
  --white: #ffffff;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection { background: var(--red); color: var(--white); }
a { color: inherit; }

.site-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  overflow: hidden;
  background: var(--paper);
}

.content-panel {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4.2vw, 72px) clamp(28px, 5.2vw, 86px) clamp(26px, 3.6vw, 58px);
  background:
    linear-gradient(125deg, rgba(255,255,255,.35), transparent 50%),
    var(--paper);
  isolation: isolate;
}

.content-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 1px;
  background: rgba(255,255,255,.7);
  box-shadow: 1px 0 0 rgba(0,0,0,.08);
  z-index: 4;
}

.brand-header,
.content-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  text-decoration: none;
  width: clamp(138px, 11vw, 190px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding: clamp(42px, 7vh, 92px) 0 clamp(32px, 5vh, 64px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--red);
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(62px, 6vw, 104px);
  font-weight: 720;
  letter-spacing: -.058em;
  line-height: .88;
}

h1 em {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.05em;
}

.intro {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.06vw, 17px);
  line-height: 1.6;
}

.coming-soon-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.coming-soon-note::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--red);
}

.content-footer {
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .25s ease, border-color .25s ease;
}

.instagram-link:hover { color: var(--red); border-color: var(--red); }

.symbol-watermark {
  position: absolute;
  z-index: 1;
  right: -13%;
  bottom: 8%;
  width: min(44vw, 560px);
  opacity: .035;
  transform: rotate(-8deg);
  pointer-events: none;
}

.visual-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #373532;
  color: var(--white);
}

.image-wrap,
.hero-image,
.image-shade { position: absolute; inset: 0; }

.image-wrap {
  transform: scale(1.015);
  will-change: transform;
  transition: transform .25s ease-out;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: revealImage 1.25s cubic-bezier(.2,.72,.28,1) both;
}

.hero-image-desktop {
  display: block;
  object-position: 58% 50%;
  filter: saturate(.86) contrast(1.06) brightness(.92);
}

.hero-image-mobile { display: none; }

.image-shade {
  background:
    linear-gradient(90deg, rgba(18,17,16,.25), transparent 32%),
    linear-gradient(180deg, rgba(15,14,13,.22), transparent 28%, transparent 66%, rgba(12,11,10,.48));
}

@keyframes revealImage {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.03); }
}

@media (max-width: 1100px) {
  .site-shell { grid-template-columns: 52% 48%; }
}

@media (max-width: 760px) {
  .site-shell {
    position: relative;
    display: block;
    min-height: 100svh;
    overflow: hidden;
  }

  .visual-panel {
    position: fixed;
    inset: 0;
    min-height: 100svh;
    z-index: 0;
  }

  .hero-image-desktop { display: none; }
  .hero-image-mobile {
    display: block;
    object-position: 54% 50%;
    filter: saturate(.9) contrast(1.04) brightness(.96);
  }

  .image-shade {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.84) 0%,
      rgba(244,238,232,.76) 48%,
      rgba(244,238,232,.68) 100%
    );
  }

  .content-panel {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding:
      max(22px, env(safe-area-inset-top))
      22px
      max(20px, env(safe-area-inset-bottom));
    background: transparent;
  }

  .content-panel::after { display: none; }

  .brand-header {
    display: flex;
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .brand {
    width: 104px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    padding: 20px 0;
    max-width: 100%;
    margin: 0;
  }

  .eyebrow {
    margin: 0 0 18px;
    font-size: 9px;
    gap: 9px;
    color: rgba(23,21,20,.76);
  }

  .eyebrow span { width: 24px; }

  h1 {
    font-size: clamp(50px, 14vw, 72px);
    line-height: .88;
    max-width: 100%;
    text-shadow: 0 1px 18px rgba(255,255,255,.24);
  }

  .intro {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
    max-width: 86%;
    color: rgba(23,21,20,.82);
  }

  .coming-soon-note {
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: .2em;
  }

  .coming-soon-note::before { width: 26px; }

  .content-footer {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
    padding-top: 13px;
    font-size: 9px;
    border-color: rgba(23,21,20,.24);
  }

  .instagram-link { font-size: 9px; }
  .symbol-watermark { display: none; }
}

@media (max-width: 420px), (max-height: 720px) and (max-width: 760px) {
  .content-panel { padding: 18px 18px 16px; }
    h1 { font-size: clamp(46px, 13vw, 62px); }
  .intro { font-size: 13px; max-width: 88%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .image-wrap { transform: none !important; }
}
