/* =========================================================================
   Princess Pure Honey — premium design layer
   Loads after style.css and re-skins the whole site: warm honey palette,
   Fraunces display type, soft depth, and scroll-triggered motion.
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&display=swap");

:root {
  --honey: #e8940a;
  --honey-deep: #c47600;
  --honey-dark: #8a5300;
  --nectar: #f7b733;
  --ink: #2e1d0e;
  --cocoa: #5c4a38;
  --cream: #fdf9f0;
  --cream-2: #faf1de;
  --card: #ffffff;
  --ring: rgba(232, 148, 10, 0.28);
  --shadow-soft: 0 6px 24px -8px rgba(93, 64, 12, 0.14);
  --shadow-lift: 0 24px 48px -16px rgba(93, 64, 12, 0.28);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- base re-skin ---------- */

body {
  background-color: var(--cream) !important;
  color: var(--cocoa);
  font-family: "Nunito", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.01em;
}

::selection {
  background: var(--nectar);
  color: var(--ink);
}

.bg-white { background-color: var(--cream) !important; }
.bg-light { background-color: var(--cream-2) !important; }
.bg-honey { background-color: var(--cream-2); }

.text-primary { color: var(--honey-deep) !important; }
.bg-primary { background-color: var(--honey) !important; }

a { transition: color 0.25s ease; }
a:hover { color: var(--honey-deep); }

/* honeycomb texture used on dark bands and the footer */
.comb-texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 2 52 16v28L28 58 4 44V16z M28 60 52 74v28L28 116 4 102V74z' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary,
.btn-honey {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nectar) 0%, var(--honey) 55%, var(--honey-deep) 100%) !important;
  border: none !important;
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  box-shadow: 0 10px 22px -8px rgba(196, 118, 0, 0.55);
}

.btn-primary:hover,
.btn-honey:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(196, 118, 0, 0.65);
  color: #fff !important;
}

/* light sweep across the gold buttons */
.btn-primary::after,
.btn-honey::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}

.btn-primary:hover::after,
.btn-honey:hover::after { left: 130%; }

.btn-outline-primary {
  border: 2px solid var(--honey) !important;
  color: var(--honey-deep) !important;
  background: transparent !important;
  padding: 0.55rem 1.6rem;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: linear-gradient(135deg, var(--nectar), var(--honey-deep)) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(196, 118, 0, 0.6);
}

.btn-ghost {
  border: 2px solid rgba(46, 29, 14, 0.18);
  color: var(--ink);
  padding: 0.62rem 1.7rem;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--honey);
  color: var(--honey-deep);
  transform: translateY(-2px);
}

/* ---------- navigation ---------- */

.nav-part {
  background: rgba(253, 249, 240, 0.86) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: none !important;
  border-bottom: 1px solid rgba(93, 64, 12, 0.08);
  transition: box-shadow 0.35s ease, background 0.35s ease;
  z-index: 1030;
}

.nav-part.nav-scrolled {
  box-shadow: 0 12px 32px -18px rgba(93, 64, 12, 0.35) !important;
}

.nav-part img {
  border-radius: 50%;
  box-shadow: 0 4px 12px -4px rgba(93, 64, 12, 0.35);
}

.nav-part .fs-20 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-left: 10px;
  vertical-align: middle;
}

.nacul li a {
  position: relative;
  color: var(--ink);
  padding-bottom: 6px;
}

.nacul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--nectar), var(--honey-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nacul li a:hover { color: var(--honey-deep); }
.nacul li a:hover::after { transform: scaleX(1); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% 18%, rgba(247, 183, 51, 0.22), transparent 60%),
    radial-gradient(700px 420px at 8% 90%, rgba(232, 148, 10, 0.1), transparent 65%),
    var(--cream);
  padding: 96px 0 140px;
}

@media (max-width: 991px) {
  .hero { padding: 56px 0 110px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
  background: rgba(247, 183, 51, 0.16);
  border: 1px solid rgba(232, 148, 10, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--honey);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 148, 10, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(232, 148, 10, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--nectar), var(--honey-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges i { color: var(--honey-deep); font-size: 1.05rem; }

.hero-visual { position: relative; text-align: center; }

.hero-blob {
  position: absolute;
  inset: 4% 6% 6% 6%;
  background: radial-gradient(closest-side, rgba(247, 183, 51, 0.5), rgba(247, 183, 51, 0.12) 65%, transparent);
  border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  animation: blob-morph 12s ease-in-out infinite alternate;
}

@keyframes blob-morph {
  0% { border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 54% 46% 44% 56% / 42% 58% 46% 54%; transform: rotate(4deg) scale(1.05); }
}

.hero-jar {
  position: relative;
  width: min(88%, 520px);
  filter: drop-shadow(0 34px 40px rgba(93, 64, 12, 0.3));
  animation: jar-float 7s ease-in-out infinite;
}

@keyframes jar-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-1.2deg); }
}

