

:root {
  --gold-mid:   #d3a900;
  --gold-dark:  #b38f00;
  --gold-deep:  #8f7200;
  --ink:        #161616;
  --ink-soft:   #2e2a1e;
  --white:      #ffffff;
  --cream:      #fdf8ee;
  --cream-dark: #f5ecce;
  --muted:      #6b6045;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --font-display: 'Caveat', cursive;
  --font-body:    'Nunito', sans-serif;
  --space-xs:   clamp(0.5rem,  1.5vw, 0.75rem);
  --space-sm:   clamp(0.75rem, 2vw,   1rem);
  --space-md:   clamp(1rem,    3vw,   1.75rem);
  --space-lg:   clamp(2rem,    5vw,   4rem);
  --space-xl:   clamp(3rem,    8vw,   7rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.075rem);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}



.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.section-sub {
  max-width: 56ch;
  color: var(--muted);
  margin-bottom: var(--space-md);
}



.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.65em 1.5em;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-mid); outline-offset: 3px; }

.btn-primary {
  background: var(--gold-mid);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(211,169,0,0.25);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 6px 20px rgba(179,143,0,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
}
.btn-outline:hover { background: var(--gold-dark); color: var(--white); }

.btn-nav {
  background: var(--gold-mid);
  color: var(--ink);
  font-size: 0.82rem;
  padding: 0.5em 1.2em;
}
.btn-nav:hover { background: var(--gold-dark); }



.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22,22,22,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(211,169,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover .logo-text { color: var(--gold-mid); }

.logo-mark {
  color: var(--gold-mid);
  font-size: 1.1rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-left: auto;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-mid);
  border-bottom-color: var(--gold-mid);
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .btn-nav  { margin-left: auto; }
}



.hero {
  position: relative;
  min-height: clamp(480px, 90vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(22,22,22,0.78) 0%,
    rgba(22,22,22,0.45) 60%,
    rgba(179,143,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--space-xl);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.hero h1.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
  margin-bottom: var(--space-md);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}



.intro-strip {
  background: var(--ink);
  border-bottom: 2px solid rgba(211,169,0,0.18);
}

.intro-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  padding-block: var(--space-md);
}

.intro-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(211,169,0,0.1);
  border: 1px solid rgba(211,169,0,0.25);
  border-radius: 50px;
  padding: 0.45em 1.1em;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.intro-icon { font-size: 1rem; }



.products {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.products .section-heading,
.products .section-label { }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(22,22,22,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(22,22,22,0.13);
}

.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-img-wrap img { transition: transform 0.5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-body {
  padding: var(--space-sm) var(--space-md);
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.product-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.product-link:hover { border-color: var(--gold-dark); color: var(--gold-deep); }

.products-cta { text-align: center; margin-top: var(--space-sm); }



.gallery-strip {
  padding-block: var(--space-xl);
  background: var(--ink);
}

.gallery-strip .section-label { color: var(--gold-mid); }
.gallery-strip .section-heading { color: var(--white); margin-bottom: var(--space-md); }

.gallery-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 3px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #2a2a2a;
  position: relative;
}
.gallery-item img { transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }



.about {
  padding-block: var(--space-xl);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-media {
  position: relative;
}

.about-media img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: var(--gold-mid);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(211,169,0,0.3);
  display: flex;
  flex-direction: column;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--space-md);
}



.workshops {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.workshops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .workshops-inner { grid-template-columns: 1fr; }
  .workshops-media { order: -1; }
}

.workshops-media img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.workshops-copy p {
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

.workshop-list {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.workshop-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.workshop-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-mid);
  flex-shrink: 0;
}



.reviews {
  padding-block: var(--space-xl);
  background: var(--ink);
}

.reviews .section-label { color: var(--gold-mid); }
.reviews .section-heading { color: var(--white); margin-bottom: var(--space-md); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(211,169,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.review-stars {
  color: var(--gold-mid);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-card blockquote {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-style: normal;
  letter-spacing: 0.04em;
}



.contact {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .contact-inner { grid-template-columns: 1fr; }
}

.contact-copy p {
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-list a,
.contact-list span {
  color: var(--ink-soft);
  font-size: 0.97rem;
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--gold-dark); }

.contact-media img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(22,22,22,0.12);
}



.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-top: var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand .logo-mark { color: var(--gold-mid); }
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-brand .logo-mark,
.footer-brand .logo-text {
  display: inline;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 36ch;
  margin-top: 0.4rem;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-mid); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-mid); }

.footer-bottom {
  padding-block: 1.1rem;
  background: rgba(0,0,0,0.3);
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}



.about-hero {
  position: relative;
  min-height: clamp(380px, 60vh, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(22,22,22,0.72) 0%,
    rgba(22,22,22,0.50) 55%,
    rgba(143,114,0,0.18) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 680px;
}

.about-hero-content .hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.about-hero-content .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
}

.about-intro {
  background: var(--ink);
  border-bottom: 2px solid rgba(211,169,0,0.18);
}

.about-intro-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  padding-block: var(--space-md);
}

.about-story {
  padding-block: var(--space-xl);
  background: var(--white);
}

.about-values {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 2px 16px rgba(22,22,22,0.06);
  border-top: 3px solid var(--gold-mid);
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(22,22,22,0.11);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.about-farm {
  padding-block: var(--space-xl);
  background: var(--ink);
}

.about-farm .section-label { color: var(--gold-mid); }
.about-farm .section-heading { color: var(--white); }

.about-farm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .about-farm-inner { grid-template-columns: 1fr; }
  .about-farm-media { order: -1; }
}

.about-farm-copy p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.about-farm-copy .about-actions {
  margin-top: var(--space-md);
}

.farm-media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.farm-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #2a2a2a;
}

