@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", -apple-system, sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #c8a97e;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
  background: #b08f64;
  transform: translateY(-2px);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.header {
  position: relative;
  z-index: 1000;
  background: #1a1a2e;
}
.header-top {
  text-align: center;
  padding: 30px 0 15px;
  background: #1a1a2e;
}
.header-top .logo {
  display: inline-block;
}
.header-top .logo img {
  height: 70px;
  margin: 0 auto;
}

.nav-bar {
  background: #12121f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  padding: 0;
}
.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-bar ul li a {
  display: block;
  padding: 15px 20px;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  position: relative;
}
.nav-bar ul li a:hover {
  color: #ffffff;
}
.nav-bar ul li.active a {
  color: #ffffff;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
}
.mobile-header .logo img {
  height: 36px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #1a1a2e;
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
}
.mobile-nav ul {
  list-style: none;
  text-align: center;
}
.mobile-nav ul li a {
  display: block;
  padding: 14px 40px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.mobile-nav ul li a:hover {
  color: #c8a97e;
}

@media (max-width: 960px) {
  .header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header ~ section.page-section:first-of-type,
  .mobile-header ~ article.page-section:first-of-type {
    padding-top: 110px;
  }
}
@media (max-width: 600px) {
  .nav-bar ul li a {
    padding: 12px 10px;
    font-size: 11px;
  }
}
.hero {
  position: relative;
  height: calc(100vh - 140px);
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -20% 0;
  opacity: 0.7;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  animation: heroFadeIn 1.2s ease forwards;
}
@media (max-width: 960px) {
  .hero-content {
    padding: 0 30px;
  }
}
.hero h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 sup {
  font-size: 0.4em;
  vertical-align: super;
}
.hero p {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.statement {
  padding: 80px 40px;
  text-align: center;
  background: #1a1a2e;
}
.statement h2 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.parallax-section {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 600px) {
  .parallax-section {
    min-height: 500px;
  }
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  will-change: transform;
}
.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
}
.parallax-section:nth-child(odd) .parallax-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.parallax-section:nth-child(even) .parallax-overlay {
  background: rgba(0, 0, 0, 0.35);
}
@media (max-width: 960px) {
  .parallax-section:nth-child(odd) .parallax-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
  .parallax-section:nth-child(even) .parallax-overlay {
    background: rgba(0, 0, 0, 0.5);
  }
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 60px;
}
@media (max-width: 960px) {
  .parallax-content {
    padding: 60px 30px;
  }
}
.parallax-content h2 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.parallax-content p {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}
.parallax-content sup {
  font-size: 0.55em;
  vertical-align: super;
}

.cta-section {
  position: relative;
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
@media (max-width: 960px) {
  .cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.cta-content p {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #333;
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.cta-content sup {
  font-size: 0.55em;
  vertical-align: super;
}

.page-section {
  padding: clamp(60px, 8vw, 100px) 40px;
}
@media (max-width: 960px) {
  .page-section {
    padding: 50px 24px;
  }
}
.page-section--dark {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.85);
}
.page-section--light {
  background: #ffffff;
  color: #333;
}

.page-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 50px;
}

.page-heading {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}
.page-section--dark .page-heading {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-subheading {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: #1a1a2e;
  margin: 40px 0 16px;
}
.page-subheading sup {
  font-size: 0.55em;
  vertical-align: super;
}

.page-text {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}
.page-text--large {
  font-size: clamp(17px, 1.8vw, 20px);
}

.page-list {
  list-style: none;
  margin: 20px 0 30px;
}
.page-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}
.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border: 1.5px solid #c8a97e;
  border-radius: 50%;
}
.page-list li a {
  color: #c8a97e;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-list li a:hover {
  color: rgb(181.7065217391, 140.3956521739, 83.0934782609);
  text-decoration: underline;
}

.page-image {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 2px;
}

.page-quote {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  color: #666;
  margin: 30px 0;
  padding-left: 20px;
  border-left: 3px solid #c8a97e;
  line-height: 1.7;
}
.page-section--dark .page-quote {
  color: rgba(255, 255, 255, 0.7);
  border-left-color: #c8a97e;
}

.press-list {
  max-width: 900px;
  margin: 0 auto;
}

.press-item {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding: 30px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}
.press-item:first-child {
  padding-top: 0;
}
.press-item:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
  .press-item {
    flex-direction: column;
    text-align: center;
  }
}