.hero-bee {
  position: absolute;
  width: 54px;
  top: 6%;
  left: 8%;
  animation: bee-drift 11s ease-in-out infinite;
  opacity: 0.92;
}

@keyframes bee-drift {
  0%   { transform: translate(0, 0) rotate(-6deg); }
  25%  { transform: translate(46px, -26px) rotate(8deg); }
  50%  { transform: translate(110px, 6px) rotate(-4deg); }
  75%  { transform: translate(40px, 30px) rotate(6deg); }
  100% { transform: translate(0, 0) rotate(-6deg); }
}

/* dripping honey edge at the bottom of the hero */
.hero-drip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  line-height: 0;
}

.hero-drip svg { width: 100%; height: 90px; display: block; }

/* ---------- section titles ---------- */

.section-title { padding: 40px 15px 10px; }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 600 !important;
}

.section-title p {
  color: var(--cocoa);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 12px;
}

/* short drizzle stroke that draws itself in under headings */
.drizzle {
  display: block;
  margin: 14px auto 0;
  width: 96px;
  height: 14px;
}

/* inside a bootstrap .row the svg must claim the full line,
   otherwise it shares a row with the paragraph and sits off to the left;
   the viewBox keeps the stroke itself centered */
.row > .drizzle,
.section-title.row .drizzle {
  width: 100%;
  flex: 0 0 100%;
}

.drizzle path {
  fill: none;
  stroke: var(--honey);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

.rv.in .drizzle path,
.in .drizzle path { animation: drizzle-draw 1.1s 0.35s var(--ease-out) forwards; }

@keyframes drizzle-draw { to { stroke-dashoffset: 0; } }

/* ---------- feature cards (why choose us) ---------- */

.cover {
  background: var(--card);
  border: 1px solid rgba(93, 64, 12, 0.07);
  border-radius: 22px;
  padding: 38px 26px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
    border-color 0.45s ease;
}

.cover:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: var(--ring);
}

.cover img {
  width: 78px;
  padding: 0;
  transition: transform 0.5s var(--ease-out);
}

.cover:hover img { transform: translateY(-6px) rotate(-6deg) scale(1.08); }

.cover h2 { font-size: 1.25rem !important; }
.cover p { font-size: 0.92rem; line-height: 1.65; margin-top: 8px; }

/* ---------- product cards ---------- */

.product {
  position: relative;
  background: var(--card) !important;
  border: 1px solid rgba(93, 64, 12, 0.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft) !important;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
    border-color 0.5s ease;
}

.product:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lift) !important;
  border-color: var(--ring);
}

.p-img {
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff8ea, #fdf3e0);
}

.p-img img {
  width: 100%;
  transition: transform 1.1s var(--ease-out);
}

.product:hover .p-img img { transform: scale(1.07); }

.product h4 {
  font-size: 1.2rem !important;
  transition: color 0.3s ease;
}

.product:hover h4 { color: var(--honey-deep); }

.product .price {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--honey-deep);
}

.product .price small {
  font-family: "Nunito", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cocoa);
  display: block;
  margin-bottom: 2px;
}

.p-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: linear-gradient(135deg, var(--nectar), var(--honey-deep));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(196, 118, 0, 0.6);
}

/* ---------- crave band ---------- */

.crave {
  position: relative;
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(247, 183, 51, 0.16), transparent 60%),
    linear-gradient(140deg, #2a1808, #45280d 55%, #331d09);
  color: #f4e3c2;
  padding: 96px 20px;
  overflow: hidden;
}

.crave h2 {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: #fff6e3;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
}

.crave h2 em {
  font-style: italic;
  color: var(--nectar);
}

.crave p {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(244, 227, 194, 0.85);
  line-height: 1.75;
}

.crave .cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.crave .glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(247, 183, 51, 0.22), transparent);
  top: -160px;
  right: -120px;
  animation: glow-breathe 8s ease-in-out infinite alternate;
}

@keyframes glow-breathe {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.25); opacity: 1; }
}

/* ---------- the grill side (catfish) ----------
   Starts cream like the rest of the page; when scrolled into view the
   .lit class fades the whole scene to charcoal, embers rise and the
   platters emerge. The honey site catches fire for a moment. */

