/* 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, input, button, textarea, select, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{
  display: block;
}
body{
  line-height:1.5;
  min-height: 100vh;
  background: #F5F7FA;
  color: #1A2930;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F7FA;
  color: #1A2930;
  font-size: 16px;
  letter-spacing: 0.01em;
}
h1, .hero h1, section h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1A2930;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #1A2930;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #417A3E;
  margin-bottom: 12px;
}

p, li, address, blockquote {
  font-size: 1rem;
  color: #19232e;
  line-height: 1.7;
  margin-bottom: 12px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  list-style-type: disc;
}
strong {
  color: #1A2930;
  font-weight: 700;
}

/* LUXURY PREMIUM BRAND COLORS */
:root {
  --primary: #1A2930;
  --secondary: #417A3E;
  --accent: #F5F7FA;
  --gold: #D4AF37;
  --gold-dark: #B89828;
  --text-main: #1A2930;
  --text-light: #fff;
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: var(--text-light);
  box-shadow: 0 2px 12px rgba(26,41,48,0.06);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  position: relative;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Oswald', Arial, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  text-shadow: 0 1px 0 var(--gold);
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  padding: 12px 32px;
  border-radius: 36px;
  box-shadow: 0 2px 14px 0 rgba(212, 175, 55, 0.14);
  cursor: pointer;
  outline: none;
  position: relative;
  transition: background .2s, color .2s, box-shadow .25s;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--gold-dark) 80%, var(--gold) 100%);
  color: var(--secondary);
  box-shadow: 0 4px 24px 0 rgba(212, 175, 55, 0.28);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 120;
  padding: 8px;
  margin-left: 30px;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eceaea;
}
@media (max-width: 1000px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,41,48,0.96);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 1002;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 100px 40px 40px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 12px 0;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
}

/* HERO / LANDING SECTION */
.hero {
  background: var(--primary);
  background-image: linear-gradient(120deg, #1A2930 94%, #D4AF37 100%);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 3px solid var(--gold);
}
.hero h1 {
  color: var(--gold);
  font-size: 2.8rem;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(26,41,48,0.15);
}
.hero .subheadline {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 28px;
  max-width: 650px;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold) 75%, var(--gold-dark) 100%);
  color: var(--primary);
}

/* FLEXBOX LAYOUTS: CRITICAL SECTION SPACING */
.section, section:not(.hero) {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(26,41,48,0.10);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 22px;
  transition: box-shadow .2s, transform .15s;
  border: 1px solid #edeada;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(212,175,55,0.22);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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: 20px;
  background: #fff;
  color: #1A2930;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(26,41,48,0.08);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  border-left: 6px solid var(--gold);
  transition: box-shadow 0.2s;
  min-width: 240px;
  max-width: 540px;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1A2930;
  margin-bottom: 12px;
}
.testimonial-footer {
  font-size: 0.96rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL GRIDS & FEATURE CARDS */
.feature-grid, .service-teasers, .team-intros, .service-list,
.industry-list, .case-study-teasers, .news-list, .insight-teasers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature, .service-item, .industry-item, .team-member, .case-study, .news-item, .insight {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,41,48,0.06);
  padding: 28px 22px 20px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 342px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
  transition: box-shadow .16s;
}
.feature:hover, .service-item:hover, .industry-item:hover, .case-study:hover, .news-item:hover, .insight:hover {
  box-shadow: 0 6px 18px 0 rgba(212, 175, 55, 0.14);
  transform: translateY(-3px) scale(1.015);
}
.feature img,
.service-item img,
.team-member img,
.industry-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}

/* TIMELINE, MILESTONES & SPECIAL TEXT BLOCKS */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.milestone {
  font-size: 1.07rem;
  padding-left: 20px;
  border-left: 3px solid var(--secondary);
  color: #1A2930;
  margin-bottom: 4px;
}

/* CTA SECTION */
.cta {
  background: #fffbe7;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 24px 0 rgba(212, 175, 55, 0.08);
  padding-top: 48px;
  padding-bottom: 48px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2,
.cta p {
  color: var(--primary);
}
.cta .btn-primary {
  margin-left: 0;
  margin-top: 20px;
}

/* TESTIMONIALS LAYOUT */
.testimonials .content-wrapper {
  gap: 32px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 12px;
  border-top: 2px solid var(--gold);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Oswald', Arial, sans-serif;
  margin-left: 24px;
}
footer .footer-nav a {
  color: var(--gold);
  font-size: 1rem;
  transition: color .2s;
  margin-bottom: 4px;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: var(--gold-dark);
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact img {
  width: 1em;
  height: 1em;
  margin-right: 6px;
  vertical-align: text-bottom;
}
footer img {
  height: 36px;
  margin-bottom: 18px;
}

/* GENERAL FORMATTING/UTILITY */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
address {
  font-style: normal;
  color: #333;
  line-height: 1.8;
}
blockquote {
  background: #fffbe7;
  border-left: 4px solid var(--gold);
  margin: 20px 0;
  padding: 18px 26px;
  font-style: italic;
  color: #1A2930;
  font-size: 1.12rem;
}

/* CONTACT PAGE & MAP STYLING */
.contact-info ul, .directions-text ul {
  margin-bottom: 18px;
}
.contact-info img, .directions-text img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
}
.location-map {
  width: 100%;
  height: 260px;
  background: #edeada url('../assets/map-placeholder.svg') center/contain no-repeat;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 2px solid var(--gold);
}
.contact-details address {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(26,41,48,0.07);
  padding: 18px 22px;
  border-left: 4px solid var(--secondary);
}

/* THANK YOU PAGE */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 650px;
  margin: 0 auto;
}
.confirmation-message {
  font-size: 1.2rem;
  color: var(--secondary);
  background: #fff;
  border-radius: 14px;
  padding: 16px 28px;
  box-shadow: 0 2px 10px rgba(65,122,62,0.09);
}
.next-steps ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 0;
  color: #1A2930;
}

