/* ========================= 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, 
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 {
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #f3f3f6;
  color: #222233;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A1F3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #C4A045; }

ul, ol {
  list-style-position: inside;
}


/* ================= LUXURY PREMIUM VARIABLES ================= */
:root {
  --color-primary: #1A1F3B;
  --color-secondary: #46A29F;
  --color-accent: #F5F5F5;
  --color-main-bg: #fafafd;
  --color-gold: #C4A045;
  --color-font-head: #1A1F3B;
  --color-font-body: #222233;
  --shadow-xl: 0 8px 48px 0 rgba(26,31,59,0.13);
  --shadow-s: 0 2px 8px 0 rgba(26,31,59,0.08);
  --radius: 16px;
  --radius-s: 8px;
}

/* ================ TYPOGRAPHY ================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--color-font-head);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 { font-size: 1.1rem; }

p, li, ul, ol { font-family: 'Roboto', 'Segoe UI', Arial, sans-serif; }
p { font-size: 1.05rem; margin-bottom: 16px; color: var(--color-font-body); }

strong, b { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  flex: 1 1 100%;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ====================== HEADER & NAV ====================== */
header {
  background: #fff;
  box-shadow: var(--shadow-s);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.logo img { height: 44px; width: auto; display: block; }

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-font-head);
  padding: 8px 10px;
  border-radius: var(--radius-s);
  transition: background 0.13s, color 0.13s;
  position: relative;
}
nav a:hover, nav a.active {
  color: var(--color-gold);
  background: #f8f6ef;
}

.cta.primary {
  background: var(--color-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius);
  padding: 12px 32px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-s);
  border: none;
  display: inline-block;
  transition: background 0.2s, color 0.15s, box-shadow 0.2s;
  margin-left: 24px;
  letter-spacing: 0.04em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #b49437;
  color: #fff;
  box-shadow: 0 2px 12px rgba(196,160,69,0.21);
  text-decoration: none;
}
.cta.secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 10px;
  letter-spacing: 0.04em;
  transition: background 0.19s, color 0.15s, border-color 0.2s;
  box-shadow: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  box-shadow: 0 2px 12px rgba(196,160,69,0.11);
  text-decoration: none;
}

/* ================= MOBILE MENU ==================*/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1060;
  margin-left: 16px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 410px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px rgba(26,31,59,0.09);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 16px 18px 6px 0;
  cursor: pointer;
  z-index: 1120;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
  padding: 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid #F0EADF;
  letter-spacing: 0.01em;
  transition: background 0.13s, color 0.12s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--color-gold);
}

