@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --ek-cream: #FDF8F0;
  --ek-charcoal: #1E1E1E;
  --ek-terracotta: #C8553D;
  --ek-terracotta-dark: #A8432F;
  --ek-green: #4A7C59;
  --ek-sand: #E8D5B7;
  --ek-font-heading: 'Playfair Display', Georgia, serif;
  --ek-font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
}

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

body {
  background: var(--ek-cream);
  color: var(--ek-charcoal);
  font-family: var(--ek-font-body);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ek-font-heading);
  color: var(--ek-charcoal);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: color 0.3s;
}

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

.ek-section {
  padding: 80px 0;
}

.ek-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.ek-btn-primary {
  background: var(--ek-terracotta);
  color: white;
}

.ek-btn-primary:hover {
  background: var(--ek-terracotta-dark);
}

.ek-btn-outline {
  border: 2px solid var(--ek-terracotta);
  color: var(--ek-terracotta);
  background: transparent;
}

.ek-btn-outline:hover {
  background: var(--ek-terracotta);
  color: white;
}

.ek-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ek-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.ek-nav-logo {
  font-family: var(--ek-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--ek-charcoal);
  text-decoration: none;
}

.ek-nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.ek-nav-item {
  text-decoration: none;
  color: var(--ek-charcoal);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.ek-nav-item:hover {
  color: var(--ek-terracotta);
}

.ek-nav-dropdown {
  position: relative;
}

.ek-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: white;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 16px 0;
  display: none;
  z-index: 100;
}

.ek-nav-dropdown.active .ek-nav-dropdown-menu {
  display: block;
}

.ek-nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--ek-charcoal);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.ek-nav-dropdown-menu a:hover {
  background: var(--ek-cream);
}

.ek-nav-cta {
  background: var(--ek-terracotta);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
  display: inline-block;
}

.ek-nav-cta:hover {
  background: var(--ek-terracotta-dark);
}

.ek-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ek-charcoal);
}

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

  .ek-nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .ek-nav-menu.ek-nav-open {
    display: flex;
  }

  .ek-nav-dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    padding-left: 16px;
  }

  .ek-nav-dropdown.active .ek-nav-dropdown-menu {
    display: block;
  }
}

.ek-hero {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ek-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.65);
}

.ek-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 560px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ek-hero-title {
  font-family: var(--ek-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: white;
  max-width: 600px;
}

.ek-hero-subtitle {
  font-family: var(--ek-font-body);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  max-width: 500px;
}

.ek-hero-btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--ek-terracotta);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  max-width: fit-content;
}

.ek-hero-btn:hover {
  background: var(--ek-terracotta-dark);
}

@media (max-width: 768px) {
  .ek-hero {
    min-height: 420px;
  }

  .ek-hero-content {
    min-height: 420px;
  }

  .ek-hero-title {
    font-size: 32px;
  }
}

.ek-about {
  padding: 80px 0;
}

