@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Reset and Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F4F6F3;
  color: #0F1A1A;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F4F6F3;
}

::-webkit-scrollbar-thumb {
  background: #2F6B6B;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1d4f4f;
}

/* Typography */
.heading-xl {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.heading-lg {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.heading-md {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
}

.body-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4A5A5A;
}

.body-lg {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #4A5A5A;
}

.label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #2F6B6B;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 107, 107, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2F6B6B;
  border: 2px solid #2F6B6B;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(47, 107, 107, 0.08);
}

.btn-light {
  background-color: #F4F6F3;
  color: #0B1C1C;
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #F4F6F3;
  border: 2px solid rgba(244, 246, 243, 0.3);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  background-color: rgba(244, 246, 243, 0.08);
}

/* Cards */
.card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(244, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #0F1A1A;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4A5A5A;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0F1A1A;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: #0F1A1A;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #F4F6F3;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0F1A1A;
}

.mobile-menu .btn-primary {
  margin-top: 16px;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 16px;
  right: 24px;
}

/* Sections */
section {
  position: relative;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #F4F6F3;
  padding-top: 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.hero-image {
  position: relative;
  display: none;
}

.hero-image .arch-mask {
  width: 100%;
  height: 70vh;
  border-radius: 50% 50% 18px 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: none;
  position: absolute;
  top: -40px;
  right: 0;
  color: #4A5A5A;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-decoration {
  display: none;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}

.hero-decoration .line {
  width: 48px;
  height: 2px;
  background-color: #2F6B6B;
}

/* Feature Sections */
.feature {
  padding: 80px 0;
  background-color: #F4F6F3;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-images .card {
  height: 280px;
}

.feature-images .card:last-child {
  display: none;
}

.feature-content h2 {
  margin-bottom: 16px;
}

.feature-content p {
  margin-bottom: 24px;
}

.bg-word {
  display: none;
  position: absolute;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 120px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(15, 26, 26, 0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* Collage Sections */
.collage {
  padding: 80px 0;
  background-color: #F4F6F3;
}

.collage-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.collage-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.collage-images .card {
  height: 220px;
}

.collage-images .card:first-child {
  height: 300px;
}

.collage-content h2 {
  margin-bottom: 16px;
}

.collage-content p {
  margin-bottom: 24px;
}

/* Dark CTA Section */
.dark-cta {
  padding: 80px 0;
  background-color: #0B1C1C;
}

.dark-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.dark-cta-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dark-cta-images .card {
  height: 200px;
}

.dark-cta-content h2 {
  color: #F4F6F3;
  margin-bottom: 16px;
}

.dark-cta-content p {
  color: rgba(244, 246, 243, 0.7);
  margin-bottom: 24px;
}

.dark-cta .bg-word {
  color: rgba(244, 246, 243, 0.04);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #F4F6F3;
}

.contact-header {
  margin-bottom: 48px;
}

.contact-header h2 {
  margin-bottom: 12px;
}

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

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(47, 107, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #2F6B6B;
}

.info-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  font-size: 14px;
  color: #4A5A5A;
}

.info-item a:hover {
  color: #2F6B6B;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #0F1A1A;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background-color: white;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2F6B6B;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Card */
.map-card {
  background-color: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.map-card h4 {
  margin-bottom: 16px;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47, 107, 107, 0.1), rgba(47, 107, 107, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
}

.map-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #2F6B6B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.map-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.map-content p {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: #0F1A1A;
  margin-bottom: 4px;
}

.map-content span {
  font-size: 14px;
  color: #4A5A5A;
}

.map-content a {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #2F6B6B;
}

.map-content a:hover {
  text-decoration: underline;
}

.hours {
  margin-top: 24px;
}

.hours h5 {
  font-size: 14px;
  margin-bottom: 8px;
}

.hours p {
  font-size: 14px;
  color: #4A5A5A;
  margin-bottom: 4px;
}

/* Footer */
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid #E5E7EB;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: #4A5A5A;
  max-width: 360px;
}

.footer-links h5 {
  font-size: 14px;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: #4A5A5A;
}

.footer-links a:hover {
  color: #2F6B6B;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

.footer-bottom p {
  font-size: 12px;
  color: #4A5A5A;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(47, 107, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-links a:hover {
  background-color: #2F6B6B;
}

.social-links svg {
  width: 18px;
  height: 18px;
  stroke: #2F6B6B;
  transition: stroke 0.2s;
}

.social-links a:hover svg {
  stroke: white;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  font-size: 12px;
  color: #4A5A5A;
}

.legal-links a:hover {
  color: #2F6B6B;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hero-image {
    display: block;
  }

  .hero-label {
    display: block;
  }

  .hero-decoration {
    display: flex;
  }

  .feature-images {
    grid-template-columns: 1fr 1fr;
  }

  .feature-images .card:last-child {
    display: block;
  }

  .collage-images {
    grid-template-columns: 1fr 1fr;
  }

  .collage-images .card:first-child {
    grid-row: span 2;
    height: 100%;
  }

  .dark-cta-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .feature-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .feature-images .card {
    height: 350px;
  }

  .collage-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .collage-images .card {
    height: 180px;
  }

  .collage-images .card:first-child {
    height: 100%;
  }

  .dark-cta-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .dark-cta-images .card {
    height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .map-placeholder {
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .bg-word {
    display: block;
  }
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: float 5s ease-in-out infinite;
}
