:root {
  --blush: #fbe3e8;
  --rust: #e0748f;
  --rust-dark: #c85773;
  --light-green: #e0748f;
  --light-green-dark: #c85773;
  --dusty-pink: #e2a3ab;
  --dusty-pink-dark: #cf8891;
  --ink: #3a3733;
  --cream: #fdf7f8;
  --white: #ffffff;
  font-size: 16px;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, .brand {
  font-family: 'Cormorant Garamond', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--ink);
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 246, 242, 0.95);
  backdrop-filter: blur(4px);
  z-index: 100;
  border-bottom: 1px solid var(--blush);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rust);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.doodle-star {
  position: absolute;
  color: var(--rust);
  opacity: 0.85;
}

.star-top-right {
  width: 160px;
  height: 160px;
  top: 18%;
  right: 20%;
  transform: rotate(12deg);
}

.star-top-left {
  width: 36px;
  height: 36px;
  top: 24%;
  left: 22%;
  transform: rotate(-18deg);
}

.star-bottom-right {
  width: 60px;
  height: 60px;
  bottom: 14%;
  right: 18%;
  transform: rotate(-10deg);
}

.star-bl-1 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 14%;
  transform: rotate(15deg);
}

.star-bl-2 {
  width: 40px;
  height: 40px;
  bottom: 32%;
  left: 20%;
  transform: rotate(-8deg);
}

.star-bl-3 {
  width: 26px;
  height: 26px;
  bottom: 16%;
  left: 20%;
  transform: rotate(20deg);
}

.hero-overlay {
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--ink);
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  background: var(--dusty-pink);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--dusty-pink-dark);
  transform: translateY(-2px);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img:hover {
  transform: scale(1.04);
}

/* Connect */
.connect {
  text-align: center;
}

.connect-caption {
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.connect-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.connect-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.connect-card:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.connect-card.disabled {
  background: var(--blush);
  color: var(--ink);
  opacity: 0.7;
  cursor: default;
}

.connect-card.disabled:hover {
  background: var(--blush);
  transform: none;
}

.connect-card.disabled em {
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.8;
}

.connect-icon {
  width: 20px;
  height: 20px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
    border-bottom: 1px solid var(--blush);
  }

  .nav-links.open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
