* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #053d64;
  --blue-dark: #012f50;
  --turquoise: #15b9c4;
  --turquoise-dark: #0e9eaa;
  --text: #234;
  --muted: #687985;
  --light: #eef8fb;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 45, 80, 0.12);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

/* HEADER */

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  color: var(--blue);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 800;
}

.logo-script {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--turquoise);
  font-weight: 500;
}

.logo-main {
  font-size: 30px;
}

.logo-small {
  font-size: 13px;
  color: #e16d40;
  letter-spacing: 4px;
  margin-top: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}

.menu a {
  position: relative;
  padding: 30px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 3px;
  background: var(--turquoise);
  transition: 0.2s;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--blue);
  color: white;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 22px;
}

/* HERO */

.hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(8, 174, 185, 0.86) 0%, rgba(8, 174, 185, 0.60) 38%, rgba(5, 61, 100, 0.20) 100%),
    url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  color: white;
}

.hero-content {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 28px;
}

.hero h1 span {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.62em;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.hero h1 small {
  display: block;
  font-size: 0.36em;
  letter-spacing: 9px;
  margin-top: 12px;
}

.hero p {
  font-size: 25px;
  font-weight: 800;
}

.hero .lead {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 56px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s;
}

.btn-primary {
  background: var(--turquoise);
  color: white;
}

.btn-primary:hover {
  background: var(--turquoise-dark);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--blue);
}

.hero-card {
  width: 260px;
  min-height: 360px;

  background: white;
  color: var(--blue);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
}

.hero-card img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 20px;

  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.95;
}

.hero-card span {
  display: block;
  color: #e16d40;
  margin-top: 5px;
}

/* INTRO */

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

.intro h2,
.services h2,
.contact h2 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 15px;
}

.intro h2 span {
  color: var(--turquoise);
}

.wave {
  width: 70px;
  height: 10px;
  margin: 0 0 30px;
  background: repeating-linear-gradient(
    135deg,
    var(--turquoise) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.7;
}

.wave.center {
  margin: 0 auto 40px;
}

.intro-text p {
  margin-bottom: 18px;
  color: var(--muted);
}

.highlight {
  color: var(--turquoise) !important;
  font-weight: 800;
  text-align: center;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-preview img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* SERVICES */

.services {
  background: var(--light);
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: white;
  border-radius: 7px;
  min-height: 230px;
  padding: 36px 24px;
  box-shadow: var(--shadow);
  border: 1px solid #dcecf2;

  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}

.icon {
  color: var(--turquoise);
  font-size: 58px;
  line-height: 1;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
}

/* FEATURE */

.feature-strip {
  background: var(--light);
  padding: 0 0 70px;
}

.feature-content {
  background: var(--blue);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  gap: 35px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-text {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 42px;
  font-size: 20px;
}

.lotus {
  font-size: 72px;
  color: var(--turquoise);
}

.feature-content img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-box iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.company {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  color: var(--muted);
}

.company strong {
  color: var(--blue);
}

.contact-box ul {
  list-style: none;
  border-top: 1px solid #d8e7ed;
}

.contact-box li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #d8e7ed;
}

.contact-box span {
  font-weight: 800;
  color: var(--blue);
}

.contact-box a {
  color: var(--turquoise-dark);
  font-weight: 800;
}

/* FOOTER */

.site-footer {
  background: var(--blue);
  color: white;
  padding: 34px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-logo {
  color: white;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.site-footer nav a {
  opacity: 0.88;
}

.site-footer nav a:hover {
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 950px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 14px 0;
  }

  .menu a::after {
    bottom: 8px;
  }

  .hero-content,
  .intro-grid,
  .contact-grid,
  .feature-content {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-card {
    display: none;
  }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 48px 0;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .gallery-preview,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview img {
    height: 230px;
  }

  .feature-text {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    font-size: 17px;
  }

  .contact-box li {
    flex-direction: column;
    gap: 4px;
  }
}
.subpage-hero {
  background: linear-gradient(90deg, rgba(8,174,185,.85), rgba(5,61,100,.65)),
              url("images/hero.jpg") center/cover no-repeat;
  color: white;
  padding: 100px 0;
}

.subpage-hero h1 {
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.subpage-hero p {
  font-size: 20px;
  margin-top: 10px;
}

.subpage-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.subpage-content h2 {
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.subpage-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.subpage-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .subpage-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .subpage-gallery {
    grid-template-columns: 1fr;
  }
}
.service-card {
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-8px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 230px;
  padding: 36px 24px;

  background: white;
  border-radius: 7px;
  box-shadow: var(--shadow);
  border: 1px solid #dcecf2;

  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-8px);
}

@media (max-width: 950px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(8,174,185,.85), rgba(5,61,100,.55)),
    url("images/kikoto-hero.jpg") center/cover no-repeat;
  color: white;
  padding: 120px 0;
}

.page-hero h1 {
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.page-hero p {
  max-width: 720px;
  font-size: 22px;
  font-weight: 500;
}

.subpage-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 60px;
  align-items: start;
}

.subpage-intro h2,
.gallery-section h2,
.cta-section h2 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.25;
}

.subpage-intro p {
  color: var(--muted);
  margin-bottom: 18px;
}

.info-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  border: 1px solid #dcecf2;
}

.info-box h3 {
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  padding: 12px 0;
  border-bottom: 1px solid #d4e8ef;
  color: var(--muted);
  font-weight: 700;
}

.info-box li::before {
  content: "✓";
  color: var(--turquoise);
  font-weight: 900;
  margin-right: 10px;
}

.gallery-section {
  background: var(--light);
  text-align: center;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.photo-gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}

.photo-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: .25s;
}

.photo-gallery a:hover img {
  transform: scale(1.06);
}

.cta-section {
  background: white;
}

.cta-box {
  background: var(--blue);
  color: white;
  border-radius: 18px;
  padding: 55px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: white;
  margin-bottom: 12px;
}

.cta-box p {
  margin-bottom: 28px;
  font-size: 18px;
}

@media (max-width: 950px) {
  .subpage-intro-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 520px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 80px 0;
  }

  .cta-box {
    padding: 35px 24px;
  }
}
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 60px;
}

.hero-side-image {
  display: flex;
  justify-content: center;
}

.hero-side-image img {
  width: 100%;
  max-width: 420px;
  height: 320px;

  object-fit: cover;

  border-radius: 24px;

  border: 6px solid rgba(255,255,255,.25);

  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

@media (max-width: 900px) {

  .hero-split {
    grid-template-columns: 1fr;
  }

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