* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-cont {
  padding-inline: 5%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 50px;
  font-size: 2rem;
  font-weight: bold;
  color: #e5bf1d;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 100%;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: #f8f9fa;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #e5bf1d;
}

.nav-cta {
  background-color: #e5bf1d;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  font-size: 1.05rem;
  border-radius: 10px;
  color: #010101;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta.active {
  background: #d4ac1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 191, 29, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ===== HERO (Home) ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("./images/cb6-building.jpg") no-repeat left 36%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 2rem 0;
}

.hero_title {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.hero_title img {
  height: 6rem;
  padding-bottom: 1rem;
}

.hero-content {
  max-width: 900px;
  padding: 2.5rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  color: #e5bf1d;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-motto {
  font-style: italic;
  font-size: 1.1rem !important;
  color: #e5bf1d !important;
  margin: 1.5rem auto !important;
  text-shadow: none !important;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 35vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./images/cb6-building.jpg") no-repeat center 36%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.page-hero-content {
  padding: 2rem;
}

.page-hero h1 {
  font-size: 3rem;
  color: #e5bf1d;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #e5bf1d;
  color: #010101;
  padding: 0.9rem 2.2rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #d4ac1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 191, 29, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.9rem 2.2rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  margin-top: 1rem;
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: white;
  color: #010101;
  border-color: white;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  display: inline-block;
  margin-top: 1.5rem;
}

/* ===== SECTION VARIANTS ===== */
.section-light {
  padding: 80px 0;
  background: white;
}

.section-grey {
  padding: 80px 0;
  background: #f8f9fa;
}

.content-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-top: -2rem;
  margin-bottom: 1rem;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #010101;
  font-family: "Oswald", sans-serif;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e5bf1d;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0;
  background: white;
}

.container-about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  padding-block: 2rem;
}

.about-text {
  width: 100%;
  font-size: 1.1rem;
  line-height: 1.8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about_card {
  border: 1px solid #e7e7e7;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.about-text h3 {
  color: #e5bf1d;
  background-color: #1b1b1b;
  font-size: 1.6rem;
  margin-top: 0;
  padding: 1rem 2rem;
  border-radius: 15px 15px 0 0;
  font-family: "Oswald", sans-serif;
}

.card-text {
  padding: 2rem 2.5rem 2.5rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: #e5bf1d;
  font-weight: 600;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
}

.card-link:hover {
  text-decoration: underline;
}

/* ===== FEATURES GRID ===== */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.feature-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}

.feature-icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 56px;
  height: 56px;
}

.feature-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== UNIT CARDS (Services) ===== */
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.unit-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.unit-card-header {
  background: #1b1b1b;
  color: #e5bf1d;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.unit-card-header h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  margin: 0;
}

.unit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unit-icon svg {
  width: 34px;
  height: 34px;
}

.unit-card-body {
  padding: 1.5rem 2rem 2rem;
}

