/* -------------------------------------------------- */
/* CSS RESET & BASE                                    */
/* -------------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  background: none;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F9F6F2;
  color: #2a2a2a;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul,ol {
  list-style: none;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
:focus-visible {
  outline: 2px solid #BFA34C;
  outline-offset: 2px;
}

/* -------------------------------------------------- */
/* BRAND COLORS, FONTS & LUXURY PREMIUM STYLE         */
/* -------------------------------------------------- */
:root {
  --primary: #825834;          /* dark brown */
  --secondary: #498D61;        /* emerald green */
  --accent: #F9F6F2;           /* off-white */
  --gold: #BFA34C;
  --text: #2A2A2A;
  --muted: #70665b;
  --shadow: 0 2px 12px rgba(130, 88, 52, 0.08),0 1.5px 7px rgba(191, 163, 76,0.05);
  --shadow-hover: 0 6px 24px rgba(130, 88, 52,.13),0 2px 14px rgba(191, 163, 76,0.12);
  --radius-lg: 18px;
  --radius: 10px;
  --maxw: 1100px;
  --transition: all 0.24s cubic-bezier(.5, 0, .25, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--accent);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: .01em;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4, h5, h6 { font-size: 1.1rem; }

p,li,label,
input,button,span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}
strong,
b {
  color: var(--primary);
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section { margin-bottom: 20px; }

/* -------------------------------------------------- */
/* HEADER & NAVIGATION                                */
/* -------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(176,157,108,0.07);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 14px;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.logo-link img {
  height: 54px;
  transition: transform .2s;
}
.logo-link:hover img {
  transform: scale(1.07) rotate(-2deg);
}
.main-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-navigation a {
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 7px 9px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.main-navigation a:hover, .main-navigation a:focus {
  color: var(--primary);
  background: rgba(191,163,76, .07);
  box-shadow: 0 1px 0 0 var(--gold);
}
.cta-btn {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: .014em;
  padding: 13px 30px;
  border-radius: var(--radius-lg);
  margin-left: 18px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
  transition: var(--transition), box-shadow 0.21s;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  text-shadow: 0 1px 7px rgba(191,163,76,0.07);
}

/* ---------- MOBILE NAVIGATION ----------- */
.mobile-menu-toggle {
  display: none;
  color: var(--gold);
  background: #fff;
  border-radius: 50%;
  font-size: 2rem;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  box-shadow: 0 0 0 1.5px var(--gold);
  margin-left: 25px;
  z-index: 1101;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--gold);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 10px 40px rgba(191,163,76,.13);
  z-index: 2100;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.6,.04,.17,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: var(--gold);
  margin: 22px 26px 16px 0;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--gold);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-left: 30px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.19rem;
  letter-spacing: .02em;
  padding: 12px 0 12px 2px;
  color: var(--primary);
  border-radius: var(--radius);
  transition: background .17s, color .17s;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(191,163,76, .11);
  color: var(--secondary);
}

@media (max-width: 1100px) {
  .main-navigation {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .main-navigation a {
    font-size: .97rem;
    padding: 6px 7px;
  }
  .cta-btn {
    font-size: .96rem;
    padding: 12px 20px;
  }
}
@media (max-width: 760px) {
  .main-navigation {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -------------------------------------------------- */
/* HERO & SECTION STYLES                              */
/* -------------------------------------------------- */
.hero {
  background: linear-gradient(98deg, #fff 70%, #fcf5e2 100%);
  padding: 60px 0 60px 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 6px 30px rgba(191,163,76,0.08);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 0;
  letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(191,163,76,0.09);
}
.hero p {
  color: var(--muted);
  font-size: 1.19rem;
  margin-bottom: 18px;
}

.section {
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--gold);
}
.features, .services {
  background: #fff;
  box-shadow: var(--shadow);
}
.features ul, .features .category-list ul {
  padding-left: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 0;
}
.features ul li, .category-list ul li {
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.features ul li::before, .category-list ul li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1.38;
}

/* SERVICES CARDS (services, service-card, service-list) */
.service-list, .spotlight-recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 28px 0;
}
.service-card, .recipe-card, .tip-item {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  transition: var(--transition), box-shadow 0.18s;
}
.service-card:hover, .recipe-card:hover, .tip-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.015);
  border-left: 4px solid var(--secondary);
}
.service-card .price, .recipe-card .price {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13rem;
  margin-top: 7px;
}
.service-list li {
  margin-bottom: 12px;
  font-size: 1.06rem;
}

