/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-text: #b0ceac;
  --color-text-dark: #7a9e75;
  --color-bg: #f5f4e0;
  --color-bg-alt: #edecd2;
  --color-accent: #b0ceac;
  --color-white: #fefef6;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: #4a5e47;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Typography ===== */
.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 244, 224, 0.85);
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__logo {
  width: min(320px, 70vw);
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--color-text-dark);
  letter-spacing: 0.04em;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* ===== About ===== */
.about {
  padding: 6rem 0;
  background-color: var(--color-bg-alt);
}

.about__text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5a6e56;
}

.about__text strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* ===== Space Description ===== */
.space__list {
  max-width: 600px;
  margin: 2.5rem auto 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  text-align: center;
}

.space__list li {
  font-size: 1.05rem;
  color: #5a6e56;
  padding: 1rem 1.2rem;
  background: var(--color-bg-alt);
  border-radius: 10px;
  border-left: 3px solid var(--color-accent);
}

@media (max-width: 480px) {
  .space__list {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA ===== */
.cta {
  padding: 4rem 0;
  background-color: var(--color-bg-alt);
  text-align: center;
}

.cta__text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #5a6e56;
  margin-bottom: 1.5rem;
}

.cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  background: var(--color-text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
}

.cta__link:hover {
  background: #4a5e47;
  transform: translateY(-2px);
}

/* ===== Gallery ===== */
.gallery {
  padding: 6rem 0;
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 244, 224, 0.88);
}

.gallery .container {
  position: relative;
  z-index: 1;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.gallery__item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-alt);
}

.gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ===== Video ===== */
.video-section {
  padding: 6rem 0;
  background-color: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237, 236, 210, 0.88);
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: var(--color-bg-alt);
}

/* ===== Footer ===== */
.footer {
  padding: 4rem 0 2rem;
  background-color: #4a5e47;
  color: var(--color-bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer__logo {
  width: 80px;
  filter: brightness(10);
  opacity: 0.85;
}

.footer__text {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--color-accent);
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.footer__instagram:hover {
  background: var(--color-accent);
  color: #4a5e47;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 1rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .gallery__item {
    aspect-ratio: 1;
  }

  .gallery__item--wide {
    aspect-ratio: 16 / 9;
  }

  .about {
    padding: 4rem 0;
  }

  .gallery,
  .video-section {
    padding: 4rem 0;
  }

}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item {
    aspect-ratio: 4 / 5;
  }

  .gallery__item--wide {
    aspect-ratio: 4 / 5;
  }

  .hero__logo {
    width: 60vw;
  }
}
