:root {
  --cream: #F7F2E7;
  --card: #FCF9F1;
  --ink: #1A1A1A;
  --red: #9E1B32;
  --red-deep: #7E1628;
  --grey: #6E6A61;
  --line: #E3DCC9;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Besley', 'Bookman Old Style', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}
.wrap { max-width: min(1280px, 94vw); margin: 0 auto; padding: 0 1.5rem; }

/* header */
header {
  position: sticky; top: 0; z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-in {
  max-width: min(1280px, 94vw); margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.mark {
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.65rem;
  transition: opacity .15s;
}
.mark:hover { opacity: 0.75; }
.mark img { height: 44px; width: auto; display: block; }
@media (max-width: 560px) {
  .mark img { height: 36px; }
  .mark { font-size: 0.72rem; gap: 0.5rem; }
}
nav { display: flex; gap: 1.5rem; align-items: center; }
nav a {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; transition: color .15s;
}
nav a:hover, nav a.here { color: var(--red); }
nav a.pill {
  background: var(--red); color: var(--cream);
  padding: 0.5rem 1.1rem; border-radius: 999px;
  transition: background .15s, transform .15s;
}
nav a.pill:hover { background: var(--red-deep); color: var(--cream); transform: translateY(-1px); }

/* hero */
.hero {
  position: relative; overflow: hidden;
  padding: 5.5rem 1.5rem 4.5rem; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(158, 27, 50, 0.14), transparent 70%),
    radial-gradient(40% 35% at 78% 18%, rgba(158, 27, 50, 0.07), transparent 70%);
}
.hero > * { position: relative; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.4rem;
}
h1 {
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05; letter-spacing: -0.015em;
  max-width: 16ch; margin: 0 auto 1.4rem; text-wrap: balance;
}
.dot { color: var(--red); }
.hero .sub { font-size: 1.15rem; max-width: 52ch; margin: 0 auto 2.2rem; color: var(--ink); }
.cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 0.8rem 1.7rem; border-radius: 999px;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn.solid { background: var(--red); color: var(--cream); box-shadow: 0 6px 18px rgba(158,27,50,0.22); }
.btn.solid:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn.ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn.ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* sections */
section { padding: 3.6rem 0 0; }
.sechead { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.sechead h2 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red); white-space: nowrap;
}
.sechead .dash { flex: 0 0 4.5rem; height: 1px; background: var(--red); opacity: 0.6; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.35rem; }
p + p { margin-top: 0.85rem; }
.lead { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; line-height: 1.35; max-width: none; margin-bottom: 1rem; }
.block { max-width: none; }
.block p { color: var(--ink); }
.go-link {
  color: var(--red); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--red); padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.go-link:hover { color: var(--red-deep); }
a.inline { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.phil { color: var(--red); font-weight: 700; }
.fixed { color: var(--grey); font-style: italic; font-size: 0.95rem; margin-top: 1.8rem; }

/* cards */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem; margin-top: 0.4rem;
}
.tile {
  background: linear-gradient(160deg, #FFFDF6, var(--card));
  border: 1px solid var(--line); border-radius: 16px;
  padding: 1.6rem 1.5rem 1.3rem;
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column;
  box-shadow: 0 2px 10px rgba(26,26,26,0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(26,26,26,0.10);
  border-color: #D3B9BE;
}
.tile .t { font-weight: 700; font-size: 1.1rem; }
.tile .d { font-size: 0.92rem; color: var(--grey); margin-top: 0.45rem; flex: 1; }
.tile .go {
  color: var(--red); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 1.1rem; font-weight: 700;
}

/* flagship band */
.band {
  margin-top: 4rem;
  background: linear-gradient(165deg, #221317 0%, #2E161C 55%, #241318 100%);
  color: var(--cream);
  border-radius: 0;
  padding: 4rem 0 4.4rem;
  position: relative; overflow: hidden;
}
.band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(55% 60% at 50% 110%, rgba(158,27,50,0.35), transparent 70%);
}
.band .wrap { position: relative; }
.band .sechead h2 { color: #E8B7C0; }
.band .sechead .dash { background: #E8B7C0; }
.band .lead { color: var(--cream); }
.band p { color: #E9E2D2; }
.band .btn.solid { background: var(--cream); color: var(--red-deep); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.band .btn.solid:hover { background: #fff; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

footer {
  margin-top: 4.5rem; border-top: 1px solid var(--line);
  padding: 1.6rem 0;
}
.footer-in {
  max-width: min(1280px, 94vw); margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--grey);
}
footer a { color: var(--red); text-decoration: none; }


/* contact form */
.form { max-width: 680px; }
.form label {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin: 1.3rem 0 0.4rem;
}
.form input, .form textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.8rem 1rem; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(158,27,50,0.12);
}
.form textarea { min-height: 200px; resize: vertical; }
.form button {
  margin-top: 1.6rem; cursor: pointer; border: 0;
  background: var(--red); color: var(--cream); font-family: inherit; font-weight: 700;
  font-size: 0.95rem; padding: 0.85rem 1.9rem; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(158,27,50,0.22);
  transition: background .15s, transform .15s;
}
.form button:hover { background: var(--red-deep); transform: translateY(-2px); }
.form .meta { font-size: 0.85rem; color: var(--grey); margin-top: 0.9rem; }
.band .fixed { color: #CBA6AD; }
