/* --- CSS RESET & NORMALIZE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-size: 16px; }
img, picture, svg {
  display: block;
  max-width: 100%;
}
button, input, select, textarea { font: inherit; background: none; border: none; outline: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- CSS VARIABLES (fallback support provided) --- */
:root {
  --primary: #23272A;
  --secondary: #4A5C6A;
  --accent: #F5F3EE;
  --vibrant1: #F75C03; /* Electric orange for accents */
  --vibrant2: #1BCE83; /* Electric green for buttons */
  --vibrant3: #23A4DD; /* Electric blue for highlights */
  --shadow: 0 4px 16px 0 rgba(35, 39, 42, 0.09);
  --radius: 18px;
  --spacing: 20px;
  --header-height: 80px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--accent);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY (bold fonts, clear hierarchy) --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.08;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--vibrant1);
  font-weight: 700;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.7;
}
strong, b {
  font-weight: 900;
  color: var(--vibrant2);
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 0.5em;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 8px;
  padding-left: 0.8em;
  /* energetic electric bullet */
}
.text-section ul li:before {
  content: '\2022';
  color: var(--vibrant3);
  font-size: 1.3em;
  position: absolute;
  left: 0;
  top: 0.11em;
}
.text-section ol {
  counter-reset: ordered;
}
.text-section ol li {
  counter-increment: ordered;
}
.text-section ol li:before {
  content: counter(ordered) '.';
  color: var(--vibrant1);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.05em;
}

/* --- CONTAINER & SECTIONS LAYOUT --- */
.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.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: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform 0.25s cubic-bezier(.65,.05,.36,1),box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(31, 174, 255, .10), 0 2px 8px 0 rgba(35,39,42,0.08);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-cards > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 230px;
  transition: box-shadow 0.23s, transform 0.25s;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2.2px solid var(--vibrant1);
}
.service-cards > div:hover {
  box-shadow: 0 12px 40px 0 rgba(27,206,131,0.09), 0 2px 12px 0 rgba(35,39,42,0.08);
  border-color: var(--vibrant2);
  transform: translateY(-7px) scale(1.025);
  z-index: 3;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(35,39,42,0.08);
  border-left: 7px solid var(--vibrant3);
  color: #181818;
  transition: border-color 0.18s, box-shadow 0.2s;
}
.testimonial-card:hover {
  border-left: 7px solid var(--vibrant1);
  box-shadow: 0 8px 28px 0 rgba(247,92,3,0.10), 0 2px 8px 0 rgba(27,206,131,0.10);
}
.testimonial-card p {
  font-size: 1.16rem;
  font-family: var(--font-display);
  color: #1C2530;
  margin-bottom: 4px;
  font-style: italic;
}
.testimonial-card span {
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 0.97rem;
}

/* --- HERO CTA BUTTONS --- */
.cta-button {
  background: linear-gradient(90deg, var(--vibrant1) 0%, var(--vibrant2) 100%);
  color: #fff;
  font-size: 1.17rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 14px 37px;
  border-radius: 32px;
  box-shadow: 0 4px 22px 0 rgba(27,206,131,0.09);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
  transition: background 0.19s, transform 0.17s, box-shadow 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--vibrant3) 0%, var(--vibrant1) 100%);
  color: #fff;
  transform: scale(1.045) translateY(-2px) rotate(-2deg);
  box-shadow: 0 6px 32px 0 rgba(31,174,255,0.13);
}

