/* --- CSS RESET & BASE STYLES --- */
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,
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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #1F2230;
  color: #D8DEE9;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background 0.4s, color 0.4s;
}
img, svg {
  max-width: 100%;
  display: block;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: #AA6700; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FFA54B; outline: none; }
strong { font-weight: 700; }

/* --- TYPOGRAPHY HIERARCHY --- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; }
.subheadline {
  font-size: 1.1rem;
  color: #EBC47D;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.15rem; }
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section { padding: 32px 5px; }
}

/* --- HEADER & NAV --- */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #EBC47D;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFFFFF;
  border-bottom: 2px solid #AA6700;
}
.cta-primary {
  background: linear-gradient(90deg,#AA6700 0,#7B3F00 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 13px 32px;
  margin-left: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(170,103,0,0.15);
  letter-spacing: 0.01em;
  transition: background 0.25s, box-shadow 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFB357;
  color: #1F2230;
  box-shadow: 0 6px 20px 0px rgba(255,181,87,0.15);
}
.cta-secondary {
  background: none;
  border: 2px solid #AA6700;
  color: #AA6700;
  border-radius: 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 11px 28px;
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #AA6700;
  color: #FFF;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFA54B;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 20;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus { outline: 2px solid #AA6700; }
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #191A27;
  z-index: 1000;
  transform: translateX(-105%);
  transition: transform 0.3s cubic-bezier(.82,-0.01,.21,.94);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 20px;
  background: none;
  border: none;
  color: #EBC47D;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1010;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #FFF; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 30px;
  padding-left: 38px;
}
.mobile-nav a {
  color: #FFA54B;
  font-size: 1.35rem;
  letter-spacing: 0.015em;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(170,103,0,.07);
  margin-bottom: 2px;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFFFFF;
  border-bottom: 1.5px solid #AA6700;
}

@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}


/* --- HERO SECTIONS --- */
.hero {
  padding: 64px 0 40px 0;
  background: linear-gradient(110deg, #23253a 60%, #2E3440 100%), #23253a;
  border-bottom: 2px solid #383D4D;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: #FFF8F0;
  text-shadow: 0 1px 32px #AA670033;
}
.hero .cta-primary { margin-top: 22px; }
@media (max-width: 819px) {
  .hero { padding: 32px 0 24px 0; }
}

/* --- FLEX SPACING & CONTENT GRIDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #23253a;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 16px rgba(46,52,64,0.08), 0 0px 40px rgba(170,103,0,.06);
  padding: 28px 18px;
  transition: box-shadow 0.18s, transform 0.22s;
}
.card:hover { box-shadow: 0 10px 38px rgba(170,103,0,0.16); transform: translateY(-2px) scale(1.015); }
.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;
  margin-top: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .content-grid, .card-container { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px){
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* --- FEATURES & ITEMS --- */
.features {
  background: #23253a;
  border-top: 2px solid #383D4D;
}
.features h2 { color: #EBC47D; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #20213b;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(46,52,64,0.09);
  padding: 30px 26px 24px 26px;
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.18s, transform 0.19s;
  border-left: 3px solid #AA6700;
}
.feature-item:hover {
  box-shadow: 0 10px 38px rgba(170,103,0,0.14), 1px 2px 22px 0px #EBC47D33;
  transform: translateY(-2px) scale(1.025);
}
.feature-item h3 { color: #FFA54B; font-size: 1.1rem; }
.feature-item img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 12px #EBC47D55);
  margin-bottom: 4px;
}
@media (max-width: 780px){
  .feature-grid { flex-direction: column; gap: 20px; }
}

/* --- CONTACT SECTION --- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 20px 0;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #EBC47D;
  background: #1F2230;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 200px;
  box-shadow: 0 2px 12px rgba(170,103,0,0.05);
  margin-bottom: 10px;
}
.contact-detail img { width: 24px; height: 24px; filter: drop-shadow(0 0 6px #AA670044); }
@media (max-width: 670px){
  .contact-info { flex-direction: column; gap: 10px; }
  .contact-detail { min-width: unset; }
}


/* --- SERVICES & LISTS --- */
.service-list, .workshop-list, .style-list, .benefits-list, .features ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 21px;
}
.services .cta-primary, .services .cta-secondary {
  margin-top: 10px;
}


