/* CSS 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 { -webkit-text-size-adjust: 100%; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  color: #181818;
  background: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  transition: background 0.3s;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol { list-style: none; }
a {
  color: #234057;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #a46a3f;
  text-decoration: underline;
}
strong, b { font-weight: 600; }

/* ROOT VARIABLES Monochrome + Brand */
:root {
  --color-bg: #fff;
  --color-bg-alt: #f6f6f8;
  --color-primary: #181818;
  --color-secondary: #fff;
  --color-accent: #a46a3f;
  --color-muted: #e5e6e9;
  --color-highlight: #C2926D;
  --brand-blue: #234057;
  --brand-tan: #F4E9E2;
  --brand-orange: #C2926D;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
  --radius: 10px;
  --shadow-xs: 0 1px 4px rgba(30,30,30,0.04);
  --shadow-s: 0 2px 12px rgba(30,30,30,0.09);
  --shadow-m: 0 4px 28px rgba(24,24,24,0.12);
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 6vw;
    margin-bottom: 32px;
  }
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1.13;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
}
p, li, ul, ol, dl, dd, dt, blockquote, cite {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
}
p.subheadline {
  font-size: 1.25rem;
  font-style: italic;
  color: #484848;
}
blockquote {
  font-family: var(--font-display);
  color: #232323;
  background: #f6f6f8;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 12px 16px;
  font-size: 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
cite {
  display: block;
  margin-top: 4px;
  font-size: 0.97em;
  color: #555;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 15px;
}
li {
  margin-bottom: 8px;
}
dt {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 16px;
}
dd {
  margin-left: 0;
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-secondary);
  box-shadow: 0 2px 8px rgba(30,30,30,0.025);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
header img {
  max-height: 52px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: var(--font-body);
  font-size: 1.01rem;
  color: #232323;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav a.cta-nav {
  background: var(--color-primary);
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background 0.3s, color 0.25s;
}
nav a.cta-nav:hover, nav a.cta-nav:focus {
  background: var(--color-accent);
  color: #fff;
}
nav a:hover, nav a:focus {
  background: var(--color-muted);
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-primary);
  background: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  height: 48px; width: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,27,29,0.96);
  z-index: 101;
  transition: transform 0.46s cubic-bezier(0.75,0,0.2,1);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 30px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileMenuSlideIn 0.35s cubic-bezier(0.78,0,0.19,1);
}
@keyframes mobileMenuSlideIn {
  from { transform: translateX(100vw); }
  to {   transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  position: absolute;
  top: 24px; right: 26px;
  cursor: pointer;
  z-index: 111;
  padding: 0 12px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  margin-top: 70px;
  padding: 0 28px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: var(--font-display);
  color: #fff;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: rgba(33,35,38,0.07);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (max-width: 1020px) {
  header .container {
    padding-right: 0;
  }
  nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 5px;
  }
}
@media (max-width: 820px) {
  nav a {
    font-size: 0.95rem;
    padding: 5px 7px;
  }
  header img {
    max-height: 42px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MAIN CONTENT AREAS */
main {
  min-height: 64vh;
  margin-top: 8px;
}

/* FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 200px;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature img {
  height: 42px;
  width: 42px;
  margin-bottom: 3px;
}
.feature:hover {
  box-shadow: var(--shadow-m);
  background: #f7f7fa;
}

/* CARD & CONTENT FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-s);
  padding: 25px 22px 21px 22px;
  min-width: 260px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-m);
}
.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;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .feature-grid,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* SERVICE TEASERS */
.service-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service {
  background: #fcfcfc;
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-xs);
  flex: 1 1 225px;
  min-width: 240px;
  transition: box-shadow 0.19s, background 0.2s;
}
.service:hover {
  box-shadow: var(--shadow-m);
  background: #f6f6f8;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-detail {
  background: #fcfcfc;
  border-radius: var(--radius);
  padding: 22px 16px 15px 18px;
  box-shadow: var(--shadow-xs);
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 49%;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .service-detail {
    max-width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 10px 0;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 240px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e3e3e4;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-3px) scale(1.018);
}
.testimonial-card blockquote {
  border-left: 3.5px solid var(--color-accent);
  background: #f8f8f8;
  color: #252525;
  padding: 10px 16px 8px 13px;
  font-size: 1.09rem;
  font-family: var(--font-display);
}
.testimonial-card cite {
  color: #656565;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  margin-top: 9px;
  color: #181818;
}
.rating-summary img {
  height: 30px;
}

.theme-highlight {
  background: #f6f6f8;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 12px;
  box-shadow: var(--shadow-xs);
  font-style: italic;
}
.client-stories {
  margin-top: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 12px 16px;
}

/* SPECIAL TXT SECTIONS */
.text-section {
  margin-bottom: 12px;
}
.experience-highlights, .consultation-highlight, .planning-milestones {
  background: #f4f4f4;
  border-radius: var(--radius);
  padding: 15px 19px;
  margin-top: 12px;
  font-style: italic;
  font-size: 1.07rem;
  color: #333;
  box-shadow: var(--shadow-xs);
}
.timeline-display {
  margin: 22px 0 8px 0;
  background: #f9f9fa;
  border-radius: var(--radius);
  padding: 14px 14px;
  box-shadow: var(--shadow-xs);
}

/* FAQ */
.faq-list {
  margin-bottom: 6px;
}
.faq-list dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 4px;
  margin-top: 20px;
  color: #1c1c1e;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 8px;
}