/* --- NAVIGATION STYLES --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 14px 0 rgba(35,39,42,0.05);
  position: relative;
  z-index: 30;
  min-height: var(--header-height);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  height: var(--header-height);
}
header nav img {
  height: 54px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin: 0 18px;
}
header nav ul li {
  margin: 0;
  padding: 0;
}
header nav ul li a {
  font-family: var(--font-body);
  font-size: 1.09rem;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 16px;
  transition: color 0.14s, background 0.14s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--vibrant3);
  color: #fff;
}
header nav .cta-button {
  margin-left: 26px;
  font-size: 1.05rem;
  padding: 10px 25px;
}

@media (max-width: 1000px) {
  header nav ul {
    gap: 13px;
    margin: 0 8px;
  }
}
@media (max-width: 880px) {
  header nav .cta-button {
    padding: 8px 16px;
    font-size: 1rem;
  }
  header nav ul {
    gap: 7px;
    margin: 0 3px;
  }
  header nav img {
    height: 45px;
  }
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: var(--vibrant1);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 14px;
  border: none;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 100;
  transition: background 0.15s, transform 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--vibrant2);
  color: #fff;
  transform: rotate(-17deg) scale(1.1);
}

@media (max-width: 850px) {
  header nav ul, header nav .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 20px 0 rgba(35,39,42,0.13);
  z-index: 444;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.63,-0.01,.63,1.1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--vibrant3);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 18px 12px 0;
  cursor: pointer;
  transition: color 0.18s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vibrant1);
  transform: rotate(-8deg) scale(1.08);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 0 0;
  padding-left: 28px;
}
.mobile-nav a {
  padding: 13px 0;
  width: 100%;
  color: var(--primary);
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 16px;
  transition: background 0.13s, color 0.13s, padding-left 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vibrant2);
  color: #fff;
  padding-left: 13px;
}

@media (min-width: 851px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 430px) {
  .mobile-menu { width: 100vw; min-width: 0; }
}

/* --- BRAND CARDS / MESSAGES / SPECIAL BLOCKS --- */
.founder-message, .commitment-card, .brand-inspiration, .materials-description, .gift-process, .gift-occasions, .location-map, .store-philosophy-short {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(35,39,42,0.08);
  padding: 18px 18px 10px 22px;
  margin-bottom: 20px;
  color: var(--primary);
  border-left: 4px solid var(--vibrant1);
}
.founder-message h3, .commitment-card h3, .brand-inspiration h3, .materials-description h3, .gift-process h3, .gift-occasions h3, .location-map h3 {
  color: var(--vibrant2);
  font-family: var(--font-body);
  font-size: 1.13rem;
  margin-bottom: 6px;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  padding: 32px 0 14px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: center;
}
footer nav a {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 13px;
  transition: background 0.15s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--vibrant1);
  color: #fff;
}
.contact-info {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--accent);
  margin-top: 6px;
  text-align: center;
}
.contact-info a { color: var(--vibrant2); text-decoration: underline; }
.contact-info a:hover { color: var(--vibrant1); }


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #23272A;
  color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 32px;
  box-shadow: 0 -5px 22px 0 rgba(35,39,42,0.13);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  min-height: 56px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.44s cubic-bezier(.7,.04,.51,1.18), opacity 0.38s;
  opacity: 1;
  pointer-events: all;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: var(--vibrant1);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 7px 22px;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.15s, color 0.13s, transform 0.15s;
}
.cookie-banner button.cookie-settings {
  background: var(--vibrant2);
}
.cookie-banner button.cookie-reject {
  background: var(--vibrant3);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: var(--primary);
  transform: scale(1.04) translateY(-1px);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 13px;
    padding: 20px 10px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- COOKIE PREFERENCE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(35,39,42,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.36s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 12px 44px 0 rgba(35,39,42,0.11);
  min-width: 310px;
  max-width: 95vw;
  padding: 34px 26px 28px 26px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  animation: cookie-modal-in 0.38s cubic-bezier(.62,.01,.65,1.03);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@keyframes cookie-modal-in {
  from { transform: translateY(78px) scale(0.99); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h4 {
  font-family: var(--font-display);
  color: var(--vibrant1);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 800;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.cookie-modal label {
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-modal input[type='checkbox'] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--vibrant1);
  border-radius: 6px;
  margin-right: 7px;
  cursor: pointer;
  position: relative;
  background: #fafcff;
  transition: border 0.13s, background 0.12s;
}
.cookie-modal input[type='checkbox']:checked {
  background: var(--vibrant2);
  border-color: var(--vibrant2);
}
.cookie-modal input[type='checkbox']:checked::after {
  content: '\2713'; /* Checkmark */
  color: #fff;
  font-size: 1.18rem;
  position: absolute;
  left: 2px;
  top: -1px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal .cookie-actions button {
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: 700;
}
.cookie-modal .close-cookie-modal {
  color: var(--vibrant3);
  font-size: 1.4rem;
  background: none;
  border: none;
  position: absolute;
  right: 16px;
  top: 14px;
  cursor: pointer;
  z-index: 2;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1060px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 750px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  .service-cards > div, .card {
    min-width: 170px;
    max-width: 100%;
    padding: 18px 12px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 32px;
  }
}
@media (max-width: 540px) {
  body { font-size: 0.98rem; }
  .container { padding: 0 5px; }
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.09rem; margin-bottom: 6px; }
  .testimonial-card {
    padding: 12px 7px;
  }
}
@media (max-width: 420px) {
  h1, .h1 { font-size: 1.13rem; }
  h2, .h2 { font-size: 1.04rem; }
  .footer .container { padding: 0 2px; }
  .contact-info { font-size: 0.95rem; }
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
a, button, .card, .cta-button, .testimonial-card, .service-cards > div {
  transition: box-shadow 0.19s, color 0.13s, background 0.19s, transform 0.2s;
}

/* --- UTILITIES --- */
.mt-2  { margin-top: 12px; }
.mt-4  { margin-top: 20px; }
.mb-2  { margin-bottom: 12px; }
.mb-4  { margin-bottom: 24px; }
.gap-20 { gap: 20px; }
.round-xl { border-radius: 24px; }
.text-center { text-align: center; }

/* --- ENERGETIC HIGHLIGHTS --- */
.highlight {
  background: var(--vibrant2);
  color: #fff;
  padding: 2px 8px;
  border-radius: 7px;
  font-weight: bold;
}

/* --- NO GRID OR COLUMN PROPERTIES (FLEX ONLY) --- */
/* (No display:grid, grid-*, column-* anywhere in the stylesheet) */
