/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #23201e;
  color: #F3EFE7;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

/* BRAND COLORS + NEON ACCENT */
:root {
  --color-primary: #35312D;
  --color-secondary: #C39E6F;
  --color-accent: #F3EFE7;
  --color-bg-dark: #23201e;
  --color-bg-light: #2e2a27;
  --color-neon: #ffe7ab;
  --color-error: #ea4c49;
  --color-success: #09d67d;
  --shadow-card: 0 3px 32px 0 rgba(195,158,111,0.12), 0 1.5px 8px 0 rgba(245,222,161,0.11);
}

/* TYPOGRAPHY: MODERN + REFINED */
h1, .h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(195,158,111,0.08);
}
h2, .h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--color-neon);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
p, ul, ol, blockquote, em, strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 400;
}
strong {
  color: var(--color-secondary);
  font-weight: 600;
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-neon);
  font-size: 1.1rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
  border-left: 4px solid var(--color-secondary);
  padding-left: 20px;
  letter-spacing: 0.2px;
}

/* LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(120deg, #1a1817 70%, #35312D 100%);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-light);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
}
.card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 3.5px 32px 0 var(--color-secondary), 0 1.5px 8px 0 rgba(245,222,161,0.12);
}
.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: #fff;
  color: #23201e;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 5px 32px 0 rgba(195,158,111,0.15), 0 1.5px 8px 0 rgba(245,222,161,0.10);
  border-left: 5px solid var(--color-secondary);
  font-size: 1.05rem;
}
.testimonial-card blockquote {
  color: #23201e;
  border: none;
  font-weight: 500;
}
.testimonial-card p {
  color: #C39E6F;
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL: feature-grid (used on index, collections, etc.) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feature-grid > div {
  min-width: 250px;
  flex: 1 1 260px;
  background: var(--color-bg-light);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  border: 1px solid rgba(195,158,111,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-grid > div:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 5px 24px 5px #C39E6F44;
}
.feature-grid img {
  height: 36px;
  width: 36px;
  filter: brightness(1.2) saturate(1.15) drop-shadow(0 0 8px #ffe7ab33);
}

/* BUTTONS & LINKS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 44px;
  border: none;
  outline: none;
  transition: background 0.14s, color 0.17s, box-shadow 0.2s;
  margin-top: 12px;
  box-shadow: 0 1px 18px 0 #C39E6F70;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--color-secondary);
  color: #23201e;
  box-shadow: 0 0 24px 0 #ffe7ab90;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffe7ab;
  color: #23201e;
  box-shadow: 0 0 32px 4px #ffe7abFF, 0 1.5px 8px 0 #C39E6F35;
}
.btn-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #23201e;
  box-shadow: 0 0 16px 0 #ffe7ab99;
}
nav a.btn-primary { margin-left: 26px; }

/* HEADER NAVIGATION BAR */
header {
  width: 100%;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 50;
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  padding: 28px 0 12px 0;
}
header nav > a img {
  height: 44px;
  width: auto;
}
header ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header ul li {
  margin-bottom: 0 !important;
}
header ul a, .mobile-nav a {
  color: var(--color-accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  position: relative;
  padding: 7px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
}
header ul a:hover, header ul a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-neon);
  background: rgba(195, 158, 111, 0.09);
}
header ul a.active {
  color: var(--color-secondary);
}

/* MOBILE MENU & HAMBURGER STYLES */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 24px;
  background: var(--color-secondary);
  color: #23201e;
  font-size: 2.4rem;
  border-radius: 7px;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  z-index: 210;
  border: none;
  transition: box-shadow 0.18s, background 0.17s;
}
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 3px #ffe7ab77;
}
.mobile-menu-toggle:hover {
  background: #ffe7ab;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23201e;
  color: #ffe7ab;
  z-index: 250;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(.68,-0.4,.27,1.4), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 21px;
  right: 19px;
  font-size: 2.3rem;
  color: var(--color-secondary);
  background: transparent;
  border: none;
  border-radius: 50%;
  padding: 6px;
  z-index: 300;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe7ab20;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  margin-top: 72px;
  padding-left: 36px;
  padding-right: 36px;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-secondary);
  padding: 11.5px 8px;
  border-radius: 9px;
  transition: background 0.14s, color 0.14s;
}

