/* VARIABLES: Swiss Style / Editorial */
:root {
  --bg: #f5f5f5;
  --white: #ffffff;
  --text: #111111;
  --text-muted: #555555;
  --accent: #9a3b3b; /* Burnt Umber */
  --accent-hover: #7a2e2e;
  --border: #e0e0e0;
  --dark: #0f0f0f;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Lato", sans-serif;

  --container: 1160px;
  --radius: 2px; /* Minimal radius */
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.2;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}
h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
}
h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.lead-text {
  font-size: 1.25rem;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 40px;
}
.italic {
  font-style: italic;
  font-family: var(--font-serif);
}
.accent {
  color: var(--accent);
}
.sub-title {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 15px;
}

/* UTILS */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.narrow {
  max-width: 800px;
}
.text-center {
  text-align: center;
}
.section {
  padding: 100px 0;
}
.bg-white {
  background: var(--white);
}
.bg-dark {
  background: var(--dark);
  color: var(--white);
}
.bg-accent-light {
  background: #efebe9;
}
.mb-50 {
  margin-bottom: 50px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.3s;
  border-radius: var(--radius);
}
.btn-primary:hover {
  background: var(--accent);
}

.btn-solid-sm {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
}
.btn-solid-sm:hover {
  background: var(--accent-hover);
}

.btn-line {
  display: inline-block;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius);
}
.btn-line:hover {
  background: var(--text);
  color: var(--white);
}

.btn-line-dark {
  display: inline-block;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 14px 28px;
  font-weight: 700;
  margin-top: 20px;
}
.btn-line-dark:hover {
  background: var(--text);
  color: #fff;
}

/* TOP BAR */
.top-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.top-bar p {
  margin: 0;
  color: #eee;
}

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}
.desktop-menu {
  display: flex;
  gap: 30px;
}
.desktop-menu a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}
.desktop-menu a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.burger {
  display: none;
  background: none;
}

/* HERO */
.hero {
  padding: 60px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.label-line {
  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  margin-bottom: 25px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 40px;
}
.btn-group {
  display: flex;
  gap: 20px;
}
.hero-img {
  position: relative;
}
.floating-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 20px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.floating-box strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.floating-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* TICKER */
.ticker-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  overflow: hidden;
}
.ticker {
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  animation: scroll 35s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MISSION GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.small-gap {
  gap: 20px;
}
.feat-item {
  padding: 30px;
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.3s;
}
.feat-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.feat-item i {
  color: var(--accent);
  margin-bottom: 15px;
  width: 32px;
  height: 32px;
}

/* EXPERTISE */
.sec-head {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.srv-card {
  background: var(--white);
  padding: 40px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.srv-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.srv-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #ddd;
  position: absolute;
  top: 20px;
  right: 20px;
}
.srv-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
  display: inline-block;
}

/* QUIZ */
.quiz-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.text-light h2,
.text-light p {
  color: #fff;
}
.text-light .check-ul {
  color: #ccc;
  margin-top: 20px;
}
.check-ul li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}
.check-ul li::before {
  content: "•";
  color: var(--accent);
}
.quiz-box {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  color: var(--text);
}
.q-slide {
  display: none;
  text-align: center;
}
.q-slide.active {
  display: block;
  animation: fade 0.4s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.q-slide h5 {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.q-slide button {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  background: #f9f9f9;
  text-align: left;
  transition: 0.2s;
}
.q-slide button:hover {
  background: var(--accent);
  color: #fff;
}
.icon-res {
  color: var(--accent);
  margin-bottom: 15px;
}
.full-w {
  width: 100%;
  text-align: center;
}

/* STEPS */
.steps-line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.step-circle {
  width: 200px;
  text-align: center;
}
.sc-num {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 15px;
}
.step-connector {
  height: 1px;
  background: var(--border);
  flex-grow: 1;
  max-width: 100px;
}

/* ADVANTAGES */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.adv-list {
  margin: 20px 0;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.adv-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* BLOG */
.sec-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.link-more {
  font-weight: 700;
  border-bottom: 1px solid var(--text);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-post {
  background: var(--white);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.blog-post:hover {
  transform: translateY(-5px);
}
.bp-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.bp-meta {
  padding: 20px 20px 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-post h4 {
  padding: 10px 20px;
  font-size: 1.2rem;
}
.blog-post p {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  margin: 0;
}

/* REVIEWS */
.reviews-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.review-card {
  background: #f9f9f9;
  padding: 40px;
  border-left: 4px solid var(--accent);
}
.review-card p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}
.r-auth strong {
  display: block;
  font-family: var(--font-serif);
}
.r-auth span {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
}

/* FAQ */
.accordion details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.accordion summary {
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.accordion summary::after {
  content: "+";
}
.accordion details[open] summary::after {
  content: "-";
}
.accordion p {
  margin-top: 15px;
}

/* FORM */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.contact-data {
  margin-top: 30px;
}
.contact-data p {
  margin-bottom: 5px;
  color: var(--text);
}

.fc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.input-wrap label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.input-wrap input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-family: var(--font-sans);
}
.input-wrap input:focus {
  outline: none;
  border-color: var(--accent);
}
.check-wrap {
  font-size: 0.8rem;
}
.check-wrap a {
  text-decoration: underline;
}
.full {
  width: 100%;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.f-brand h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.f-brand p {
  color: #999;
}
.f-links h5 {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.f-links a {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
}
.f-links a:hover {
  color: #fff;
}
.footer-btm {
  border-top: 1px solid #333;
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  color: #666;
  font-size: 0.8rem;
}

/* MOBILE NAV */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.3s;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}
.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mm-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}
#closeMenu {
  background: none;
  font-size: 1.5rem;
}
.mm-list a {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  color: var(--text);
}

/* COOKIE */
.cookie-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 15px 25px;
  display: none;
  align-items: center;
  gap: 20px;
  z-index: 5000;
}
#acceptCookie {
  background: var(--accent);
  color: #fff;
  padding: 5px 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-menu,
  .header-actions .btn-solid-sm {
    display: none;
  }
  .burger {
    display: block;
  }

  h1 {
    font-size: 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-img {
    order: -1;
  }

  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .fc-text h2 {
    font-size: 2rem;
  }

  .grid-3,
  .grid-2,
  .services-row,
  .quiz-layout,
  .reviews-slider,
  .form-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps-line {
    flex-direction: column;
    gap: 30px;
  }
  .step-connector {
    width: 1px;
    height: 50px;
    margin: 0 auto;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 30px;
  }
  h2 {
    font-size: 2.5rem;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}
