/* RESET & BASE TYPOGRAPHY --------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #f2efe6;
  color: #1a2e22;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: #155e43;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #a06a13;
}

/* FONT CLASSES & HIERARCHY --------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a2e22;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; letter-spacing: -.5px; margin-bottom: 18px; }
h2 { font-size: 1.625rem; margin-bottom: 16px; letter-spacing: -.3px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -.1px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }

.subheadline {
  color: #666;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 28px;
}

strong, b {
  font-weight: 700;
}

/* LUXURY PREMIUM THEME COLORS ------------------ */
:root {
  --primary: #155e43;
  --primary-dark: #124b36;
  --secondary: #fff;
  --background: #f2efe6;
  --card-bg: #fff;
  --text: #1a2e22;
  --heading: #0d2016;
  --accent: #a06a13;
  --gold: #d3b16a;
  --gold-shadow: rgba(211,175,120,0.3);
  --grey: #e9e5db;
}

/* SPACING & CONTAINER -------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAVIGATION -------------------------- */
header {
  width: 100%;
  background: var(--card-bg);
  border-bottom: 1.5px solid var(--gold);
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 16px 0 rgba(160,106,19,0.07);
}
.logo {
  display: flex;
  align-items: center;
  height: 62px;
  margin-right: 30px;
  transition: filter .3s;
}
.logo:hover {
  filter: brightness(1.1) drop-shadow(0 0 3px var(--gold));
}
header .container {
  min-height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.main-nav a:hover:not(.btn-primary) {
  background: var(--gold-shadow);
  color: var(--accent);
}

.btn-primary {
  background: linear-gradient(90deg, #d58d19 0%, var(--gold) 90%);
  color: #fff !important;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 26px;
  border-radius: 26px;
  box-shadow: 0 3px 16px 0 var(--gold-shadow);
  letter-spacing: .03em;
  border: none;
  transition: background .18s, box-shadow .24s, color .18s;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  font-size: 1rem;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--gold) 0%, #d58d19 95%);
  color: #fff;
  box-shadow: 0 6px 24px 0 var(--gold-shadow);
  filter: brightness(1.08);
}

/* Mobile burger menu --------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 16px;
  border: 2px solid var(--gold);
  transition: background .18s, filter .18s;
  cursor: pointer;
  z-index: 1300;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--gold);
  filter: drop-shadow(0 0 2px #a06a13);
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: var(--card-bg);
  box-shadow: 0 0 32px 0 var(--gold-shadow);
  transform: translateX(-105%);
  transition: transform .37s cubic-bezier(.7,.3,.45,1.1);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  font-size: 2.3rem;
  color: var(--accent);
  position: absolute;
  right: 24px;
  top: 18px;
  border: none;
  cursor: pointer;
  z-index: 1500;
  padding: 4px 10px;
  line-height: 1;
  border-radius: 5px;
  transition: background .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--gold-shadow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  border-radius: 6px;
  padding: 12px 6px 12px 0;
  transition: color .18s, background .16s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold-shadow);
  color: var(--accent);
}

/* Hide nav/handle nav responsive */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION --------------------------------- */
.hero-section {
  background: linear-gradient(104deg, #fff 60%, #faf6ef 95%);
  border-bottom: 1.5px solid var(--gold);
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.5px;
}
.hero-section .subheadline {
  font-size: 1.15rem;
  color: #3b5447;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.7rem;
  }
  .hero-section {
    padding: 32px 0 24px;
  }
}

/* CARDS, FEATURE, GRID PATTERNS ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 var(--gold-shadow);
  border: 1.5px solid var(--gold);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border .19s, transform .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 var(--gold-shadow), 0 0 0 2px var(--accent) inset;
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 26px 24px;
}

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

/* FEATURES / HIGHLIGHTS PATTERNS ------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 var(--gold-shadow);
  border: 1.5px solid #e8e3db;
  padding: 24px 22px 20px 22px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 230px;
  transition: box-shadow .22s, border .18s, transform .14s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px var(--gold-shadow));
}
.feature-item h3 {
  color: var(--primary);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0 var(--gold-shadow);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.017);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* SERVICE LIST / FAQ LIST CARDS ------------------- */
.service-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.service-list > div, .faq-list > div {
  flex: 1 1 280px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 var(--gold-shadow);
  border: 1.3px solid #e8e3db;
  padding: 26px 20px 18px 22px;
  margin-bottom: 20px;
  min-width: 250px;
  transition: border .15s, box-shadow .18s, transform .12s;
}
.service-list > div:hover,
.faq-list > div:hover,
.service-list > div:focus-within,
.faq-list > div:focus-within {
  border-color: var(--gold);
  box-shadow: 0 6px 26px 0 var(--gold-shadow);
  transform: scale(1.014);
}
@media (max-width: 900px) {
  .service-list, .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-list > div, .faq-list > div {
    min-width: 0;
    width: 100%;
  }
}

/* ABOUT SECTION --------------------------------- */
.about-section {
  background: #fffaf4;
  border-top: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 var(--gold-shadow);
}
.about-section ul {
  padding-left: 22px;
  margin-top: 8px;
  margin-bottom: 10px;
  color: var(--primary);
}
.about-section li {
  list-style: disc inside;
  margin-bottom: 7px;
  font-size: 1rem;
}

/* TESTIMONIALS --------------------------------- */
.testimonials-section {
  background: var(--background);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 18px 18px;
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1.5px solid var(--accent);
  box-shadow: 0 3px 24px 0 var(--gold-shadow);
  transition: box-shadow .22s, border .18s;
  color: #15261c;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #283c2d;
  font-weight: 500;
  margin: 0 0 0 0;
}
.testimonial-details {
  margin-left: auto;
  color: #70591c;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  min-width: 120px;
  text-align: right;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 var(--gold-shadow);
  border-color: var(--gold);
  background: #fffbe8;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 9px;
  }
  .testimonial-details {
    margin-left: 0;
    text-align: left;
  }
}

