/* RESET & BASE STYLES (Normalize + Custom Reset) */
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;
}
body {
  min-height: 100vh;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F6F8FA;
  color: #22323a;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #255766;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #bfa14c;
  outline: none;
}

/* BRAND COLORS as CSS custom properties with fallbacks */
:root {
  --primary: #255766;
  --primary-dark: #193a49;
  --secondary: #ffffff;
  --secondary-bg: #F6F8FA;
  --accent: #bfa14c;
  --text: #22323a;
  --muted: #6c737d;
  --border: #e1e4ea;
  --shadow: rgba(34,36,38,0.07);
  --danger: #C44536;
  --success: #36B37E;
}

/* GLOBAL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #193a49;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem;  margin-bottom: 20px;}
h3 {font-size: 1.4rem;  margin-bottom: 16px;}
h4 {font-size: 1.15rem; margin-bottom: 12px;}
p, ul, ol, li {font-size: 1rem; color: var(--text);}
strong, b {font-weight: 600; color: #193a49;}
small {font-size: 0.90em; color: var(--muted);}

ul, ol {
  padding-left: 26px;
  margin-bottom: 24px;
}
li {margin-bottom: 8px;}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  background: none;
  border-radius: 12px;
  box-shadow: none;
}

/* HEADER STYLES */
header {
  background: var(--secondary);
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 16px;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #255766;
  padding: 6px 0;
  transition: color .23s;
  position: relative;
  border-radius: 4px;
}
header nav a.cta {
  margin-left: 12px;
  color: #fff;
  background: var(--accent);
  padding: 9px 22px;
  border-radius: 99px;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px var(--shadow);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #ddc174;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px var(--shadow);
}
header nav a:not(.cta):hover, header nav a:not(.cta):focus {
  color: var(--accent);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  color: #255766;
  transition: color .2s, background .2s;
  z-index: 120;
  border-radius: 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--accent);
  background: #ece6d5;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(37,87,102,0.97);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.63,.04,.33,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px 0 0;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #bfa14c;
  color: #193a49;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 32px 28px 20px 40px;
}
.mobile-nav a {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  padding: 8px 0;
  border-radius: 6px;
  transition: background .2s, color .2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #bfa14c;
  color: #193a49;
}