.press-item__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
}
.press-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .press-item__image {
    width: 100px;
    height: 100px;
  }
}

.press-item__content {
  flex: 1;
}

.press-item__title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 8px;
}

.press-item__link {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #c8a97e;
  transition: color 0.3s ease;
}
.press-item__link:hover {
  color: #b08f64;
}
.press-item__link::after {
  content: " →";
}

.kc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kc-card {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  text-decoration: none;
  transition: background 0.3s ease;
}
.kc-card:first-child {
  padding-top: 0;
}
.kc-card:last-child {
  border-bottom: none;
}
.kc-card:hover h2 {
  color: #c8a97e;
}
.kc-card time {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}
.kc-card h2 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.kc-card p {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

.kc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.kc-pagination__link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8a97e;
  text-decoration: none;
  transition: color 0.3s ease;
}
.kc-pagination__link:hover {
  color: #b08f64;
}

.kc-pagination__info {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 14px;
  color: #666;
}

.kc-back {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8a97e;
  text-decoration: none;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}
.kc-back:hover {
  color: #b08f64;
}

.kc-article-header {
  margin-bottom: 40px;
}
.kc-article-header--has-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 700px) {
  .kc-article-header--has-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.kc-article-header time {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}
.kc-article-header h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 16px;
}

.kc-article-summary {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  font-style: italic;
}

.kc-article-header__image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.kc-article-body {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: #333;
}
.kc-article-body h2, .kc-article-body h3, .kc-article-body h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  color: #1a1a2e;
  margin: 36px 0 16px;
  line-height: 1.3;
}
.kc-article-body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
}
.kc-article-body h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}
.kc-article-body h4 {
  font-size: clamp(18px, 2vw, 22px);
}
.kc-article-body p {
  margin-bottom: 20px;
}
.kc-article-body a {
  color: #c8a97e;
  transition: color 0.3s ease;
}
.kc-article-body a:hover {
  color: #b08f64;
}
.kc-article-body ul, .kc-article-body ol {
  margin: 20px 0;
  padding-left: 28px;
}
.kc-article-body ul li, .kc-article-body ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.kc-article-body blockquote {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  color: #666;
  margin: 30px 0;
  padding-left: 20px;
  border-left: 3px solid #c8a97e;
  line-height: 1.7;
}
.kc-article-body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 2px;
}

.community-logos {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.community-logos img {
  height: clamp(60px, 8vw, 90px);
  width: auto;
}

.contact-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.contact-map-wrap #contact-map {
  width: 100%;
  height: 100%;
}

.map-touch-overlay {
  position: absolute;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.map-touch-overlay.hidden {
  opacity: 0;
}
.map-touch-overlay span {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 14px;
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.contact-form .form-required {
  color: #c8a97e;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 15px;
  color: #333;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.15);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c8a97e;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .form-radios {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-form .form-radios label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
  cursor: pointer;
}
.contact-form .form-radios input[type=radio] {
  accent-color: #c8a97e;
}

.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  gap: 40px;
}
@media (max-width: 960px) {
  .footer-main {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo img {
  height: 50px;
  opacity: 0.9;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  border-color: #c8a97e;
  color: #c8a97e;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 960px) {
  .footer-bottom {
    padding: 20px 30px;
    flex-direction: column;
    text-align: center;
  }
}

.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 800px;
}

.footer-links {
  font-size: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 16px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #c8a97e;
}
@media (max-width: 960px) {
  .footer-links a {
    margin: 0 8px;
  }
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
  cursor: pointer;
}
.back-to-top:hover {
  border-color: #c8a97e;
  color: #c8a97e;
}
