:root {
  --ink: #111211;
  --cream: #f8f1e4;
  --sand: #e4d3b7;
  --brand: #a66a1f;
  --brand-dark: #6b3a0a;
  --forest: #1c2a21;
  --sky: #c9d8ee;
  --sun: #f4c95d;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Gill Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8e8 0%, #f2e5ce 40%, #efe3cf 100%);
  opacity: 0;
  animation: pageLoad 0.5s ease-out forwards;
}

body.loaded {
  opacity: 1;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 241, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(166, 106, 31, 0.15);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(166, 106, 31, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(166, 106, 31, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(166, 106, 31, 0.1);
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--brand-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--brand);
  color: #fff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 40px 0 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 14px;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  color: var(--brand-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(17, 18, 17, 0.6);
  display: block;
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-badge {
  position: absolute;
  right: 14px;
  bottom: -14px;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.services {
  background: linear-gradient(120deg, #fff4de, #f1dfbf);
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.service-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-icon {
  font-size: 2rem;
  display: block;
}

.service-card:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.promotions {
  margin: 60px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.promo-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.2);
  border-color: var(--brand);
}

.promo-card.featured {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}

.promo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--sun);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-card h3 {
  margin: 0 0 10px;
}

.promo-price {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  margin: 10px 0;
  color: var(--brand);
}

.promo-card.featured .promo-price {
  color: var(--sun);
}

/* Testimonials Section */
.testimonials {
  margin: 80px 0;
  background: linear-gradient(120deg, #f0e6d2, #e8dcc3);
  padding: 40px;
  border-radius: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  line-height: 1.6;
  margin: 12px 0;
}

.testimonial-author {
  font-weight: 600;
  font-style: italic;
  color: var(--brand-dark);
  margin-top: 16px;
}

/* Payment Methods Section */
.payment-methods {
  margin: 60px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 28px;
}

.section-title.centered {
  text-align: center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.payment-card {
  padding: 16px 24px;
  background: #fff;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.payment-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.about {
  margin: 80px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.about-content p {
  line-height: 1.6;
}

.about-highlights {
  display: grid;
  gap: 16px;
}

.about-highlights h3 {
  margin-bottom: 6px;
}

.about-panel {
  background: var(--forest);
  color: #fff;
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-hours {
  font-size: 1.4rem;
  font-weight: 600;
}

.about-address {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.products {
  margin: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.2);
}

.product-card h3 {
  margin: 0;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: var(--brand);
}

.product-text {
  padding: 8px 4px 18px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 80px 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 17, 0.2);
  padding: 10px 12px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(166, 106, 31, 0.1);
}

.form-message {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map {
  margin: 80px 0;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 18, 17, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--sun);
}

.footer-note {
  font-size: 0.95rem;
}

.footer-copyright {
  margin-top: 12px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 10;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hero {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }

  .services,
  .testimonials {
    padding: 28px;
  }

  .promo-grid,
  .testimonial-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    padding: 28px;
  }

  .payment-icons {
    gap: 12px;
  }

  .payment-card {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
