/* Embercast — placeholder landing (Classical theme tokens) */
:root {
  --bg: #f3f2f2;
  --surface: #eae9e9;
  --text: #201f1d;
  --accent: #b68235;
  --accent-100: #fff3e4;
  --accent-300: #facb8d;
  --accent-500: #c28d41;
  --accent-600: #a06f24;
  --accent-700: #7d5411;
  --neutral-200: #eae7e7;
  --neutral-800: #444141;
  --divider: rgba(32, 31, 29, 0.16);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  text-wrap: pretty;
}

a { color: var(--accent-700); text-underline-offset: 3px; }
a:hover { color: var(--accent-600); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: rgba(182, 130, 53, 0.3); }

/* — the frame — */
.frame {
  position: relative;
  width: min(1124px, 100%);
  border: 1px solid var(--neutral-800);
}
.frame-inner {
  margin: 7px;
  border: 1px solid var(--divider);
  padding: 52px 84px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.corner { position: absolute; color: var(--neutral-800); }
.corner.tl { top: 11px; left: 11px; }
.corner.tr { top: 11px; right: 11px; transform: rotate(90deg); }
.corner.br { bottom: 11px; right: 11px; transform: rotate(180deg); }
.corner.bl { bottom: 11px; left: 11px; transform: rotate(270deg); }

/* — masthead — */
.logo { height: 88px; width: auto; display: block; }
h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 22px 0 0;
}
.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.chip {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  font-size: 12.5px; letter-spacing: 0.06em;
  border-radius: 4px;
  border: 1px solid var(--accent-500);
  color: var(--accent-700);
  white-space: nowrap;
}
.chip-neutral { border-color: transparent; background: var(--neutral-200); color: var(--text); }

.lede {
  font-size: 16px; line-height: 1.75;
  max-width: 58ch;
  margin: 26px 0 0;
  color: rgba(32, 31, 29, 0.82);
}

.divider { width: 62%; height: 1px; background: var(--divider); margin: 36px 0 0; border: 0; }

/* — lower halves — */
.halves {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 44px;
  align-items: start;
  width: 100%;
  margin-top: 34px;
  text-align: left;
}
.vrule { background: var(--divider); align-self: stretch; }

.kicker {
  display: block;
  font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent-700);
}

.survey { display: flex; gap: 22px; align-items: center; }
.qr-mat { flex: none; border: 1px solid var(--neutral-800); padding: 5px; }
.qr-mat img { width: 104px; height: 104px; display: block; }
.survey p { font-size: 14.5px; line-height: 1.65; margin: 8px 0 14px; color: rgba(32, 31, 29, 0.78); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent-700);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: rgba(182, 130, 53, 0.1); color: var(--accent-700); }
.btn:active { color: var(--accent-600); border-color: var(--accent-600); }

.socials { display: grid; gap: 9px; margin-top: 10px; }
.socials a {
  display: flex; gap: 10px; align-items: center;
  text-decoration: none; color: var(--text);
  font-size: 14.5px;
}
.socials a:hover { color: var(--accent-600); }
.socials svg { flex: none; }
.socials .net { color: rgba(32, 31, 29, 0.5); font-size: 12.5px; }

footer {
  margin: 38px 0 0;
  font-size: 12.5px; letter-spacing: 0.06em;
  color: rgba(32, 31, 29, 0.55);
}

/* — small screens — */
@media (max-width: 880px) {
  body { padding: 16px; }
  .frame-inner { padding: 40px 26px 32px; }
  .halves { grid-template-columns: 1fr; gap: 30px; }
  .vrule { display: none; }
  .logo { height: 68px; }
}
@media (max-width: 480px) {
  .survey { flex-direction: column; align-items: flex-start; }
}
