/* ————————————————————————————————
   VINTREPÔT · Wine Merchants
   Cellar colorway: deep claret ground,
   cream type, brass hairlines.
———————————————————————————————— */

:root {
  --claret: #3b1622;        /* page ground */
  --claret-deep: #2c0f1a;   /* footer / recessed */
  --claret-panel: #461b29;  /* raised panels */
  --cream: #f4efe6;
  --cream-dim: #cbb9a8;
  --brass: #b08d57;
  --brass-dim: rgba(176, 141, 87, 0.45);
  --field: #f0e9dc;
  --field-ink: #3b1622;
  --max: 1060px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--claret);
  color: var(--cream);
  font-family: "Karla", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brass); color: var(--claret-deep); }

.serif { font-family: "Cormorant Garamond", Georgia, serif; }

/* ——— header ——— */

header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--cream);
}

.lockup svg { display: block; }

.lockup-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em; /* optically recentres tracked caps */
}

nav { display: flex; gap: 2.2rem; }

nav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

nav a:hover, nav a:focus-visible { color: var(--cream); border-color: var(--brass); }
nav a[aria-current="page"] { color: var(--cream); border-color: var(--brass); }

/* ——— hero ——— */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem 6.5rem;
  text-align: center;
}

.hero-mark { margin: 0 auto 2.6rem; max-width: 420px; }

.hero-mark .roof {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 1.4s ease-out 0.2s forwards;
}

@keyframes draw { to { stroke-dashoffset: 0; } }

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1.1;
}

.hero .descriptor {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--brass);
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero .descriptor::before,
.hero .descriptor::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: var(--brass-dim);
}

.hero .thesis {
  max-width: 34em;
  margin: 3rem auto 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream);
}

.hero .thesis em { color: var(--brass); font-style: italic; }

/* ——— sections ——— */

.rule {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.rule hr { border: 0; height: 1px; background: var(--brass-dim); }

section.block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.eyebrow {
  color: var(--brass);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.block h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

.block p { max-width: 38em; color: var(--cream-dim); }
.block p + p { margin-top: 1rem; }
.block p strong { color: var(--cream); font-weight: 400; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 4rem;
  align-items: start;
}

/* ——— form ——— */

form { display: grid; gap: 1.4rem; }

.form-row { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }

label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.55rem;
}

input, textarea {
  width: 100%;
  background: var(--field);
  color: var(--field-ink);
  border: 1px solid transparent;
  padding: 0.85rem 1rem;
  font-family: "Karla", system-ui, sans-serif;
  font-size: 1rem;
  border-radius: 2px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.25);
}

textarea { resize: vertical; min-height: 9rem; }

button {
  justify-self: start;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--brass);
  padding: 0.9rem 2.6rem;
  font-family: "Karla", system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

button:hover, button:focus-visible { background: var(--brass); color: var(--claret-deep); }
button:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

.form-note { font-size: 0.85rem; color: var(--cream-dim); max-width: 32em; }
.form-note a { color: var(--brass); }

/* ——— coming soon (portfolio) ——— */

.soon {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.5rem 8rem;
  text-align: center;
}

.soon .seal { margin: 0 auto 3rem; max-width: 190px; }

.soon h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.soon .sub {
  margin-top: 1.4rem;
  color: var(--brass);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.soon p.copy {
  max-width: 30em;
  margin: 2.6rem auto 0;
  color: var(--cream-dim);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.8;
}

.soon .cta { margin-top: 3rem; }
.soon .cta a {
  color: var(--cream);
  border: 1px solid var(--brass);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.soon .cta a:hover, .soon .cta a:focus-visible { background: var(--brass); color: var(--claret-deep); }

/* ——— footer ——— */

footer {
  background: var(--claret-deep);
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

footer .wordline {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
}

footer .meta {
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

footer a { color: var(--cream-dim); text-decoration: none; }
footer a:hover { color: var(--brass); }

/* ——— responsive & a11y ——— */

@media (max-width: 720px) {
  header { flex-direction: column; gap: 1.4rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mark .roof { animation: none; stroke-dashoffset: 0; }
  * { transition: none !important; }
}
