/* Good Use — coming soon
   Editorial / maison treatment.
   Locked to Brand Sheet v4.1 (B1.01) and Brand & Design Spec Sheet v3.
   Brand Law #1: Amber (#C47A2B) is earned, not given. Hover/active only.
   Type: Inter (UI / micro-typography) + Cormorant Garamond (editorial display). */

:root {
  /* Tokens */
  --logo-black: #111111;
  --warm-white: #FAFAF8;
  --surface:    #F5F5F3;
  --divider:    #EBEBEA;
  --border:     #D4D4D0;
  --muted-text: #6B6B69;
  --body-text:  #4A4A48;
  --amber:        #C47A2B;
  --amber-pressed:#A86520;
  --amber-tint:   #FDF4E7;

  /* Editorial measure — narrow column, like a printed page */
  --measure: 36rem;          /* ~576px — long-form text column */
  --measure-tight: 28rem;    /* ~448px — for short blocks */
  --gutter: clamp(1.25rem, 4vw, 2rem);

  --f-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--body-text);
  font-family: var(--f-serif);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── LINKS ─────────────────────────────────────────────────────── */
a {
  color: var(--logo-black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--border);
  transition: color .25s ease, text-decoration-color .25s ease;
}
a:hover { color: var(--amber); text-decoration-color: var(--amber); }
a:active { color: var(--amber-pressed); }

/* ─── ACCESSIBILITY ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute !important; height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip {
  position: absolute; left: -999px; top: 0; padding: .5rem .75rem;
  background: var(--logo-black); color: var(--warm-white); text-decoration: none;
}
.skip:focus { left: .5rem; top: .5rem; z-index: 10; }

/* ─── REVEAL — slow editorial fade on scroll ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem) var(--gutter);
  text-align: center;
}
.brand {
  display: inline-block;
  text-decoration: none;
  color: var(--logo-black);
  padding: 6px;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: block;
  width: 168px;
  height: auto;
}
.header-link {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  transform: translateY(-50%);
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-text);
  text-decoration: none;
}
.header-link:hover { color: var(--amber); text-decoration: none; }
@media (max-width: 640px) {
  .header-link { display: none; }
}

/* ─── SECTION SCAFFOLD ──────────────────────────────────────────── */
section { padding: clamp(4rem, 9vw, 8rem) var(--gutter); }
.col {
  max-width: var(--measure);
  margin: 0 auto;
}
.col-tight {
  max-width: var(--measure-tight);
  margin: 0 auto;
}

/* Tiny editorial label, used sparingly */
.eyebrow {
  display: block;
  margin: 0 0 1.6rem;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-text);
  text-align: center;
}

/* Hairline rule used between editorial moments */
.rule {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  border: 0;
}

/* ─── HERO ──────────────────────────────────────────────────────── */
/* Tightened so the top edge of the box peeks above the fold on desktop.
   The promise should be visible before the visitor decides to scroll.
   Mobile keeps its natural rhythm — section padding handles it there. */
.hero {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
}
@media (min-width: 720px) {
  section.hero { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
}
.hero h1 {
  margin: 0;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--logo-black);
}
.hero h1 em {
  display: block;
  margin-top: 0.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted-text);
}
.hero .place {
  margin: 1.25rem auto 0;
  max-width: var(--measure-tight);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* ─── HERO PHOTO — full bleed ───────────────────────────────────── */
.hero-photo {
  margin: 0;
  padding: 0;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: cover;
}
@media (min-width: 720px) {
  /* On desktop, cap the photo so the box peeks above the fold instead
     of dominating it. Visitor sees the promise, then scrolls into it. */
  .hero-photo img { max-height: 64vh; }
}
.hero-photo figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted-text);
}

/* ─── MANIFESTO ─────────────────────────────────────────────────── */
.manifesto {
  text-align: left;
}
.manifesto .col { max-width: var(--measure); }
.manifesto .lead-line {
  margin: 0 0 2rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.45;
  color: var(--logo-black);
  text-align: center;
}
.manifesto p {
  margin: 0 0 1.5rem;
  font-size: 1.075rem;
  line-height: 1.78;
  color: var(--body-text);
}
.manifesto p:last-of-type { margin-bottom: 0; }
.manifesto .closing-line {
  margin-top: 2rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--logo-black);
  text-align: center;
}

