/* ─── Reset & Box-Sizing ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  --color-background:    #f7f4ef;
  --color-ink:           #1c1a17;
  --color-ink-muted:     #6b6458;
  --color-gold:          #c8a45c;
  --color-gold-dark:     #a0793a;
  --color-divider:       #d9d1c4;

  --font-serif:          'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:           'Inter', 'Helvetica Neue', Arial, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  3.5rem;
  --space-xl:  6rem;

  --max-width: 680px;
  --transition-link: color 0.25s ease, border-color 0.25s ease;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ─── Site Header ────────────────────────────────────────────────────────── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-strip {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.75);
  background-color: rgba(28, 26, 23, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 1.1rem;
  border-radius: 2px;
  border: 1px solid rgba(200, 164, 92, 0.3);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 420px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  /* subtle darkening vignette via a pseudo-overlay on the section */
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 26, 23, 0.18) 0%,
    rgba(28, 26, 23, 0.02) 45%,
    rgba(247, 244, 239, 0.55) 85%,
    var(--color-background) 100%
  );
  pointer-events: none;
}

/* ─── Content ────────────────────────────────────────────────────────────── */
.content {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  display: flex;
  justify-content: center;
}

.content__inner {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
}

/* Wordmark */
.wordmark {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--color-ink);
}

/* Entity sub-label */
.entity {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-top: 0.5rem;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--color-gold);
  width: 3rem;
  margin: var(--space-md) auto;
  opacity: 0.7;
}

/* Tagline */
.tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-ink-muted);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-md);
}

/* Coming Soon body copy */
.coming-soon {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-ink-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto var(--space-md);
}

/* Contact */
.contact {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-ink-muted);
}

.contact__link {
  color: var(--color-gold-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: var(--transition-link);
}

.contact__link:hover,
.contact__link:focus-visible {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
  outline: none;
}

/* ─── Site Footer ────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  opacity: 0.75;
}

/* ─── Responsive — 720 px and below ─────────────────────────────────────── */
@media (max-width: 720px) {
  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .content {
    padding: var(--space-md) var(--space-sm) var(--space-lg);
  }

  .wordmark {
    font-size: 2rem;
  }

  .entity {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
  }

  .divider {
    margin: 1.25rem auto;
  }

  .tagline {
    font-size: 0.9375rem;
  }

  .coming-soon {
    font-size: 0.875rem;
  }

  .domain-strip {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }
}
