/* ==================================================  */
/* == 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F6F2; /* brand accent */
  color: #1A262D;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}

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

:root {
  --color-primary: #274C5E;
  --color-secondary: #6AB08A;
  --color-accent: #F5F6F2;
  --color-gold: #C3A361;
  --color-gold-dark: #AA8736;
  --color-dark: #1A262D;
  --color-white: #fff;
  --color-gray: #DFE1E6;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition: 0.3s cubic-bezier(.5,.04,.32,1.49);
  --shadow-card: 0 4px 24px rgba(39,76,94,0.06), 0 1.5px 4px rgba(195,163,97,0.04);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-accent);
  color: var(--color-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p, ul li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-dark);
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* Visual hierarchy for links in nav/cta/footer */
a.btn-primary, .btn-primary {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-dark);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 48px;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(39,76,94,0.03);
  border: 2px solid var(--color-gold-dark);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
  margin-top: 16px;
}
a.btn-primary:hover, .btn-primary:hover, a.btn-primary:focus, .btn-primary:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 4px 32px rgba(39,76,94,0.08);
  outline: none;
}

/* Simple text links (nav, footer) */
nav a {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.25s, color 0.2s;
  font-size: 1rem;
}
nav a:hover, nav a:focus {
  background: var(--color-gray);
  color: var(--color-primary);
  text-decoration: none;
}

/* ==================================================  */
/* == LAYOUT STRUCTURES ============================= */
/* ==================================================  */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Critical flex patterns (provided) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  flex: 1 1 250px;
  transition: box-shadow 0.24s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(39,76,94,0.14), 0 2px 8px rgba(195,163,97,0.07);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--color-gold);
  color: var(--color-dark);
  transition: box-shadow 0.26s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(39,76,94,0.16), 0 1px 6px rgba(195,163,97,0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Special feature grid for index homepage */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 220px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s, border 0.25s;
  margin-bottom: 20px;
  border: 1.5px solid var(--color-gold);
}
.feature-grid li:hover {
  box-shadow: 0 8px 28px rgba(195,163,97,0.17), 0 3px 10px rgba(39,76,94,0.05);
  border-color: var(--color-gold-dark);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.feature-grid strong {
  font-size: 1.1rem;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 700;
}

/* .service-list for / */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.service-list > div {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 270px;
  min-width: 240px;
}
.service-list h3 {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* For about/team/feature lists */
.section ul, .about ul, .features ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section ul li, .about ul li, .features ul li {
  position: relative;
  font-size: 1rem;
  padding-left: 0;
}
/* === Hero Section === */
.hero {
  padding: 50px 0 42px 0;
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(39,76,94,0.07);
  border-bottom: 2.5px solid var(--color-gold);
  margin-bottom: 42px;
}
.hero h1 {
  color: var(--color-gold-dark);
  text-shadow: 0 2px 8px rgba(39,76,94,0.08);
}
.hero p {
  color: var(--color-primary);
  font-size: 1.2rem;
}
.team-photo-placeholder {
  width: 180px;
  height: 120px;
  border-radius: 18px;
  background: var(--color-gray);
  box-shadow: 0 2px 10px rgba(195,163,97,0.12);
}

.cta {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 20px;
  margin-bottom: 48px;
  padding: 44px 0;
  box-shadow: 0 2px 22px rgba(39,76,94,0.10);
  text-align: center;
}
.cta h2, .cta p {
  color: var(--color-white);
}
.cta .btn-primary {
  margin-top: 18px;
  box-shadow: 0 2px 16px 0 rgba(195,163,97,0.11);
}

/* ============================= */
/* == HEADER/NAVIGATION ======== */
/* ============================= */
header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-gold);
  position: relative;
  z-index: 11;
  box-shadow: 0 4px 26px rgba(39,76,94,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
header img {
  max-height: 45px;
  width: auto;
}
header .btn-primary {
  margin: 0 0 0 9px;
  min-width: 165px;
  box-shadow: 0 4px 14px rgba(195,163,97,0.06);
}

/* Hamburger mobile toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: transparent;
  border-radius: 10px;
  padding: 4px 14px 4px 10px;
  margin-left: 10px;
  border: 2px solid transparent;
  transition: border 0.2s, color 0.2s, background 0.2s;
  z-index: 23;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-gold);
  border-color: var(--color-gold-dark);
  color: var(--color-dark);
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(39,76,94,0.97);
  box-shadow: 0 4px 36px rgba(39,76,94,0.18);
  transform: translateX(-100vw);
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.7,.05,.36,1.09), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.4rem;
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 112;
  border-radius: 10px;
  padding: 2px 13px 4px 8px;
  transition: background 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-gold);
  color: var(--color-dark);
  outline: none;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 120px 36px 48px 36px;
  align-items: flex-start;
}
.mobile-menu .mobile-nav a {
  color: var(--color-white);
  background: transparent;
  font-size: 1.22rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 0;
  border-radius: 6px;
  border-bottom: 1px solid rgba(245,246,242,0.07);
  transition: color 0.18s, background 0.18s;
  min-width: 240px;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* ============================= */
/* == FOOTER =================== */
/* ============================= */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px 0 0 0;
  border-radius: 30px 30px 0 0;
  margin-top: 52px;
  box-shadow: 0 -4px 34px rgba(39,76,94,0.12);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 18px 30px 18px;
}
footer nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 4px 12px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  border-radius: 8px;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
footer img {
  max-height: 42px;
  display: block;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
  font-size: 0.97rem;
  color: var(--color-gold);
  margin-top: 8px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 0;
}
.footer-contact img {
  height: 18px; width: 18px; opacity: 0.95;
  margin-right: 3px;
}
.footer-contact a {
  color: var(--color-gold);
  text-decoration: underline;
  font-size: 1em;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-white);
}

