@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;600;700&display=swap');

:root {
  --background: hsl(40 33% 98%);
  --foreground: hsl(25 30% 15%);
  --card: hsl(40 40% 97%);
  --card-foreground: hsl(25 30% 15%);
  --primary: hsl(25 55% 25%);
  --primary-foreground: hsl(40 40% 98%);
  --secondary: hsl(40 35% 92%);
  --secondary-foreground: hsl(25 40% 20%);
  --muted: hsl(35 25% 90%);
  --muted-foreground: hsl(25 20% 45%);
  --accent: hsl(38 70% 50%);
  --accent-foreground: hsl(25 50% 12%);
  --border: hsl(35 25% 85%);
  --hero-gradient: linear-gradient(135deg, rgba(79, 45, 22, 0.9), rgba(79, 45, 22, 0.7), rgba(79, 45, 22, 0.5));
  --warm-glow: 0 8px 32px rgba(217, 156, 51, 0.15);
  --card-shadow: 0 4px 20px rgba(61, 40, 25, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--secondary);
}

.section--tint {
  background: rgba(255, 248, 234, 0.6);
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--primary-foreground);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted-foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 0.6rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--warm-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: hsl(38 70% 50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--primary-foreground);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 234, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(43, 32, 20, 0.8);
}

.nav a:hover {
  color: var(--primary);
}

.header__cta {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.6rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header__cta:hover {
  background: var(--background);
  color: var(--primary);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
}

.mobile-nav {
  display: none;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  display: block;
  padding: 0.6rem 0;
  font-weight: 600;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 4.5rem;
  position: relative;
  color: var(--primary-foreground);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.card--tight {
  padding: 1.5rem;
}

.news-card__image-trigger {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  background: transparent;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  cursor: zoom-in;
}

.news-card__image-trigger img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-card__zoom {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.65rem;
}

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: rgba(217, 156, 51, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}

.products__image {
  border-radius: 1.2rem 1.2rem 0 0;
  overflow: hidden;
}

.products__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.35rem 0.9rem;
  background: var(--secondary);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--secondary-foreground);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge--primary {
  background: var(--accent);
  color: var(--accent-foreground);
}

.badge--secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.badge--outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-list {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.contact-links {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-links a {
  color: var(--primary);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.phone-link__icon {
  display: inline-flex;
  color: var(--accent);
}

.contact-person {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-person:last-child {
  border-bottom: none;
}

.contact-person h4 {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.map-frame:hover {
  filter: grayscale(0);
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.store-map {
  margin-top: 2rem;
  padding: 0;
  overflow: hidden;
}

.store-map__content {
  padding: 1.5rem;
}

.store-map__frame {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.store-map__frame--small {
  height: 180px;
  margin-top: 1rem;
  border-radius: 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 12, 0.75);
  z-index: 2000;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  position: relative;
  max-width: min(900px, 92vw);
  width: 100%;
}

.lightbox__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: block;
}

.lightbox__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  border: none;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--warm-glow);
}

.has-lightbox {
  overflow: hidden;
}

.admin-wrapper {
  padding: 5rem 0;
  background: var(--secondary);
}

.admin-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.form-field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1rem;
  color: var(--foreground);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-list__item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  display: grid;
  gap: 0.75rem;
}

.admin-list__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.admin-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.notice {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(217, 156, 51, 0.18);
  color: var(--foreground);
  font-size: 0.95rem;
}

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .header__cta {
    width: fit-content;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 90vh;
  }
}
