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

:root {
  --color-cream: #FFF8F0;
  --color-gold: #C8A96E;
  --color-gold-dark: #A68B5B;
  --color-brown: #4A3728;
  --color-brown-light: #6B5344;
  --color-warm-bg: #FAF0E4;
  --color-text: #2D2017;
  --color-text-light: #6B5F56;
  --color-white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  transition: box-shadow 0.3s;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--color-gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-cream) 0%,
    var(--color-warm-bg) 50%,
    #F5E6D0 100%
  );
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 240, 0.85) 0%,
    rgba(250, 240, 228, 0.8) 50%,
    rgba(245, 230, 208, 0.85) 100%
  );
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(200, 169, 110, 0.3);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(245, 230, 208, 0.6);
  bottom: -5%;
  left: -5%;
  animation-delay: -3s;
}


@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 169, 110, 0.4);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-brown);
  border: 2px solid rgba(200, 169, 110, 0.5);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  background: rgba(200, 169, 110, 0.08);
  transform: translateY(-1px);
}

/* ── Sections ── */
.section {
  padding: 6rem 0;
}

.section--warm {
  background: var(--color-warm-bg);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 1rem;
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.about__text p {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature__icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-warm-bg);
  border-radius: 12px;
  flex-shrink: 0;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--color-brown);
}

.feature p {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

/* ── Tradition ── */
.tradition__content {
  max-width: 750px;
  margin: 3rem auto 0;
}

.tradition__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-brown-light);
  line-height: 1.8;
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.tradition__details h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-brown);
}

.tradition__details ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.tradition__details li {
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

/* ── Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

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

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

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-warm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  border: 2px dashed rgba(200, 169, 110, 0.4);
  border-radius: 8px;
}

/* ── Location ── */
.location__wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location__map {
  display: block;
  width: 100%;
  height: 400px;
}

/* ── Contact ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact__item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-brown);
  margin-bottom: 0.3rem;
}

.contact__item a {
  color: var(--color-text-light);
  transition: color 0.3s;
}

.contact__item a:hover {
  color: var(--color-gold);
}

.contact__social h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-brown);
  margin-bottom: 1rem;
}

/* ── Social Links ── */
.social__links {
  display: flex;
  gap: 1rem;
}

.social__link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-warm-bg);
  color: var(--color-brown);
  transition: all 0.3s;
}

.social__link svg {
  width: 20px;
  height: 20px;
}

.social__link:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social__link--light {
  background: rgba(255, 248, 240, 0.15);
  color: var(--color-cream);
}

.social__link--light:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ── Order ── */
.order__placeholder {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-warm-bg);
  border-radius: 12px;
  border: 2px dashed var(--color-gold);
  max-width: 500px;
  margin: 2rem auto 0;
}

.order__placeholder p {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.order__placeholder p:first-child {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-brown);
}

/* ── Footer ── */
.footer {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .nav__logo {
  color: var(--color-cream);
  display: block;
  margin-bottom: 0.8rem;
}

.footer__brand p {
  color: rgba(255, 248, 240, 0.7);
  font-size: 0.95rem;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.footer p, .footer a {
  color: rgba(255, 248, 240, 0.7);
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--color-gold);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  transition: color 0.3s;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.15);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.5);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  }

  .nav__links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__stats {
    gap: 1.2rem;
  }

  .hero__stat-number {
    font-size: 1.4rem;
  }

  .hero__orb--1 {
    width: 250px;
    height: 250px;
  }

  .hero__orb--2 {
    width: 200px;
    height: 200px;
  }

  .location__map {
    height: 300px;
  }
}
