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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: #3D4045;
  background: #faf8f5;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.font-serif {
  font-family: 'DM Serif Display', Georgia, serif;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F4A261;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #F4A261;
  border-radius: 2px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: #3D4045;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: #71717a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-center { text-align: center; }

.text-coral-500 { color: #F4A261; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-coral {
  background: #F4A261;
  color: #3D4045;
  border-color: #F4A261;
}

.btn-coral:hover {
  background: #e07a38;
  border-color: #e07a38;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.35);
}

.btn-outline {
  background: transparent;
  color: #3D4045;
  border-color: #3D4045;
}

.btn-outline:hover {
  background: #3D4045;
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 64, 69, 0.08);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 4px 24px rgba(61, 64, 69, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #3D4045;
}

.nav-logo:hover { color: #3D4045; }

.nav-logo-text { font-size: 1.1rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #71717a;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: #3D4045;
  background: rgba(244, 162, 97, 0.1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #3D4045;
}

.menu-toggle svg {
  display: block;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: #faf8f5;
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 162, 97, 0.12);
  color: #c45f24;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: #3D4045;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #71717a;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  color: #3D4045;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #a1a1aa;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: #e4e4e7;
}

/* Hero Images */
.hero-image-wrap {
  position: relative;
  height: 600px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(61, 64, 69, 0.15);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(61, 64, 69, 0.18);
  border: 4px solid #faf8f5;
}

.hero-img-float--1 {
  bottom: 40px;
  left: -40px;
  width: 200px;
  height: 200px;
  animation: float 6s ease-in-out infinite;
}

.hero-img-float--2 {
  top: 40px;
  right: -30px;
  width: 200px;
  height: 260px;
  animation: float 6s ease-in-out infinite 3s;
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  top: -20px;
  right: 40px;
  opacity: 0.4;
  animation: spin 30s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── Sections ─── */
.section {
  padding: 100px 0;
}

/* ─── About ─── */
.about {
  background: #f9f7f4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(61, 64, 69, 0.12);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(61, 64, 69, 0.15);
  border: 4px solid #f9f7f4;
}

.about-img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F4A261;
  color: #3D4045;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}

.about-content { padding: 20px 0; }

.about-text {
  font-size: 1.05rem;
  color: #71717a;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 162, 97, 0.12);
  border-radius: 12px;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: #3D4045;
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.5;
}

/* ─── Collections ─── */
.collections {
  background: #faf8f5;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.collection-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(61, 64, 69, 0.06);
  transition: all 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(61, 64, 69, 0.12);
}

.collection-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 64, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover .collection-card-overlay {
  opacity: 1;
}

.collection-card-body {
  padding: 20px 24px 24px;
}

.collection-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #3D4045;
  margin-bottom: 6px;
}

.collection-card-desc {
  font-size: 0.9rem;
  color: #71717a;
  line-height: 1.6;
}

/* ─── Why Us ─── */
.why-us {
  background: #fff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-text {
  font-size: 1.05rem;
  color: #71717a;
  line-height: 1.85;
  margin-bottom: 32px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-item-marker {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 162, 97, 0.12);
  border-radius: 50%;
  margin-top: 2px;
}

.why-us-item strong {
  display: block;
  font-size: 0.95rem;
  color: #3D4045;
  margin-bottom: 2px;
}

.why-us-item span {
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.why-us-images {
  position: relative;
  height: 550px;
}

.why-us-img-main {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(61, 64, 69, 0.12);
}

.why-us-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-img-small {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(61, 64, 69, 0.14);
  border: 4px solid #fff;
}

.why-us-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Visit ─── */
.visit {
  background: #f9f7f4;
}

.visit-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(61, 64, 69, 0.08);
}

.visit-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.visit-info {
  padding: 56px 48px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 162, 97, 0.12);
  border-radius: 12px;
}

.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #3D4045;
  margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
  font-size: 0.9rem;
  color: #71717a;
  line-height: 1.6;
}

.visit-detail a:hover { color: #F4A261; }

.visit-map {
  min-height: 420px;
  border-radius: 0 28px 28px 0;
  overflow: hidden;
}

/* ─── Contact ─── */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text {
  font-size: 1.05rem;
  color: #71717a;
  line-height: 1.85;
  margin-bottom: 28px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-quick-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3D4045;
  padding: 12px 20px;
  background: rgba(244, 162, 97, 0.08);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.contact-quick-item:hover {
  background: rgba(244, 162, 97, 0.16);
  color: #c45f24;
}

/* Form */
.contact-form-wrap {
  background: #faf8f5;
  border-radius: 24px;
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3D4045;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e4e4e7;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #3D4045;
  background: #fff;
  transition: all 0.25s ease;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: #F4A261;
  box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.12);
}

.form-input::placeholder { color: #a1a1aa; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 14px;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ─── Footer ─── */
.footer {
  background: #3D4045;
  color: #c7c7cc;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo-text { font-size: 1.1rem; }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #a1a1aa;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F4A261;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #a1a1aa;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #F4A261; }

.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a1a1aa;
  font-style: normal;
}

.footer-phone a,
.footer-email a {
  font-size: 0.9rem;
  color: #a1a1aa;
}

.footer-phone a:hover,
.footer-email a:hover { color: #F4A261; }

.footer-bottom {
  border-top: 1px solid rgba(199, 199, 204, 0.15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #71717a;
}

.footer-location { color: #71717a; }

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .hero-image-wrap { height: 480px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(61, 64, 69, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .nav-menu .btn-coral {
    margin-top: 8px;
    justify-content: center;
  }

  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap {
    height: 360px;
    order: -1;
  }

  .hero-img-float--1 { left: -10px; bottom: 20px; width: 140px; height: 140px; }
  .hero-img-float--2 { right: -10px; top: 20px; width: 140px; height: 180px; }

  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.3rem; }

  .about-grid,
  .why-us-grid,
  .visit-card-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-secondary { right: 0; }
  .why-us-img-small { right: 0; }
  .visit-map { min-height: 280px; border-radius: 0 0 28px 28px; }

  .collections-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

  .visit-info { padding: 36px 28px; }
  .contact-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-image-wrap { height: 280px; }
  .hero-img-float { display: none; }
  .hero-img-accent { display: none; }
}
