:root {
  --ink: #211d18;
  --muted: #756b5d;
  --gold: #b98219;
  --gold-light: #d9b568;
  --cream: #f8f3e8;
  --paper: #fffdf8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96) 0 18%, transparent 54%),
    repeating-radial-gradient(ellipse at 16% 70%, transparent 0 24px, rgba(185, 130, 25, 0.035) 25px 26px),
    var(--cream);
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 44px 24px;
}

.page-shell::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(185, 130, 25, 0.25);
  content: "";
  pointer-events: none;
}

.ambient {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(185, 130, 25, 0.2);
  border-radius: 50%;
}

.ambient::before,
.ambient::after {
  position: absolute;
  inset: 18px;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.ambient::after {
  inset: 38px;
}

.ambient-one {
  top: -170px;
  right: -95px;
}

.ambient-two {
  bottom: -190px;
  left: -115px;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
  animation: reveal 900ms ease-out both;
}

.logo-wrap {
  width: min(610px, 92%);
  margin: 0 auto;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 70%);
  margin: 10px auto 28px;
  color: var(--gold);
  gap: 14px;
}

.divider span {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light));
}

.divider span:last-child {
  background: linear-gradient(to left, transparent, var(--gold-light));
}

.divider i {
  font-size: 8px;
  font-style: normal;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.25rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.intro {
  max-width: 590px;
  margin: 22px auto 32px;
  color: var(--muted);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.8;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 25px;
  border: 1px solid rgba(185, 130, 25, 0.35);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 12px 38px rgba(71, 53, 21, 0.07);
  backdrop-filter: blur(8px);
}

.contact-item,
.location {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-item:hover,
.location:hover {
  color: var(--gold);
}

.contact-item svg,
.location svg {
  width: 17px;
  margin-right: 9px;
  fill: var(--gold);
}

.contact-separator {
  width: 1px;
  height: 22px;
  margin: 0 22px;
  background: rgba(185, 130, 25, 0.3);
}

.location {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 42px 28px;
  }

  .page-shell::before {
    inset: 10px;
  }

  .logo-wrap {
    width: 100%;
  }

  .divider {
    margin-top: 14px;
    margin-bottom: 24px;
  }

  .intro {
    margin-top: 18px;
    margin-bottom: 26px;
    line-height: 1.65;
  }

  .contact-card {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    padding: 18px;
  }

  .contact-separator {
    width: 80px;
    height: 1px;
    margin: 0;
  }

  .location {
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
}
