﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Raleway:wght@200;300;400;500;600&display=swap");

:root {
  --background: hsl(30 5% 8%);
  --foreground: hsl(40 30% 90%);
  --muted-foreground: hsl(40 10% 55%);
  --border: hsl(40 15% 20%);
  --gold: hsl(40 60% 50%);
  --gold-light: hsl(40 50% 70%);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

p {
  margin: 0;
}

.site-main {
  min-height: 100vh;
  background: var(--background);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.container-narrow {
  max-width: 64rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.15);
  animation: heroZoom 2s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(30 5% 8% / 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-kicker {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(40 50% 70% / 0.8);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.025em;
  text-shadow: 0 0 40px hsl(40 60% 50% / 0.4), 0 0 80px hsl(40 60% 50% / 0.15);
}

.hero-divider {
  width: 12rem;
  margin: 1.5rem auto 0;
}

.hero-subtitle {
  margin-top: 1.5rem;
  color: hsl(40 30% 90% / 0.8);
  font-size: 0.875rem;
  font-weight: 300;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

.scroll-next {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border: 0;
  background: transparent;
  color: hsl(40 50% 70% / 0.6);
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 2.2s;
}

.scroll-next:hover {
  color: var(--gold-light);
}

.scroll-next svg {
  width: 2rem;
  height: 2rem;
  display: block;
  animation: bounceDown 2s ease-in-out infinite 2.2s;
}

.section {
  padding: 4rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(40 50% 70%), hsl(40 60% 50%), hsl(40 50% 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 6rem;
  margin: 0 auto;
}

.section-intro {
  margin-top: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
  font-size: 0.875rem;
}

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(40 60% 50% / 0.6), transparent);
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-image-wrap,
.about-text {
  width: 100%;
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1 / 1;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text p {
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.65;
  font-size: 0.875rem;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(30 5% 8% / 0);
  transition: background-color 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover::after {
  background: hsl(30 5% 8% / 0.3);
}

.contact-section {
  border-top: 1px solid var(--border);
}

.container-contact {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  color: var(--muted-foreground);
  font-weight: 300;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  color: hsl(40 30% 90% / 0.8);
  font-weight: 300;
  font-size: 0.875rem;
}

.contact-list span {
  color: var(--gold-light);
}

.contact-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid hsl(40 50% 70% / 0.35);
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold-light);
  border-color: hsl(40 50% 70% / 0.8);
  outline: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 300;
}

.reveal-on-load,
.reveal-in-view {
  opacity: 0;
}

.reveal-on-load {
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 0.8s;
}

.delay-3 {
  transform-origin: center;
  transform: scaleX(0);
  animation: revealLine 1s ease forwards;
  animation-delay: 1.4s;
}

.delay-4 {
  transform: none;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.8s;
}

.reveal-in-view {
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-in-view.from-left {
  transform: translateX(-40px);
}

.reveal-in-view.from-right {
  transform: translateX(40px);
}

.reveal-in-view.rise {
  transform: translateY(40px);
  transition-delay: var(--delay, 0s);
  transition-duration: 0.6s;
}

.reveal-in-view.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLine {
  from {
    opacity: 1;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0;
  }

  .hero-bg {
    object-position: 0 -59rem;
  }

  .hero-kicker,
  .hero-subtitle,
  .section-intro,
  .about-text p,
  .contact-intro {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 8rem;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .about-blocks {
    gap: 5rem;
  }

  .about-block {
    flex-direction: row;
    gap: 3rem;
  }

  .about-block.reverse {
    flex-direction: row-reverse;
  }

  .about-image-wrap,
  .about-text {
    width: 50%;
  }

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