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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f3ea; 
  color: #1e2723; 
  line-height: 1.5;
}

/* Colors:
   green: #294235
   brown: #5a3e2b
   purple accent: #7a4ea3
*/

.section {
  padding: 80px 16px;
  max-width: 1200px;
  margin: 0 auto;
}



.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(29, 49, 39, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f3ea;
}

.nav {
  display: flex;
  gap: 16px;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #eae6dc;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: #7a4ea3; 
  color: #fdfcf8;
  transform: translateY(-1px);
}



.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  background: linear-gradient(135deg, #294235, #5a3e2b);
  color: #fdfcf8;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}



.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #294235;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #4a554f;
}



.section-home {
  padding-top: 100px; 
}

.home-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.home-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.home-text h1 {
  font-size: 2.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #294235;
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.1rem;
  color: #7a4ea3; 
  margin-bottom: 18px;
}

.home-description {
  margin-bottom: 24px;
  font-size: 0.98rem;
  color: #424b46;
}

.home-image-wrapper {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.home-image {
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  border: 3px solid rgba(122, 78, 163, 0.4); 
}


.section-aroma {
  background: radial-gradient(circle at 20% 0%, #f4f1ea, #e8e2d6 60%, #e3dbce);
  border-radius: 36px;
  padding: 50px 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}

.aroma-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.aroma-image-wrapper {
  flex: 0 1 340px;
  display: flex;
  justify-content: center;
}

.aroma-image {
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.aroma-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

.aroma-text {
  flex: 1 1 420px;
  min-width: 300px;
}

.aroma-text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #243a30;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.notes-block {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-left: 5px solid #7a4ea3;
  background: rgba(41, 66, 53, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.notes-block:hover {
  background: rgba(41, 66, 53, 0.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.notes-block h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #523a2a;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
}

.notes-block p {
  font-size: 0.98rem;
  color: #3f4743;
  line-height: 1.5;
}

.aroma-description {
  margin-top: 16px;
  font-size: 1rem;
  color: #606a66;
  line-height: 1.6;
}

.section-why {
  padding-bottom: 90px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: #f8f5ec;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(41, 66, 53, 0.2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.why-image-wrapper {
  height: 180px;
  overflow: hidden;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-text {
  padding: 16px 18px 18px;
}

.why-text h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #294235;
}

.why-text p {
  font-size: 0.94rem;
  color: #4d564f;
}


.section-contact {
  border-top: 1px solid rgba(41, 66, 53, 0.15);
}

.contact-content {
  display: flex;
  justify-content: center;   
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  flex: 0 1 400px;           
  min-width: 260px;
  text-align: center;        
  margin: 0 auto;            
}

.contact-info h3 {
  margin-bottom: 12px;
  color: #294235;
}

.contact-info p {
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.contact-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #5f6863;
}


.footer {
  text-align: center;
  padding: 20px 16px 30px;
  font-size: 0.85rem;
  color: #6b746f;
}

