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

:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8a6f4a;
  --white: #ffffff;
  --off-white: #faf9f7;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--gold-dark);
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 3rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Header & Logo */

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero Image */

.hero {
  width: 100%;
  margin-bottom: 2.5rem;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gold-light);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-image: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  ) 1;
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Announcement */

.announcement {
  text-align: center;
  width: 100%;
}

.announcement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  margin: 1.75rem auto;
}

.domain {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Responsive */

@media (min-width: 768px) {
  .page {
    padding: 4rem 2rem 5rem;
  }

  .logo {
    width: 220px;
  }

  .header {
    margin-bottom: 3rem;
  }

  .hero {
    margin-bottom: 3rem;
  }
}
