/* JarTote — soft lifestyle / canvas overlay. Do not reuse on other products. */
:root {
  --camel: #8a4b24;
  --cream: #f4eee6;
  --ink: #241810;
  --serif: "Didot", "Bodoni 72", "Playfair Display", "Times New Roman", serif;
  --sans: "Avenir Next", "Gill Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

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

.cover {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(36, 24, 16, 0.28) 0%, rgba(36, 24, 16, 0.72) 70%, #241810 100%),
    url("/images/jartote-hero.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}
.cover-nav {
  display: flex;
  justify-content: space-between;
  padding: 28px 36px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}
.cover-nav a { text-decoration: none; }
.cover-copy {
  margin-top: auto;
  padding: 0 36px 64px;
  max-width: 720px;
}
.cover-copy p.kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
  color: #e6c9a8;
}
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  margin: 0 0 18px;
}
.lede { max-width: 36ch; margin: 0 0 28px; color: #efe4d6; }

.pill {
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.room {
  background: var(--cream);
  color: var(--ink);
  padding: 72px 8vw;
}
.room h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 28px;
}
.tri {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.tri h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 8px; }
.tri p { margin: 0; color: #5a4636; }

.well {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.well img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.well-copy {
  background: #3a2618;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.well-copy h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; margin: 0 0 16px; }
.well-copy p { color: #e6d3c0; }

.sign {
  background: var(--cream);
  color: var(--ink);
  padding: 72px 8vw 80px;
}
.sign form { display: grid; gap: 12px; max-width: 420px; }
.sign input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c9b49e;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  color: var(--ink);
}
.sign .fine { font-size: 12px; color: #5a4636; margin: 0; }
.ok { color: #3d6b4f; font-weight: 700; }
.err { color: #9a2b22; font-weight: 700; }

footer {
  background: var(--ink);
  color: #c9b49e;
  padding: 28px 36px 48px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .tri, .well { grid-template-columns: 1fr; }
  .cover-copy { padding: 0 24px 48px; }
}
