:root {
  --ink: #1c1a17;
  --sand: #f5f1ea;
  --ocean: #0f3b3f;
  --reef: #2a8b8f;
  --sun: #f5c26b;
  --cloud: #ffffff;
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 22px 60px rgba(12, 20, 24, 0.18);
  --soft-shadow: 0 12px 30px rgba(18, 26, 34, 0.12);
  --radius: 24px;
}

html {
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #f7eee1 45%, #e7d4bb 100%);
  min-height: 100vh;
}

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

button {
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: var(--glass);
  border-bottom: 1px solid rgba(28, 26, 23, 0.06);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand span {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.2em;
  color: rgba(28, 26, 23, 0.6);
}

.nav-links {
  position: relative;
}

.menu-panel {
  display: flex;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  align-items: center;
}

.nav-links a {
  padding: 10px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: linear-gradient(120deg, var(--sun), var(--reef));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-close {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-close span {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

.menu-close span::before,
.menu-close span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
  background: var(--ink);
  border-radius: 999px;
}

.menu-close span::before {
  transform: rotate(45deg);
}

.menu-close span::after {
  transform: rotate(-45deg);
}

.lang-switch {
  display: flex;
  gap: 6px;
  background: rgba(15, 59, 63, 0.08);
  border-radius: 999px;
  padding: 6px;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 600;
}

.lang-switch button.active {
  background: var(--ocean);
  color: #fff;
  box-shadow: var(--soft-shadow);
}

.menu-open {
  overflow: hidden;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.burger.active span {
  opacity: 0;
}

.burger.active span::before {
  transform: translateY(6px) rotate(45deg);
}

.burger.active span::after {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  overflow: hidden;
}

section {
  padding: 90px 24px;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #0f3b3f, #2a8b8f);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 26, 23, 0.18);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 40px rgba(18, 26, 34, 0.2);
}

.btn:hover::after {
  opacity: 1;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: -24px;
  left: -16px;
  background: var(--cloud);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: min(260px, 80%);
}

.floating-card p {
  margin: 6px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(28, 26, 23, 0.6);
}

.floating-card strong {
  font-size: 18px;
  display: block;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 18px;
}

.section-subtitle {
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(21, 40, 44, 0.12);
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  height: 100%;
  width: auto;
  object-fit: cover;
  opacity: 0.92;
  object-position: center;
}

.carousel-controls {
  position: absolute;
  inset: auto 0 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.carousel-controls button {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(18, 26, 34, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.about-media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 38px rgba(24, 35, 36, 0.1);
}

.list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: center;
}

.dot {
  height: 10px;
  width: 10px;
  background: var(--sun);
  border-radius: 50%;
  margin-top: 6px;
}

.contact-card {
  background: var(--ocean);
  color: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 640px;
}

.contact-map {
  margin-top: 24px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.contact-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  margin-top: 0;
}

.contact-info {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.contact-info a {
  color: var(--sun);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

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

  .contact-map iframe {
    height: 300px;
  }
}

footer {
  padding: 40px 24px 60px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 980px) {
  .burger {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 20, 24, 0.45);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: scale(1.02);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-panel {
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 110px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    box-shadow: var(--shadow);
  }

  .menu-panel a {
    font-size: 18px;
    letter-spacing: 0.28em;
  }

  .menu-panel .lang-switch {
    margin-top: 10px;
  }

  .nav-links.open .menu-close {
    display: inline-flex;
  }
}

@media (min-width: 507px) and (max-width: 980px) {
  .highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights .highlight-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(507px, 100%);
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: center;
  }

  .hero-media img {
    height: 320px;
  }

  .carousel-slide {
    height: min(130vw, 500px);
    padding: 14px;
  }

  .carousel-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .carousel-controls {
    inset: auto 0 12px;
  }

  .carousel-controls button {
    padding: 10px 14px;
    font-size: 11px;
  }

  .lang-switch button {
    min-height: 38px;
    padding: 8px 12px;
  }

  .btn {
    min-height: 46px;
    padding: 14px 24px;
  }

  .carousel-controls button {
    min-height: 38px;
  }
}
