/* === CSS RESET & BASE === */
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;
}

html {
  scroll-behavior: smooth;
  font-family: "Georgia", "Times New Roman", Times, serif;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F7F5F2;
  color: #2A3340;
  font-family: 'Georgia', serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: disc inside;
  margin: 0 0 16px 0;
  padding: 0 0 0 16px;
}
li {
  padding-left: 8px;
  margin-bottom: 10px;
}
a {
  color: #2A3340;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #855e42;
  outline: none;
}

/* Headings – classic typography scale with elegant spacing */
h1, h2, h3, h4, h5, h6 {
  color: #2A3340;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; letter-spacing: 0; }
h2 { font-size: 2rem; margin-bottom: 22px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

p {
  color: #2A3340;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(147, 163, 186, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .section { padding: 28px 8px; margin-bottom: 36px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(147, 163, 186, 0.09);
  padding: 28px 22px 20px 22px;
  min-width: 280px;
  max-width: 100%;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(147, 163, 186, 0.21);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2E7D9;
  border-radius: 14px;
  padding: 20px 26px;
  margin-bottom: 20px;
  min-width: 230px;
  box-shadow: 0 2px 10px 0 rgba(42,51,64,0.04);
  font-size: 1rem;
  color: #2A3340;
  border-left: 5px solid #2A3340;
}
.testimonial-card p {
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: 6px;
  color: #2A3340;
}
.testimonial-card strong {
  font-weight: 700;
}
.testimonial-card div {
  color: #2A3340;
  font-size: 0.97rem;
}

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

.map-placeholder, .store-photo-placeholder {
  background: #E9EEF4;
  border: 1.5px dashed #93A3BA;
  border-radius: 10px;
  color: #93A3BA;
  text-align: center;
  padding: 34px 8px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  margin-top: 14px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  padding: 22px 0 18px 0;
  box-shadow: 0 2px 10px 0 rgba(42,51,64,0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}
header > a img {
  height: 38px;
  width: auto;
}
header nav {
  display: flex;
  gap: 26px;
}
header nav a {
  font-size: 1rem;
  font-family: 'Georgia', serif;
  color: #2A3340;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #F2E7D9;
  color: #855e42;
}
.cta.primary {
  padding: 10px 28px;
  background: #2A3340;
  color: #fff !important;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 30px;
  border: none;
  box-shadow: 0 1px 5px 0 rgba(147,163,186,0.12);
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  cursor: pointer;
  margin-left: 16px;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #855e42;
  color: #fff;
  box-shadow: 0 6px 32px 0 rgba(42,51,64,0.16);
}
.cta {
  padding: 9px 24px;
  background: #93A3BA;
  color: #2A3340;
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 1px 3px 0 rgba(147,163,186,0.08);
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #2A3340;
  color: #fff;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 24px; right: 24px;
  z-index: 51;
  border: none;
  background: none;
  font-size: 2.2rem;
  color: #2A3340;
  outline: none;
  cursor: pointer;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 28px 0 rgba(42,51,64,0.12);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.56,0.04,0.31,1.01);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #2A3340;
  font-size: 2.3rem;
  align-self: flex-end;
  padding: 32px 26px 11px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #855e42;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  margin-top: 20px;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.18rem;
  padding: 18px;
  color: #2A3340;
  border-radius: 12px;
  font-family: 'Georgia', serif;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2E7D9;
  color: #855e42;
}

@media (max-width: 1000px) {
  header nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}

/* === MAIN LAYOUT === */
main {
  margin-top: 12px;
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* === FOOTER === */
footer {
  background: #2A3340;
  color: #fff;
  padding: 42px 0 22px 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
footer nav {
  display: flex;
  gap: 30px;
}
footer nav a {
  color: #fff;
  font-size: 0.97rem;
  font-family: 'Georgia', serif;
  opacity: 0.85;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.11s, color 0.17s, opacity 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #F2E7D9;
  background: #384050;
  opacity: 1.0;
}
.footer-brand img {
  width: 48px;
  height: auto;
  display: block;
  margin: 0 auto 12px auto;
}
.footer-contact {
  text-align: center;
  font-size: 1rem;
  opacity: 0.94;
}
.footer-contact p { margin-bottom: 5px; }

@media (max-width: 600px) {
  footer { padding: 32px 0 14px 0; }
  .footer-contact { font-size: 0.88rem; }
  footer nav { gap: 13px; flex-wrap: wrap; }
}

/* === FORM, MODALS, MISC === */
input, textarea, select {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  border: 1.5px solid #93A3BA;
  border-radius: 7px;
  padding: 8px 12px;
  margin-bottom: 14px;
  background: #fff;
  color: #2A3340;
  transition: border-color 0.16s;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2A3340;
}

button {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  cursor: pointer;
}

/* === COOKIE BANNER & COOKIE MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1100;
  background: #F2E7D9;
  box-shadow: 0 -2px 18px 0 rgba(42,51,64,0.08);
  border-top: 2.5px solid #2A3340;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 12px 20px 12px;
  font-family: 'Georgia', serif;
  animation: cookie-fade-in 0.5s;
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #2A3340;
  text-align: center;
  margin-bottom: 6px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 4px;
}
.cookie-actions button {
  border: none;
  border-radius: 16px;
  padding: 10px 30px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  background: #2A3340;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  margin: 0;
}
.cookie-actions button:hover, .cookie-actions button:focus {
  background: #93A3BA;
  color: #2A3340;
}
.cookie-actions .cookie-settings-btn {
  background: #93A3BA;
  color: #2A3340;
  font-weight: 600;
}
.cookie-actions .cookie-settings-btn:hover, .cookie-actions .cookie-settings-btn:focus {
  background: #2A3340;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,51,64,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  animation: cookie-fade-in 0.27s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 96vw;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 8px 48px 0 rgba(42,51,64,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 11px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2A3340;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
@media (max-width: 440px) {
  .cookie-modal { padding: 20px 6vw 14px 6vw; }
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 820px) {
  .container { max-width: 98vw; }
  .content-grid, .card-container { flex-direction: column; gap: 22px; }
  .testimonial-card { min-width: 0; }
}
@media (max-width: 600px) {
  header { flex-direction: column; gap: 8px; padding: 12px 0 10px 0; }
  header > a img { height: 28px; }
  .section { border-radius: 10px; }
}
@media (max-width: 420px) {
  .cookie-actions { flex-direction: column; gap: 11px; }
}

/* === ANIMATIONS, HOVER EFFECTS, MICRO-INTERACTIONS === */
.card, .testimonial-card, .cta, .cta.primary, .mobile-nav a, header nav a {
  transition: box-shadow 0.18s, background 0.15s, color 0.18s, border-color 0.15s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 42px 0 rgba(42,51,64,0.11);
  z-index: 2;
}
.cta:active, .cta.primary:active {
  transform: scale(0.98);
}
.mobile-nav a:active { background: #e1d4c0; }
.button:disabled, button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* === ACCESSIBLE FOCUS INDICATORS === */
a:focus, button:focus, .cta:focus, .cta.primary:focus {
  outline: 2px solid #93A3BA;
  outline-offset: 2px;
  z-index: 5;
}

/* === UTILS === */
.hide { display: none !important; }

/* === ELEGANT_CLASSIC SHADOWS, SPACING, AND EFFECTS === */
hr {
  border: none;
  border-top: 2px solid #93A3BA;
  margin: 20px 0 24px 0;
}

/* === SECTIONS MINIMUM SPACING === */
.section, .testimonial-card, .card, .content-wrapper, .text-section {
  margin-bottom: 20px;
}
