/*================================================================*\
Reset & Base Styles – Elegant Classic for Airy Sanctuary
\*================================================================*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  line-height: 1.75;
  background: #F4F6FB;
  color: #2A2F3B;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: #1A1F2B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #2EC4B6; text-decoration: underline; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1A1F2B;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
strong { font-weight: 700; }
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  max-width: 60ch;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, .cta-primary, .cta-secondary {
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 24px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(26, 31, 43, 0.05);
}
.cta-primary {
  background: #2EC4B6;
  color: #fff;
  box-shadow: 0 2px 8px rgba(46, 196, 182, 0.10);
}
.cta-primary:hover, .cta-primary:focus {
  background: #1A1F2B;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 16px rgba(26,31,43,0.08);
}
.cta-secondary {
  background: #fff;
  color: #2EC4B6;
  border: 1.5px solid #2EC4B6;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E8F6F4;
  color: #1A1F2B;
  border-color: #1A1F2B;
}
hr {
  border: none;
  border-top: 1px solid #ECEDEE;
  margin: 32px 0;
}
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(34, 41, 51, 0.05);
}
/*==========================*
  Header & Navigation
*===========================*/
header {
  background: #fff;
  box-shadow: 0 3px 16px rgba(26, 31, 43, 0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
header a img {
  height: 44px;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: .01em;
  padding: 4px 0;
  color: #1A1F2B;
  position: relative;
  transition: color 0.2s;
}
nav a.cta-primary {
  margin-left: 16px;
  font-size: 1rem;
}
nav a:not(.cta-primary)::after {
  content: '';
  display: block;
  width: 0%;
  border-bottom: 2px solid #2EC4B6;
  transition: width 0.2s;
  margin-top: 2px;
}
nav a:hover::after, nav a:focus::after {
  width: 100%;
}
nav a:hover, nav a:focus { color: #2EC4B6; }

/* Burger mobile menu */
.mobile-menu-toggle {
  display: none;
  background: #2EC4B6;
  color: #fff;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(46,196,182,0.10);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1A1F2B;
  color: #fff;
}
@media (max-width: 1020px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
/*==============
  Mobile nav
================*/
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 32, 42, 0.94);
  z-index: 888;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.75,.01,.36,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.35s cubic-bezier(.75,.01,.36,.98), opacity 0.2s;
}
.mobile-menu-close {
  background: none;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1;
  padding: 20px 28px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 16px;
  margin-right: 12px;
  transition: background 0.2s;
  border: 0;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(46,196,182,0.08);
  color: #2EC4B6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  margin: 0 36px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  padding: 10px 0;
  border-radius: 5px;
  transition: background 0.18s, color 0.14s;
  width: 100%;
  display: block;
  min-width: 210px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2EC4B6;
  color: #fff;
}
.mobile-nav a.cta-primary {
  background: #2EC4B6;
  color: #fff;
  margin-top: 16px;
}
.mobile-nav a.cta-primary:hover, .mobile-nav a.cta-primary:focus {
  background: #1A1F2B;
}
/* Only show burger on small screens */
@media (min-width: 1020px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
/*==========================*
  Hero Section
*===========================*/
.hero {
  background: linear-gradient(115deg, #F6F7FC 85%, #E5F6F3 100%);
  padding: 56px 0 48px 0;
  border-radius: 0 0 36px 36px;
  margin-bottom: 40px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.15rem;
  color: #393D4A;
  margin-bottom: 16px;
}
.hero .cta-primary {
  margin-top: 14px;
}

/*==========================*
  Section/Content containers
*===========================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(34, 41, 51, 0.06);
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,31,43,0.08);
  min-width: 260px;
  padding: 30px 24px 24px 24px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(46,196,182,0.15);
  transform: translateY(-2px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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: #F4F7FC;
  border: 1px solid #E1E3E9;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,31,43,0.04);
  margin-bottom: 20px;
  flex: 1 1 100%;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #222531;
  font-family: 'Georgia', serif;
}
.testimonial-card .star-rating {
  font-size: 1.3rem;
  color: #FFB400;
  letter-spacing: .05em;
  margin: 4px 0;
  font-family: 'Montserrat', 'Georgia', serif;
}
.testimonial-card span {
  font-size: .98rem;
  color: #2EC4B6;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F7FC;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 20px;
  border: 1px solid #ECEDEE;
}
.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F6F7FC;
  border-radius: 10px;
  padding: 22px 20px;
  font-size: 1.07rem;
  margin: 18px 0 18px 0;
  border: 1.5px solid #E1E3E9;
}
.info-block img{
  max-width: 50px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
  margin: 14px 0;
}
.address-block, .opening-hours, .public-transport {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F6F7FC;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #25384B;
  border: 1.2px solid #E1E3E9;
}
/* Footer styles */
footer {
  background: #1A1F2B;
  color: #EAE8E3;
  padding: 36px 0 18px 0;
  margin-top: 48px;
  font-size: 1rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-grid a img {
  height: 38px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  gap: 9px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  margin-bottom: 5px;
}
footer nav a {
  color: #EAE8E3;
  transition: color 0.2s;
  padding: 0 1px;
}
footer nav a:hover, footer nav a:focus {
  color: #2EC4B6;
  text-decoration: underline;
}
footer .footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  height: 24px;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 -3px 14px rgba(26,31,43,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px 18px 18px 18px;
  font-size: 1rem;
  border-radius: 16px 16px 0 0;
  border-top: 2px solid #2EC4B6;
  animation: bannerIn 0.6s cubic-bezier(.81,-0.14,.49,1.13);
}
@keyframes bannerIn {
  0% { transform: translateY(110px); opacity: 0; }
  75% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #222531;
  margin-bottom: 7px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 10px;
  padding: 8px 22px;
  font-family: inherit;
  background: #2EC4B6;
  color: #fff;
  border: none;
  margin: 0;
  outline: none;
  font-weight: 600;
  transition: background 0.18s, color 0.16s, transform 0.2s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1A1F2B;
  color: #fff;
  transform: translateY(-1.5px) scale(1.02);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #1A1F2B;
  border: 1.4px solid #2EC4B6;
  transition: background 0.18s, color 0.20s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #F6F7FC;
  color: #2EC4B6;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(26,31,43,0.65);
  z-index: 1002;
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  z-index: 1005;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 11px 38px rgba(26,31,43,0.14);
  padding: 38px 32px;
  width: 95vw;
  max-width: 388px;
  text-align: left;
  animation: modalIn .5s cubic-bezier(.85,-0.08,.47,1.09);
}
@keyframes modalIn {
  0% { opacity: 0; transform: translate(-50%,36%); }
  90% { opacity: 1; }
  100% { opacity:1; transform: translate(-50%,-50%); }
}
.cookie-modal.active {
  display: block;
}
.cookie-modal h3 {
  font-size: 1.26rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
}
.cookie-modal label {
  font-size: 1.08rem;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #2EC4B6;
  width: 19px;
  height: 19px;
  border-radius: 4px;
  border: 1.5px solid #2EC4B6;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}
.cookie-modal button {
  font-size: 1rem;
  border-radius: 9px;
  padding: 8px 22px;
  font-family: inherit;
  font-weight: 600;
  background: #2EC4B6;
  color: #fff;
  border: none;
  transition: background 0.16s, color 0.18s;
  outline: none;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1A1F2B;
  color: #fff;
}

/* Responsive Design – Mobile First */
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    gap: 10px;
    min-height: 60px;
    padding: 4px 8px;
  }
  .hero {
    padding: 32px 0 28px 0;
  }
  .content-wrapper, .section, .container {
    padding-left: 7px;
    padding-right: 7px;
    gap: 13px;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 44px;
    border-radius: 12px;
  }
  .footer-grid {
    flex-direction: column;
    gap: 18px;
  }
  .info-row {
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .cookie-modal {
    padding: 19px 8px;
    max-width: 96vw;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .content-wrapper { gap: 8px; }
  .footer-grid nav { font-size: .94rem; }
  .hero { padding: 14px 0 13px 0; }
  .container { padding: 0 4px; }
}
/*==========================*
  Utilities / Minor Styles
*===========================*/
.icon {
  width: 1.3em; height: 1.3em;
  vertical-align: middle;
  margin-right: 3px;
}
.hidden, [hidden] { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.bg-accent { background: #2EC4B6; color: #fff; }
.bg-secondary { background: #F4F6FB; }
/*==========================*
  Animations & Micro-interactions
*===========================*/
a, button, .card, .cta-primary, .cta-secondary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: 
    background 0.18s, 
    color 0.18s, 
    transform 0.2s, 
    box-shadow 0.23s, 
    border-color 0.2s;
}
.card, .section, .cta-primary, .cta-secondary {
  will-change: transform, box-shadow;
}
.card:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.99);
  box-shadow: 0 2px 3px rgba(26,31,43,0.07);
}
/*==========================*
  ARIA/Accessibility helpers
*===========================*/
:focus {
  outline: 2px solid #2EC4B6;
  outline-offset: 2px;
}

/*==========================*
  Misc Classes for Layout Compliance
*===========================*/
/* Already handled above: .section, .card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item */

/*==========================*
  Print / Misc
*===========================*/
@media print {
  header, .mobile-menu, .cookie-banner, footer { display: none !important; }
  .section, .container, .content-wrapper { background: none !important; box-shadow: none !important; }
}
