/* RESET & BASE TYPOGRAPHY ---------------------------- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #FAFAFB;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2F3740;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bfa12f;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong, b { font-weight: 700; }

/* LUXURY PREMIUM PALETTE */
:root {
  --primary: #2F3740;
  --secondary: #66E5CF;
  --accent-gold: #FFE95F;
  --accent-gold-dark: #ccb800;
  --lux-dark: #1C1E22;
  --lux-offwhite: #FAFAFB;
  --lux-grey: #E6E6EB;
  --lux-shadow: rgba(47, 55, 64, 0.10);
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; font-weight: 900;     }
h2 { font-size: 2rem;   font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem;   font-weight: 700; }
h6 { font-size: 0.95rem; font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

p, li, blockquote {
  font-size: 1rem;
  color: #26282c;
  margin-bottom: 12px;
}
blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 16px;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 12px;
  background: var(--lux-grey);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* HEADER & PRIMARY NAVIGATION ------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 12px var(--lux-shadow);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 74px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 18px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent-gold);
  color: #2F3740;
}

.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--primary);
  border: none;
  border-radius: 28px;
  padding: 10px 28px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 rgba(255, 233, 95, 0.13);
  text-shadow: none;
  transition: all 0.18s cubic-bezier(.55,.13,.27,.89);
  outline: none;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent-gold-dark);
  color: #181818;
  box-shadow: 0 4px 22px 0 rgba(180, 150, 32, 0.22);
}
.mobile-menu-toggle {
  display: none;
}