/* =========== HERO / PROMO =========== */
.hero {
  background: linear-gradient(135deg, #faf8ef 60%, #ede9db 100%);
  padding: 46px 0 44px 0;
  margin-bottom: 60px;
  border-bottom: 3px solid #ede0bc;
  box-shadow: 0 16px 48px 0 rgba(194, 189, 160, 0.06);
}
.hero .container {
  padding-top: 18px;
  padding-bottom: 18px;
}
.hero h1 {
  color: var(--color-primary);
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 30px;
  color: #413611;
}

/* =========== FLEX LAYOUTS =========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-s);
  border-radius: var(--radius);
  padding: 28px 26px 22px 26px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px) scale(1.015);
}
.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: center;
  gap: 20px;
  background: #fff;
  padding: 20px 32px;
  border-radius: var(--radius);
  box-shadow: 0 3px 20px rgba(200, 200, 180, 0.10);
  margin-bottom: 20px;
  border-bottom: 3px solid var(--color-gold);
  min-width: 0;
}
.testimonial-card p {
  color: #2A2A2A;
  font-style: italic;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: #6e5f34;
  font-size: 0.98rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--radius);
  background: #fff;
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-s);
  min-width: 220px;
  flex: 1 1 220px;
  border-bottom: 3px solid var(--color-gold);
  transition: box-shadow 0.18s, background 0.14s;
}
.feature-item img {
  height: 38px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px #f6e6ac44);
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.19rem;
  margin-bottom: 7px;
}
.feature-item p {
  margin-bottom: 2px;
}
.feature-item:hover {
  box-shadow: var(--shadow-xl);
  background: #f9f6ed;
}

/* ================ FOOTER ================ */
footer {
  background: #181A24;
  color: #dfd8c7;
  padding: 48px 0 36px 0;
  margin-top: 60px;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 1 210px;
}
.footer-brand img {
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 10px #ba9b3719;
  background: #fff;
}
.footer-brand span {
  color: #f8e0a2;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.00rem;
  font-weight: 500;
}
.footer-nav, .footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  color: #dfd8c7;
  background: transparent;
  padding: 3px 0px;
  border-radius: 7px;
  font-size: 1.01rem;
  transition: color 0.13s;
}
.footer-nav a:hover { color: var(--color-gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
  color: #e6dcc3;
}
.footer-contact img {height: 19px; width: 19px; display: inline-block; vertical-align: middle; margin-right: 5px; filter: grayscale(40%);}
.footer-social a img {
  filter: grayscale(86%) sepia(9%) brightness(1.1);
  height: 23px;
  transition: filter 0.2s, transform 0.2s;
}
.footer-social a:hover img { filter: grayscale(10%) sepia(14%) brightness(1.2) drop-shadow(0 2px 4px #bca24333); transform: scale(1.17); }


/* =============== BLOG ARTICLE TEASERS ============== */
.blog-teasers, .project-highlights, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-article, .project-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: 24px 22px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.blog-article h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.blog-teasers .cta.secondary {
  margin-top: 14px;
}
.blog-featured {
  background: #ece8e0;
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-s);
  box-shadow: 0 1px 8px #e6e0c055;
  padding: 17px 16px;
  margin-bottom: 20px;
  font-size: 1.03rem;
}

/* =============== FORMS (placeholder) =============== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  margin-bottom: 18px;
  border-radius: var(--radius-s);
  border: 1px solid #bdbdbd;
  transition: border-color 0.2s, box-shadow 0.15s;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 4px #ecd17d99;
}

/* =========== SERVICE & FEATURE GRIDS ============ */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: 26px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  border-bottom: 3px solid var(--color-gold);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, transform .16s, background .16s;
}
.service-item img {
  height: 40px;
  margin-bottom: 12px;
}
.service-item h2 {
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.service-item p { font-size: 1.02rem; }
.service-item:hover {
  box-shadow: var(--shadow-xl);
  background: #f9f6ed;
  transform: translateY(-2px) scale(1.012);
}

/* =============== CONTACT PAGE =============== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px 16px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-s);
  font-size: 1.06rem;
}
.contact-info a {
  color: var(--color-gold);
  transition: color 0.13s;
  text-decoration: underline;
}
.contact-info a:hover { color: #c29331; }

.map {
  background: #f8f6ee;
  border-radius: var(--radius);
  padding: 20px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px #e6e0c048;
  font-size: 1.06rem;
}

/* =========== THANK YOU PAGE ========== */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you h1 {
  color: var(--color-gold);
  margin-bottom: 18px;
}
.thank-you .next-steps {
  margin-bottom: 23px;
}

/* =========== LEGAL/PRIVACY POLICY ============= */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: 32px 18px 24px 22px;
  margin-bottom: 60px;
}
.legal h1, .legal h2 { color: var(--color-primary); }
.legal a {
  color: var(--color-secondary);
  border-bottom: 1px solid #b2ccc9;
  font-weight: 500;
  transition: color 0.17s;
}
.legal a:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }

/* =========== CTA BLOCKS ========== */
section.cta {
  background: linear-gradient(92deg, #fffdec 70%, #fef9ed 100%);
  border-bottom: 2px solid #efdfbc;
  box-shadow: 0 8px 56px 0 #eadaae06;
  margin-bottom: 60px;
  padding: 38px 0 38px 0;
}
section.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
section.cta h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 16px;
}

