
:root {
  --cream: #FCF4EA;
  --peach: #E8A882;
  --rose: #D98FA3;
  --lavender: #A893C4;
  --text: #5C4452;
  --text-soft: #9C8499;
  --border: rgba(92, 68, 82, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 75% 8%, rgba(217,143,163,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 15% 5%, rgba(232,168,130,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(168,147,196,0.22) 0%, transparent 60%);
  animation: breathe 16s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 2rem 4rem;
  text-align: center;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
}

.doorways {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem 7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.doorway {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.4);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2.4rem 1.5rem;
  text-align: center;
  transition: background 0.35s, transform 0.35s, border-color 0.35s;
}

.doorway:hover {
  background: rgba(255,255,255,0.65);
  border-color: rgba(217,143,163,0.4);
  transform: translateY(-4px);
}

.doorway-mark {
  width: 36px;
  height: 36px;
  margin: 0 auto 1.5rem;
  opacity: 0.65;
}

.doorway h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.doorway p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.page h1 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
}

.page h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.75rem;
  margin: 3rem 0 1rem;
  color: var(--text);
}

.page p {
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.page .intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 3rem;
}

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

a:hover { text-decoration: underline; }

.button {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid rgba(92, 68, 82, 0.35);
  padding-bottom: 0.25rem;
}

.button:hover {
  color: var(--rose);
  border-color: var(--rose);
  text-decoration: none;
}

.section-card {
  background: rgba(255,255,255,0.35);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.about-image {
  width: min(100%, 560px);
  display: block;
  margin: 0 auto 3rem;
  border-radius: 4px;
  border: 0.5px solid var(--border);
}

.gallery {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.gallery figure {
  margin: 0 0 4rem;
}

.gallery img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  border: 0.5px solid var(--border);
  display: block;
  background: rgba(255,255,255,0.25);
}

.gallery figcaption {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 0.7rem;
  text-align: center;
}

footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .doorways { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  nav { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .nav-links { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 4.5rem 1.5rem 4rem; }
  .doorways { grid-template-columns: 1fr; }
  .page { padding: 3rem 1.5rem 5rem; }
  .gallery { padding: 0 1.5rem 5rem; }
  .gallery figure { margin-bottom: 2.5rem; }
  .gallery img { max-height: none; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}