/* MOBILE MENU ---------------------------------------- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 18px;
  display: none;
  z-index: 201;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--accent-gold);
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-primary { display: none; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,35,38,0.98);
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(.44,1.6,.62,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 2.25rem;
  align-self: flex-end;
  margin: 32px 26px 0 0;
  cursor: pointer;
  z-index: 212;
  padding: 6px 8px;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 90vw;
  max-width: 320px;
}
.mobile-nav a {
  color: var(--accent-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,233,95,0.1);
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #fffbe5;
  background: none;
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION --------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #FFFDF3 0%, #F3F7F9 100%);
  border-bottom: 2px solid var(--accent-gold);
  box-shadow: 0 4px 24px 0 rgba(60,40,2,0.03);
  position: relative;
  margin-bottom: 60px;
}
.hero-section .container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-section h1 {
  color: var(--primary);
  text-shadow: 0 2px 8px rgba(80,80,60,0.03);
}
.hero-section p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 14px;
  max-width: 600px;
}
.hero-section .cta-primary {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .hero-section .container {
    min-height: 180px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-section p { font-size: 1.08rem; }
}

/* SECTION BASE SPACING & WRAPPERS --------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  gap: 26px;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 17px var(--lux-shadow);
  padding: 32px 28px;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 600px) {
  section {
    padding: 24px 4vw;
    margin-bottom: 38px;
  }
  .text-section {
    padding: 20px 8px;
  }
}

/* FEATURE GRIDS & FLEX LAYOUTS ------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFDF3;
  border-radius: 15px;
  box-shadow: 0 4px 18px var(--lux-shadow);
  padding: 26px 24px 22px 24px;
  min-width: 260px;
  flex: 1 1 240px;
  max-width: 340px;
  border: 1px solid var(--lux-grey);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.18s, transform 0.18s;
  position: relative;
}
.feature-item img {
  height: 46px;
  width: 46px;
  margin-bottom: 4px;
}
.feature-item h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.feature-item p {
  color: #333;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 30px 2px rgba(47,55,64,0.16);
  border-color: var(--accent-gold);
  transform: translateY(-6px) scale(1.025);
  z-index: 1;
}

@media (max-width: 1024px) {
  .feature-grid { gap: 20px; }
  .feature-item { min-width: 160px; max-width: 100%; }
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 18px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 var(--lux-shadow);
  padding: 28px 22px;
  background: #fff;
  border: 1.5px solid var(--lux-grey);
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid { flex-direction: column; gap: 16px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* TESTIMONIAL CARDS ------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 17px var(--lux-shadow);
  border: 1px solid var(--lux-grey);
  max-width: 650px;
}
.testimonial-card blockquote {
  color: #181818;
  font-size: 1.15rem;
  line-height: 1.5;
  border-left: 2.5px solid var(--accent-gold);
  background: none;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--primary);
  margin-left: 8px;
}
@media (max-width: 576px) {
  .testimonial-card { padding: 14px 8px; }
}

/* TEAM BIOS (about.html) */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.team-member {
  background: #fff;
  box-shadow: 0 2px 12px var(--lux-shadow);
  border: 1px solid var(--accent-gold);
  border-radius: 14px;
  padding: 20px 18px;
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.team-member h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.team-member:hover {
  box-shadow: 0 8px 28px rgba(47,55,64,0.19);
  border-color: var(--accent-gold-dark);
}
@media (max-width: 900px) { .team-bios { flex-direction: column; gap: 16px; } }

.expertise-overview ul {
  list-style: disc;
  margin-left: 16px;
  color: #3b3d40;
  font-size: 1rem;
  margin-bottom: 0;
}

/* EVENTS & PROJECTS ---------------------------------- */
.project-list, .event-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-item, .top-event-card {
  background: #FFFDF3;
  border-radius: 13px;
  box-shadow: 0 2px 14px var(--lux-shadow);
  border: 1px solid var(--lux-grey);
  padding: 22px 18px 18px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
}
.project-item h3, .top-event-card h3 {
  font-size: 1.1rem; margin-bottom: 7px;
  color: var(--primary); font-family: 'Montserrat', Arial, sans-serif;
}
.project-item:hover,.top-event-card:hover { box-shadow: 0 6px 22px rgba(47,55,64,0.13); border-color: var(--accent-gold); transform: translateY(-4px); }
@media (max-width: 800px) {
  .project-list, .event-calendar { flex-direction: column; gap: 14px; }
  .project-item, .top-event-card { min-width: 0; }
}

/* CONTACT INFO ---------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #282828;
  gap: 8px;
}
.contact-info img {
  width: 21px;
  height: 21px;
  margin-right: 4px;
}
@media (max-width: 640px) {
  .contact-info p { font-size: 0.98rem; }
}

/* FOOTER --------------------------------------------- */
footer {
  background: #23252a;
  color: #eaeaea;
  padding: 40px 0 32px 0;
  border-top: 2px solid var(--accent-gold);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 2px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 2px 0;
  transition: color 0.18s, text-decoration 0.15s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  transition: filter 0.18s;
  filter: grayscale(0.2) brightness(0.99);
}
.footer-social a:hover img {
  filter: brightness(1.6) drop-shadow(0 2px 6px #ffe95f80);
}
footer p {
  color: #d7d7db;
  font-size: 0.98rem;
  margin-bottom: 0;
  margin-top: 6px;
  text-align: center;
}
@media (max-width: 600px) {
  .footer-links { gap: 14px; }
  .footer-social { gap: 13px; }
}

/* COOKIE CONSENT BANNER ------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  background: #fffbe5;
  box-shadow: 0 -2px 15px rgba(47,55,64,0.13);
  border-top: 2px solid var(--accent-gold);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px 22px 18px;
  gap: 24px;
  font-size: 1rem;
  color: #222;
  animation: fadeinup 0.36s;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 14px;
    font-size: 0.98rem;
  }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  border-radius: 18px;
  border: none;
  padding: 9px 22px;
  cursor: pointer;
  margin-right: 0;
  margin-left: 0;
  background: var(--accent-gold);
  color: var(--primary);
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--accent-gold-dark);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--accent-gold-dark);
}

/* COOKIE MODAL ---------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,47,59,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 240;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #FFFDF3;
  border-radius: 18px;
  min-width: 300px;
  max-width: 430px;
  box-shadow: 0 8px 48px 0 rgba(47,55,64,0.20);
  padding: 34px 28px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modaldrop 0.35s;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  color: var(--primary);
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-content .cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-content label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--accent-gold);
  width: 21px;
  height: 21px;
  margin: 0 8px 0 0;
}
.cookie-modal-content .essential {
  color: #808080;
  font-size: 0.96rem;
  margin-left: 8px;
}
.cookie-modal-content .cookie-btns {
  margin-top: 12px;
  gap: 13px;
}
@media (max-width: 600px) {
  .cookie-modal-content { padding: 16px 6vw 18px 6vw; min-width: 0; }
}

@keyframes fadeinup {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes modaldrop {
  0% { transform: translateY(-40px) scale(1.05); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0) scale(1.0); opacity: 1; }
}

/* CTA BUTTONS GENERAL --------------------------------- */
.cta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-primary {
  min-width: 160px;
  box-shadow: 0 2px 18px 0 rgba(255, 233, 95, 0.13);
  border: none;
}
.cta-primary:active {
  transform: scale(0.98);
}

/* FORM (contact form hint, if form added) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 15px;
  border: 1.5px solid var(--lux-grey);
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  margin-bottom: 20px;
  background: #fff;
  color: #23252a;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border-color: var(--accent-gold);
}

/* MISCELLANEOUS --------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #e6ddac;
  border-radius: 16px;
}
::-webkit-scrollbar-track {
  background: #fbfaf4;
}

/* A11Y: Focus Styles */
a:focus, .cta-primary:focus, button:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--accent-gold-dark);
  outline-offset: 2px;
}

/* VISUAL MICRO-INTERACTIONS ---------------------------- */
.card, .feature-item, .team-member, .project-item, .top-event-card, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:hover, .team-member:focus-within, .feature-item:focus-within, .project-item:focus-within, .top-event-card:focus-within {
  box-shadow: 0 7px 30px 0 rgba(47,55,64,0.19);
  border-color: var(--accent-gold-dark);
  z-index: 2;
}

/* VISUAL HIERARCHY & SPACING --------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* RESPONSIVE BREAKPOINTS ------------------------------- */
@media (max-width: 900px) {
  .section { padding: 24px 4vw; margin-bottom: 38px; }
}
@media (max-width: 768px) {
  .card-container, .team-bios, .feature-grid, .content-grid, .project-list, .event-calendar { flex-direction: column; gap: 16px; }
  .footer-links { gap: 10px; }
  .footer-social { gap: 7px; }
}
@media (max-width: 480px) {
  .hero-section h1 { font-size: 1.3rem; }
  .footer-brand img { width: 36px; height: 36px; }
}

/* UTILITIES ------------------------------------------- */
.hidden { display: none !important; }

/* UTILITY: CLEARFIX */
.clearfix:after { content: ""; display: block; clear: both; }
