/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232730;
  background: #F7F8FA;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* === BRAND COLORS & TYPOGRAPHY === */
:root {
  --brand-primary: #1B2330;
  --brand-secondary: #F65E3B;
  --brand-accent: #E9EAF0;
  --luxury-gold: #C7A052;
  --luxury-gold-dark: #9B7D30;
  --luxury-bg-light: #F7F8FA;
  --luxury-bg-white: #fff;
  --luxury-bg-dark: #262D3A;
  --luxury-gray: #A8ABB9;
  --luxury-shadow: rgba(27,35,48,0.07);
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.33rem; }
h4 { font-size: 1.13rem; }
.subtitle {
  font-size: 1.13rem;
  font-family: var(--font-body);
  color: var(--luxury-gray);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
p, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #232730;
  margin-bottom: 16px;
}
strong { font-weight: 700; color: var(--brand-primary); }
ul, ol { padding-left: 24px; }
li { margin-bottom: 8px; }


/* === CONTAINER & LAYOUTS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  background: var(--luxury-bg-white);
  box-shadow: 0 2px 16px var(--luxury-shadow);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
@media (max-width: 580px) {
  section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
}

/* === NAVIGATION === */
header {
  background: var(--luxury-bg-white);
  box-shadow: 0 3px 18px 0 var(--luxury-shadow);
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 8px 0 8px 0;
  color: var(--brand-primary);
  transition: color 0.2s;
  position: relative;
}
.main-nav a:not(.cta-btn)::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--luxury-gold);
  transition: width 0.3s;
  margin-top: 3px;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  color: var(--luxury-gold);
}
.main-nav a:not(.cta-btn):hover::after, .main-nav a:not(.cta-btn):focus::after {
  width: 100%;
}
.cta-btn {
  background: var(--luxury-gold);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 30px;
  margin-left: 8px;
  box-shadow: 0 3px 9px var(--luxury-shadow);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--luxury-gold-dark);
  color: #fff !important;
  box-shadow: 0 4px 18px var(--luxury-shadow);
  transform: translateY(-2px) scale(1.03);
}
.main-nav .cta-btn {
  margin-left: 16px;
}

/* --- LOGO --- */
header img[alt="Toris Burst"], .brand-section img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.1rem;
  color: var(--brand-primary);
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--luxury-bg-light);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,35,48,0.98);
  z-index: 200;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.44,0.13,0.48,0.87);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 24px 0 16px 24px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
  z-index: 501;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--luxury-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 48px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: var(--font-body);
  color: #fff;
  padding: 8px 0;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  min-width: 200px;
  margin-bottom: 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--luxury-gold);
  color: #fff;
}
.mobile-nav .cta-btn {
  background: var(--luxury-gold);
  color: #fff !important;
  font-size: 1.15rem;
  margin-left: 0;
}
@media (max-width:1120px) {
  .container { padding-left: 6vw; padding-right: 6vw; }
}
@media (max-width: 920px) {
  .main-nav { gap: 14px; }
  .main-nav .cta-btn { padding: 10px 22px; }
}
@media (max-width: 950px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 951px) {
  .main-nav { display: flex; }
  .mobile-menu {
    display: none !important;
  }
}

/* === FLEXBOX LAYOUTS & SPACING === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--luxury-bg-white);
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 9px var(--luxury-shadow);
  padding: 28px 22px 24px 22px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(199, 160, 82, 0.12);
  transform: translateY(-3px) scale(1.025);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-left: 4px solid var(--luxury-gold);
  border-radius: 12px 24px 24px 12px;
  box-shadow: 0 3px 18px 0 var(--luxury-shadow);
  max-width: 520px;
  color: var(--brand-primary);
}
.testimonial-card p {
  color: #232730;
  font-size: 1.1rem;
}
.testimonial-card strong {
  color: var(--luxury-gold-dark);
  font-size: 1.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* INDEX / SERVICES FEATURES GRID */
.features-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.features-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 var(--luxury-shadow);
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 260px;
  max-width: calc(33% - 24px);
  transition: box-shadow 0.2s, border 0.2s, transform 0.21s;
  margin-bottom: 12px;
  border: 1px solid #E6E6EC;
  margin-right: 0;
}
.features-grid > div:hover {
  box-shadow: 0 10px 34px 0 rgba(199, 160, 82,0.13);
  border: 1.7px solid var(--luxury-gold);
  transform: translateY(-3px) scale(1.013);
}
.features-grid img {
  height: 36px;
  margin-bottom: 14px;
}
.features-grid h3 {
  color: var(--luxury-gold-dark);
  margin-bottom: 6px;
  font-size: 1.16rem;
}
.features-grid .price {
  color: var(--luxury-gold-dark);
  font-weight: 500;
  margin-top: 8px;
}

/* ARTISTS CARDS */
.artist-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 var(--luxury-shadow);
  padding: 28px 22px 22px 22px;
  margin-bottom: 24px;
  border-left: 4px solid var(--luxury-gold);
  transition: box-shadow 0.21s;
}
.artist-card h3 {
  color: var(--luxury-gold-dark);
}
.artist-card:hover, .artist-card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(199, 160, 82,0.13);
  border-left: 6px solid var(--luxury-gold-dark);
}

