/* =============================================
   Hellébore Elysées — Site Styles
   ============================================= */

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

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

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

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

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.12);
  width: 100%;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 0;
}

.nav-logo img {
  width: auto;
}

.nav-logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #666;
  text-decoration: none;
  line-height: 2em;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f0f4f5;
  border-radius: 6px;
  padding: 4px;
}

.lang-switcher form {
  display: contents;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  padding: 4px 10px;
  border-radius: 4px;
  transition:
    background 0.12s,
    color 0.12s;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
}

.lang-btn.active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Contact Button */
.btn-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.89);
  color: #fff !important;
  border-radius: 90px;
  padding: 10px 24px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.btn-contact:hover {
  background: #000;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  border-bottom: 0.5px solid #999;
  padding: 0 0 0 90px;
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 540px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: min-content;
  flex-shrink: 0;
  padding-bottom: 20px;
  padding-top: 60px;
}

.hero-logo-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

.hero-logo-mark svg {
  width: 166px;
  height: 48px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 340px;
  padding-left: 15px;
}

.hero-title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.107;
  text-align: center;
  color: #111;
  width: 318px;
}

.hero-subtitle {
  line-height: 22px;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  width: 338px;
}

.hero-address {
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.hero-link {
  text-align: center;
}

.hero-link a {
  font-size: 13px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
}

.hero-image {
  flex: 1;
  height: 799px;
  position: relative;
  overflow: hidden;
}

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

/* =============================================
   FEATURE SECTION (Location)
   ============================================= */

.section-feature {
  border-bottom: 0.5px solid #999;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 82px 80px 82px 60px;
}

.feature-image {
  flex: none;
  width: 42%;
  aspect-ratio: 1.61;
  border-radius: 4px;
  overflow: hidden;
}

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

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.feature-content h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 37.5px;
  color: #111;
}

.feature-content p {
  line-height: 22px;
  color: rgba(0, 0, 0, 0.9);
  text-align: justify;
}

.feature-content .link-underline a {
  font-size: 13px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
}

/* =============================================
   FEATURES GRID (multiple benefits)
   ============================================= */

.section-features-grid {
  border-bottom: 0.5px solid #999;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 50px;
  padding: 60px 90px;
  justify-content: center;
  align-items: center;
}

.features-column {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item h3 {
  font-size: 22px;
  font-weight: 500;
  width: 550px;
  max-width: 100%;
}

.feature-item p {
  line-height: 22px;
  color: rgba(0, 0, 0, 0.9);
  text-align: justify;
}

/* =============================================
   PHOTO CAROUSEL
   ============================================= */

.section-carousel {
  border-bottom: 0.5px solid #999;
  padding: 60px 90px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: center;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  scroll-snap-align: center;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}

.carousel-slide img {
  height: 393px;
  width: auto;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* =============================================
   CTA SECTION
   ============================================= */

.section-cta {
  background: #fff;
  border-top: 0.5px solid #999;
  border-bottom: 0.5px solid #999;
  min-height: 369px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.cta-label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #111;
}

.cta-sub {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.89);
  color: #fff !important;
  border-radius: 90px;
  padding: 20px 45px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  backdrop-filter: blur(57px);
  transition: background 0.15s;
  margin-top: 16px;
  box-shadow: 0 -1px 74px rgba(193, 240, 36, 0.06);
  border: 1px solid rgba(248, 247, 246, 0.3);
}

.btn-cta:hover {
  background: #000;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: #f0f4f5;
  padding: 60px 0 120px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 30px;
  overflow: hidden;
  position: relative;
}

.footer-logo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 20px 90px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.footer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 41px;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section-label {
  line-height: 16px;
  color: rgba(0, 0, 0, 0.4);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a,
.footer-nav-links span {
  font-size: 18px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.12s;
}

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

.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-items p {
  line-height: 16px;
  color: rgba(0, 0, 0, 0.7);
}

.footer-copyright {
  line-height: 16px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 8px;
}

/* =============================================
   OFFERS PAGE
   ============================================= */

.offers-hero {
  padding: 80px 90px 60px;
  border-bottom: 0.5px solid #999;
  text-align: center;
}

.offers-hero h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
  max-width: 700px;
  margin: 0 auto 16px;
}

.offers-hero p {
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
}

.section-services {
  border-bottom: 0.5px solid #999;
  padding: 60px 90px;
}

.section-services h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card h3 {
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}

.service-card p {
  line-height: 21px;
  color: rgba(0, 0, 0, 0.7);
  text-align: justify;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon {
  width: 36px;
  height: 36px;
  background: #f0f4f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Offices Section */
.section-offices {
  border-bottom: 0.5px solid #999;
  padding: 60px 90px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.offices-left {
  flex: 1;
  min-width: 300px;
}

.offices-left h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #111;
}

.offer-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-card {
  border: 0.5px solid #ddd;
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  transition: box-shadow 0.15s;
}

.offer-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.offer-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.offer-card-sub {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.offer-card-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-card-details li {
  line-height: 20px;
  color: rgba(0, 0, 0, 0.7);
  padding-left: 16px;
  position: relative;
}

.offer-card-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.3);
}

.offices-right {
  flex: 0.8;
  min-width: 300px;
}

.offices-image {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.33;
}

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

/* Conference Rooms */

/* =============================================
   RESPONSIVE
   ============================================= */

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

  .hero {
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
  }

  .hero-text {
    width: 100%;
  }

  .hero-title {
    font-size: 32px;
    width: 100%;
    margin-top: 20px;
  }

  .hero-subtitle {
    width: 100%;
  }

  .hero-image {
    width: 100%;
    height: 300px;
  }

  .section-feature {
    flex-direction: column;
    padding: 40px 24px;
  }

  .feature-image {
    width: 100%;
  }

  .section-features-grid {
    padding: 40px 24px;
  }

  .feature-item h3 {
    width: 100%;
  }

  .section-carousel {
    padding: 40px 24px;
  }

  .section-cta {
    padding: 60px 24px;
  }

  .site-footer {
    flex-direction: column;
    padding: 60px 24px 80px;
    align-items: flex-start;
  }

  .footer-logo {
    padding: 0;
  }

  .offers-hero {
    padding: 40px 24px;
  }

  .section-services {
    padding: 40px 24px;
  }

  .section-offices {
    flex-direction: column;
    padding: 40px 24px;
  }
}
