/* ========== CSS Reset & Normalize ========== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAF9F6;
  color: #2C2C2C;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px solid #E6BC7C; outline-offset: 2px; }
ul, ol {
  padding-left: 1.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
input[type="email"], input[type="text"], select, textarea {
  background: #fff;
  border: 1px solid #E6BC7C;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: #2C2C2C;
  box-shadow: 0 0 0 2px #E6BC7C33;
}

/* ========== Brand Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  color: #2C2C2C;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 0.6em; }
h2 { font-size: 2rem; margin-bottom: 0.5em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
h4 { font-size: 1.15rem; margin-bottom: 0.3em; }
p.subheadline {
  font-size: 1.18rem;
  color: #73684A;
  letter-spacing: 0.02em;
  margin-bottom: 1.5em;
  font-weight: 500;
}
.style-description {
  color: #2C2C2C;
  font-style: italic;
  margin: 12px 0;
  opacity: 0.85;
}

/* ========== Layout Containers ========== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width:768px) {
  .section { padding: 32px 10px; margin-bottom: 40px; }
  .container { padding: 0 8px; }
}

/* ========== Header Styles ========== */
header {
  background: #FAF9F6;
  border-bottom: 1px solid #EDE8DE;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 20px;
  padding: 14px 0 14px 0;
}
.header-bar img {
  height: 34px;
  width: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #2C2C2C;
  font-weight: 500;
  padding: 6px 0;
  letter-spacing: 0.013em;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  border-radius: 2px;
  margin-right: 4px;
}
.desktop-nav a:hover:not(.btn-primary), .desktop-nav a:focus-visible:not(.btn-primary) {
  color: #E6BC7C;
  border-bottom: 2px solid #E6BC7C;
}
.desktop-nav .btn-primary {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2C2C2C;
  cursor: pointer;
  padding: 5px 8px;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  background: #FFF;
  box-shadow: -6px 0 30px 0 #0000001c;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.54,0.01,0,1.02);
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px 24px;
  gap: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #FFF7ED;
  color: #2C2C2C;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 32px; height: 32px;
  transition: background 0.1s;
  z-index: 5;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6BC7C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}
