/* ===========================
   CSS RESET & NORMALIZATION
   =========================== */
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, 
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;
}

html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #FAFAFA;
  color: #212A3F;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #FAFAFA;
  color: #212A3F;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
  background: none;
  transition: background .2s cubic-bezier(.4,0,.2,1), color .2s cubic-bezier(.4,0,.2,1);
}
:focus {
  outline: 2px solid #F6D76F;
  outline-offset: 1px;
}

/* ===========================
   LUXURY PREMIUM VARIABLES
   =========================== */
:root {
  --primary: #212A3F;
  --secondary: #4E729A;
  --accent: #F6D76F;
  --accent-dark: #d1b751;
  --background-light: #FAFAFA;
  --background-section: #F5F5F7;
  --border-card: #e7e3da;
  --shadow-soft: 0 2px 10px rgba(33,42,63,0.06), 0 1.5px 4px rgba(33,42,63,0.03);
  --radius: 18px;
  --radius-small: 8px;
  --radius-large: 32px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

p, li, a, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
}
p {
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}

ul, ol {
  margin-bottom: 18px;
}

.content-wrapper ul, .content-wrapper ol {
  padding-left: 18px;
}

/* ===========================
   CONTAINERS & SECTIONS
   =========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background-section);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}
main > section, .content-wrapper > section {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* For proper spacing between content blocks */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  background: #FFF;
  box-shadow: 0 2px 16px rgba(33,42,63,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 110px;
  margin-right: 22px;
}
.logo img {
  max-height: 44px;
  height: 44px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 13px;
  border-radius: var(--radius-small);
  transition: color .18s, background .18s;
  position: relative;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: var(--accent);
  color: #222;
}
.main-nav .cta-primary {
  background: var(--primary);
  color: var(--accent);
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 1rem;
  border: none;
  transition: box-shadow .18s, background .2s, color .2s;
  box-shadow: 0 3px 14px rgba(33,42,63,0.10);
  outline: none;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 7px 26px rgba(246,215,111,0.13);
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius-small);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 52;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 370px;
  height: 100vh;
  background: var(--primary);
  color: var(--accent);
  z-index: 1000;
  box-shadow: -2px 0 34px rgba(33,42,63,0.13);
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.8,.13,.39,.94);
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  font-size: 1.8rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.09);
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 70px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 0;
  border-radius: var(--radius-small);
  transition: background .14s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  padding-left: 10px;
  font-weight: 800;
}

/* MOBILE NAV CONCEAL/SHOW RULES */
@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1081px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===========================
   HERO STYLES
   =========================== */
.hero {
  background: linear-gradient(80deg, #fff, #f8f8f8 80%);
  padding: 40px 0 52px 0;
  box-shadow: 0 4px 32px rgba(246,215,111,0.06);
  margin-bottom: 48px;
  border-bottom: 3px solid var(--accent);
}
.hero .container {
  align-items: flex-start;
  flex-direction: column;
}
.hero .content-wrapper {
  gap: 18px;
}
.hero h1,
.hero p {
  color: var(--primary);
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 13px;
  font-weight: 800;
  line-height: 1.12;
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 36px 0;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

/* ===========================
   CARDS, TESTIMONIALS & FLEX GRID
   =========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.card {
  background: #fff;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 22px;
  min-width: 210px;
  transition: box-shadow .18s, border .18s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 32px rgba(246,215,111,0.17);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.027);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.feature-grid, .service-list, .benefit-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  margin-bottom: 0;
}
.feature, .benefit, .service-item, .team-member {
  background: #fff;
  border: 1px solid var(--border-card);
  box-shadow: 0 2px 16px rgba(33,42,63,0.05);
  border-radius: var(--radius-small);
  padding: 28px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 180px;
  transition: box-shadow .18s, border .16s;
}
.feature:hover, .benefit:hover, .service-item:hover, .team-member:hover {
  box-shadow: 0 12px 34px rgba(246,215,111,0.10);
  border-color: var(--accent);
  z-index: 2;
}
.feature img, .benefit img, .service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 11px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .feature-grid, .service-list, .benefit-grid, .team-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* ARTICLE SNIPPETS - BLOG */
.article-snippet {
  background: #fff;
  border: 1px solid var(--border-card);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-small);
  padding: 24px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  transition: border-color .18s, box-shadow .18s;
}
.article-snippet:hover {
  border-left: 6px solid var(--secondary);
  box-shadow: 0 9px 26px rgba(78,114,154,0.07);
}
.article-snippet h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.article-snippet a {
  color: var(--secondary);
  font-weight: 700;
  margin-top: 8px;
  display: inline-block;
  transition: color .16s;
  border-bottom: 1.5px solid var(--accent);
  border-radius: 0;
}
.article-snippet a:hover {
  color: var(--accent);
  border-bottom: 2.5px solid var(--secondary);
}

/* TEAM LIST */
.team-list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.team-member {
  min-width: 160px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(33,42,63,0.04);
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  transition: box-shadow .16s, border-color .16s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(246,215,111,0.09);
  border-color: var(--accent-dark);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .2px;
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 0.98rem;
    padding: 16px 12px;
  }
}