/* =========== GENERIC UTILITIES ========== */
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 1130px) {
  .container { max-width: 960px; padding-left: 13px; padding-right: 13px; }
}
@media (max-width: 900px) {
  header .container, footer .container { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .footer-brand span { font-size: 0.98rem; }
  .content-wrapper, .section { padding-left: 5px; padding-right: 5px; }
  .hero { padding: 30px 0 18px 0; }
  nav, .footer-nav, .footer-social { gap: 10px; }
  .feature-grid, .service-list, .blog-teasers, .project-list, .project-highlights, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    display: none;
  }
  .cta.primary { margin-left: 4px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.1rem; }
  .container { padding-left: 4px; padding-right: 4px; }
  section.cta, .section { padding: 28px 0; }
  .footer-brand span { font-size: 0.91rem; }
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 9999;
  background: #181A24;
  color: #f4ecc8;
  padding: 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  box-shadow: 0 -12px 40px rgba(130,105,8,0.08);
  font-size: 1.04rem;
  transition: transform .5s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.closed {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 300px;
  min-width: 0;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 12px 22px;
  border-radius: var(--radius-s);
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #b69e3720;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: #fff;
}
.cookie-btn.accept:hover { background: #b49437; }
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-gold);
}
.cookie-btn.reject:hover { background: #f9f6ed; color: var(--color-gold); }
.cookie-btn.settings {
  background: transparent;
  color: #f4ecc8;
  border: 1px solid #bdb195;
  box-shadow: none;
}
.cookie-btn.settings:hover { background: #2c240e; border: 1.5px solid var(--color-gold); color: var(--color-gold); }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
    gap: 13px;
  }
  .cookie-banner .cookie-text { margin-right: 0; }
}

/* ============= COOKIE MODAL ============= */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  top:0;left:0;right:0;bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,22,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .34s;
}
.cookie-modal-overlay.closed { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 38px 30px 30px 32px;
  min-width: 300px;
  max-width: 96vw;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.04rem;
  position: relative;
  animation: modalAppear .5s cubic-bezier(.59,0,.12,1);
}
@keyframes modalAppear { from{ opacity:0; transform: scale(0.92);} to{ opacity:1; transform: scale(1);}}
.cookie-modal h2 {
  color: var(--color-gold);
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 13px;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #ede0bc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--color-gold);
  width: 20px; height: 20px;
}
.cookie-category.essential label {
  color: var(--color-secondary);
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: var(--color-secondary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 13px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #b49437;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 19px 7px 17px 13px;
  }
}

/* ============= ANIMATIONS & INTERACTIVE MICROS ============= */
.card, .feature-item, .service-item, .testimonial-card, .blog-article {
  transition: box-shadow 0.18s, background 0.14s, transform 0.15s;
}
.card:hover, .feature-item:hover, .service-item:hover, .blog-article:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px) scale(1.013);
}
nav a:after {
  content: '';
  display: block;
  margin: 0 auto;
  height: 2px;
  width: 0%;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.19s;
}
nav a:hover:after, nav a.active:after {
  width: 100%;
}

/* ============= UX DETAILS ============= */
::-webkit-scrollbar {
  width: 9px;
  background: #f5f3e8;
}
::-webkit-scrollbar-thumb {
  background: #d8c99c;
  border-radius: 7px;
}
::-webkit-input-placeholder{color:#baae7e;opacity:.9}
::-moz-placeholder{color:#baae7e;opacity:.9}
:-ms-input-placeholder{color:#baae7e;opacity:.9}
::placeholder{color:#baae7e;opacity:.9}

/* ============= LUXURY/REFINEMENTS ============= */
.card, .feature-item, .service-item, .testimonial-card, .about-preview, .cta, .legal {
  border-radius: var(--radius);
  border-bottom: 3px solid var(--color-gold);
  box-shadow: var(--shadow-s);
}

/* -- List Styling -- */
ul, ol {
  margin-bottom: 21px;
  margin-top: 7px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 22px;
  color: var(--color-font-body);
  font-size: 1.02rem;
}
ul li:before {
  content: '\2022';
  color: var(--color-gold);
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.8em;
  line-height: 1;
}

/* --- Section spacing --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Adapt inner blocks so all .card/.card-container have at least 20px gaps as required */
.project-list, .card-container, .service-list, .feature-grid, .blog-teasers, .project-highlights {
  gap: 24px;
}
.card, .feature-item, .service-item, .project-item, .blog-article {
  margin-bottom: 20px;
}
.testimonial-card { margin-bottom: 20px; }

/* Always minimum spacing between section blocks */
section + section { margin-top: 20px; }

/* =============== END =============== */