/* HERO SECTIONS & MAIN CTA */
section:first-of-type {
  background: linear-gradient(120deg, #35312D 90%, #C39E6F 100%);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 16px 40px -12px #C39E6F33;
  margin-bottom: 42px;
}
section .container {
  display: flex;
  flex-direction: column;
}

/* FOOTER */
footer {
  width: 100%;
  padding: 56px 0 24px 0;
  background: linear-gradient(110deg,#23201e 85%,#35312D 100%);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -5px 28px 0 #C39E6F14;
  color: var(--color-accent);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
footer img {
  height: 35px;
  width: auto;
  margin-bottom: 7px;
  filter: drop-shadow(0 0 10px #C39E6F33);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--color-secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
  position: relative;
}
footer nav a:hover,footer nav a:focus{color:var(--color-neon);}
.footer-contact {
  color: var(--color-accent);
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  margin-top: 8px;
}
.footer-contact p, .footer-contact img {
  display: inline-block;
  vertical-align: middle;
}
.footer-contact img {
  height: 17px;
  width: auto;
  margin-right: 6px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #23201e;
  color: #ffe7ab;
  padding: 24px 10px;
  box-shadow: 0 0 32px 0 #C39E6F22, 0 2px 18px 0 #C39E6F55;
  min-height: 82px;
  transition: transform .34s cubic-bezier(.5,1.6,.27,1),opacity .24s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #ffe7ab;
  margin-right: 18px;
  max-width: 420px;
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner-btns button {
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background .16s, color 0.14s, box-shadow 0.16s;
  border: none;
}
.cookie-accept {
  background: var(--color-success);
  color: #23201e;
  box-shadow: 0 1.5px 9px 0 #09d67d44;
}
.cookie-accept:hover,.cookie-accept:focus {
  background: #37e195;
  color: #23201e;
}
.cookie-reject {
  background: var(--color-error);
  color: #fff;
  box-shadow: 0 1.5px 9px 0 #ea4c4944;
}
.cookie-reject:hover,.cookie-reject:focus {
  background: #ee6357;
}
.cookie-settings {
  background: transparent;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
}
.cookie-settings:hover,.cookie-settings:focus {
  background: var(--color-neon);
  color: #23201e;
}

/* COOKIE PREFS MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,18,16,0.82);
  z-index: 4800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #23201e;
  color: #ffe7ab;
  box-shadow: 0 8px 42px 0 #C39E6F44;
  border-radius: 23px;
  max-width: 390px;
  width: 95vw;
  padding: 32px 24px;
  z-index: 4900;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: dropIn 0.44s cubic-bezier(.51,1.27,.51,1.18);
}
@keyframes dropIn {
  0% { transform: translateY(-55px) scale(.93); opacity: 0; }
  65% { transform: translateY(12px) scale(1.01); }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 11px;
}
.cookie-category-desc {
  font-size: 0.97rem;
  color: #ffe7abcc;
  margin-bottom: 8px;
}
.cookie-modal-buttons {
  display: flex; gap: 14px; justify-content: flex-end; margin-top: 16px;
}

/* GENERAL SPACING FOR UL/OL */
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--color-accent);
}
ul li, ol li {
  margin-bottom: 9px;
}
em {
  color: var(--color-secondary);
  font-style: italic;
}

/* MISC */
.text-section {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 680px;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 7px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: unset; width: 100%;
  }
  header nav {
    flex-direction: row;
    gap: 10px;
    padding: 16px 0 9px 0;
  }
  header ul {
    display: none !important;
  }
  nav a.btn-primary {
    margin-left: 0;
    font-size: 1.05rem
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width:600px) {
  html{font-size:14px;}
  .feature-grid > div {
    padding: 16px 7px;
  }
  .testimonial-card { padding: 16px 7px;}
  .cookie-banner .cookie-text {margin-right: 7px;}
  .footer-contact {font-size:.95rem;}
}
@media (max-width: 480px) {
  h1, .h1 {font-size:2rem;}
  h2, .h2 {font-size:1.3rem;}
  .btn-primary, .btn-secondary {
    font-size:.98rem;
    padding: 10px 16px;
  }
}

/* Flex-direction column on mobile for text-image sections */
@media (max-width: 768px) {
.text-image-section { flex-direction: column; align-items: flex-start;}
.content-grid { flex-direction: column;}
}

/* ADDITIONAL MICRO-INTERACTIONS/TRANSITIONS */
a, .btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal-buttons button {
  transition: background 0.18s, color 0.14s, box-shadow 0.18s, border-color 0.14s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.21s, border-color 0.17s, transform 0.19s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.014);
  box-shadow: 0 7px 32px 0 #C39E6F33,0 1.5px 8px 0 #ffe7ab11;
}

/* Hide scroll when menu/modal visible */
body.menu-open, body.cookie-modal-open { overflow: hidden; }

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