.spotlight-recipe-cards {
  flex-wrap: wrap;
  gap: 24px;
}

/* CARD CONTAINERS (flex) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: var(--transition), box-shadow .19s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TESTIMONIALS */
.testimonials {
  background: #fbfaf7;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
  padding-bottom: 30px;
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 340px;
  flex: 1 1 240px;
  transition: var(--transition);
}
.testimonial-card p {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.04rem;
}
.testimonial-author {
  display: block;
  color: var(--muted);
  font-size: .98rem;
  font-style: italic;
  margin-top: 4px;
}
.review-highlights ul {
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
}
.review-highlights li {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.01rem;
  background: #f7f2e5;
  border-radius: var(--radius);
  padding: 8px 16px;
  margin-bottom: 12px;
  border-left: 3px solid var(--gold);
}

/* -------------------------------------------------- */
/* FAQ / ACCORDION & TIPS                             */
/* -------------------------------------------------- */
.faq-accordion {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #f4efd6;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(191,163,76,.05);
}
.faq-accordion h3 {
  color: var(--secondary);
  font-size: 1.14rem;
  margin-bottom: 10px;
}
.faq-accordion > div {
  margin-bottom: 7px;
}
.faq-accordion strong {
  font-weight: 700;
  color: var(--primary);
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tip-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 13px 18px 16px;
}

/* -------------------------------------------------- */
/* SPECIAL CALLOUTS, BADGES, TAGS, & BOXES           */
/* -------------------------------------------------- */
.tag-cloud {
  margin: 14px 0 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag-cloud span {
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  padding: 5px 18px;
  font-size: .99rem;
  box-shadow: var(--shadow);
}

.callout-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0 0;
}
.callout-box {
  background: #f8eccc;
  border-left: 4px solid var(--gold);
  color: var(--primary);
  font-size: 1.03rem;
  border-radius: var(--radius);
  padding: 17px 24px;
  min-width: 240px;
  box-shadow: 0 2px 8px rgba(191,163,76,0.08);
  flex: 1 1 210px;
}

.settings-cta .cta-btn {
  margin-top: 12px;
}