@media (max-width: 1020px) {
  header .container {
    flex-direction: row;
    padding: 14px 9px;
  }
  header nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  header nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN LAYOUT & SECTION SPACING */
main {
  padding-bottom: 80px;
  background: var(--secondary-bg);
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: 0 4px 32px var(--shadow);
}
@media (max-width: 768px) {
  section {
    padding: 26px 4vw;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/* CARD CONTAINER (services, testimonials, posts) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: 15px;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  padding: 32px 28px;
  position: relative;
  flex: 1 1 320px;
  min-width: 270px;
  transition: box-shadow .23s, transform .23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px var(--shadow);
  transform: translateY(-4px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* SERVICE LIST (Index & Services) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-list > div {
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 11px var(--shadow);
  flex: 1 1 250px;
  min-width: 240px;
  padding: 28px 22px 32px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: border-color .21s, box-shadow .21s, transform .23s;
}
.service-list > div:hover, .service-list > div:focus-within {
  border-color: var(--accent);
  box-shadow: 0 8px 36px var(--shadow);
  transform: translateY(-4px) scale(1.022);
}
.price {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
  position: absolute;
  bottom: 18px;
  left: 24px;
  background: #fff6e6;
  border-radius: 6px;
  padding: 5px 14px;
  box-shadow: 0 2px 8px #00000013;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 24px;
  }
}

/* POSTS (Blog) */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-list article {
  flex: 1 1 320px;
  min-width: 250px;
  background: var(--secondary-bg);
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 20px 22px 22px;
  margin-bottom: 20px;
  transition: border-color .15s, box-shadow .18s, transform .18s;
}
.post-list article:hover, .post-list article:focus-within {
  border-color: var(--accent);
  box-shadow: 0 6px 20px var(--shadow);
  transform: translateY(-2px) scale(1.013);
}

/* CARD-BASED FLEX LAYOUTS */
.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: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 20px var(--shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.22s, border-color 0.2s, transform 0.2s;
}
.testimonial-card p {
  font-family: "Roboto Slab", serif;
  font-size: 1.15rem;
  color: #255766;
  margin-bottom: 8px;
}
.testimonial-card div {
  font-size: 1rem;
  color: #22323a;
}
.testimonial-card strong {
  color: var(--accent);
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 8px 36px var(--shadow);
  transform: translateY(-2px) scale(1.015);
}

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

@media (max-width: 960px) {
  .content-grid,
  .card-container,
  .post-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* VALUES-GRID (About page) */
.values-grid {
  background: #f6eee3;
  border: 1px solid #efe3c0;
  border-radius: 12px;
  padding: 28px 22px 18px 26px;
  margin: 18px 0 20px 0;
}
.values-grid h2 {margin-bottom: 14px;}
.values-grid ul {list-style: disc; margin-bottom: 0;}
.values-grid li {margin-bottom: 8px; color: #255766; font-weight: 600;}


/* CTA BUTTON */
.cta, .newsletter-signup button, .cookie-banner .cta {
  display: inline-block;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: var(--accent);
  padding: 14px 34px;
  border-radius: 60px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 21px var(--shadow);
  border: none;
  transition: background .18s, color .18s, box-shadow .18s, transform .14s;
  cursor: pointer;
}
.cta:hover, .cta:focus, .newsletter-signup button:hover, .newsletter-signup button:focus, .cookie-banner .cta:hover, .cookie-banner .cta:focus {
  background: #e3c96f;
  color: #255766;
  box-shadow: 0 6px 36px var(--shadow);
  transform: translateY(-3px) scale(1.02);
}

/* FOOTER STYLES */
footer {
  margin-top: 50px;
  background: var(--primary);
  color: #f2e7ce;
  padding: 0;
  border-top: 8px solid var(--accent);
  box-shadow: 0 -2px 16px var(--shadow);
}
footer .container {
  padding: 44px 16px 20px 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-logo img {
  height: 44px;
  filter: brightness(1.1) drop-shadow(0 3px 4px #0002);
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  color: #f8eecd;
  font-weight: 600;
  padding: 2px 0;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent);
}
.footer-contact {
  font-size: 1rem;
  color: #f3e1b1;
}
.footer-contact img {height: 18px; vertical-align: middle; margin-right: 6px;}
.footer-brand p {
  margin-top: 18px;
  font-size: 0.98rem;
  color: #e3d199;
}
@media (max-width: 940px) {
  footer .content-wrapper {
    gap: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* FORMS (minimal - visible only for newsletter signup) */
.newsletter-signup {
  background: #fffbee;
  border-radius: 13px;
  box-shadow: 0 1px 8px var(--shadow);
  padding: 26px 18px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.newsletter-signup input[type="email"] {
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 10px;
  transition: border-color .15s;
}
.newsletter-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-signup button {
  padding: 10px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 60px;
  border: none;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .17s;
}

/* MAP EMBED PLACEHOLDER */
.map-embed {
  background: #e3ecee;
  border-radius: 14px;
  padding: 28px 20px 24px 24px;
  color: #667;
  font-style: italic;
  min-height: 96px;
  margin: 22px 0 14px 0;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  width: 100vw;
  left: 0; bottom: 0;
  z-index: 1100;
  background: #fffdfa;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -2px 24px var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  padding: 26px 16px 22px 16px;
  transition: transform .32s cubic-bezier(.77,-0.1,.16,1);
}
.cookie-banner-hidden {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner-title {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.cookie-banner p {
  color: #22323a;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .cta {
  font-size: .97rem;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 48px;
  border: 1px solid var(--border);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 6px var(--shadow);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #faecc9;
}
.cookie-banner button:not(.cookie-settings):hover, .cookie-banner button:not(.cookie-settings):focus {
  background: #e3c96f;
  color: #255766;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 6vw 16px 6vw;
  }
  .cookie-banner-actions {
    gap: 12px;
    flex-wrap: wrap;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%) scale(1);
  min-width: 340px;
  max-width: 95vw;
  width: 430px;
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 2px 40px var(--shadow);
  z-index: 1300;
  padding: 38px 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalAnim .4s cubic-bezier(.71,.00,.31,1);
}
@keyframes cookieModalAnim {
  from {transform: translateX(-50%) scale(0.86); opacity: 0;}
  to {transform: translateX(-50%) scale(1); opacity: 1;}
}
.cookie-modal-title {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f6edc3;
}
.cookie-modal-category:last-child {border: none;}
.cookie-modal-category label {
  flex:1;
  font-weight: 600;
  color: var(--primary-dark);
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  margin-left: 10px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e2d7b2;
  border-radius: 16px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #0002;
  transition: transform 0.2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal button {
  font-size: 1rem;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 44px;
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 8px var(--shadow);
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal button:last-child {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #bfa14c;
  color: #193a49;
}
.cookie-modal button:last-child:hover, .cookie-modal button:last-child:focus {
  background: #fae49a;
}

/* SPACING UTILS & FLEX GAP */
.mt-24 {margin-top: 24px;}
.mb-24 {margin-bottom: 24px;}
.mb-32 {margin-bottom: 32px;}
.gap-16 {gap: 16px;}
.gap-24 {gap: 24px;}
.gap-32 {gap: 32px;}

/* MICRO-INTERACTIONS & TRANSITIONS */
button, .cta, input, a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.17s;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
  width: 10px;
  background: #f6eee5;
}
::-webkit-scrollbar-thumb {
  background: #e3c96f;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c7ae54;
}

/* LUXURY PREMIUM DECORATIVE EXTRAS */
section {
  border-top: 3px solid #bfa14c33;
  box-shadow: 0 7px 34px -8px #baa55513, 0 2px 18px #aaa38a13;
}
.service-list > div:before, .post-list article:before {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background: linear-gradient(90deg, #bfa14c 30%, #fff 100%);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* RESPONSIVE FONTS FOR HEADINGS */
@media (max-width: 700px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  h3 {font-size: 1.15rem;}
}

/* ACCESSIBILITY: FOCUS STATE */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  transition: outline 0.13s;
}

/* Z-INDEX SAFEGUARDING */
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1100;
}

/* HIDE ELEMENTS FOR PRINT */
@media print {
  .mobile-menu, .cookie-banner, header, footer {
    display: none;
  }
}

/* END OF CSS */