/* --- TESTIMONIALS --- */
.testimonials {
  background: #20213b;
  padding: 40px 0 1px 0;
}
.testimonials h2 { color: #FFA54B; }
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(46,52,64,0.12), 0 0px 36px #AA670015;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 420px;
  margin-bottom: 20px;
  letter-spacing: 0.004em;
  border-left: 4px solid #AA6700;
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover { box-shadow: 0 12px 42px #AA670025; transform: translateY(-3px) scale(1.017); }
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 5px;
  color: #3e330c;
  text-shadow: 0 1px 1px #ebc47d18;
}
.testimonial-card p {
  font-size: 0.97rem;
  color: #23253a;
}
.testimonial-card strong {
  color: #AA6700;
  font-weight: 700;
}
.testimonial-card div { color: #FFC85B; font-size: 1.14em; }
@media (max-width: 900px) {
  .testimonials .content-wrapper { flex-direction: column; gap: 16px; }
  .testimonial-card { max-width: 100%; }
}

/* --- ABout & LEGAL PAGES --- */
.legal, .about {
  background: #23253a;
  border-left: 3px solid #AA6700;
  padding: 34px 20px 34px 30px;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(46,52,64,0.08);
  margin-top: 34px;
  margin-bottom: 40px;
}
.legal ul, .about ul, .history-timeline ul {
  margin-top: 10px;
  margin-bottom: 8px;
  padding-left: 20px;
  list-style: disc inside;
}
.history-timeline {
  margin-top: 22px;
  padding-left: 0px;
}
.history-timeline h3 {
  color: #FFA54B;
  margin-bottom: 10px;
}
.history-timeline ul li {
  margin-bottom: 5px;
  color: #EBC47D;
}
@media (max-width: 700px) {
  .legal, .about { padding: 20px 10px; }
}

/* --- CONFIRMATION (THANK YOU) --- */
.confirmation {
  background: #23253a;
  padding: 60px 0;
  text-align: center;
  min-height: 38vh;
  display: flex;
  align-items: center;
}
.confirmation h1 { color: #FFA54B; }
.confirmation p { color: #D8DEE9; font-size: 1.04rem; margin-bottom: 16px; }
.confirmation a.cta-primary { margin-top: 28px; }
@media (max-width: 600px){
  .confirmation { padding: 32px 0; }
}

/* --- FOOTER --- */
footer {
  background: #1F2230;
  border-top: 2px solid #383D4D;
  color: #EBC47D;
  margin-top: 44px;
  padding: 38px 0 18px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.005em;
}
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-flex > a img {
  height: 46px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.footer-nav a {
  color: #EBC47D;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.17s, border 0.18s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFA54B;
  border-bottom: 1.5px solid #AA6700;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.social-media a img {
  height: 29px;
  filter: drop-shadow(0 0 7px #AA670055);
  transition: filter 0.18s, transform 0.19s;
}
.social-media a:hover img, .social-media a:focus img {
  filter: drop-shadow(0 0 18px #FFA54B);} 
@media (max-width: 700px) {
  .footer-flex { flex-direction: column; align-items: flex-start; gap: 13px; }
  .footer-nav { gap: 14px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23253a;
  color: #FFF;
  z-index: 1200;
  padding: 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: center;
  box-shadow: 0 -4px 24px #AA670025;
  border-top: 2px solid #AA6700;
  transition: transform 0.27s cubic-bezier(.72,-0.01,.21,.97), opacity .2s;
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner .cookie-text { flex: 1 1 360px; max-width: 560px; font-size: .96rem; }
.cookie-banner .cookie-buttons { display: flex; gap: 14px; }
.cookie-banner button {
  background: #1F2230;
  color: #FFA54B;
  border: 2px solid #AA6700;
  border-radius: 23px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 24px;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.22s, border 0.2s, color 0.15s;
}
.cookie-banner button:focus { outline: 1.5px solid #EBC47D; }
.cookie-banner button.accept {
  background: #AA6700;
  color: #FFF;
  border: 2px solid #FFA54B;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #FFA54B;
  color: #23253a;
}
.cookie-banner button.reject {
  background: #2E3440;
  color: #EBC47D;
  border: 2px solid #EBC47D;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #EBC47D;
  color: #23253a;
}
.cookie-banner button.settings {
  background: none;
  color: #AA6700;
  border: 1.5px solid #AA6700;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #2E3440;
  color: #FFA54B;
  border-color: #FFA54B;
}
@media(max-width:800px){
  .cookie-banner{ flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(31, 34, 48, 0.85);
  backdrop-filter: blur(1.8px);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #23253a;
  border-radius: 18px;
  padding: 40px 30px 30px 30px;
  box-shadow: 0 4px 36px #AA670044;
  min-width: 340px;
  max-width: 96vw;
  color: #FFF;
  position: relative;
  text-align: left;
}
.cookie-modal h2 {
  color: #FFA54B;
  margin-bottom: 20px;
  font-size: 1.15rem;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #AA6700;
  width: 20px; height: 20px;
  margin-right: 4px;
}
.cookie-category .essential {
  color: #EBC47D;
  font-weight: 600;
}
.cookie-category label { user-select: none; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  right: 18px; top: 16px;
  background: none;
  border: none;
  color: #FFA54B;
  font-size: 1.55rem;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 2;
}
.cookie-modal .close-modal-btn:hover, .cookie-modal .close-modal-btn:focus { color: #FFF; }
@media(max-width:600px){
  .cookie-modal { padding: 18px 7px 18px 7px; min-width: 0; width: 94vw; }
}


/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-primary, .cta-secondary, .feature-item, .testimonial-card, .card, .cookie-banner button, .cookie-modal, .main-nav a, .mobile-nav a {
  transition: box-shadow .17s, background .22s, color .17s, border .16s, transform .19s, filter .13s;
}
.cta-primary:active, .feature-item:active, .testimonial-card:active {
  transform: scale(.98) translateY(1px);
}
.mobile-menu, .cookie-modal, .cookie-banner {
  will-change: transform, opacity;
}

/* --- FOCUS VISIBLE --- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #FFA54B;
  outline-offset: 2px;
}

/* --- SELECTION STYLES --- */
::selection {
  background: #AA6700;
  color: #FFF;
}

/* --- UTILITY --- */
.hide { display: none !important; }
.visible { display: block !important; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .cta-primary, .cta-secondary { font-size: .96rem; padding: 10px 19px; }
}