/* -------------------------------------------------- */
/* TABLE STYLING (pricing-table, etc.)                */
/* -------------------------------------------------- */
.pricing-table {
  margin-top: 18px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(191,163,76,.085);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-table thead {
  background: #f8eccc;
}
.pricing-table th, .pricing-table td {
  padding: 13px 17px;
  text-align: left;
  border-bottom: 1px solid #ede9cf;
}
.pricing-table th {
  font-size: 1.02rem;
  color: var(--primary);
  font-family: var(--font-display);
}
.pricing-table td {
  font-family: var(--font-body);
  color: var(--muted);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* -------------------------------------------------- */
/* FOOTER STYLES                                      */
/* -------------------------------------------------- */
footer {
  background: linear-gradient(95deg, #fff 70%, #fcf5e2 100%);
  border-top: 3px solid var(--gold);
  padding: 28px 0 13px 0;
  box-shadow: 0 -2px 18px rgba(191,163,76,0.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-navigation {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: var(--muted);
  font-size: .98rem;
  font-family: var(--font-body);
  transition: color .16s;
  padding: 6px 8px;
  border-radius: var(--radius);
}
.footer-navigation a:hover {
  color: var(--primary);
  background: rgba(191,163,76,.06);
}
.footer-social-links {
  margin: 6px 0 7px 0;
  display: flex;
  gap: 15px;
}
.footer-social-links a img {
  height: 28px;
  width: 28px;
  transition: transform .19s, filter .18s;
  filter: grayscale(60%) brightness(0.8);
}
.footer-social-links a:hover img,
.footer-social-links a:focus img {
  transform: scale(1.17) rotate(-6deg);
  filter: grayscale(0%) brightness(1.06);
}
.footer-copy {
  color: var(--muted);
  font-size: .98rem;
  margin-top: 4px;
}

/* -------------------------------------------------- */
/* FORMS & INPUTS                                     */
/* -------------------------------------------------- */
input[type="text"],input[type="email"],textarea {
  background: #f8f8f4;
  border: 1.5px solid #eee3ca;
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--primary);
  padding: 12px 14px;
  margin-top: 7px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 2px 5px rgba(191,163,76, 0.03);
  transition: border .13s;
}
input[type="text"]:focus,textarea:focus {
  border: 1.5px solid var(--gold);
  outline: 0;
}
label {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 3px;
}
button[type="submit"], .cta-btn {
  cursor: pointer;
}

/* -------------------------------------------------- */
/* TABLE RESPONSIVENESS                               */
/* -------------------------------------------------- */
@media (max-width: 600px) {
  .pricing-table table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table td {
    border-bottom: 1px solid #ede9cf;
    padding: 10px 12px;
  }
}

/* -------------------------------------------------- */
/* LEGAL PAGES, SUCCESS, ETC.                         */
/* -------------------------------------------------- */
.legal {
  background: #fff;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.success {
  background: #f9f6f2;
  padding: 60px 0 60px 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 16px rgba(191,163,76,0.04);
}
.success h1 {
  color: var(--secondary);
}

/* -------------------------------------------------- */
/* COOKIE BANNER & COOKIE SETTINGS MODAL              */
/* -------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffdf7;
  color: var(--text);
  box-shadow: 0 -3px 30px rgba(191,163,76,0.13);
  border-top: 2.5px solid var(--gold);
  padding: 20px 26px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 9000;
  transition: transform 0.32s cubic-bezier(.6,.04,.16,1), opacity 0.34s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner-message {
  font-size: .99rem;
  flex: 1 1 190px;
  color: var(--muted);
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: var(--font-display);
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 1.01rem;
  padding: 9px 16px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
  margin-left: 0;
}
.cookie-btn:focus, .cookie-btn:hover,
.cookie-settings-btn:focus, .cookie-settings-btn:hover {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
}
.cookie-settings-btn {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-settings-btn:hover {
  background: var(--gold);
  color: #fff;
}

.cookie-modal-backdrop {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,32,10,0.20);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .19s;
}
.cookie-modal-backdrop.open {
  pointer-events: auto;
  opacity: 1;
}

.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--gold);
  box-shadow: 0 8px 36px rgba(191,163,76, .18);
  padding: 36px 26px 30px 26px;
  max-width: 420px;
  width: 94vw;
  margin: 0 10px 24px 10px;
  transform: translateY(60px);
  transition: transform 0.32s cubic-bezier(.6,.04,.17,1);
  position: relative;
  z-index: 99999;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.cookie-categories {
  margin: 18px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
  font-size: .98rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--gold);
}
.cookie-category.required label {
  color: var(--muted);
}
.cookie-modal-close {
  position: absolute;
  top: 21px;
  right: 19px;
  background: none;
  color: var(--gold);
  font-size: 1.9rem;
  border-radius: var(--radius);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 5;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--gold);
  color: #fff;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
  flex-wrap: wrap;
}
.cookie-modal-action {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.01rem;
  padding: 8px 20px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}
.cookie-modal-action:hover, .cookie-modal-action:focus {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
}

/* -------------------------------------------------- */
/* RESPONSIVENESS                                     */
/* -------------------------------------------------- */
@media (max-width: 980px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .service-list, .spotlight-recipe-cards, .testimonial-list, .tips-grid, .callout-boxes, .review-highlights ul {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.30rem; }
  .hero, .section, .legal {
    padding: 24px 6px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 5px;
  }
  .callout-box,
  .service-card,
  .recipe-card,
  .tip-item {
    min-width: unset;
    padding: 18px 10px;
  }
  .contact .content-wrapper, .section .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 4px;
  }
  .testimonial-list, .review-highlights ul {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .hero, .section, .legal {
    padding: 17px 0px;
    margin-bottom: 34px;
  }
  .pricing-table {
    margin-top: 8px;
  }
  input, textarea {
    font-size: .9rem;
  }
}
@media (max-width: 450px) {
  .footer-navigation {
    flex-direction: column;
    gap: 7px;
  }
}

/* -------------------------------------------------- */
/* ANIMATIONS & TRANSITIONS                           */
/* -------------------------------------------------- */
.cta-btn,
.service-card, .recipe-card, .testimonial-card, .tip-item,
.callout-box, .footer-social-links a img {
  transition: transform .17s, box-shadow .19s, border .17s, color .2s;
}
.section, .features, .services {
  transition: box-shadow .18s, background .19s;
}

/* Micro-interaction for cards */
.card:hover, .service-card:hover, .recipe-card:hover, .tip-item:hover {
  transform: translateY(-2px) scale(1.02);
}

/* -------------------------------------------------- */
/* UTILS                                              */
/* -------------------------------------------------- */
.hide { display: none !important; }
.d-block { display: block !important; }
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* -------------------------------------------------- */
/* END                                                */
/* -------------------------------------------------- */
