@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --cream: #F7F2E8;
  --burgundy: #6B1D2A;
  --gold: #C9A227;
  --dark: #2C1810;
  --light-gold: #E8D5A3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--burgundy);
}

a { color: var(--burgundy); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--burgundy);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span { color: var(--gold); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.main-nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(107,29,42,0.85), rgba(44,24,16,0.7)),
              url('assets/cheese-hero.jpg') center/cover no-repeat;
}

.hero-content {
  max-width: 640px;
  padding: 80px 24px;
  margin-left: max(24px, calc((100% - 1140px) / 2 + 24px));
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  color: var(--light-gold);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover { background: var(--light-gold); transform: translateY(-2px); color: var(--dark); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-left: 12px;
}

.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* Sections */
section { padding: 72px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 { font-size: 2.4rem; margin-bottom: 12px; }

.section-title p {
  color: #5a4a3a;
  max-width: 560px;
  margin: 0 auto;
}

.section-alt { background: #EDE6D8; }

/* Cheese Grid */
.cheese-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.cheese-card {
  background: white;
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(44,24,16,0.08);
  transition: transform 0.3s;
}

.cheese-card:hover { transform: translateY(-4px); }

.cheese-card h3 { font-size: 1.5rem; margin-bottom: 8px; }

.cheese-card .origin {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cheese-card .price {
  font-weight: 600;
  color: var(--burgundy);
  margin-top: 16px;
  font-size: 1.1rem;
}

/* Hampers */
.hamper-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.hamper-row:nth-child(even) { direction: rtl; }
.hamper-row:nth-child(even) > * { direction: ltr; }

.hamper-img {
  height: 280px;
  background: linear-gradient(45deg, var(--burgundy), var(--gold));
  border-radius: 4px;
  opacity: 0.9;
}

.hamper-text h3 { font-size: 1.8rem; margin-bottom: 16px; }

.hamper-text ul { margin: 16px 0 24px 20px; }

/* Heritage */
.heritage-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.heritage-block blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--burgundy);
  margin: 24px 0;
}

/* Visit */
.visit-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.visit-card {
  background: white;
  padding: 36px 24px;
  border-bottom: 3px solid var(--gold);
}

.visit-card h4 { font-size: 1.3rem; margin-bottom: 12px; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: white;
  padding: 32px;
  border-radius: 2px;
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 8px;
  left: 20px;
  opacity: 0.4;
}

.review-card p { padding-top: 24px; font-style: italic; }

.review-card .author {
  margin-top: 16px;
  font-weight: 600;
  color: var(--burgundy);
  font-style: normal;
}

.stars { color: var(--gold); margin-bottom: 8px; }

/* Page header */
.page-hero {
  background: var(--burgundy);
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 { color: var(--cream); font-size: 2.6rem; }
.page-hero p { color: var(--light-gold); margin-top: 12px; }

/* Content */
.content-section { padding: 56px 0; }

.content-section h2 { font-size: 1.8rem; margin: 32px 0 16px; }
.content-section h3 { font-size: 1.4rem; margin: 24px 0 12px; }
.content-section p { margin-bottom: 16px; }
.content-section ul, .content-section ol { margin: 16px 0 16px 24px; }

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.product-item {
  border: 1px solid #ddd5c8;
  padding: 24px;
  background: white;
}

.product-item h4 { font-size: 1.2rem; margin-bottom: 8px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-details p { margin-bottom: 12px; }

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  font-family: inherit;
  background: white;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #c4b8a8;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #c4b8a8; }
.footer-grid a:hover { color: var(--gold); }

.contact-email a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #4a3a2a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.legal-links { display: flex; gap: 20px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--cream);
  padding: 20px 24px;
  display: none;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

.cookie-banner p { flex: 1; min-width: 280px; font-size: 0.9rem; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 12px; }

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
}

.cookie-accept { background: var(--gold); color: var(--dark); font-weight: 600; }
.cookie-decline { background: transparent; color: var(--cream); border: 1px solid #666 !important; }

@media (max-width: 768px) {
  .hamper-row, .heritage-block, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .visit-info { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
}