/* TYPOGRAPHY SCALE */
html {
  font-size: 16px;
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.1rem; }

/* RESPONSIVE DESIGN: MOBILE FIRST */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .footer-nav {
    margin-left: 0;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .service-teasers, .team-intros, .service-list,
  .industry-list, .case-study-teasers, .news-list, .insight-teasers {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .section, section, .cta {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .testimonial-card {
    padding: 18px 12px 16px 12px;
  }
  .feature, .service-item, .team-member, .case-study, .industry-item, .news-item, .insight {
    max-width: 100%;
    min-width: 0;
    padding: 16px 10px 10px;
  }
  .footer-contact {
    gap: 2px;
  }
  .btn-primary {
    padding: 10px 22px;
    font-size: 1rem;
  }
  .mobile-menu .mobile-nav {
    padding-top: 75px;
    padding-left: 24px;
    padding-right: 8px;
  }
  .contact-details address {
    padding: 10px 8px;
  }
}
@media (max-width: 500px) {
  .hero h1, h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
}

/* HOVER EFFECTS, TRANSITIONS, MICRO-INTERACTIONS */
.card, .feature, .service-item, .team-member, .case-study, .industry-item, .news-item, .insight {
  transition: box-shadow .18s, transform .11s;
}
.card:focus-within, .feature:focus-within, .service-item:focus-within, .team-member:focus-within {
  box-shadow: 0 8px 24px 0 rgba(65,122,62,0.17), 0 1px 6px rgba(212,175,55,0.13);
}
.btn-primary {
  transition: background 0.18s, color 0.15s, box-shadow .18s;
  outline: none;
  border: none;
}
.btn-primary:active {
  box-shadow: 0 1px 2px 0 rgba(26,41,48,.09) inset;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe7;
  color: #1A2930;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -2px 24px 0 rgba(26,41,48,0.12);
  padding: 24px 20px 24px 22px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  animation: cookie-slide-up 0.4s cubic-bezier(.58,.16,.39,1.23);
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner button,
.cookie-banner .btn-cookie {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  border-radius: 40px;
  padding: 8px 22px;
  margin: 0;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .17s;
}
.cookie-banner .btn-accept {
  background: var(--gold);
  color: var(--primary);
  margin-right: 8px;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--gold-dark);
}
.cookie-banner .btn-reject {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #eceaea;
  border-color: var(--gold);
}
.cookie-banner .btn-settings {
  background: none;
  color: var(--secondary);
  text-decoration: underline;
  border: none;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  color: var(--gold-dark);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,41,48,0.53);
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal {
  background: #fffbe7;
  color: #1A2930;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 8px 32px 0 rgba(212,175,55,0.10);
  padding: 38px 26px;
  min-width: 92vw;
  max-width: 450px;
  position: relative;
  animation: cookie-modal-in .45s cubic-bezier(.71,-0.04,.51,1.34);
  margin-bottom: 0;
}
@keyframes cookie-modal-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--secondary);
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  border-radius: 5px;
  margin-right: 4px;
}
.cookie-category input[disabled] {
  opacity: .6;
}
.cookie-modal .cookie-actions {
  margin-top: 22px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 8px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover {
  color: var(--primary);
}

@media (min-width: 700px) {
  .cookie-modal {
    min-width: 440px;
  }
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .cookie-modal {
    min-width: 92vw;
    max-width: 100vw;
    padding: 22px 6px;
  }
}

/* ENSURE NO GRID PROPERTIES ARE USED (AUDITED: NO display: grid, no grid-*) */
/* ENSURE NO columns or column-* are used (AUDITED: NONE) */

/* MISC: Extra for Clean Luxury Aesthetic */
.feature, .service-item, .industry-item, .team-member,
.card, .case-study, .news-item, .insight {
  border: 1px solid #ebe0b2;
}
hr {
  border: 0;
  border-top: 1.5px solid #edeada;
  margin: 34px 0;
}

::-webkit-scrollbar {
  width: 10px; background: #ebe0b2;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 6px;
}

/* ACCESSIBILITY: Focus state */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
  background: #fffbe7;
}

/* PRINT STYLES (hide menu/modal/banner) */
@media print {
  .mobile-menu,
  .mobile-menu-toggle, 
  .cookie-banner, .cookie-modal, .cookie-modal-backdrop {
    display: none !important;
  }
}
