* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f5f0;
  color: #123247;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 18px 6vw;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.brand-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 8px;
  color: #003f52;
  line-height: 1;
}

.brand-sub {
  margin-top: 8px;
  color: #005e78;
  letter-spacing: 4px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

nav a:not(.nav-button):hover {
  color: #005e78;
}

.nav-button,
.button {
  display: inline-block;
  background: #005e78;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}

.nav-button:hover,
.button:hover {
  background: #003f52;
}

/* ---- Hero ---- */
.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8vw;
  background:
    linear-gradient(90deg, rgba(248,245,240,1) 0%, rgba(248,245,240,1) 50%, rgba(248,245,240,.85) 70%, rgba(248,245,240,.15) 100%),
    url("assets/hero-beach.jpg") center center / cover no-repeat;
  gap: 40px;
}

.hero-copy {
  max-width: 620px;
  flex: 1;
}

.hero h1 {
  margin: 0 0 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  color: #003f52;
}

.hero h1 em {
  font-style: italic;
  color: #005e78;
}

.hero p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 32px;
  color: #2a4a5a;
}

.hero-icon {
  flex-shrink: 0;
  width: clamp(180px, 18vw, 260px);
  height: clamp(180px, 18vw, 260px);
  opacity: 0.65;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
}

/* ---- Services ---- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 70px 8vw;
  background: #ffffff;
}

.service-card {
  padding: 36px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  background: #ffffff;
  border: 1px solid rgba(0,63,82,.06);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #eef7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h2 {
  margin: 0 0 12px;
  color: #005e78;
  font-size: 20px;
  font-family: Georgia, 'Times New Roman', serif;
}

.service-card p {
  font-size: 16px;
  line-height: 1.55;
  color: #3a5a6a;
  margin: 0;
}

/* ---- Industries ---- */
.industries {
  padding: 70px 8vw;
  background: #003f52;
  text-align: center;
}

.industries h2 {
  margin: 0 0 40px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: #c9a96e;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.industry-item {
  background: rgba(255,255,255,.1);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  border: 1px solid rgba(201,169,110,.3);
}

/* ---- Experience / Partnership ---- */
.experience {
  padding: 80px 8vw;
  background: #f8f5f0;
}

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

.experience h2 {
  margin: 0 0 40px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #003f52;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.experience-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #2a4a5a;
  margin: 0;
}

.experience-mission {
  border-left: 3px solid #c9a96e;
  padding-left: 28px;
}

.experience-mission p {
  font-size: 18px;
  line-height: 1.6;
  color: #005e78;
  margin: 0;
}

/* ---- CTA Bar ---- */
.cta-bar {
  background: #003f52;
  padding: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 8vw;
  flex-wrap: wrap;
}

.cta-label {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  color: #c9a96e;
  white-space: nowrap;
}

.cta-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ffffff;
  font-size: 15px;
  flex-wrap: wrap;
}

.cta-contacts a:hover {
  color: #c9a96e;
}

.cta-button {
  background: #c9a96e;
  color: #003f52;
  font-weight: 700;
  white-space: nowrap;
}

.cta-button:hover {
  background: #b89555;
}

/* ---- Footer ---- */
footer {
  background: #002a38;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 22px 8vw;
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-main {
    font-size: 34px;
  }

  .brand-sub {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 60px 6vw;
  }

  .hero-icon {
    display: none;
  }

  .hero p {
    font-size: 18px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 50px 6vw;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 32px 6vw;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .brand-main {
    font-size: 26px;
    letter-spacing: 4px;
  }

  .brand-sub {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 32px;
  }

  nav {
    gap: 14px;
    font-size: 13px;
  }
}