.unit-size {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.unit-price {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: #e5bf1d;
  margin-bottom: 1rem;
  font-weight: 600;
}

.unit-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.unit-features li {
  padding: 0.3rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.unit-features li::before {
  content: "✓";
  color: #e5bf1d;
  font-weight: bold;
  flex-shrink: 0;
}

/* ===== WHAT'S INCLUDED ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.included-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.included-icon {
  background: #e5bf1d;
  color: #010101;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.included-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1b1b1b;
}

.included-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.3rem 1.8rem;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1b1b1b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s;
  font-family: "Open Sans", sans-serif;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  font-size: 1.6rem;
  color: #e5bf1d;
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  background: #fafafa;
  border-bottom: 1px solid #e7e7e7;
}

.faq-answer {
  display: none;
  padding: 1.5rem 1.8rem;
  color: #555;
  line-height: 1.8;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: #1b1b1b;
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TEAM SECTION (About) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid #e5bf1d;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  background: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
}

.team-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: #1b1b1b;
  margin-bottom: 0.25rem;
}

.team-role {
  color: #e5bf1d;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-card p {
  color: #555;
  line-height: 1.7;
}

/* ===== MOTTO SECTION (About) ===== */
.motto-section {
  background: #1b1b1b;
  padding: 80px 0;
  text-align: center;
}

.motto-block {
  max-width: 700px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.motto-block p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.motto-block p:first-child {
  font-size: 1.6rem;
  color: #e5bf1d;
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.motto-block cite {
  display: block;
  margin-top: 1.5rem;
  color: #e5bf1d;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #010101 0%, #010101 100%);
  color: white;
  padding: 80px 0;
}

.contact .section-title {
  color: white;
}

.contact .section-title::after {
  background: #e5bf1d;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e5bf1d;
  font-family: "Oswald", sans-serif;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.contact_item_cont {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact_item_cont.address {
  align-items: flex-start;
}

.contact_item_cont .contact_item_image_box {
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

.contact_item_cont .contact_item_image_box img {
  height: 2rem;
}

.contact_item_title {
  font-weight: 600;
  color: #f8f9fa;
  text-decoration: none;
}

.contact_item_title span {
  font-weight: normal;
}

.address_text {
  display: block;
}

.opening-hours,
.viewing-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.opening-hours h4,
.viewing-note h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  color: #e5bf1d;
  margin-bottom: 0.5rem;
}

.opening-hours p,
.viewing-note p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #e5bf1d;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 15px rgba(229, 191, 29, 0.5);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #e5bf1d;
  color: #010101;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #d4ac1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 191, 29, 0.4);
}

.cf-turnstile {
  text-align: center;
  margin-bottom: 1.5rem;
}

.response-message {
  margin: 15px 0;
  padding: 12px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  display: none;
}

.response-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.response-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: #010101;
  color: white;
  text-align: center;
  padding: 2.5rem 0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #e5bf1d;
}

footer p {
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-cookie-link {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-cookie-link:hover {
  color: #aaa;
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(33, 37, 41, 0.98);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-banner.show { display: block; }

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-text { flex: 1; min-width: 300px; }
.cookie-banner h3 { margin: 0 0 8px 0; font-size: 18px; font-weight: 600; }
.cookie-banner p  { margin: 0; font-size: 14px; line-height: 1.5; color: #e9ecef; }
.cookie-banner a  { color: #007bff; text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Open Sans", sans-serif;
}

.cookie-btn-accept  { background: #28a745; color: white; }
.cookie-btn-accept:hover  { background: #218838; transform: translateY(-1px); }
.cookie-btn-decline { background: #6c757d; color: white; }
.cookie-btn-decline:hover { background: #5a6268; transform: translateY(-1px); }
.cookie-btn-manage  { background: transparent; color: #007bff; border: 1px solid #007bff; }
.cookie-btn-manage:hover  { background: #007bff; color: white; }

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.cookie-modal.show { display: flex; }

.cookie-modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 20px;
  position: relative;
}

.cookie-modal h2 { margin: 0 0 20px 0; font-size: 24px; color: #333; }

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}

.cookie-category h4 {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px; height: 24px;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle.active  { background: #28a745; }
.cookie-toggle.disabled { opacity: 0.5; cursor: not-allowed; }

.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.cookie-toggle.active::after { transform: translateX(26px); }

.cookie-modal-buttons { display: flex; gap: 12px; margin-top: 20px; justify-content: flex-end; }

.close-modal {
  position: absolute;
  top: 15px; right: 20px;
  background: none; border: none;
  font-size: 24px; cursor: pointer; color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .units-grid    { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  .main-nav.open { display: flex; }

  .nav-link, .nav-cta {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }

  .nav-cta { margin-left: 0; margin-top: 0.5rem; }

  .logo     { font-size: 1.5rem; }
  .hero h1  { font-size: 2.5rem; }
  .hero h2  { font-size: 1.4rem; }
  .hero p   { font-size: 1.1rem; }
  .hero-motto { font-size: 1rem !important; }

  .page-hero h1 { font-size: 2rem; }

  .about-text      { grid-template-columns: 1fr; gap: 2rem; }
  .contact-content { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid       { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }

  .about, .section-light, .section-grey, .features,
  .faq-section, .cta-strip, .motto-section { padding: 50px 0; }

  .section-title { font-size: 2rem; }
  .cta-strip h2  { font-size: 2rem; }

  .btn-secondary {
    margin-left: 0;
    margin-top: 0.5rem;
    display: block;
    text-align: center;
  }

  .cookie-banner-content { flex-direction: column; text-align: center; }
  .cookie-banner-buttons { justify-content: center; width: 100%; }
  .cookie-btn { flex: 1; min-width: 100px; }
}

@media (max-width: 465px) {
  .about, .contact { padding-top: 2.5rem; }
  .about-content   { padding-block: 1rem; }
  .card-text       { padding: 1rem 1.5rem 2rem; }

  .hero {
    height: 90vh;
    padding: 0;
  }

  .hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: none;
  }
}
