/* 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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f9fafb;
  color: #232537;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5,
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #232537;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.25px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5 {
  font-size: 1.1rem;
}
p, ul, ol {
  color: #2e3045;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 400;
}
a:hover, a:focus {
  color: #F9D648;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}

/* LUXURY COLOR PALETTE EXTENSIONS */
:root {
  --primary: #232537;
  --secondary: #A4DCE6;
  --accent: #F9D648;
  --surface: #fff;
  --surface-alt: #f4f6fa;
  --text: #232537;
  --text-light: #606274;
  --gold: #F9D648;
  --premium-shadow: 0 8px 40px 0 rgba(35,37,55,0.06);
  --card-border: #e8e8ef;
  --radius-card: 18px;
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--premium-shadow);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
    border-radius: 13px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  padding: 0;
  width: 100%;
  box-shadow: 0 4px 20px 0 rgba(35,37,55,0.08);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 28px;
  height: 76px;
  justify-content: flex-start;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s;
}
header nav a.cta-btn {
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 22px;
  margin-left: 20px;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 rgba(249, 214, 72, 0.15);
  border: 2px solid var(--gold);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
header nav a.cta-btn:hover, header nav a.cta-btn:focus {
  background: #fff7d3;
  color: var(--primary);
  border-color: #e6bf38;
}
header nav a:hover, header nav a:focus {
  background: rgba(249, 214, 72, 0.22);
  color: var(--accent);
}
header nav img {
  height: 38px;
  width: auto;
  margin-right: 42px;
}

/* Hamburger mobile menu */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 19px;
  z-index: 120;
  background: var(--gold);
  color: var(--primary);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(249, 214, 72, 0.15);
  transition: background 0.2s, color 0.2s;
  align-items: center;
  justify-content: center;
  border: none;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #fff7d3;
  color: var(--primary);
  outline: none;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #232537ee;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1100;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.2,1,.22,1);
  box-shadow: 8px 0 32px 0 rgba(35,37,55,0.14);
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  font-size: 2rem;
  background: none;
  color: var(--gold);
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff7d3;
  color: var(--primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0 0 32px;
  width: 95vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(249, 214, 72, 0.15);
  color: var(--gold);
}

@media (max-width: 992px) {
  header nav {
    gap: 22px;
    padding: 0 12px;
  }
  header nav img {
    margin-right: 20px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 790px) {
  header nav a.cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MAIN SECTIONS GENERAL */
main {
  margin-top: 0;
  margin-bottom: 0;
}
.section, .content-wrapper {
  margin-bottom: 0;
  background: none;
  box-shadow: none;
  padding: 0;
}

/* CARDS AND FLEX LAYOUTS */
.service-cards, .service-list, .post-list, .team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card, .service-detail, .post-teaser, .content-grid > div {
  min-width: 260px;
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--premium-shadow);
  border: 1px solid var(--card-border);
  padding: 28px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: box-shadow 0.23s, transform 0.18s;
}
.service-card span, .service-detail span {
  margin-top: 14px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}
.service-card:hover, .service-detail:hover,
.post-teaser:hover {
  box-shadow: 0 8px 36px 0 rgba(249,214,72,0.11), 0 1.5px 10px 0 rgba(35,37,55,0.08);
  transform: translateY(-3px) scale(1.02);
}

.post-list {
  gap: 24px;
}
.post-teaser {
  margin-bottom: 20px;
}
.post-teaser span {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-top: 4px;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-section > div {
  background: var(--surface-alt);
  border-radius: var(--radius-card);
  box-shadow: var(--premium-shadow);
  border: 1px solid var(--card-border);
  padding: 18px 22px 12px 22px;
  min-width: 184px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--premium-shadow);
  background: var(--surface);
  border: 1px solid var(--card-border);
  position: relative;
  padding: 24px;
}

.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: 18px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 20px 0 rgba(35, 37, 55, 0.07);
  border: 1px solid #edeef2;
  margin-bottom: 20px;
  max-width: 630px;
}
.testimonial-card p {
  color: #232537;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.testimonial-card div {
  color: #6f6e80;
  font-size: 0.97rem;
  font-style: italic;
}

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

@media (max-width: 992px) {
  .service-cards, .service-list, .post-list, .team-section, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .service-card, .service-detail, .post-teaser, .content-grid > div {
    min-width: 190px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .service-cards, .service-list, .post-list, .team-section, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-card, .service-detail, .post-teaser, .team-section > div, .content-grid > div {
    width: 100%;
    min-width: 0;
    padding: 18px 10px;
    margin-bottom: 16px;
  }
  .content-grid {
    gap: 10px;
  }
}

/* UL, OL STYLES */
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
ul li, ol li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  color: #232537;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
ol li {
  counter-increment: ol-list;
  padding-left: 22px;
}
ol {
  counter-reset: ol-list;
}
ol li:before {
  content: counter(ol-list) '.';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.04em;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 13px 36px;
  border-radius: 40px;
  font-weight: 700;
  margin: 22px 0 0 0;
  border: 2px solid var(--gold);
  box-shadow: 0 1.5px 14px 0 rgba(249, 214, 72, 0.12);
  letter-spacing: 0.03em;
  transition: background 0.19s, color 0.17s, box-shadow 0.22s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(249,214,72,0.14);
  border-color: #e6bf38;
  outline: none;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 18px 0;
  margin-top: 64px;
}
footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.95;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--gold);
  color: var(--primary);
}
footer address {
  font-style: normal;
  color: #d0d2e0;
  text-align: center;
  font-size: 0.97rem;
  margin-top: 10px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  footer nav {
    flex-direction: column;
    gap: 7px;
  }
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
  color: #232537;
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 10px;
  }
  .text-section {
    font-size: 0.97rem;
  }
}