.mobile-nav a {
  font-size: 1.15rem;
  padding: 12px 0;
  border-radius: 5px;
  color: #2C2C2C;
  transition: background 0.18s, color 0.15s;
  font-family: 'Montserrat',Arial,sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6BC7C1F;
  color: #E6BC7C;
}
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* --- Hamburger/overlay background when open on mobile --- */
.mobile-menu::before {
  content: "";
  display: block;
  position: fixed;
  left: -100vw;
  right: 100%;
  top: 0; bottom: 0;
  background: #2C2C2C33;
  z-index: -1;
}
.mobile-menu.open::before {
  right: 100vw;
  animation: mobileMenuBgIn 0.35s;
}
@keyframes mobileMenuBgIn {
  from { background: #2C2C2C00; }
  to { background: #2C2C2C33; }
}

/* ========== Buttons ========== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, border 0.18s;
  box-shadow: 0 1px 7px 0 #372d1411;
  min-width: 130px;
  padding: 13px 32px;
  font-size: 1.09rem;
  margin: 4px 6px 4px 0;
}
.btn-primary {
  background: #2C2C2C;
  color: #FAF9F6;
  border: 2px solid #2C2C2C;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #E6BC7C;
  color: #2C2C2C;
  border-color: #E6BC7C;
  box-shadow: 0 3px 14px 0 #E6BC7C33;
}
.btn-secondary {
  background: #FFF;
  color: #2C2C2C;
  border: 2px solid #E6BC7C;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: #F7EFE1;
  border-color: #2C2C2C;
}

/* ========== Hero/Banner ========== */
.hero, .reservation-hero {
  background: #faf9f6;
  padding: 70px 0 44px 0;
  margin-bottom: 45px;
}
.hero .content-wrapper, .reservation-hero .content-wrapper {
  gap: 28px;
  align-items: flex-start;
  max-width: 650px;
  margin-left: 0;
}
@media (max-width: 768px) {
  .hero, .reservation-hero {
    padding: 38px 0 18px 0;
  }
  .hero .content-wrapper, .reservation-hero .content-wrapper {
    gap: 18px;
  }
}

/* ========== Features Section ========== */
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 #dfd2ad1a;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 38px 0 0 0;
  justify-content: space-between;
}
.feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  background: #FAF9F6;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 #E6BC7C10;
  padding: 28px 22px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-block img {
  height: 48px;
  margin-bottom: 8px;
}
.feature-block:hover, .feature-block:focus-within {
  box-shadow: 0 6px 18px 0 #E6BC7C33;
  transform: translateY(-6px) scale(1.025);
}

/* ========== Product & Card Layouts ========== */
.product-cards, .service-cards, .testimonial-cards, .footer-wrapper, .news-grid, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.product-card, .service-card, .testimonial-card, .news-item, .bio {
  background: #fff;
  border-radius: 9px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px 0 #bdb88216;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
  min-width: 230px;
  max-width: 330px;
}
.product-card:hover, .service-card:hover, .news-item:hover, .testimonial-card:hover {
  box-shadow: 0 7px 24px 0 #E6BC7C33;
  transform: translateY(-4px) scale(1.02);
}
.product-icon { margin-bottom: 5px; }
.cta-benefits, .newsletter-teaser, .newsletter-signup, .thank-you-section, .cta-service, .cta-contact {
  background: #FFF7ED;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 #EDDCCB18;
}
.benefit-points, .benefits-list {
  margin: 16px 0 20px 0;
  padding-left: 1.5em;
}
.benefits-list li, .benefit-points li {
  font-size: 1.06rem;
  margin-bottom: 9px;
}

/* ========== Forms & Newsletter ========== */
.newsletter-form, .signup-form, .footer-mini-news form {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  margin-top: 13px;
}
.newsletter-form label, .signup-form label, .footer-mini-news label {
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 1rem;
}
.newsletter-form input, .signup-form input, .footer-mini-news input {
  flex: 1 1 180px;
  min-width: 0;
}
@media (max-width:600px) {
  .newsletter-form, .signup-form, .footer-mini-news form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

/* ========== Footer ========== */
footer {
  background: #faf9f6;
  border-top: 1px solid #EDE8DE;
  padding-top: 52px;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-wrapper {
  flex-wrap: wrap;
  gap: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 164px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
}
.footer-tagline {
  font-size: 1.02rem;
  color: #8D7E56;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 165px;
}
.footer-contact {
  font-size: 0.98rem;
  color: #625232;
  min-width: 210px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  width: 28px; height: 28px;
}
.footer-mini-news form {
  min-width: 220px;
}
.footer-bottom {
  margin-top: 20px;
  color: #807153;
  font-size: 0.95rem;
  text-align: center;
  padding-bottom: 14px;
  opacity: .87;
}
@media (max-width:900px){
  .footer-wrapper { flex-direction: column; gap: 24px; }
}

/* ========== Legal/Content Sections ========== */
.legal-content, .about-story, .contact-intro, .map, .reservation-steps, .reservation-faq {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #E6BC7C0F;
  margin-bottom: 30px;
}
.text-section {
  margin: 18px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  padding-left: 1.6em;
  margin-bottom: 6px;
  gap: 8px;
}
.text-section li {
  margin-bottom: 5px;
}

/* ========== Team Intro / Bios ========== */
.team-bios {
  gap: 24px;
  margin-bottom: 18px;
}
.bio {
  min-width: 220px; max-width: 350px;
}
.owner-message blockquote {
  background: #FFF7ED;
  border-left: 4px solid #E6BC7C;
  font-size: 1.13rem;
  padding: 22px 24px 14px 24px;
  border-radius: 9px;
  color: #4B4525;
  margin-bottom: 1em;
}
.owner-message span { font-size: 1rem; display: block; margin-top: 14px; color: #AAA194; }

/* ========== Testimonials ========== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #FFF7ED;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 #E6BC7C26;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 210px;
  max-width: 360px;
  color: #2C2C2C;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.testimonial-card p {
  color: #2C2C2C;
  font-size: 1.06rem;
}
.testimonial-card strong {
  color: #8D7E56;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  margin-top: 7px;
  display: block;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 24px 0 #E6BC7C33;
  transform: translateY(-2px) scale(1.01);
}

/* ========== News List ========== */
.news-list, .newsletter-signup {
  background: #fff;
}
.news-grid {
  gap: 24px;
}
.news-item {
  min-width: 220px;
  max-width: 380px;
}
.news-date {
  display: block;
  color: #BBB092;
  font-size: 0.98rem;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* ========== Cards & Features Utility ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  padding: 20px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 #E6BC7C0A;
}
.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;
}

/* ========== Tables/Maps/Other Content ========== */
.map-placeholder {
  background: #F6F4EF;
  border: 2px dashed #E6BC7C;
  border-radius: 9px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AFA487;
  font-size: 1rem;
  margin-top: 18px;
}

/* ========== FAQ Styles ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item h3 {
  font-size: 1.15rem; margin-bottom: 4px;
}
.faq-item p {
  font-size: 1.01rem;
  color: #59513C;
}

/* ========== Price / Reservation Info ========== */
.price, .price-info {
  color: #E6BC7C;
  font-weight: bold;
  font-size: 1.13rem;
  margin-top: 8px;
}

/* ========== Responsive Layouts ========== */
@media (max-width: 900px) {
  .product-cards, .service-cards, .testimonial-cards, .news-grid, .team-bios, .content-grid { flex-direction: column; }
  .feature-grid { flex-direction: column; }
  .footer-wrapper { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero .content-wrapper, .reservation-hero .content-wrapper { max-width: 100%; align-items: flex-start; }
  .text-image-section { flex-direction: column; align-items: stretch; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .testimonial-card, .product-card, .service-card, .bio, .news-item { max-width: 100%; min-width: 0; }
}
@media (max-width: 530px) {
  .header-bar img { height: 28px; }
  .btn-primary, .btn-secondary { font-size: 0.98rem; padding: 11px 18px; min-width: 100px; }
}

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FFF7ED;
  color: #262209;
  padding: 22px 14px 18px 14px;
  z-index: 1500;
  box-shadow: 0 -1px 18px 0 #DBC28420;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 2px solid #E6BC7C;
  animation: cookieBannerIn 0.45s ease;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  max-width: 510px;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  min-width: 100px;
  padding: 9px 16px;
  font-size: 0.97rem;
}
@media(max-width:570px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,44,44,0.18);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.32s cubic-bezier(0.7,0,0.24,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 7px 30px 0 #9473381a;
  padding: 32px 20px 24px 30px;
  min-width: 285px;
  max-width: 98vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: #FAF9F6;
  border-radius: 50%;
  width: 34px; height: 34px;
  border: none;
  color: #2C2C2C; font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #E6BC7C;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 18px 0 10px 0;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-pref-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #E6BC7C;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 6px;
}

/* ========== Utility Classes ========== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }

/* ========== Animations ========== */
.btn-primary, .btn-secondary, .feature-block, .product-card, .service-card, .testimonial-card, .news-item, .footer-brand, .mobile-menu, .mobile-menu-close, .cookie-banner, .cookie-modal {
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ========== Misc Fixes for Spacing ========== */
.card:not(:last-child), .feature-block:not(:last-child), .testimonial-card:not(:last-child), .product-card:not(:last-child), .service-card:not(:last-child), .bio:not(:last-child), .news-item:not(:last-child) {
  margin-right: 0;
}

/* --- Table Styles --- */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin: 24px 0;
}
th, td {
  border: 1px solid #E6BC7C44;
  padding: 10px 12px;
  text-align: left;
}
th {
  background: #FFF7ED;
  color: #A68E62;
  font-weight: 600;
}

/* --- Hide visually but keep accessible --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Focus visible --- */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, input:focus-visible {
  outline: 2px solid #E6BC7C;
  outline-offset: 2px;
}
