/* === 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;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #264653;
  line-height: 1.6;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #264653;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A261;
  outline: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

h1, h2, h3, h4, .cta-primary, .cta-secondary, .mobile-menu-toggle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #264653;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
.subheadline {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #264653;
  font-weight: 500;
}
strong {
  font-weight: 700;
  color: #264653;
}

/* === BASIC LAYOUT === */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(38,69,83,0.09);
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(38,69,83,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 24px;
}
.logo img,
.logo-footer img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4A261;
  border-bottom: 2px solid #F4A261;
}

.cta-primary {
  display: inline-block;
  padding: 14px 34px;
  background: #F4A261;
  color: #264653;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 16px;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px 0 rgba(244,162,97,0.16);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  letter-spacing: 0.08em;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #264653;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(38,69,83,0.22);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  font-weight: bold;
  background: #264653;
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px;
  line-height: 1;
  margin-left: 10px;
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F4A261;
  color: #264653;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #264653;
  z-index: 101;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  padding: 40px 28px 20px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F4A261;
  color: #264653;
  font-size: 2.25rem;
  padding: 6px 18px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 32px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E9C46A;
  color: #222;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F4A261;
  color: #264653;
}

/* === HERO & CTA === */
.hero {
  padding: 0;
  background: #264653;
  color: #fff;
  margin-bottom: 0;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  padding-bottom: 32px;
}
.hero .container {
  padding-top: 52px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1,
.hero .subheadline {
  color: #fff;
}
.hero .cta-primary {
  background: #F4A261;
  color: #264653;
  margin-top: 24px;
  box-shadow: 0 8px 40px rgba(244,162,97,0.26);
}
.hero .cta-primary:hover,
.hero .cta-primary:focus {
  background: #fff;
  color: #264653;
}

.cta {
  background: #F4A261;
  border-radius: 32px;
  margin-bottom: 60px;
  color: #264653;
  box-shadow: 0 4px 20px 0 rgba(244,162,97,0.13);
}
.cta h2 {
  color: #264653;
  font-size: 2.1rem;
}
.cta .cta-secondary {
  background: #264653;
  color: #fff;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 1.08rem;
  margin-top: 18px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.17s, color 0.17s;
}
.cta .cta-secondary:hover, .cta .cta-secondary:focus {
  background: #E9C46A;
  color: #264653;
}

/* === FEATURE, SERVICE, COLLECTION GRIDS === */
.feature-grid, .collection-grid, .team-grid, .services {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature, .service, .collection, .team-member {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(38,69,83,0.08);
  padding: 32px 24px 24px 24px;
  flex: 1 1 225px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature:hover, .service:hover, .collection:hover, .team-member:hover {
  box-shadow: 0 8px 36px 0 rgba(38,69,83,0.15);
  transform: translateY(-4px) scale(1.025);
}
.feature img, .service img, .collection img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.service-price {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #F4A261;
  background: #264653;
  border-radius: 8px;
  padding: 6px 20px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.team-member blockquote {
  font-style: italic;
  color: #264653;
  margin-top: 14px;
  background: #E9C46A22;
  border-left: 4px solid #F4A261;
  padding: 12px 16px;
  border-radius: 8px;
}

/* === USPs, LISTS, TABLES === */
.usp-list, .usp-highlights, .trend-highlights, .trend-spotlights, .unique-value-points, .how-to-guides, .outfit-examples, .tips-list {
  margin: 24px 0 12px 0;
  font-size: 1rem;
}
.usp-list ul, .usp-highlights ul, .trend-highlights, .trend-spotlights ul,
.unique-value-points ul, .outfit-examples ul, .tips-list ul {
  list-style-type: disc;
  padding-left: 28px;
  margin: 0;
  color: #264653;
  font-weight: 500;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 0 0;
  box-shadow: 0 2px 16px 0 rgba(38,69,83,.06);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #E9C46A55;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #264653;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* === TESTIMONIALS === */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  max-width: 340px;
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(38,69,83,0.11);
  margin-bottom: 20px;
  font-size: 1.1rem;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(244,162,97,0.14);
  transform: scale(1.02);
}
.testimonial-card p {
  color: #264653;
  font-weight: 700;
  font-size: 1.1rem;
}
.customer-info {
  color: #F4A261;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.ratings, .service_ratings {
  font-size: 1.16rem;
  color: #E9C46A;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}

/* === CONTACT DETAILS SECTION === */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 14px;
}
.address-block, .email-block, .hours-block {
  background: #F4A26117;
  padding: 18px;
  border-radius: 12px;
  min-width: 200px;
  flex: 1 1 200px;
}
.map-placeholder {
  background: #E9C46A1A;
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 18px;
}

/* === FOOTER === */
footer {
  background: #264653;
  color: #fff;
  padding: 42px 0 32px 0;
  margin-top: 36px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 44px;
  font-size: 1rem;
}
.logo-footer img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.14s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4A261;
}
.address-footer {
  color: #E9C46A;
  font-size: .97rem;
  margin-top: 8px;
}
.address-footer span {
  color: #fff;
  font-size: 0.89rem;
  margin-top: 4px;
}

/* === CARDS & FLEX SECTIONS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(38,69,83,0.08);
  background: #fff;
  padding: 24px 18px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === SPACING FOR SECTIONS === */
section:not(.hero):not(.cta) {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section.hero {
  margin-bottom: 60px;
}

/* === BUTTONS & LINKS === */
button, .cta-primary, .cta-secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, border 0.17s;
}
button:focus, button:active {
  outline: 2px solid #F4A261;
}

/* === ANIMATIONS === */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from {opacity:0}
  to {opacity:1}
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #264653;
  color: #fff;
  padding: 24px 22px 22px 22px;
  box-shadow: 0 0 30px 0 rgba(38,69,83,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  z-index: 120;
  animation: slideDown .44s cubic-bezier(.83,.1,.1,.88);
}
.cookie-banner strong {
  color: #E9C46A;
  font-weight: 800;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-banner button {
  padding: 11px 26px;
  border-radius: 40px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 2px;
  margin-bottom: 4px;
}
.cookie-banner .accept-all {
  background: #F4A261;
  color: #264653;
  border: none;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #E9C46A;
}
.cookie-banner .reject-all {
  background: #fff;
  color: #264653;
  border: 2px solid #F4A261;
  font-weight: 900;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #F4A261;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #264653;
  color: #F4A261;
  border-color: #F4A261;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,69,83,.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 130;
  animation: fadeIn .25s cubic-bezier(.85,.02,.1,.99);
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px 32px;
  width: 94vw;
  max-width: 420px;
  box-shadow: 0 10px 48px 0 rgba(38,69,83,0.29);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #264653;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F4A261;
  width: 18px; height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .save-btn {
  background: #F4A261;
  color: #264653;
  border-radius: 30px;
  padding: 9px 22px;
  font-weight: 900;
  border: none;
}
.cookie-modal .cancel-btn {
  background: #264653;
  color: #fff;
  border-radius: 30px;
  padding: 9px 22px;
  font-weight: 900;
  border: none;
}
.cookie-modal .save-btn:hover, .cookie-modal .save-btn:focus {
  background: #E9C46A;
}
.cookie-modal .cancel-btn:hover, .cookie-modal .cancel-btn:focus {
  background: #F4A261;
  color: #264653;
}

/* === MEDIA QUERIES / RESPONSIVE === */
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
    padding: 0 12px;
  }
  .main-nav {
    gap: 20px;
  }
  .feature-grid, .collection-grid, .services, .content-grid, .team-grid, .contact-details {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .collection-grid, .team-grid, .services, .testimonial-slider, .testimonial-list, .card-container, .content-grid, .contact-details {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature, .service, .collection, .team-member, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 103;
  }
  .cta-primary {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .section {
    padding: 24px 10px;
    margin-bottom: 40px;
  }
  .feature-grid, .collection-grid, .team-grid, .services, .content-grid, .testimonial-slider, .testimonial-list, .card-container, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .hero .container {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .hero {
    border-radius: 0 0 36px 36px;
    padding-bottom: 18px;
  }
  .cta {
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 18px 6px;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 22px 0 18px 0;
  }
  .logo img, .logo-footer img {
    height: 32px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.58rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .section {
    padding: 14px 2px;
    margin-bottom: 30px;
  }
  .testimonial-card, .feature, .service, .collection, .team-member, .card {
    padding: 14px 8px;
    font-size: .93rem;
  }
  .cta .cta-secondary, .cta-primary {
    padding: 8px 12px;
    font-size: .96rem;
  }
}
