/* --- CSS RESET & NORMALIZE --- */
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, input, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #212B44;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  padding-left: 24px;
}
button, input, select, textarea {
  font: inherit;
  box-sizing: border-box;
}

/* --- FONT FAMILIES --- */
:root {
  --primary: #212B44;
  --secondary: #42B349;
  --accent: #F2F2F2;
  --gold: #BFA25A;
  --white: #fff;
  --black: #181818;
  --grey-100: #F5F7FA;
  --grey-200: #E9ECEF;
  --grey-300: #CBCED6;
  --grey-400: #7D8399;
  --brand-shadow: 0 4px 24px rgba(33,43,68,0.07);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --transition: 0.25s cubic-bezier(.59,.01,.44,1.13);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm4532VJOt5-QDFQ.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxM.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* --- GENERAL TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--primary);
  line-height: 1.1;
}
@media (min-width: 600px) {
  h1, .h1 {
    font-size: 3.2rem;
  }
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.2;
}
@media (min-width: 600px) {
  h2, .h2 {
    font-size: 2.2rem;
  }
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.25;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--primary);
}
p {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: var(--gold);
  font-weight: 700;
}

/* --- CONTAINER & SECTION LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--brand-shadow);
}

/* --- FLEX LAYOUTS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(33,43,68,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(191,162,90,0.15);
  transform: translateY(-4px) scale(1.018);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 1.5px 8px rgba(191,162,90,0.04);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
  border-left: 5px solid var(--gold);
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(191,162,90,0.17);
  border-left: 7px solid var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(33,43,68,0.09);
}

/* --- HEADER, NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--accent);
  box-shadow: 0 2px 18px rgba(191,162,90,0.045);
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 16px 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
}
.main-nav a {
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 24px;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
  font-size: 1rem;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gold);
  color: var(--white);
}
.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 28px;
  color: var(--primary);
  background: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 12px rgba(191,162,90,0.08);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-left: 15px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--gold);
  box-shadow: 0 6px 18px rgba(66,179,73,0.09),0 1.5px 24px rgba(191,162,90,0.13);
  transform: translateY(-2px) scale(1.035);
}
.btn-primary:active {
  transform: scale(0.98);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  background: var(--gold);
  color: var(--primary);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 160;
  position: relative;
  box-shadow: 0 2px 8px rgba(33,43,68,0.10);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}
@media (max-width: 950px) {
  .main-nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 2400;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(33, 43, 68, 0.87);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.47,.94,.79,1.42);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.40s cubic-bezier(.54,-0.05,.85,1.27), opacity 0.23s linear;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--gold);
  color: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  margin: 26px 30px 4px 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(191,162,90,0.13);
  z-index: 2402;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  margin-top: 38px;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0px;
  transition: border-color .25s, color .25s;
  min-width: 90vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  background: rgba(255,255,255,0.025);
  outline: none;
}
@media (max-width: 450px){
  .mobile-nav{
    padding-left: 16px;
  }
  .mobile-menu-close{
    margin-right: 8px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(91deg, var(--grey-100) 70%, var(--gold) 130%);
  padding: 60px 0 36px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 36px rgba(191,162,90,0.045);
  margin-bottom: 48px;
}
.hero .container {
  min-height: 310px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  color: var(--black);
  margin-bottom: 18px;
}
.hero .btn-primary {
  margin-left: 0;
  font-size: 1.1rem;
}
@media (min-width: 700px) {
  .hero {
    padding: 94px 0 52px 0;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* --- FEATURES, SERVICE, COURSE & NUTRITION LISTS --- */
.feature-grid,
.service-list,
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 16px;
  margin-bottom: 12px;
}
.feature-grid li,
.service-list li,
.course-list li {
  background: var(--white);
  border-radius: var(--radius-md);
  flex: 1 1 290px;
  min-width: 256px;
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 1.5px 8px rgba(191,162,90,0.07);
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
  border: 1.5px solid transparent;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li:hover, .service-list li:hover, .course-list li:hover {
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 22px rgba(191,162,90,0.14);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img, .service-list img, .course-list img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
}
.feature-grid strong, .service-list strong, .course-list strong {
  color: var(--gold);
  font-weight: 700;
}
.feature-grid h3, .service-list h3, .course-list h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

/* --- ABOUT, TEAM, NUTRITION, DETAILS --- */
.text-section {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--primary);
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
  margin-top: 6px;
}
.text-section li {
  margin-bottom: 6px;
  position: relative;
}
.text-section li::before {
  content: '';
  display: inline-block;
  background: var(--gold);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 11px;
  vertical-align: middle;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-top: 24px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1.09rem;
  box-shadow: 0 2px 10px rgba(33,43,68,0.06);
}
.testimonial-card .text-section {
  flex: 1;
}
.testimonial-meta {
  display: block;
  color: var(--grey-400);
  font-size: 0.98rem;
  margin-top: 7px;
}
.testimonial-card img {
  height: 24px;
  margin-left: 2px;
  margin-top: 5px;
}

