:root {
  color-scheme: light;
  --ink: #211711;
  --paper: #f5efe5;
  --accent: #d6a65f;
  --red: #9f1f24;
  --muted: #765f50;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-shell { display: grid; min-height: 100svh; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); }

.project-image { position: relative; min-height: 100svh; overflow: hidden; background: var(--ink); color: white; }
.project-image > img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; animation: settle 1.4s cubic-bezier(.2,.75,.2,1) both; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,13,9,.12), rgba(20,13,9,.05) 55%, rgba(20,13,9,.7)); }
.location, .craft-mark { position: absolute; z-index: 1; margin: 0; }
.location { top: 2rem; left: 2rem; border: 1px solid rgba(255,255,255,.55); padding: .55rem .7rem; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.craft-mark { right: 2rem; bottom: 2rem; font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 3.5rem); font-style: italic; letter-spacing: -.035em; }

.announcement { display: grid; min-height: 100svh; grid-template-rows: auto 1fr auto; padding: clamp(1.5rem, 4vw, 4rem); }
.announcement header { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.logo { width: clamp(130px, 14vw, 185px); mix-blend-mode: multiply; }
.status { display: inline-flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.status i { width: .55rem; height: .55rem; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(159,31,36,.1); animation: pulse 2s ease-in-out infinite; }

.message { align-self: center; max-width: 650px; padding: 5rem 0; }
.eyebrow { margin: 0 0 1.25rem; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.4rem, 8.2vw, 8.6rem); font-weight: 400; letter-spacing: -.065em; line-height: .78; text-wrap: balance; }
.intro { max-width: 560px; margin: 2.25rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.7; }
.contact { display: inline-flex; min-height: 58px; align-items: center; gap: 1.6rem; margin-top: 2rem; border: 1px solid var(--ink); border-radius: 10px; padding: .9rem 1.15rem; background: var(--ink); color: var(--paper); font-size: .84rem; font-weight: 750; text-decoration: none; transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.contact svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .2s ease; }
.contact:hover { border-color: var(--red); background: var(--red); transform: translateY(-2px); }
.contact:hover svg { transform: translateX(3px); }
.contact:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.announcement footer { display: flex; justify-content: space-between; gap: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(33,23,17,.2); color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

@keyframes settle { from { opacity: .7; transform: scale(1.07); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

@media (max-width: 880px) {
  .site-shell { grid-template-columns: 1fr; }
  .project-image { min-height: 44svh; }
  .announcement { min-height: 56svh; }
  .message { padding: 4.5rem 0; }
  h1 { font-size: clamp(4.3rem, 16vw, 7.5rem); }
}

@media (max-width: 540px) {
  .project-image { min-height: 38svh; }
  .location { top: 1.1rem; left: 1.1rem; }
  .craft-mark { right: 1.1rem; bottom: 1.1rem; }
  .announcement { min-height: 62svh; padding: 1.25rem; }
  .announcement header { align-items: flex-start; }
  .logo { width: 118px; }
  .status { margin-top: .5rem; font-size: .55rem; }
  .message { padding: 3.6rem 0; }
  h1 { font-size: clamp(4rem, 20vw, 6.1rem); }
  .announcement footer { flex-direction: column; gap: .55rem; }
}

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