/* SPACING UTILITIES */
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 16px; }
.pt-24 { padding-top: 24px; }
.pb-32 { padding-bottom: 32px; }

/* RESPONSIVE FLEX DIRECTION FOR TEXT-IMAGE SECTIONS */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* MODAL OVERLAY (used by cookie settings) */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,34,50,0.42);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(35,37,55,0.20);
  padding: 38px 28px 30px 28px;
  max-width: 380px;
  width: 94vw;
  color: var(--text);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2010;
  animation: modalFadeIn 0.42s cubic-bezier(.19,1,.22,1);
}
@keyframes modalFadeIn {
  0% { transform: scale(0.88); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-modal .category-toggle label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #e9eaff;
  border-radius: 17px;
  position: relative;
  outline: none;
  transition: background 0.22s;
  cursor: pointer;
}
.cookie-modal .toggle-switch:checked {
  background: var(--gold);
}
.cookie-modal .toggle-switch:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 6px 0 rgba(35,37,55,0.12);
  transition: transform 0.23s;
}
.cookie-modal .toggle-switch:checked:before {
  transform: translateX(22px);
}
.cookie-modal .toggle-switch[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gold);
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #fff7d3;
  color: var(--primary);
  border-radius: 30px;
}
.cookie-modal .cookie-action-btns {
  display: flex;
  gap: 19px;
  margin-top: 5px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-action-btns button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--gold);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--gold);
  margin: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-action-btns button:hover, .cookie-modal .cookie-action-btns button:focus {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
  outline: none;
}

/* COOKIE CONSENT BANNER (fixed bottom) */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffaf2;
  color: var(--primary);
  box-shadow: 0 -4px 28px 0 rgba(35,37,55,0.08);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 20px;
  border-top: 2.5px solid var(--gold);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: bannerSlideIn 0.55s cubic-bezier(.31,1.08,.2,1.02);
}
@keyframes bannerSlideIn {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner__text {
  flex: 1 1 auto;
  font-size: 1rem;
  color: var(--primary);
  max-width: 690px;
}
.cookie-consent-banner__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent-banner__actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 9px 20px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--primary);
  transition: background 0.16s, color 0.16s;
  margin-left: 0;
}
.cookie-consent-banner__actions .secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid #dedee0;
  margin-right: 6px;
}
.cookie-consent-banner__actions button:hover, .cookie-consent-banner__actions button:focus {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
  outline: none;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 8px;
  }
  .cookie-consent-banner__actions {
    flex-direction: row;
    width: 100%;
    gap: 9px;
  }
}

/* FORMS, INPUTS (if needed in future) */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #e4e7ee;
  padding: 10px 16px;
  width: 100%;
  transition: border 0.14s;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--gold);
  outline: none;
}

/* MICROINTERACTION ANIMATIONS */
.cta-btn, .service-card, .service-detail, .post-teaser, .testimonial-card,
footer nav a, .service-card span, .cookie-consent-banner, .mobile-menu, .mobile-menu-opened {
  transition: box-shadow 0.22s, background 0.22s, color 0.19s, transform 0.17s;
}

/* HIDE SCROLL ON MOBILE MENU OPEN */
body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}

/* LUXURY DETAILS (subtle gold bar, segment highlight) */
.section h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3.5px;
  background: var(--gold);
  margin: 18px 0 0 0;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .section h2:after {
    width: 42px;
    margin-top: 13px;
    height: 3px;
  }
}

/* VISUAL HIERARCHY & SPACING TUNING */
section:not(:last-child) {
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  section:not(:last-child) {
    margin-bottom: 26px;
  }
}

/* ACCENT GOLD TEXT */
.gold-text, .gold {
  color: var(--gold);
  font-weight: 700;
}

/* PREMIUM SHADOWS (for cards & menus) */
.premium-shadow {
  box-shadow: var(--premium-shadow);
}

/* ENSURE NO FLEX OVERLAP */
.card, .service-card, .service-detail, .testimonial-card, .post-teaser, .team-section > div {
  margin-bottom: 20px;
}

/* DISABLE DRAGGING FOR LOGO */
header nav img {
  user-drag: none;
  user-select: none;
}

/* --------- END OF STYLES --------- */