/* --- CTA SECTION --- */
.cta {
  margin-top: 36px;
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(191,162,90,0.11);
}
.cta h2,.cta p {
  color: var(--primary);
}
.cta .btn-primary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  margin-left: 0;
  margin-top: 24px;
  box-shadow: none;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: var(--primary);
  color: var(--gold);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 18px rgba(191,162,90,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 44px 18px 28px 18px;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
  padding: 3px 0;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  font-size: 0.98rem;
  align-items: flex-start;
}
.footer-contact img {
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 7px;
}
.footer-social a {
  display: block;
  background: var(--white);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 1.5px 7px rgba(191,162,90,0.15);
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--gold);
  box-shadow: 0 4px 14px rgba(191,162,90,0.22);
}
.footer-social img {
  width: 23px;
  height: 23px;
}
@media (max-width: 700px){
  .footer-main { flex-direction: column; gap:26px; }
}

/* --- CONTENT WRAPPER ALIGNMENTS --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 800px){
  .content-wrapper {
    gap: 32px;
  }
}

/* --- PAGE SECTIONS (OVERRIDE FOR SOME SPECIAL PAGES) --- */
.about-short, .about-detail, .team, .nutrition, .privacy, .gdpr, .terms, .cookie-policy, .thank-you, .services-overview, .courses-overview, .contact {
  background: var(--white);
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  padding: 40px 16px;
  box-shadow: 0 2px 12px rgba(191,162,90,0.05);
}

/* --- CONTACT PAGE DETAILS --- */
.text-section.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
  font-size: 1.07rem;
}
.text-section.contact-details span {
  align-items: center;
  display: flex;
  gap: 8px;
  color: var(--primary);
}
.text-section.contact-details img {
  width: 18px;
  margin-right: 5px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3200;
  background: var(--white);
  color: var(--primary);
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -4px 32px rgba(191,162,90,0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 2px solid var(--gold);
  flex-wrap: wrap;
  transition: transform .3s cubic-bezier(.48,.05,.68,.98), opacity .25s linear;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner p {
  flex: 1 1 160px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 9px 20px;
  font-family: var(--font-display);
  border-radius: 22px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--gold);
}
.cookie-btn.cookie-settings {
  background: var(--primary);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--primary);
}

/* --- COOKIE MODAL OVERLAY --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,43,68,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s cubic-bezier(.9,-0.09,.51,1.28);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px rgba(33,43,68,0.11);
  padding: 38px 26px 32px 26px;
  min-width: 310px;
  max-width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 3500;
  animation: cookieModalIn .38s cubic-bezier(.34,.77,.5,1.07);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.85) translateY(42px); opacity: 0; }
  83%{ transform: scale(1.03) translateY(-5px); opacity: 0.92; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1.08rem;
  font-family: var(--font-body);
  color: var(--primary);
  cursor: pointer;
}
.cookie-switch {
  width: 42px;
  height: 22px;
  position: relative;
  display: inline-block;
  margin-right: 4px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--grey-200);
  border-radius: 22px;
  transition: background 0.18s cubic-bezier(.55,.09,.72,1.82);
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--gold);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px;
  bottom: 2.5px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.20s cubic-bezier(.63,-0.16,0.77,1.36);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(19px);
  background: var(--white);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
@media (max-width: 440px) {
  .cookie-modal {
    padding: 19px 7px;
  }
}

/* --- PAGE RESPONSIVE LAYOUTS --- */
@media (max-width: 850px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .service-list, .course-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .section, .about-short, .about-detail, .nutrition, .privacy, .gdpr, .terms, .cookie-policy, .thank-you, .services-overview, .courses-overview, .contact {
    padding: 28px 4px;
    border-radius: var(--radius-md);
  }
  .feature-grid li, .service-list li, .course-list li {
    min-width: 0;
    padding: 22px 10px 16px 10px;
    gap: 8px;
  }
  .hero{
    border-radius: 0 0 18px 18px;
  }
  .footer-main {gap:16px;}
  .footer-contact {gap:11px 14px;}
}
@media (max-width: 700px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* --- VISUAL DETAILS: GOLDFRAMES / MICRO-EFFECTS --- */
.card, .feature-grid li, .service-list li, .course-list li, .testimonial-card, .about-short, .about-detail, .team, .nutrition, .privacy, .gdpr, .terms, .cookie-policy, .thank-you, .services-overview, .courses-overview, .contact {
  border: 1px solid #E8DFCC;
}
.card:hover, .feature-grid li:hover, .service-list li:hover, .course-list li:hover, .testimonial-card:hover {
  border: 1.7px solid var(--gold);
  box-shadow: 0 5px 36px rgba(191,162,90,0.11),0 1.5px 22px rgba(33,43,68,0.08);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* --- SELECTION --- */
::selection {
  background: var(--gold);
  color: var(--primary);
}

/* --- UTILITY: VISIBILITY -- */
.sr-only {
  position: absolute;
  left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* --- FORMS (if present) --- */
input, textarea, select {
  border: 1.2px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  padding: 10px 13px;
  color: var(--primary);
  margin-bottom: 18px;
  outline: none;
  background: var(--white);
  transition: border .22s;
}
input:focus, textarea:focus, select:focus {
  border: 1.2px solid var(--gold);
}
label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--font-display);
  display: block;
}

/* --- ANIMATIONS--- */
.btn-primary, .cookie-btn {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card, .testimonial-card, .feature-item, .cta {
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
}

/* Flashy gold accent line for active/hover nav links for premium feel */
.main-nav a.active,
.main-nav a:focus {
  border-bottom: 3px solid var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1.5px;
}

/* --- END --- */
