/* Discerning Dips — shared stylesheet */

:root {
  --bg:           #faf6ef;
  --bg-alt:       #f1ead8;
  --ink:          #2b2520;
  --ink-soft:     #5a4f44;
  --olive:        #5d6b3f;
  --olive-dark:   #46522e;
  --terracotta:   #c97b50;
  --terracotta-d: #a85f37;
  --rule:         #e3d9c1;
  --shadow:       0 6px 24px rgba(70, 50, 20, 0.08);
  --radius:       10px;
  --maxw:         1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a {
  color: var(--terracotta-d);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
a:hover { border-bottom-color: var(--terracotta-d); }

/* ---------- Header ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  border: none;
}
.brand:hover { border: none; }

.brand-name {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--olive-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-tag {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 4px;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-nav a:hover,
.site-nav a.active {
  border-bottom-color: var(--terracotta);
  color: var(--olive-dark);
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 123, 80, 0.18), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(93, 107, 63, 0.18), transparent 55%),
    var(--bg-alt);
  padding: 80px 24px 90px;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 0.3em;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1.5em;
}

.btn {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.btn:hover {
  background: var(--olive-dark);
  border: none;
  transform: translateY(-1px);
}
.btn.secondary {
  background: transparent;
  color: var(--olive-dark);
  border: 2px solid var(--olive);
}
.btn.secondary:hover { background: var(--olive); color: #fff; }

/* ---------- Page sections ---------- */

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.page-title {
  text-align: center;
  margin-bottom: 12px;
}

.page-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.content-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Address block */
.address {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink);
}
.address strong { color: var(--olive-dark); }

/* ---------- Flavours grid ---------- */

.flavours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.flavour {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.flavour:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(70, 50, 20, 0.12);
}

.flavour-image {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.flavour-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.flavour-image--empty {
  background:
    linear-gradient(135deg, #faf6ef 0%, #f1ead8 100%);
  position: relative;
}
.flavour-image--empty::after {
  content: "";
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  opacity: 0.6;
}

.flavour-body {
  padding: 18px 22px 22px;
}
.flavour h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}
.flavour p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------- Form ---------- */

.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(93, 107, 63, 0.15);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { justify-self: start; margin-top: 4px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--bg-alt);
  padding: 28px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.site-footer a { color: var(--ink-soft); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