.farm-img-accent {
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #2a2a2a;
  grid-column: 1 / -1;
}

.farm-img-main img,
.farm-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.farm-img-main:hover img,
.farm-img-accent:hover img {
  transform: scale(1.04);
}

.about-what-we-grow {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.grow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.grow-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(22,22,22,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.grow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(22,22,22,0.13);
}

.grow-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}

.grow-img-wrap img { transition: transform 0.5s; }
.grow-card:hover .grow-img-wrap img { transform: scale(1.06); }

.grow-body {
  padding: var(--space-sm) var(--space-md);
}

.grow-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.grow-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-workshops {
  padding-block: var(--space-xl);
  background: var(--white);
}



.contact-hero {
  position: relative;
  min-height: clamp(320px, 55vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(22,22,22,0.80) 0%,
    rgba(22,22,22,0.50) 60%,
    rgba(143,114,0,0.18) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-block: var(--space-xl);
}

.contact-hero-content .hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-hero-content .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
}

.contact-page-main {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page-photo { order: -1; }
}

.contact-page-intro {
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
  max-width: 52ch;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: var(--space-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 2rem;
  text-align: center;
}

.contact-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-detail-value {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

.contact-detail-link {
  transition: color 0.2s;
}
.contact-detail-link:hover { color: var(--gold-dark); }

.contact-page-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--space-sm);
}

.contact-page-photo img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(22,22,22,0.14);
}

.contact-reasons {
  padding-block: var(--space-xl);
  background: var(--ink);
}

.contact-reasons .section-label { color: var(--gold-mid); }
.contact-reasons .section-heading { color: var(--white); margin-bottom: var(--space-md); }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}

.reason-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(211,169,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.reason-card:hover {
  background: rgba(211,169,0,0.07);
  border-color: rgba(211,169,0,0.4);
  transform: translateY(-4px);
}

.reason-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.reason-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reason-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.reason-card .product-link {
  color: var(--gold-mid);
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.reason-card .product-link:hover {
  border-color: var(--gold-mid);
  color: var(--gold-dark);
}

.contact-map-section {
  padding-block: var(--space-xl);
  background: var(--white);
}

.contact-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .contact-map-inner { grid-template-columns: 1fr; }
}

.contact-map-copy p {
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

.contact-address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  padding-left: 1rem;
  border-left: 3px solid var(--gold-mid);
}

.contact-map-photo img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(22,22,22,0.1);
}



.shop-hero {
  position: relative;
  min-height: clamp(340px, 60vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.shop-hero-media {
  position: absolute;
  inset: 0;
}

.shop-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(22,22,22,0.82) 0%,
    rgba(22,22,22,0.5) 65%,
    rgba(143,114,0,0.18) 100%
  );
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-block: var(--space-xl);
}

.shop-how {
  padding-block: var(--space-xl);
  background: var(--white);
}

.shop-how-inner { }

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.how-step {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 3px solid var(--gold-mid);
}

.how-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-mid);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.how-step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.how-step p a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}
.how-step p a:hover { text-decoration-color: var(--gold-dark); }

.shop-category {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.shop-category-dark {
  background: var(--ink);
}

.shop-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}

.shop-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(22,22,22,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(22,22,22,0.13);
}

.shop-card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(211,169,0,0.15);
}
.shop-card-dark:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.shop-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  flex-shrink: 0;
}
.shop-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.shop-card:hover .shop-card-img-wrap img { transform: scale(1.06); }

.shop-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 50px;
}

.shop-badge-fresh {
  background: rgba(22,22,22,0.75);
  color: var(--gold-mid);
  border: 1px solid rgba(211,169,0,0.4);
}

.shop-badge-med {
  background: rgba(143,114,0,0.85);
  color: var(--white);
}

.shop-badge-kit {
  background: var(--ink);
  color: var(--gold-mid);
  border: 1px solid rgba(211,169,0,0.35);
}

.shop-card-body {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.shop-card-dark .shop-card-body h3 {
  color: var(--white);
}

.shop-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  flex: 1;
}

.shop-card-dark .shop-card-body p {
  color: rgba(255,255,255,0.62);
}

.shop-card-footer {
  margin-top: auto;
  padding-top: 0.5rem;
}

.shop-order-btn {
  font-size: 0.83rem;
  padding: 0.55em 1.2em;
}

.shop-order-cta {
  padding-block: var(--space-xl);
  background: var(--ink-soft);
}

.shop-order-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .shop-order-cta-inner { grid-template-columns: 1fr; }
}

.shop-cta-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.shop-cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(211,169,0,0.18);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.shop-cta-card-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.4rem;
}

.shop-cta-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.shop-cta-card a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.shop-cta-card a:hover { color: var(--gold-mid); }


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
