:root {
  color-scheme: light;
  --ink: #342317;
  --olive: #59603b;
  --gold: #b87909;
  --paper: #fffdf8;
  --mist: #f3eddf;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 16%, rgb(255 255 255 / 92%) 0 18%, transparent 54%),
    radial-gradient(circle at 12% 84%, rgb(179 121 18 / 8%), transparent 30%),
    radial-gradient(circle at 88% 78%, rgb(91 99 59 / 8%), transparent 28%),
    linear-gradient(145deg, var(--paper), var(--mist));
  font-family: Georgia, "Times New Roman", serif;
}

.page-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem) 1rem;
}

.coming-soon {
  width: min(100%, 820px);
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
  background: rgb(255 253 248 / 84%);
  border: 1px solid rgb(120 91 48 / 18%);
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgb(66 46 25 / 10%);
  backdrop-filter: blur(4px);
}

.brand-logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: min(100%, 320px);
  margin: clamp(1.25rem, 3vw, 2rem) auto;
}

.divider span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(184 121 9 / 65%));
}

.divider span:last-child {
  transform: scaleX(-1);
}

.divider svg {
  width: 1rem;
  flex: 0 0 1rem;
  fill: var(--gold);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--olive);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.intro {
  margin: 1.2rem 0 0;
  color: var(--olive);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
}

.note {
  margin: 0.65rem 0 0;
  color: rgb(52 35 23 / 72%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact {
  margin: 1.4rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact a {
  display: inline-block;
  padding: 0.65rem 1rem;
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}

.contact a:hover {
  background: rgb(184 121 9 / 8%);
}

.contact a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 520px) {
  .coming-soon {
    border-radius: 1.4rem;
  }

  .brand-logo {
    width: 100%;
  }
}

.contact-form-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(184 121 9 / 28%);
}
.contact-form-section h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}
.contact-form {
  display: grid;
  gap: 0.6rem;
  max-width: 480px;
  margin: 1.4rem auto 0;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}
.contact-form label { margin-top: 0.45rem; font-size: 0.95rem; }
.contact-form input:not([type="hidden"]), .contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid #9b927f;
  border-radius: 0.4rem;
  background: #fffefb;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  min-height: 44px;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 0.4rem;
  background: var(--ink);
  color: #fffdf8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.contact-form button:hover { background: #513923; }
.contact-form :is(input, textarea, button):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.form-note { margin: 0.3rem 0 0.6rem; font-size: 0.8rem; line-height: 1.5; color: #625c50; }

/* Keep artwork visible and accessible, without ordinary save/drag interaction. */
.protected-image, img, .divider svg {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}
.protected-image img, .divider svg { pointer-events: none; }
