/* =========================================================
   NAKAR HIGHLANDS ESTATE COFFEE — VERSION 2
   (Structure & section order recreated from the provided
   sample layout reference — a farm-brand mobile page with:
   photo header -> title/tagline -> about card -> order button
   -> products list -> map -> contact footer)
   =========================================================
   Editable design tokens live in :root below.

   Section map:
   1. Tokens
   2. Base / reset
   3. Header (photo + logo, title, tagline)
   4. About card
   5. Order button (primary CTA)
   6. Products list
   7. Map block
   8. Contact / footer
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  --color-green-deep: #1f2b1a;   /* dark highland-green header/footer */
  --color-green-mid: #2f4227;
  --color-cream: #f3ecd8;        /* card / page background, like the kraft label */
  --color-cream-soft: #eee4c8;
  --color-ink: #241f18;
  --color-ink-soft: #55503f;
  --color-gold: #b98a3e;         /* accent, echoes roasted bean tan */

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", Helvetica, Arial, sans-serif;

  --page-max-width: 480px;
  --radius: 14px;
}

/* ---------- 2. BASE / RESET ---------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.page {
  max-width: var(--page-max-width);
  margin: 0 auto;
  background: var(--color-cream);
  min-height: 100vh;
  overflow: hidden;
}

/* ---------- 3. HEADER — photo band + logo + title + tagline ---------- */
.header {
  position: relative;
  background: var(--color-green-deep);
  padding-bottom: 28px;
}

.header__photo-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.header__photo {
  /* EDITABLE: swap src to change the header photo */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__photo-wrap::after {
  /* fade the photo into the green so the logo below reads cleanly */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,43,26,0) 55%, var(--color-green-deep) 100%);
}

.header__logo-badge {
  position: relative;
  margin: -100px auto 0;
	width: 300px;
	height: 200px;
  background: #5c7139;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.header__logo-badge img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin: 18px 20px 4px;
}

.header__tagline {
  text-align: center;
  color: var(--color-cream-soft);
  font-size: 13.5px;
  margin: 0 20px;
  letter-spacing: 0.02em;
}

/* ---------- 4. ABOUT CARD ---------- */
.about-card {
  background: #fffdf6;
  margin: -18px 18px 0;
  position: relative;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 8px 20px rgba(31,43,26,0.12);
  text-align: center;
}

.about-card__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-green-mid);
  margin: 0 0 8px;
}

.about-card__text {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  margin: 0;
}

/* ---------- 5. ORDER BUTTON ---------- */
.order-btn-wrap {
  text-align: center;
  margin: 20px 20px 0;
}

.order-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.order-btn:hover,
.order-btn:focus-visible {
  background: var(--color-green-mid);
}

/* ---------- 6. PRODUCTS LIST ---------- */
.products {
  margin: 26px 20px 0;
}

.products__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-green-mid);
  margin: 0 0 10px;
}

.products__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fffdf6;
  border: 1px solid rgba(36,31,24,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
}

.products__name { font-weight: 500; }
.products__price { color: var(--color-ink-soft); font-size: 12.5px; white-space: nowrap; }

.products__link {
  display: block;
  margin-top: 10px;
}

/* ---------- LINKS (Instagram/Facebook/etc — same visual family as products) ---------- */
.linklist {
  margin: 26px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.linklist__item {
  display: block;
  text-align: center;
  background: var(--color-cream-soft);
  border: 1px solid rgba(36,31,24,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 500;
}

.linklist__item:hover,
.linklist__item:focus-visible {
  background: #e7dcb9;
}

/* ---------- 7. MAP BLOCK ---------- */
.map-block {
  margin: 26px 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(36,31,24,0.1);
}

.map-block__frame {
  /* EDITABLE: replace this iframe's src with your own Google Maps embed link,
     or delete the iframe and use a static map image instead. */
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
  filter: sepia(12%) saturate(85%);
}

/* ---------- 8. CONTACT / FOOTER ---------- */
.contact {
  margin-top: 30px;
  background: var(--color-green-deep);
  color: var(--color-cream-soft);
  padding: 26px 22px 34px;
}

.contact__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin: 0 0 14px;
  text-align: center;
}

.contact__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.contact__list li {
  display: flex;
  gap: 8px;
}

.contact__label {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-weight: 600;
  min-width: 62px;
}

.contact__social {
  margin: 18px 0 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  font-size: 13px;
}

.contact__social a { border-bottom: 1px solid transparent; }
.contact__social a:hover,
.contact__social a:focus-visible { border-bottom-color: var(--color-gold); }

.contact__copy {
  text-align: center;
  font-size: 11px;
  opacity: 0.65;
  margin-top: 22px;
}

@media (max-width: 360px) {
  .header__title { font-size: 21px; }
}
