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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FAF5E8; 
  color: #2D1A15;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
}

.logo-link img {
  height: 150px;
  width: auto;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  gap: 15px;
}

.nav-link {
  text-decoration: none;
  color: #2D1A15;
  background-color: #D9D2C3;
  padding: 10px 28px;
  border-radius: 12px;
  border: 1px solid #1A1A1A;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  background-color: #C3BCAE;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh; 
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 600px;
}

.hero .eyebrow {
  display: none; 
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.hero .tagline {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.hero-copy {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
}

.ready-link {
  position: absolute;
  left: auto !important;
  right: 60px !important;  
  bottom: 80px; 
  z-index: 10;  
  color: #FFFFFF;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #FFFFFF;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile {
  padding: 60px 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.info-card {
  display: flex;
  background-color: #3B1E18;
  color: #FFFFFF;
  border-radius: 0;
  overflow: hidden;
}

.info-card img {
  width: 45%;
  object-fit: cover;
}

.info-card div {
  padding: 25px;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p, .info-card small {
  font-size: 13px;
  line-height: 1.5;
  color: #E2D7CD;
}

/* Vision & Mission */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.vision-copy h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 40px;
}

.vision-copy h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
}

.vision-copy p {
  font-size: 16px;
  color: #333;
}

.missions {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.missions div b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.missions div p {
  font-size: 14px;
  max-width: 450px;
  margin: 0 auto;
}

.products {
  width: 100%;
}

.product-section {
  padding: 50px 40px;
}

.product-section.light {
  background-color: #FAF5E8;
  color: #2D1A15;
}

.product-section.brown {
  background-color: #3B1E18;
  color: #FAF5E8;
}

.section-heading h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  font-weight: 400;
  border-bottom: 1px solid currentColor;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  gap: 30px;
}

.product-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: 50px; 
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.product-card p {
  font-size: 12px;
  opacity: 0.8;
}

.choose-btn {
  display: none; 
}

.shop {
  display: none; 
}

.footer {
  background-color: #FAF5E8;
  padding: 80px 40px 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.footer-links a {
  text-decoration: none;
  color: #2D1A15;
  font-weight: 600;
  font-size: 18px;
}

.copyright {
  font-size: 12px;
  opacity: 0.6;
}

.brownies-card img {
  width: 100%; 
  aspect-ratio: 6 / 7;  
  object-fit: cover;
  border-radius: 50px;
  display: block;
  margin: 0 auto 15px auto;
}

.salt-bread-card img {
  width: 100%; 
  aspect-ratio: 6 / 7;  
  object-fit: cover;
  border-radius: 50px;
  display: block;
  margin: 0 auto 15px auto;
}

.contact-location-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bg-location-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.nav-btn {
  padding: 8px 24px;
  background-color: #e2ded0; 
  border: 1px solid #706357;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 100px 60px 40px 60px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.contact-text p {
  font-size: 20px;
  color: #2d1a15;
  margin-bottom: 4px;
  font-weight: 500;
}

.social-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: bold;
}

.social-item a,
.social-item span {
  color: #2d1a15;
  text-decoration: none;
}

.social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.bg-location-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.location-info {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.location-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  font-weight: bold;
  color: #2d1a15;
  margin-bottom: 10px;
}

.location-info .address {
  font-size: 22px;
  color: #2d1a15;
  text-decoration: none;
  font-weight: 500;
}