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

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: #111;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  gap: 0;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

nav a {
  padding: 0.9rem 1.8rem;
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover {
  color: #ccc;
}

nav a.active {
  color: #fff;
  border-bottom-color: #fff;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.arc-text {
  width: 380px;
  height: auto;
}

.arc-text text {
  font-family: "IM Fell English", serif;
  font-size: 3rem;
  fill: #f0f0f0;
  letter-spacing: 0.12em;
}

.arc-top {
  margin-bottom: -70px;
  position: relative;
  z-index: 1;
}

.arc-bottom {
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
}

.tagline {
  font-size: 1.25rem;
  color: #999;
  font-weight: 400;
  font-style: italic;
}

.contact-form-container {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.contact-form-container iframe {
  display: block;
  width: 100%;
  height: 1200px;
  border: none;
}

footer {
  border-top: 1px solid #222;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}