.ek-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ek-about-img {
  border-radius: 12px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.ek-about-text h2 {
  font-family: var(--ek-font-heading);
  font-size: 36px;
  margin-bottom: 16px;
}

.ek-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

@media (max-width: 768px) {
  .ek-about-grid {
    grid-template-columns: 1fr;
  }
}

.ek-articles {
  padding: 80px 0;
  background: #FAFAF5;
}

.ek-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ek-article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ek-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ek-article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ek-article-card-body {
  padding: 24px;
}

.ek-article-card h3 {
  font-family: var(--ek-font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.ek-article-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ek-article-card .ek-card-link {
  color: var(--ek-terracotta);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

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

@media (max-width: 992px) {
  .ek-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ek-articles-grid {
    grid-template-columns: 1fr;
  }
}

.ek-achievements {
  padding: 80px 0;
}

.ek-achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ek-achieve-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ek-achieve-num {
  font-family: var(--ek-font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--ek-terracotta);
}

.ek-achieve-label {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.ek-achieve-note {
  font-size: 12px;
  color: #999;
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 768px) {
  .ek-achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ek-mission {
  padding: 80px 0;
}

.ek-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ek-mission-text h2 {
  font-family: var(--ek-font-heading);
  font-size: 36px;
}

.ek-mission-values {
  margin-top: 24px;
  list-style: none;
}

.ek-mission-values li {
  padding: 12px 0;
  border-bottom: 1px solid var(--ek-sand);
  font-size: 16px;
}

@media (max-width: 768px) {
  .ek-mission-grid {
    grid-template-columns: 1fr;
  }
}

.ek-advantages {
  padding: 80px 0;
  background: #FAFAF5;
}

.ek-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ek-adv-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ek-adv-icon {
  font-size: 36px;
  color: var(--ek-terracotta);
  margin-bottom: 16px;
}

.ek-adv-card h4 {
  font-family: var(--ek-font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.ek-adv-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ek-advantages-grid {
    grid-template-columns: 1fr;
  }
}

.ek-closing {
  padding: 80px 0;
  background: var(--ek-charcoal);
  color: white;
  text-align: center;
}

.ek-closing h2 {
  font-family: var(--ek-font-heading);
  font-size: 36px;
}

.ek-closing p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 16px 0 32px;
}

.ek-closing-btn {
  display: inline-block;
  background: var(--ek-terracotta);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.ek-closing-btn:hover {
  background: var(--ek-terracotta-dark);
}

.ek-footer {
  background: var(--ek-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 0;
}

.ek-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.ek-footer h4 {
  color: white;
  font-family: var(--ek-font-heading);
  font-size: 18px;
  margin-bottom: 20px;
}

.ek-footer ul {
  list-style: none;
}

.ek-footer li {
  margin-bottom: 10px;
}

.ek-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.ek-footer a:hover {
  color: var(--ek-terracotta);
}

.ek-footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
}

.ek-footer-contact i {
  color: var(--ek-terracotta);
  margin-top: 4px;
  width: 16px;
}

.ek-footer-article-list a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ek-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  .ek-footer-grid {
    grid-template-columns: 1fr;
  }
}

.ek-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ek-charcoal);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ek-cookie-text {
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

.ek-cookie-text a {
  color: var(--ek-terracotta);
  text-decoration: underline;
}

.ek-cookie-btns {
  display: flex;
  gap: 12px;
}

.ek-cookie-accept {
  background: var(--ek-terracotta);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.ek-cookie-reject {
  background: #555;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.ek-cookie-hidden {
  display: none !important;
}

.ek-contact-top {
  padding: 60px 0;
  background: #FAFAF5;
}

.ek-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ek-contact-info h2 {
  font-family: var(--ek-font-heading);
  font-size: 32px;
}

.ek-contact-item {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: flex-start;
}

.ek-contact-item i {
  color: var(--ek-terracotta);
  font-size: 20px;
  margin-top: 4px;
}

.ek-contact-item p {
  font-size: 15px;
  line-height: 1.7;
}

.ek-contact-form-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ek-contact-form-card h3 {
  font-family: var(--ek-font-heading);
  font-size: 24px;
  margin-bottom: 24px;
}

.ek-form-group {
  margin-bottom: 20px;
}

.ek-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.ek-form-group input,
.ek-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D4C5A9;
  border-radius: 8px;
  font-family: var(--ek-font-body);
  font-size: 15px;
  transition: border 0.3s;
}

.ek-form-group input:focus,
.ek-form-group textarea:focus {
  border-color: var(--ek-terracotta);
  outline: none;
}

.ek-form-submit {
  background: var(--ek-terracotta);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  transition: background 0.3s;
}

.ek-form-submit:hover {
  background: var(--ek-terracotta-dark);
}

.ek-map-section {
  padding: 0;
  width: 100%;
}

.ek-map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.ek-map-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--ek-terracotta);
  font-size: 14px;
}

@media (max-width: 768px) {
  .ek-contact-grid {
    grid-template-columns: 1fr;
  }

  .ek-map-section iframe {
    height: 300px;
  }
}

.ek-article-detail {
  padding: 80px 0;
}

.ek-article-detail .ek-container {
  max-width: 800px;
}

.ek-article-header h1 {
  font-family: var(--ek-font-heading);
  font-size: 36px;
  margin-bottom: 16px;
}

.ek-article-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}

.ek-article-body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.ek-article-body h2 {
  font-family: var(--ek-font-heading);
  font-size: 28px;
  margin: 40px 0 16px;
}

.ek-article-body h3 {
  font-family: var(--ek-font-heading);
  font-size: 22px;
  margin: 32px 0 12px;
}

.ek-article-body ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.ek-article-body li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.7;
}

.ek-article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--ek-sand);
}

.ek-article-nav a {
  color: var(--ek-terracotta);
  text-decoration: none;
  font-weight: 600;
  max-width: 45%;
}

.ek-article-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ek-article-header h1 {
    font-size: 28px;
  }
}

.ek-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.ek-modal-overlay.ek-modal-show {
  display: flex;
}

.ek-modal-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.ek-modal-box h3 {
  font-family: var(--ek-font-heading);
  font-size: 24px;
  margin-bottom: 12px;
}

.ek-modal-box p {
  color: #666;
  margin-bottom: 24px;
}

.ek-modal-close {
  background: var(--ek-terracotta);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
}

.ek-list-page {
  padding: 60px 0;
}

.ek-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ek-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.ek-list-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.ek-list-item img {
  width: 200px;
  height: 160px;
  object-fit: cover;
}

.ek-list-item-body {
  padding: 20px 20px 20px 0;
}

.ek-list-item h3 {
  font-family: var(--ek-font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}

.ek-list-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

@media (max-width: 576px) {
  .ek-list-item {
    grid-template-columns: 1fr;
  }

  .ek-list-item img {
    width: 100%;
    height: 200px;
  }

  .ek-list-item-body {
    padding: 16px;
  }
}

.ek-legal-page {
  padding: 60px 0;
}

.ek-legal-page .ek-container {
  max-width: 800px;
}

.ek-legal-page h1 {
  font-family: var(--ek-font-heading);
  font-size: 36px;
  margin-bottom: 32px;
}

.ek-legal-page h2 {
  font-family: var(--ek-font-heading);
  font-size: 24px;
  margin: 40px 0 16px;
  color: var(--ek-terracotta);
}

.ek-legal-page p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.ek-legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.ek-legal-page li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
}
