@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/CormorantGaramond-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/CormorantGaramond-Medium.woff2') format('woff2');
}

:root {
  --bg: #f8f2e7;
  --fg: #10222f;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 64px 40px 32px;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.logo {
  width: 320px;
  height: auto;
  max-width: 70vw;
  display: block;
}

.desc {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
}

.contact {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
}

.contact a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact a:hover {
  text-decoration-thickness: 2px;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.65;
  max-width: 640px;
  margin: 64px auto 0;
}

@media (max-width: 480px) {
  body { padding: 40px 20px 24px; }
  .logo { width: 70vw; }
  .desc { font-size: 1.3rem; }
  .contact { font-size: 1rem; }
  footer { font-size: 0.75rem; margin-top: 40px; }
}