.grill {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 110px 20px 120px;
}

/* the dark scene, held on an overlay so it can fade in as one piece */
.grill::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 20% 0%, rgba(255, 106, 43, 0.14), transparent 60%),
    radial-gradient(700px 420px at 85% 100%, rgba(217, 47, 14, 0.12), transparent 65%),
    linear-gradient(160deg, #191008, #241207 55%, #150c05);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.grill.lit::before { opacity: 1; }

.grill > .container-xl { position: relative; z-index: 2; }

/* drifting smoke */
.grill .smoke {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 236, 214, 0.07), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 2s ease 0.6s;
  z-index: 1;
  pointer-events: none;
}

.grill.lit .smoke { opacity: 1; }
.grill .smoke-1 { top: -10%; left: 4%; animation: smoke-drift 16s ease-in-out infinite alternate; }
.grill .smoke-2 { bottom: -18%; right: 2%; animation: smoke-drift 20s ease-in-out infinite alternate-reverse; }

@keyframes smoke-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(90px, -50px) scale(1.25); }
}

/* embers floating up off the grill */
.grill .embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.grill .embers i {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffc46b, #ff6a2b 60%, transparent);
  opacity: 0;
}

.grill.lit .embers i { animation: ember-rise 7s linear infinite; }

.grill .embers i:nth-child(1) { left: 8%;  animation-delay: 0.2s; }
.grill .embers i:nth-child(2) { left: 22%; animation-delay: 2.8s; width: 4px; height: 4px; }
.grill .embers i:nth-child(3) { left: 37%; animation-delay: 1.4s; }
.grill .embers i:nth-child(4) { left: 52%; animation-delay: 4.1s; width: 6px; height: 6px; }
.grill .embers i:nth-child(5) { left: 66%; animation-delay: 0.9s; width: 4px; height: 4px; }
.grill .embers i:nth-child(6) { left: 79%; animation-delay: 3.3s; }
.grill .embers i:nth-child(7) { left: 91%; animation-delay: 5.2s; width: 4px; height: 4px; }

@keyframes ember-rise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8% { opacity: 0.9; }
  55% { opacity: 0.55; }
  100% { transform: translateY(-92vh) translateX(34px) scale(0.4); opacity: 0; }
}

/* headline block wipes in once lit */
.grill-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }

.grill-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ff9d4d;
  border: 1px solid rgba(255, 157, 77, 0.35);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s var(--ease-out) 0.5s;
}

.grill-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: #fff3e4;
  line-height: 1.15;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease-out) 0.7s, color 1s ease;
}

.grill-head h2 em {
  font-style: italic;
  background: linear-gradient(120deg, #ffc46b, #ff6a2b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grill-head p {
  color: rgba(255, 235, 212, 0.78);
  line-height: 1.75;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 1.1s, transform 0.8s var(--ease-out) 1.1s;
}

.grill.lit .grill-eyebrow,
.grill.lit .grill-head p { opacity: 1; transform: none; }
.grill.lit .grill-head h2 { clip-path: inset(0 0 0 0); }

/* platter cards */
.grill-card {
  background: rgba(255, 244, 230, 0.05);
  border: 1px solid rgba(255, 157, 77, 0.16);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition: opacity 0.9s var(--ease-out) var(--g-delay, 1s),
    transform 0.9s var(--ease-out) var(--g-delay, 1s),
    border-color 0.4s ease, box-shadow 0.4s ease;
}

.grill.lit .grill-card { opacity: 1; transform: none; }

.grill-card:hover {
  border-color: rgba(255, 157, 77, 0.55);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65), 0 0 42px -12px rgba(255, 106, 43, 0.35);
}

.g-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.g-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.grill-card:hover .g-img img { transform: scale(1.07); }

.g-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(21, 12, 5, 0.85), transparent);
}

.g-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, #ffc46b, #e6470e);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(230, 71, 14, 0.6);
}

.g-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.g-body h4 {
  color: #ffe9cd;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.g-body .g-serves {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff9d4d;
  margin-bottom: 10px;
}

