@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap");

:root {
  --bg: #f6f3ee;
  --accent: #b88943;
  --text: #1f1b16;
  --muted: #6a5f55;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fffaf2 0%, var(--bg) 45%, #efe6da 100%);
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 32px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 56px;
  justify-items: center;
}

.contact {
  display: grid;
  gap: 12px;
  justify-items: center;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact a {
  text-decoration: none;
  color: var(--text);
}

.logo {
  width: 100%;
  max-width: 180px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.1));
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
