@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --primary: #1f1f1f;
  --accent: #d8c7a1;
  --background: #f5f3ef;
  --highlight: #b08a57;
  --text: #2c2c2c;
  --muted: #5a5a5a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(31, 31, 31, 0.92);
  backdrop-filter: blur(6px);
  min-height: 70px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: #f8f8f8;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: var(--accent);
  padding: 0.5rem;
  border-radius: 8px;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(31, 31, 31, 0.9), rgba(31, 31, 31, 0.6)), url('../images/hero-fabric.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: grid;
  align-items: center;
  margin-top: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(176, 138, 87, 0.25), transparent 45%);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  padding: 5rem 0;
  max-width: 680px;
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  margin-bottom: 1rem;
}

.hero p {
  color: #f1ebe1;
  margin-bottom: 1.5rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #1f1f1f;
  background: var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--highlight);
  border: 1px solid var(--highlight);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

section {
  padding: 3rem 0;
  margin: 2rem 0;
}

section.hero {
  margin-top: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s ease forwards;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(176, 138, 87, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.list span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--highlight);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.services {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.pill {
  background: rgba(216, 199, 161, 0.4);
  color: var(--primary);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery figure {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 1rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  background: #111;
  color: #eee;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
}

.footer a {
  color: #ddd;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.chip-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.chip-links a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.alert {
  background: rgba(176, 138, 87, 0.14);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(176, 138, 87, 0.35);
  color: var(--primary);
}

.popup-content {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: #fff;
  max-width: 520px;
  width: min(520px, 92vw);
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 9999;
}

.popup-content.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.legal-page {
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-image img {
  width: 100%;
  display: block;
}

.sub-hero {
  background: linear-gradient(120deg, rgba(31, 31, 31, 0.94), rgba(31, 31, 31, 0.7));
  color: #fff;
  padding: 4rem 0;
  margin-top: 0;
}

.sub-hero h1 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(216, 199, 161, 0.2);
  color: #fff;
  border-radius: 999px;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  background: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  border-left: 4px solid var(--highlight);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta {
  background: linear-gradient(120deg, rgba(176, 138, 87, 0.15), rgba(31, 31, 31, 0.9));
  color: #fff;
  border-radius: 14px;
  padding: 2rem;
  display: grid;
  gap: 0.75rem;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  body {
    hyphens: auto;
  }

  .logo {
    font-size: 1rem;
  }

  .nav {
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: min(260px, 90vw);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 0;
    height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav-links.open {
    max-height: 500px;
    height: auto;
    padding: 1rem;
  }
}


