/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFF7EB;
  color: #222831;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: .01em;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
input, textarea, select {
  border-radius: 8px;
}

/* --- BASE TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222831;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, li, td, th { font-size: 1rem; color: #24262b; }
.subheadline { font-size: 1.15rem; font-family: 'Roboto', Arial, sans-serif; color: #464447; margin-bottom: 18px; }
strong { font-weight: 700; }
.note {
  font-size: 0.98rem;
  color: #897233;
  background: #FFF3CE;
  padding: 10px 18px;
  border-radius: 10px;
  margin-top: 18px;
  display: inline-block;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(220, 172, 89, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FEFBF4;
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 rgba(255,187,74,0.12);
  padding: 32px 26px 28px 26px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(250,188,65,0.16);
  transform: translateY(-3px) scale(1.02);
}
.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;
  background: #FFF9EA;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(255,203,82,0.07);
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 20px 0 rgba(255,217,96,0.18);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO --- */
main > section:first-of-type {
  background: #FFF3CE;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 24px 0 rgba(255, 204, 85, 0.10);
  padding-top: 52px;
  min-height: 360px;
}

/* --- NAVIGATION & HEADER --- */
header {
  background: #FFF7EB;
  padding: 0;
  box-shadow: 0 1px 12px 0 rgba(205, 170, 77, 0.05);
  position: relative;
  z-index: 15;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px 18px 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-direction: row
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li .btn-primary {
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  color: #222831;
  font-size: 1.03rem;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover {
  background: #FFD369;
  color: #9A6E00;
}
.main-nav .btn-primary {
  background: #FFD369;
  color: #222831;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 10px 24px;
  box-shadow: 0 2px 8px 0 rgba(255,221,111,0.09);
  transition: box-shadow 0.17s, background 0.21s, color 0.16s;
  border: none;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #FFE49C;
  color: #A07F19;
  box-shadow: 0 6px 16px 0 rgba(255,205,90,0.17);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: #FFD369;
  color: #222831;
  border-radius: 10px;
  padding: 8px 16px;
  border: none;
  z-index: 120;
  transition: background .13s, color .13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFE49C;
  color: #A07710;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 217, 105, 0.97);
  box-shadow: 0 12px 36px 0 rgba(255, 205, 90, 0.15);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.39s cubic-bezier(.68,-0.28,.27,1.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  margin: 19px 22px 0 0;
  background: none;
  color: #222831;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 6px 9px;
  transition: background 0.13s, color 0.14s;
  z-index: 300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD369;
  color: #967600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  margin: 50px 0 0 0;
  align-items: flex-start;
  padding: 8px 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 13px 7px 13px 0;
  color: #222831;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF3CE;
  color: #947a00;
}

/* --- MOBILE NAV ADAPTIVE --- */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 8px;
  }
}
@media (max-width: 800px) {
  .main-nav ul {
    gap: 5px;
    font-size: 0.97rem;
  }
  .main-nav .btn-primary {
    padding: 8px 14px;
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 14px;
  }
  .main-nav {
    padding: 13px 0px 13px 0px;
  }
}

/* --- FOOTER --- */
footer {
  background: #FFF3CE;
  color: #181A21;
  padding: 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -3px 18px 0 rgba(255, 211, 105, 0.07);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 20px 28px 20px;
}
.footer-logo {
  margin-bottom: 14px;
  width: 54px;
  height: auto;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #633E0F;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 0;
  border-radius: 6px;
  transition: background 0.11s, color 0.14s;
}
.footer-menu a:hover {
  background: #FFD369;
  color: #2a2522;
}
.footer-contact p {
  font-size: 0.98rem;
  color: #6f4c10;
  margin-bottom: 7px;
}

@media (max-width: 820px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- BUTTONS --- */
.btn-primary, a.btn-primary {
  background: #FFD369;
  color: #222831;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  padding: 14px 38px;
  box-shadow: 0 2px 10px 0 rgba(255,200,88,0.06);
  margin-top: 10px;
  margin-bottom: 8px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, transform 0.13s, box-shadow 0.14s;
  border: none;
  cursor: pointer;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F9E58B;
  color: #705914;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 20px 0 rgba(255,200,88,0.17);
}
.btn-secondary, a.btn-secondary {
  background: #222831;
  color: #FFD369;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 11px 30px;
  transition: background 0.17s, color 0.16s, transform 0.14s;
  display: inline-block;
  border: none;
  margin-top: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2F3542;
  color: #FFF7EB;
  transform: translateY(-1px) scale(1.04);
}

/* --- CARDS / SERVICE / TABLE / UL --- */
.services-cards, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 6px;
}
.services-cards > div, .services-grid > div {
  background: #FFF9EA;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(255,200,88,0.09);
  padding: 28px 22px 20px 22px;
  flex: 1 1 230px;
  min-width: 215px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 15px;
  transition: box-shadow .17s, transform .13s;
}
.services-cards > div:hover, .services-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(255,210,80,0.15);
  transform: translateY(-2px) scale(1.011);
}
.services-cards span, .services-grid span {
  color: #B37B00;
  font-weight: bold;
  font-size: 1.05rem;
}

ul {
  margin-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
ul li::before {
  content: '\2022';
  color: #FFD369;
  font-weight: bold;
  display: inline-block;
  width: 1.55em;
  margin-left: -1.55em;
  font-size: 1.16em;
}

/* --- TABLES --- */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  margin: 20px 0 24px 0;
  font-size: 1rem;
  background: #FFF9EA;
  box-shadow: 0 2px 10px 0 rgba(255,210,80,0.07);
  border-radius: 14px;
  overflow: hidden;
}
thead {
  background: #FFD369;
}
th, td {
  text-align: left;
  padding: 14px 18px;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #222831;
}
tbody tr:nth-child(even) {
  background: #FFF3CE;
}
tbody tr:nth-child(odd) {
  background: #FEFBF4;
}
td {
  color: #464447;
}