/* =========================== */
/* == TABLE ================= */
/* =========================== */
table {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(39,76,94,0.09);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
}
table caption {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2em;
  padding: 10px 0 4px 0;
}
table th, table td {
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
}
table th {
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 700;
  border-bottom: 2px solid var(--color-gold);
}
table tr:nth-child(even) td {
  background: var(--color-gray);
}
table tr td {
  border-bottom: 1px solid var(--color-accent);
}

/* =========================== */
/* == TESTIMONIALS & REVIEWS = */
/* =========================== */
.testimonials {
  margin-bottom: 56px;
}
.testimonials h2 {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 2rem;
}
.testimonial-card span, .testimonial-card strong {
  color: var(--color-secondary);
  font-size: 1.05rem;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.testimonial-card span {
  font-weight: 600;
  font-family: var(--font-body);
}
.testimonials ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.testimonials .testimonial-card {
  min-width: 230px;
  max-width: 480px;
  flex: 1 1 290px;
  margin-bottom: 0;
  margin-right: 0;
}
.testimonials .testimonial-card span {
  color: var(--color-gold-dark);
}
.testimonials .testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card > span {
  font-size: 1.15em;
  color: var(--color-gold-dark);
}

/* =========================== */
/* == UTILITY ================ */
/* =========================== */
.address-block {
  font-size: 1.06em;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(39,76,94,0.08);
  padding: 22px 24px 18px 24px;
  margin-top: 17px;
}
.address-block a {
  color: var(--color-primary);
  text-decoration: underline;
}
.address-block a:hover, .address-block a:focus {
  color: var(--color-gold-dark);
}

/* ============================ */
/* == COOKIE CONSENT BANNER ==== */
/* ============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 -2px 27px rgba(39,76,94,0.09);
  z-index: 2222;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 18px 18px 18px;
  gap: 32px;
  font-size: 1em;
  animation: cookie-slide-up 0.50s cubic-bezier(.45,.45,.32,1) 1;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0;}
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  max-width: 520px;
  color: var(--color-dark);
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner button {
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-gold);
  color: var(--color-dark);
  border: 2px solid var(--color-gold-dark);
  transition: background 0.23s, color 0.23s, border 0.22s;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.cookie-consent-banner .cookie-settings {
  background: var(--color-secondary);
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}
.cookie-consent-banner .cookie-reject {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.cookie-consent-banner .cookie-reject:hover, 
.cookie-consent-banner .cookie-reject:focus{
  background: var(--color-gold-dark);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

/* ==== COOKIE MODAL ======= */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39,76,94,0.73);
  z-index: 2225;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.7,.04,.36,1.1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 24px;
  box-shadow: 0 6px 48px 0 rgba(39,76,94,0.12);
  min-width: 315px;
  max-width: 96vw;
  padding: 42px 32px 32px 32px;
  position: relative;
  animation: modal-popup 0.35s cubic-bezier(.39,1.65,.38,.98) 1;
}
@keyframes modal-popup {
  from { transform: translateY(80px) scale(.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.20rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.cookie-modal .cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
.cookie-modal .cookie-pref-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-gray);
  border-radius: 13px;
  padding: 11px 14px;
}
.cookie-modal label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-modal .cookie-pref-desc {
  font-size: .95em;
  color: var(--color-dark);
  font-weight: 400;
  margin-left: 10px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: var(--color-gold-dark);
  border-radius: 26px;
  transition: background 0.20s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 3px rgba(39,76,94,0.11);
}
.cookie-modal .switch input:checked + .slider {
  background-color: var(--color-secondary);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
/* Essential cookies always enabled */
.cookie-modal .switch input[disabled] + .slider {
  background-color: var(--color-primary);
  opacity: 0.56;
  cursor: default;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-modal .cookie-modal-buttons button {
  padding: 12px 26px;
  border-radius: 40px;
  background: var(--color-gold);
  color: var(--color-dark);
  border: 2px solid var(--color-gold-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-modal-buttons .cancel {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.cookie-modal .cookie-modal-buttons .cancel:hover,
.cookie-modal .cookie-modal-buttons .cancel:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--color-gold-dark);
  font-size: 2rem;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
  z-index: 3;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* ============================ */
/* == RESPONSIVE DESIGN ======= */
/* ============================ */
@media (max-width: 1100px) {
  .container { max-width: 92vw; }
  .footer-contact { min-width: 180px; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .content-wrapper { gap: 17px; }
  .feature-grid {
    gap: 15px;
  }
}

@media (max-width: 820px) {
  .feature-grid, .card-container, .testimonials ul, .service-list {
    flex-direction: column;
    gap: 0;
  }
  .feature-grid li,
  .card,
  .service-list > div,
  .testimonials .testimonial-card {
    max-width: 99vw;
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1 1 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .content-grid { flex-direction: column; gap: 12px; }
  .section { margin-bottom: 38px; padding: 28px 8px; }
  .hero { padding: 30px 0 30px 0; margin-bottom: 28px; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 9px; }
  .cta { padding: 28px 8px; margin-bottom: 24px; border-radius: 18px; }
  .card { padding: 18px 12px; border-radius: 13px; }
  .feature-grid li, .service-list > div, .testimonial-card { padding: 15px 10px; border-radius: 10px; }
  .testimonial-card { border-left-width: 4px; }
  .team-photo-placeholder { width: 99vw; height: 98px; }
  /* Responsive flex containers */
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 640px) {
  html { font-size: 14px; }
  .container { padding: 0 7px; }
  .footer-contact { font-size: 0.95em; }
  .address-block { padding: 12px 5px 8px 9px; }
  .cta .btn-primary { min-width: 166px; }
  .cookie-consent-banner { flex-direction: column; gap: 14px; padding: 19px 8px 14px 8px; font-size: 0.97em; }
}

@media (max-width: 570px) {
  header .container, footer .container { padding: 9px 5px; gap: 5px; }
  header .btn-primary { min-width: 120px; padding: 11px 19px; font-size: 0.95em; }
}
@media (max-width: 520px) {
  .card, .testimonial-card, .feature-grid li, .service-list > div {
    padding: 8px 5px;
  }
  .hero { padding: 14px 0 14px 0; margin-bottom: 15px; }
}

/* =================== */
/* == MOBILE NAV ==== */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* =================== */
/* == MISCELLANEOUS == */
hr {
  border: none;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.13;
  margin: 28px 0;
  width: 100%;
}
::-webkit-input-placeholder { color: #A1B0B9; }
::-moz-placeholder          { color: #A1B0B9; }
:-ms-input-placeholder      { color: #A1B0B9; }
::placeholder              { color: #A1B0B9; }

/* =================== */
/* == MICROINTERACTIONS */
.btn-primary, nav a, .feature-grid li, .card, .testimonial-card,
.mobile-menu-toggle, .mobile-menu-close, .cookie-consent-banner button, 
.cookie-modal .cookie-modal-buttons button {
  transition: box-shadow .24s, background .23s, color .21s, border .14s, transform .15s;
}
.card:active, .feature-grid li:active, .testimonial-card:active {
  transform: translateY(2px) scale(.99);
}
.section, .hero, .cta {
  /* Fade-in effect */
  animation: fadein 0.6s linear 1;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =================== */
/* == PRINT ========= */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}

/* ================ End of style.css =============== */