/* BUTTONS */
.cta-main, .cta-link, .cta-nav, .mobile-nav a, .btn, button {
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 9px;
  margin-bottom: 9px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  background: var(--brand-blue);
  color: #fff;
  text-decoration: none;
  transition: background 0.24s, color 0.2s, box-shadow 0.18s, transform 0.17s;
}
.cta-main:hover, .cta-main:focus,
.cta-link:hover, .cta-link:focus,
.btn:hover, .btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-m);
  transform: translateY(-2px) scale(1.03);
}
.cta-link {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid #cecece;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 19px;
}
.cta-link:hover, .cta-link:focus {
  background: #ededed;
  color: var(--color-primary);
  border-color: var(--color-accent);
}
button, .btn {
  outline: none;
}
button:active, .btn:active {
  transform: scale(0.97);
}

/* FOOTER LAYOUT */
footer {
  background: #181818;
  color: #fff;
  margin-top: 60px;
  padding: 44px 0 32px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  max-height: 42px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 10px;
}
footer nav a {
  color: #e3e3e5;
  text-decoration: none;
  font-size: 1.02rem;
  margin-bottom: 4px;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
}
.footer-contact p, .footer-contact a {
  font-size: 0.96rem;
  color: #eaeaea;
}
.footer-contact a {
  color: var(--color-accent);
  text-decoration: underline dotted;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  footer nav {
    flex-direction: row;
    gap: 17px;
    margin-right: 0;
  }
}

@media (max-width: 650px) {
  footer .container {
    padding: 0 6vw;
    gap: 12px;
  }
}

/* CONTACT SECTIONS */
.contact-details, .office-hours {
  margin-bottom: 14px;
}
.contact-details img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-top: -2px;
}
.office-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.office-hours ul {
  margin: 0;
  padding-left: 18px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: #1a1a1c;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 24px 12px 18px 12px;
  box-shadow: 0 -4px 22px rgba(0,0,0,0.13), 0 1px 1px rgba(40,40,40,0.034);
  min-height: 64px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  width: 100vw;
}
.cookie-banner-content {
  flex: 2 2 auto;
}
.cookie-banner-btns {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 9px 24px;
  font-size: 1.01rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
  margin-left: 4px;
}
.cookie-btn.secondary {
  background: #444;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #232323;
  border: 1px solid var(--color-accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    font-size: 0.99rem;
    padding: 17px 5vw 13px 5vw;
  }
  .cookie-banner-btns {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,19,22,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  min-width: 330px;
  max-width: 95vw;
  padding: 34px 36px 27px 32px;
  box-shadow: var(--shadow-m);
  position: relative;
  color: #181818;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInModal 0.29s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #181818;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
}
.cookie-switch {
  width: 36px; height: 22px;
  border-radius: 13px;
  background: #d6d8da;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  display: inline-block;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s, background 0.18s;
}
.cookie-switch input[type="checkbox"]:checked + .slider {
  transform: translateX(14px);
  background: var(--color-accent);
}
.cookie-category span {
  font-size: 1rem;
  color: #292929;
}
.cookie-category .desc {
  color: #6e6e6e;
  font-size: 0.92rem;
  margin-left: 10px;
  font-style: italic;
}

@media (max-width: 490px) {
  .cookie-modal {
    min-width: 80vw;
    padding: 20px 13px 13px 14px;
  }
}

/* FORM ELEMENTS - Input, Label, etc. (if form is present) */
input, textarea, select {
  border: 1px solid #c6c7ca;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #f9f9fa;
  margin-bottom: 18px;
  transition: border 0.18s, box-shadow 0.20s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid var(--color-accent);
  background: #fff;
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #1b1b1e;
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}

/* UTILITIES & REUSABLE */
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.visually-hidden {
  border: 0; clip: rect(0 0 0 0);
  height: 1px; margin: -1px;
  overflow: hidden; padding: 0;
  position: absolute; width: 1px;
}
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.flex-jc-sb { justify-content: space-between; }

/* SPACING FOR CONSISTENCY */
.section,
.card,
.testimonial-card,
.feature,
.service,
.service-detail,
.theme-highlight,
.client-stories,
.experience-highlights,
.consultation-highlight,
.timeline-display,
.planning-milestones {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* MONOCHROME ELEGANT EFFECTS & CONTRAST */
body, .section {
  background: #fff;
  color: #181818;
}
.section {
  border: 1.5px solid #e9e9ea;
}
.feature, .testimonial-card, .card, .service-detail, .service {
  border: 1px solid #ececec;
}

/* VISUAL HIERARCHY */
h1 { margin-bottom: 16px; }
h2 { margin-bottom: 14px; }
h3 { margin-bottom: 10px; }
p, ul, ol { margin-bottom: 13px; }

/* Animations */
.cta-main, .cta-link, .btn {
  transition: background 0.22s, color 0.23s, box-shadow 0.21s, transform 0.19s;
}
.feature, .card, .testimonial-card {
  transition: box-shadow 0.20s, background 0.22s, transform 0.16s;
}

/* SCROLLBAR MODERN */
::-webkit-scrollbar {
  width: 8px;
  background: #f0f0f1;
}
::-webkit-scrollbar-thumb {
  background: #cacaca;
  border-radius: 9px;
}

/* MONOCHROME HIGHLIGHT - NO OVERLAP */
.card, .testimonial-card, .feature, .service {
  margin-bottom: 20px;
}
.card-container, .content-grid, .testimonials, .feature-grid, .service-teasers, .service-list {
  gap: 24px;
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 650px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  .cta-main, .cta-link, .btn, button { padding: 12px 12vw; font-size: 1rem; }
  .feature, .service, .card, .testimonial-card, .service-detail { min-width: unset; }
}

@media (max-width: 440px){
  h1, .h1 { font-size: 1.44rem; }
  h2, .h2 { font-size: 1.08rem; }
  .container { padding: 0 8px; }
}

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