/* --- TESTIMONIALS --- */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #222831;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
  color: #AB860D;
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* --- MISC --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #FEFBF4;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 2px 10px 0 rgba(255,208,74,0.09);
}
.contact-info-brief, .direct-contact-information, .contact-hours {
  background: #FFF9EA;
  border-radius: 16px;
  padding: 14px 18px 14px 18px;
  margin-top: 10px;
  box-shadow: 0 1px 8px 0 rgba(255,203,90,0.07);
}
.contact-info-brief p, .direct-contact-information p, .contact-hours p {
  margin-bottom: 7px;
}
.studio-location-map {
  margin-top: 12px;
  color: #AB860D;
  font-size: 0.97rem;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #FFF9EA;
  border-radius: 18px;
  padding: 26px 20px 20px 22px;
  box-shadow: 0 2px 10px 0 rgba(255,210,80,0.08);
}
.faq-accordion h2 {
  font-size: 1.16rem;
  color: #AA8A19;
  margin-bottom: 7px;
}
.faq-accordion p {
  border-left: 3px solid #FFD369;
  padding-left: 13px;
  margin-bottom: 7px;
}

/* --- RESPONSIVE DESIGN/MOBILE FIRST --- */
@media (max-width: 1024px) {
  .container, .footer-wrapper {
    max-width: 94vw;
    padding-left: 8px; padding-right: 8px;
  }
  .main-nav {
    max-width: 100vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 900px){
  .services-cards, .services-grid, .testimonials-slider, .footer-wrapper {
    gap: 14px;
  }
  .services-cards > div, .services-grid > div, .card {
    min-width: 170px;
    padding: 19px 7px 15px 11px;
  }
  .footer-logo {
    width: 38px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    margin-bottom: 40px;
    padding: 22px 6px;
    border-radius: 18px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 21px 8px 14px 8px;
  }
  .testimonials-slider, .services-cards, .services-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card,
  .services-cards > div, .services-grid > div {
    min-width: unset;
    padding: 18px 6px 13px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }
  .text-section {
    padding: 14px 9px;
    border-radius: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- THANK YOU PAGE --- */
.text-section a.btn-primary {
  margin-top: 20px;
}

/* --- ANIMATIONS --- */
.btn-primary, .btn-secondary, .card, .testimonial-card, .main-nav a, .footer-menu a, .mobile-nav a {
  transition: background 0.17s, color 0.18s, box-shadow 0.14s, transform 0.16s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #FFE49C;
  color: #222831;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px 18px 20px;
  box-shadow: 0 -6px 26px 0 rgba(255, 211, 105, 0.17);
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 18px 18px 0 0;
  animation: bannerSlideUp 0.53s cubic-bezier(0.42,0,0.58,1);
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1.01rem;
  color: #222831;
  margin-right: 18px;
  flex: 1 1 180px;
}
.cookie-banner .cookie-btn {
  background: #FFD369;
  color: #222831;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 17px;
  margin: 0 7px;
  border: none;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(255,200,88,0.06);
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFF7EB;
  color: #A9881A;
}
.cookie-banner .cookie-btn.settings {
  background: #222831;
  color: #FFD369;
  border-radius: 11px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #3b3d40;
  color: #FFE49C;
}
/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,22,16, 0.22);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFade 0.33s ease;
}
@keyframes modalFade {
  from { opacity:0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF7EB;
  border-radius: 22px;
  box-shadow: 0 8px 38px 0 rgba(255,217,115,0.21);
  padding: 40px 22px 28px 22px;
  min-width: 330px;
  max-width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPop 0.29s cubic-bezier(.74,-0.24,.32,1.29);
}
@keyframes modalPop {
  from { transform: scale(0.87); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222831;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.cookie-category {
  margin: 12px 0 7px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding-left: 7px;
  color: #59440E;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #FFD369;
  width: 18px; height: 18px;
}
.cookie-category .essential-label {
  color: #847100;
  font-weight: 600;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 11px;
  top: 9px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #A28B17;
  cursor: pointer;
  border-radius: 8px;
  padding: 0 6px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus{
  background: #FFE49C;
  color: #222831;
}
.cookie-modal-actions {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 16px;
  font-size: 1rem;
}

@media (max-width: 550px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 20px 7px 18px 7px;
    gap: 12px;
  }
  .cookie-banner {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 6px 13px 6px;
  }
}

/* --- OVERRIDES FOR SPECIFIC CASES ---*/
.footer-menu a, .main-nav a, .btn-primary, .btn-secondary, .cookie-btn, .mobile-nav a {
  outline: none;
}
.footer-menu a:focus, .main-nav a:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .mobile-nav a:focus {
  box-shadow: 0 0 0 2.5px #FFD369;
}

/* --- UTILS / GENERAL SPACING --- */
.mb-2 { margin-bottom: 14px; }
.mt-2 { margin-top: 14px; }
.mb-1 { margin-bottom: 7px; }
.mt-1 { margin-top: 7px; }

/* --- SCROLLBAR (FRIENDLY) --- */
::-webkit-scrollbar {
  width: 10px;
  background: #FFE49C;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #FFD369;
  border-radius: 9px;
}

body::-webkit-scrollbar-track { background: #FFF7EB; }

/* --- END --- */