/* ─── SIGNOFF ───────────────────────────────────────────────────── */
/* Plain-dot AIMEE per GU-SIG-SYSTEM-v1: "Casual sign-off, email footers,
   inline marks where a full name is too formal." Logo-black ink only.
   Centered to anchor the manifesto. */
.signoff {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.signoff-mark {
  display: block;
  width: 110px;
  height: auto;
}
@media (min-width: 720px) {
  .signoff-mark { width: 124px; }
}
.signoff-role {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* ─── INLINE JOIN ───────────────────────────────────────────────
   A quiet invitation tucked into the manifesto, between the signoff
   and the editorial photos. Keeps the join visible without breaking
   the reading rhythm. */
.inline-join {
  margin: 4rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  text-align: center;
  max-width: 32rem;
}
.inline-join .eyebrow {
  display: block;
  margin-bottom: 0.85rem;
}
.inline-join-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0 0 1.4rem;
}
.inline-join .signup-form {
  margin-top: 0;
}
.inline-join .signup-help {
  margin-top: 0.85rem;
  max-width: none;
  text-align: center;
}

/* ─── FULL-BLEED EDITORIAL PHOTOS ──────────────────────────────── */
.editorial {
  padding: 0;
}
.editorial figure {
  margin: 0;
  padding: 0;
}
.editorial img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: cover;
}
.editorial figcaption {
  margin: 1rem auto 0;
  max-width: var(--measure-tight);
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted-text);
  padding: 0 var(--gutter) clamp(3.5rem, 7vw, 6rem);
}
.editorial figure + figure figcaption {
  /* second editorial moment shares the same caption rhythm */
}

/* ─── PRINCIPLES ────────────────────────────────────────────────── */
/* Editorial spread: three numbered statements, generous breathing room.
   Italic serif eyebrow + ampersand ornament gives the section a visual
   pull point so it doesn't read as a quiet skip after the fabric photo. */
.principles {
  text-align: center;
}
.principles-eyebrow {
  margin: 0 auto 1.25rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--logo-black);
  max-width: 28rem;
}
.ornament {
  display: block;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted-text);
  user-select: none;
}
.principles > .eyebrow {
  display: block;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.principles-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 34rem;
}
.principles-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
  border-top: 1px solid var(--divider);
}
.principles-list li:last-child {
  border-bottom: 1px solid var(--divider);
}
.principles-list .numeral {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-text);
}
.principles-list p {
  margin: 0;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--logo-black);
  max-width: 28rem;
}

/* ─── SIGNUP ────────────────────────────────────────────────────── */
.signup {
  text-align: center;
  padding-bottom: clamp(5rem, 10vw, 9rem);
}
.signup h2 {
  margin: 0 0 1.25rem;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--logo-black);
}
.signup-lede {
  max-width: var(--measure-tight);
  margin: 0 auto 2.5rem;
  font-family: var(--f-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-text);
}
.signup-form {
  max-width: 26rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
  transition: border-color .2s ease;
}
.signup-form:focus-within { border-bottom-color: var(--logo-black); }
.signup-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0.6rem 0;
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--logo-black);
}
.signup-form input[type="email"]::placeholder {
  color: var(--muted-text);
  font-style: italic;
}
.signup-form button {
  background: transparent;
  border: 0;
  padding: 0.6rem 0;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--logo-black);
  cursor: pointer;
  transition: color .2s ease;
}
.signup-form button:hover { color: var(--amber); }
.signup-form button:active { color: var(--amber-pressed); }
.signup-help {
  margin: 1.25rem auto 0;
  max-width: 22rem;
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted-text);
  text-align: center;
}
.signup-success {
  margin-top: 2rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--logo-black);
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--divider);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  text-align: center;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted-text);
}
.site-footer .foot-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--logo-black);
  margin: 0 0 1.25rem;
}
.site-footer p {
  margin: 0 0 0.5rem;
  line-height: 1.7;
}
.site-footer .foot-trademark {
  margin-top: 1rem;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted-text);
}

/* ─── LEGACY (defensive) ────────────────────────────────────────── */
.signature, .cta, .cta-sub, .photo-strip, .lede, .header-tag,
.section-label, .signup-inner { /* superseded */ }
.signature { display: none; }