.g-body p {
  color: rgba(255, 235, 212, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.g-body .btn-fire { margin-top: auto; }

.btn-fire {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(135deg, #ff9d2e, #e6470e);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.68rem 1.7rem;
  box-shadow: 0 12px 26px -10px rgba(230, 71, 14, 0.65);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(230, 71, 14, 0.75);
}

.btn-fire::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}

.btn-fire:hover::after { left: 130%; }

.grill-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.88rem;
  color: rgba(255, 235, 212, 0.55);
  opacity: 0;
  transition: opacity 1s ease 1.8s;
}

.grill.lit .grill-note { opacity: 1; }

/* ---------- about ---------- */

.about-us .abut-detail p { line-height: 1.85; }

.about-us img {
  border-radius: 24px;
  box-shadow: var(--shadow-lift);
  transition: transform 0.6s var(--ease-out);
}

.about-us img:hover { transform: scale(1.02) rotate(-0.5deg); }

/* ---------- testimonials ---------- */

.serv-cove {
  position: relative;
  border: 1px solid rgba(93, 64, 12, 0.07);
  border-radius: 20px !important;
  box-shadow: var(--shadow-soft) !important;
  height: 100%;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.serv-cove:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift) !important;
}

.t-card { padding: 30px 26px !important; }

.t-card .quote-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--nectar);
  display: block;
  margin-bottom: 6px;
}

.t-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: left !important;
  font-style: normal !important;
}

.t-card .t-who {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(93, 64, 12, 0.18);
}

.t-card .t-who h6 { margin-bottom: 2px; }

.t-card .t-who span {
  font-size: 0.8rem;
  color: var(--honey-deep);
  font-weight: 700;
}

.t-card .stars { color: var(--honey); letter-spacing: 3px; margin-bottom: 10px; }

/* ---------- forms ---------- */

.form-control {
  background-color: #fff !important;
  border: 1.5px solid rgba(93, 64, 12, 0.14);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--honey) !important;
  box-shadow: 0 0 0 4px rgba(232, 148, 10, 0.15) !important;
}

.form-label { font-weight: 700; color: var(--ink); font-size: 0.9rem; }

.testimonial-form {
  max-width: 720px;
}

.testimonial-form form {
  background: #fff;
  border: 1px solid rgba(93, 64, 12, 0.08);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

/* ---------- blog cards ---------- */

#blog .serv-cove { overflow: hidden; }

#blog .serv-cove img {
  transition: transform 0.9s var(--ease-out);
  border-radius: 14px;
}

#blog .serv-cove:hover img { transform: scale(1.05); }

#blog h5 { transition: color 0.3s ease; }
#blog .serv-cove:hover h5 { color: var(--honey-deep); }

/* ---------- inner page banner ---------- */

.page-nav {
  background:
    radial-gradient(800px 300px at 80% 20%, rgba(247, 183, 51, 0.25), transparent 60%),
    var(--cream-2);
  border-bottom: 1px solid rgba(93, 64, 12, 0.08);
}

.page-nav h2 { font-size: 2.2rem; }

/* ---------- footer ---------- */

footer .inner {
  background:
    radial-gradient(700px 300px at 85% 10%, rgba(247, 183, 51, 0.1), transparent 60%),
    linear-gradient(160deg, #2a1808, #1d1004) !important;
  color: #cbb794;
}

footer .inner h4 {
  color: var(--nectar);
  font-size: 1.05rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer .inner a h6 {
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  color: #e8dcc4 !important;
  padding: 4px 0;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

footer .inner a:hover h6 {
  color: var(--nectar) !important;
  transform: translateX(6px);
}

footer .social-icons a {
  transition: transform 0.25s var(--ease-out), opacity 0.25s ease;
}

footer .social-icons a:hover { transform: translateX(6px); }

.copy {
  background-color: #150b02 !important;
  color: #a08a66;
  font-size: 0.85rem;
}

/* ---------- scroll reveal engine ---------- */

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--rv-delay, 0s);
  will-change: opacity, transform;
}

.rv-left { transform: translateX(-40px); }
.rv-right { transform: translateX(40px); }
.rv-zoom { transform: scale(0.92) translateY(14px); }

.rv.in {
  opacity: 1;
  transform: none;
}

/* keep everything visible for users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-jar, .hero-bee, .hero-blob, .crave .glow, .hero-eyebrow .dot { animation: none !important; }
  .drizzle path { stroke-dashoffset: 0; animation: none; }
  .grill .smoke, .grill.lit .embers i { animation: none !important; }
  .grill::before, .grill-card, .grill-eyebrow, .grill-head h2, .grill-head p, .grill-note {
    transition: none;
  }
  html { scroll-behavior: auto; }
}

html { scroll-behavior: smooth; }

@media (max-width: 767px) {
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-badges { gap: 14px; }
  .testimonial-form form { padding: 24px 18px; }
}