/* FAQ and three-steps */
.faq-list, .three-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.faq-list li, .three-steps li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 13px;
  border: 1px solid var(--border-card);
  box-shadow: 0 1.5px 4px rgba(33,42,63,0.03);
}
.three-steps img {
  width: 37px;
  height: 37px;
  margin-right: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   CALL TO ACTION BUTTONS
   =========================== */
.cta-primary,
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 999px;
  display: inline-block;
  padding: 13px 32px;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 18px rgba(246,215,111,0.10);
  letter-spacing: .03em;
  transition: background .19s cubic-bezier(.4,0,.2,1), color .19s, box-shadow .17s;
}
.cta-primary {
  background: var(--primary);
  color: var(--accent);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 7px 32px rgba(246,215,111,0.15);
}
.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--accent);
  font-weight: 700;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(246,215,111,0.10);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: row;
  gap: 28px 36px;
  justify-content: space-between;
}
.footer-logo {
  margin-bottom: 22px;
}
.footer-logo img {
  height: 52px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--accent);
  font-size: .99rem;
}

.footer-info p{
	 color: var(--accent);
}
.footer-info img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
  transition: background .18s, box-shadow .18s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--accent-dark);
  box-shadow: 0 4px 12px rgba(246,215,111,0.17);
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.footer-copy {
  width: 100%;
  margin-top: 22px;
  text-align: center;
  font-size: 0.97rem;
  color: var(--accent);
  opacity: 0.85;
}

@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-social {
    margin-top: 0;
    margin-bottom: 14px;
  }
}

/* ===========================
   CONTACT & MAP SECTIONS
   =========================== */
.contact-info, .static-map {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1px solid var(--border-card);
  background: #fff;
  border-radius: var(--radius-small);
  padding: 20px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(78,114,154,0.07);
  font-size: 1.03rem;
}
.contact-info p, .static-map p {
  margin-bottom: 0;
}

.static-map img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/* confirmation page */
.confirmation {
  background: var(--background-section);
  border-radius: var(--radius-large);
  padding: 56px 0;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: var(--primary);
  border-top: 3px solid var(--accent);
  z-index: 3000;
  box-shadow: 0 -3px 38px rgba(246,215,111,0.19);
  padding: 18px 17px 16px 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  opacity: 1;
  transition: opacity .25s cubic-bezier(.56,.04,.38,0.98), transform .27s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1 1 auto;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--primary);
  border: none;
  transition: background .15s, color .15s;
  box-shadow: 0 2px 7px rgba(246,215,111,0.13);
}
.cookie-banner .btn-reject {
  background: #e7e3da;
  color: var(--primary);
}
.cookie-banner .btn-settings {
  background: transparent;
  border: 1.5px solid var(--accent-dark);
  color: var(--primary);
  font-weight: 600;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 9px 14px 13px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 3200;
  left: 0;top: 0;right: 0;bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,42,63,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF;
  border-radius: var(--radius);
  padding: 28px 26px 22px 26px;
  max-width: 400px;
  min-width: 290px;
  color: var(--primary);
  box-shadow: 0 7px 38px rgba(246,215,111,0.17);
  border-top: 5px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalPopIn .37s cubic-bezier(.58,1.25,.47,.99);
  position: relative;
}
@keyframes modalPopIn {
  0% {transform: translateY(55px) scale(.97);opacity: .4;}
  90% {transform: translateY(-2px) scale(1.017);opacity: 1;}
  100% {transform: none;}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-modal label {
  cursor: pointer;
  font-weight: 600;
  margin-right: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  margin-right: 5px;
  width: 17px;
  height: 17px;
}
.cookie-modal .category-desc {
  font-size: 0.92rem;
  color: var(--secondary);
  margin-left: 5px;
  font-weight: 400;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.5rem;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity .15s, color .15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--accent);
  opacity: 1;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 700px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 7px;
    border-radius: var(--radius);
    margin-bottom: 45px;
  }
  main > section, .content-wrapper > section {
    margin-bottom: 32px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.75rem;
  }
  .footer-logo img {
    height: 37px;
  }
  .card, .feature, .benefit, .service-item, .article-snippet {
    padding: 18px 10px !important;
  }
  .hero .content-wrapper {
    gap: 10px;
  }
}

/* ===========================
   UTILITIES & MICROINTERACTIONS
   =========================== */
.shadow-gold {
  box-shadow: 0 6px 32px 0 rgba(246,215,111,0.11);
}
.text-gold {
  color: var(--accent);
}
hr {
  border: none;
  border-top: 2px solid var(--accent-dark);
  margin: 32px 0;
}

::-webkit-scrollbar {
  width: 10px;
  background: #e7e3da;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* ===========================
   TRANSITIONS & ANIMATIONS
   =========================== */
a, button, .cta-primary, .cta-secondary {
  transition: color .17s, background .18s, border .17s, box-shadow .19s;
}
.card, .feature, .service-item, .benefit, .testimonial-card, .article-snippet {
  transition: box-shadow .22s, border-color .18s, transform .15s;
}

/* ===========================
   ENSURE ALL FLEXBOX, NO GRID!
   =========================== */
/* All main layout containers already use display: flex; as required */