/* TABLES --------------------------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 24px 0;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 var(--gold-shadow);
}
thead th, table th {
  background: #f5f2e5;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 12px;
}
td {
  padding: 11px 12px;
  border-bottom: 1px solid #ece7da;
  font-size: 1rem;
}
tr:last-child td {
  border-bottom: none;
}

/* TEXT-IMAGE/ELEMENT LAYOUT *---------------------*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* BUTTONS & LINKS ------------------------------- */
.btn-primary,
button.btn-primary {
  appearance: none;
  border: none;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 95%);
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 26px;
  padding: 13px 32px;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background .18s, box-shadow .19s, color .2s, filter .17s;
  box-shadow: 0 3px 16px 0 var(--gold-shadow);
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--gold) 0%, #d58d19 96%);
  color: #fff;
  box-shadow: 0 7px 36px 0 var(--gold-shadow);
  filter: brightness(1.03);
  outline: none;
}

/* LISTS ----------------------------------------- */
ul, ol {
  padding-left: 22px;
  color: var(--text);
  margin-bottom: 14px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

/* FOOTER ---------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 32px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 12px;
}
.footer-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: .96;
  font-weight: 500;
  transition: color .17s, opacity .18s;
  padding: 4px 10px;
  border-radius: 4px;
}
.footer-navigation a:hover {
  color: var(--gold);
  opacity: 1.0;
  background: rgba(211, 177, 106, 0.15);
}
.footer-contact {
  margin-bottom: 8px;
  color: #f6efdd;
  text-align: center;
}
.contact-summary {
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-social img {
  width: 48px;
  margin-top: 4px;
  filter: drop-shadow(0 2px 4px var(--gold-shadow));
}
@media (max-width: 600px) {
  footer .container {
    gap: 14px;
  }
  .footer-navigation {
    gap: 14px;
    font-size: 0.96rem;
  }
}

/* COOKIE CONSENT BANNER & MODAL ----------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #fffbe9 80%, #f5f0e4 100%);
  color: #1a2e22;
  box-shadow: 0 -5px 22px 0 var(--gold-shadow);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 22px 20px 18px 20px;
  font-size: 1rem;
  border-top: 1.5px solid var(--gold);
  animation: cookie-banner-in .33s cubic-bezier(.4,.75,.4,1.08);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(110%); opacity: 0; }
  75% { opacity: 0.7; }
  100% { transform: translateY(0%); opacity: 1; }
}
.cookie-banner p {
  flex: 1;
  margin-bottom: 0;
  color: #452e09;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 9px 19px;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color .15s, border .12s;
  box-shadow: 0 2px 7px 0 var(--gold-shadow);
}
.cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--gold);
  color: var(--heading);
}
.cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 1.3px solid var(--gold);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f9ede0;
  color: var(--accent);
}
.cookie-settings {
  background: var(--primary);
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px 12px 10px;
    font-size: 0.96rem;
  }
  .cookie-buttons {
    width: 100%;
    gap: 8px;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,34,27,0.43);
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .18s;
  opacity: 1;
  animation: cookie-modal-in .30s .02s;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  80% { opacity: 0.8; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: linear-gradient(104deg, #fffbe9 80%, #fef8e6 100%);
  border-radius: 16px;
  box-shadow: 0 6px 56px 0 var(--gold-shadow);
  padding: 36px 28px 26px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  color: #1a2e22;
  border: 1.5px solid var(--gold);
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 17px;
}
.cookie-modal .cookie-categories {
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
}
.cookie-essential {
  color: #a06a13;
  font-weight: 700;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: var(--accent);
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 3px;
  padding: 2px 5px;
  transition: background .18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--gold-shadow);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .btn-primary {
  margin-top: 0;
  padding: 10px 22px;
  font-size: 1rem;
}
@media (max-width: 500px){
  .cookie-modal-content {
    padding: 20px 7vw 18px 7vw;
    max-width: 98vw;
  }
}

/* RESPONSIVE ----------------------------------- */
@media (max-width: 1060px) {
  .container {
    max-width: 93vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 27px 5px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.35rem;
    margin-bottom: 9px;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 4px;
  }
  .content-grid,
  .card-container,
  .feature-grid {
    gap: 10px;
  }
}

/* MISCELLANEOUS / DETAIL REFINEMENTS ----------- */
.text-section {
  margin-bottom: 18px;
}
.address {
  background: #faf6ee;
  border-radius: 10px;
  padding: 18px 17px 14px 17px;
  margin-top: 12px;
  border-left: 4px solid var(--gold);
  color: #444;
  box-shadow: 0 2px 14px 0 var(--gold-shadow);
}
.contact-details {
  background: #f9f5ea;
  border-radius: 10px;
  padding: 18px 16px 11px 16px;
  margin-bottom: 14px;
  border-left: 4px solid var(--primary);
  color: var(--primary);
}
.contact-details h2 {
  color: var(--primary);
  font-size: 1.11rem;
  margin-bottom: 7px;
}

section {
  padding: 15px;
}
/* Animations, Focus Rings, Micro-Interactions */
a:focus, button:focus, .btn-primary:focus, .feature-item:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.card:active, .feature-item:active, .btn-primary:active {
  filter: brightness(0.98);
  transform: scale(0.985);
}

::-webkit-input-placeholder { color: #857e70; opacity: 1; }
:-moz-placeholder { color: #857e70; opacity: 1; }
::-moz-placeholder { color: #857e70; opacity: 1; }
:-ms-input-placeholder { color: #857e70; opacity: 1; }
::placeholder { color: #857e70; opacity: 1; }