/* --- FOOTER --- */
footer {
  background: var(--luxury-bg-dark);
  color: #fff;
  padding-top: 28px;
  padding-bottom: 20px;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.92;
  border-bottom: 1.5px solid transparent;
  transition: color 0.17s, border-bottom 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--luxury-gold);
  border-bottom: 1.5px solid var(--luxury-gold);
  opacity: 1;
}
.brand-section img {
  height: 44px;
  margin: 0 16px;
}
.footer-info {
  font-size: 0.95rem;
  opacity: 0.83;
  color: #e5e5e7;
  text-align: right;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .brand-section { margin-bottom: 10px; }
  .footer-info { text-align: left; }
}
@media (max-width:600px) {
  .footer-nav { gap: 12px; flex-wrap: wrap; }
  .footer-nav a { font-size: 0.98rem; }
  .brand-section img { max-width: 72vw; height: 38px; }
}

/* --- SECTIONS, SPACING & HIERARCHY --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 22px 6px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- UTILITY & GENERAL CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.align-center { align-items: center !important; }
.text-center { text-align: center !important; }
.bold { font-weight: 700 !important; }

/* ADDITIONAL FINE DETAILS & LUXURY TOUCHES */
hr {
  border: none;
  border-top: 1.5px solid var(--luxury-bg-light);
  margin: 28px 0;
}
blockquote {
  border-left: 3px solid var(--luxury-gold);
  padding-left: 14px;
  color: var(--brand-primary);
  font-style: italic;
}

/* --- BUTTONS & INTERACTIVE --- */
button, .btn {
  font-family: var(--font-display);
  border-radius: 999px;
  background: var(--luxury-gold);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 11px 28px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.19s, box-shadow 0.19s, transform 0.18s;
  outline: none;
  border: none;
  box-shadow: 0 1px 9px 0 var(--luxury-shadow);
  margin-right: 8px;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--luxury-gold-dark);
  color: #fff;
  box-shadow: 0px 5px 18px var(--luxury-shadow);
  transform: translateY(-1px) scale(1.016);
}

a.btn, a.cta-btn {
  display: inline-block;
  text-align: center;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 2px solid var(--luxury-gold);
  box-shadow: 0 -4px 36px 0 rgba(27,35,48,0.13);
  padding: 22px 10vw 18px 6vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--brand-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-content {
  flex: 1 1 0%;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-accept{
  background: var(--luxury-gold);
}
.cookie-accept:hover, .cookie-accept:focus { background: var(--luxury-gold-dark); }
.cookie-reject{
  background: #e1e1e1;
  color: var(--brand-primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #cbcaca;
  color: var(--brand-primary);
}
.cookie-settings-btn {
  background: none;
  color: var(--luxury-gold);
  border: 1.5px solid var(--luxury-gold);
  font-weight: 500;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--luxury-gold);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    padding: 16px 6vw 11px 6vw;
    font-size: 0.99rem;
    align-items: flex-start;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,32,38,0.6);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  max-width: 400px;
  width: 92vw;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 44px 0 rgba(199,160,82,0.19);
  padding: 38px 28px 29px 28px;
  font-size: 1.07rem;
  font-family: var(--font-body);
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-in 0.48s cubic-bezier(.37,1.13,.29,1);
}
@keyframes cookie-modal-in {
  from{transform: translateY(40px) scale(0.98); opacity:0;}
  to{transform: none; opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--luxury-gold-dark);
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.7rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--luxury-gold);
  width: 1.13rem;
  height: 1.13rem;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}


/* --- FORMS (if future added) --- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.2px solid #D3D6DF;
  border-radius: 7px;
  background: #fff;
  color: var(--brand-primary);
  margin-bottom: 12px;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--luxury-gold);
  outline: none;
  box-shadow: 0 2px 8px 0 var(--luxury-shadow);
}
label {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 6px;
  color: var(--luxury-gold-dark);
  font-weight: 500;
}

/* --- MISC --- */
::-webkit-scrollbar { width: 10px; background: #edeef0; }
::-webkit-scrollbar-thumb { background: var(--luxury-gold); border-radius: 10px; }
::-webkit-selection { background: var(--luxury-gold); color: #fff; }
::selection { background: var(--luxury-gold); color: #fff; }

/* === RESPONSIVE RULES === */
@media (max-width:1060px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.55rem; }
  .features-grid > div { min-width: 200px; max-width: 100%; flex-basis: 49%; }
}
@media (max-width:820px) {
  .features-grid { flex-direction: column; gap: 22px; }
  .features-grid > div { min-width: 100%; max-width: 100%; flex-basis: 100%; }
}
@media (max-width: 640px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.07rem; }
  .footer-info { font-size: 0.85rem; }
}
@media (max-width:450px) {
  header img[alt="Toris Burst"], .brand-section img { height: 32px; }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.cta-btn, .btn, button {
  will-change: background, box-shadow, transform;
}
.card, .features-grid > div, .artist-card {
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .features-grid > div:hover, .artist-card:hover {
  filter: brightness(1.05);
}

/* Accessibility: Focus outline for tab navigation */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px solid var(--luxury-gold);
  outline-offset: 2px;
}

/* ========== END OF CSS ========== */
