:root {
  --cream: #f4ecdf;
  --cream-light: #fbf7f0;
  --ink: #3b2c24;
  --muted: #78675d;
  --gold: #8b5e18;
  --gold-light: #d0ac6b;
  --line: rgba(167, 120, 45, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 8%, rgba(208, 172, 107, 0.16), transparent 28rem),
    linear-gradient(135deg, var(--cream-light), var(--cream));
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.page-shell {
  width: min(1400px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.055em;
  text-decoration: none;
}

.contact-link {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

main {
  flex: 1;
  display: grid;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 6vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.intro {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--gold);
}

.coming-soon span {
  width: 2.8rem;
  height: 1px;
  background: var(--line);
}

.coming-soon p {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--cream-light);
  background: var(--gold);
}

.button span {
  font-size: 1rem;
}

.brand-card {
  position: relative;
  margin: 0;
  transform: rotate(1.5deg);
}

.brand-card::before,
.brand-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-card::before {
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid var(--line);
}

.brand-card::after {
  inset: 8% -4% -8% 6%;
  z-index: -1;
  background: rgba(75, 45, 24, 0.15);
  filter: blur(30px);
}

.brand-card img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 1.5rem 4rem rgba(75, 45, 24, 0.12);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-copy {
    max-width: 43rem;
  }

  .brand-card {
    width: min(100%, 44rem);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 5.5rem;
  }

  .hero {
    padding: 3.5rem 0 4.5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .brand-card::before {
    inset: -0.6rem 0.6rem 0.6rem -0.6rem;
  }

  footer {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: copy-reveal 700ms ease-out both;
  }

  .brand-card {
    animation: card-reveal 700ms ease-out both;
    animation-delay: 120ms;
  }

  @keyframes copy-reveal {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
    }
  }

  @keyframes card-reveal {
    from {
      opacity: 0;
      transform: translateY(16px) rotate(1.5deg);
    }

    to {
      opacity: 1;
      transform: rotate(1.5deg);
    }
  }
}
