:root {
  --aqua: #2f8fb3;
  --aqua-light: #e9f6fb;
  --dark: #1f2a33;
  --muted: #6b7c88;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e6edf3;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 64px;
}

.nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav .cta {
  border: 1px solid var(--aqua);
  padding: 10px 18px;
  border-radius: 30px;
  color: var(--aqua);
}

.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.85);
  padding: 40px;
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.hero p {
  color: var(--muted);
}

.section {
  background: #fff;
}

.section.alt {
  background: var(--aqua-light);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

.why {
  text-align: center;
  background: #fff;
}

.why ul {
  list-style: none;
  padding: 0;
}

.why li {
  font-size: 18px;
  margin: 12px 0;
}

.contact {
  text-align: center;
  background: var(--aqua-light);
}

.contact-line {
  font-size: 18px;
  margin-top: 20px;
}

.footer {
  text-align: center;
  padding: 40px;
  font-size: 14px;
  color: var(--muted);
}
