* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fdfbf8;
  color: #5a5551;
  line-height: 1.8;
}

h1, h2, h3 {
  font-family: 'Crimson Text', serif;
  color: #3d3530;
  font-weight: 600;
}

h1 {
  font-size: 56px;
  line-height: 1.15;
}

h2 {
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #6f6762;
}

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

.button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
}

.button-primary {
  background: #3d3530;
  color: #fdfbf8;
}

.button-primary:hover {
  background: #2b241f;
  transform: translateY(-2px);
}

.button-secondary {
  border: 1.5px solid #3d3530;
  color: #3d3530;
  background: transparent;
}

.button-secondary:hover {
  background: #f1ede6;
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
  background: rgba(253, 251, 248, 0.94);
  border-bottom: 1px solid #eee8e0;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: #6f6762;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: #2f3b2a;
}

.nav-phone {
  font-weight: 500;
  color: #3d3530;
}

/* ===== HERO SECTION ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
  background: #fdfbf8;
}

.hero-left {
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fdfbf8;
}

.hero-left h1 {
  margin-bottom: 30px;
  letter-spacing: -0.8px;
}

.hero-intro {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  color: #6f6762;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-note {
  font-size: 14px;
  color: #a89e91;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hero-right {
  background: linear-gradient(135deg, #fdfbf8 0%, #f9f5f0 100%);
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 0.5s ease;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  background: #f9f5f0;
  padding: 100px 60px;
  border-top: 1px solid #eee8e0;
}

.categories-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  text-align: center;
}

.categories-header h2 {
  margin-bottom: 15px;
}

.categories-header p {
  font-size: 18px;
  color: #6f6762;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.category {
  background: white;
  padding: 30px;
  border: 1px solid #eee8e0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.category:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(61, 53, 48, 0.08);
}

.category-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 25px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 0.4s ease;
}

.category:hover img {
  transform: scale(1.015);
}

.category h3 {
  margin-bottom: 15px;
}

.category p {
  font-size: 15px;
  line-height: 1.8;
  color: #6f6762;
}

/* ===== FEATURED ARRANGEMENTS ===== */
.featured {
  background: #fdfbf8;
  padding: 100px 60px;
  border-top: 1px solid #eee8e0;
}

.featured h2 {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.arrangements-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.arrangement {
  background: white;
  border: 1px solid #eee8e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.arrangement:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(61, 53, 48, 0.08);
}

.arrangement img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.94;
  display: block;
  transition: transform 0.4s ease;
}

.arrangement:hover img {
  transform: scale(1.015);
}

.arrangement-info {
  padding: 35px 30px;
}

.arrangement h3 {
  margin-bottom: 12px;
}

.arrangement-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6f6762;
  margin-bottom: 15px;
}

.arrangement-price {
  font-size: 18px;
  font-weight: 600;
  color: #3d3530;
  margin-bottom: 8px;
}

.arrangement-note {
  font-size: 13px;
  color: #a89e91;
  font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #f9f5f0;
  padding: 100px 60px;
  border-top: 1px solid #eee8e0;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 16px;
}

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

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

.feature-icon {
  font-size: 24px;
  line-height: 1;
  min-width: 30px;
}

.feature span:last-child {
  font-size: 15px;
  color: #6f6762;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border: 1px solid #eee8e0;
  opacity: 0.94;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: #fdfbf8;
  padding: 100px 60px;
  border-top: 1px solid #eee8e0;
}

.contact h2 {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  padding-right: 30px;
}

.contact-detail-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a89e91;
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-info p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-info a {
  color: #3d3530;
  font-weight: 500;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid #eee8e0;
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #5a5551;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b9b1a8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3d3530;
}

.form-note {
  font-size: 13px;
  color: #a89e91;
  font-style: italic;
  margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
  background: #f1ede6;
  color: #4a423c;
  padding: 40px 60px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #e5ded4;
}

.footer p {
  color: #4a423c;
  margin: 0;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #4a423c;
  transition: opacity 0.25s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 20px;
  }

  .site-logo {
    width: 190px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 70px 40px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right {
    min-height: 400px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .categories-grid,
  .arrangements-showcase,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .categories,
  .featured,
  .about,
  .contact {
    padding: 60px 40px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .nav {
    padding: 15px 40px;
  }

  .about-text h2,
  .contact-info {
    padding-right: 0;
  }
}